/* =========================================================
   0) Base / Reset（共通）
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}
main {
  margin-top: 62px;
}
body {
  margin: 0;
  font-family: 'Zen Kaku Gothic New', 'Yu Gothic', system-ui, -apple-system,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans JP',
    'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 1rem;
  color: #5a5f66;
}

a {
  text-decoration: none;
  color: #5a5f66;
}
.target-element {
  scroll-margin-top: 62px;
}
.c-txt {
  line-height: 200%;
}
.txt-orange {
  color: #f08714;
}
.h--orange {
  font-weight: 500;
  font-size: 2rem;
  line-height: 160%;
  color: #f08714;
}
.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  padding: 0 16px;
  font-size: 1.25rem;
  white-space: nowrap;
  box-shadow: 4px 4px 0 1px #ffc7af;
  text-decoration: none;
  border: 2px solid #f08714;
  position: relative;
  z-index: 5;
}

.c-btn--primary {
  background: #fff;
  color: #f08714;
}

.c-btn--secondary {
  background: #f08714;
  color: #fff;
}

@media (min-width: 769px) {
  .c-btn--medium {
    max-width: 248px;
    width: 100%;
  }
  .c-btn--large {
    max-width: 324px;
    width: 100%;
  }
}

.c-btn--primary:hover,
.c-btn--secondary:hover {
  transform: translate(4px, 4px);
  box-shadow: none;
}

.c-btn--primary:hover {
  background: #fff6e8;
}

.c-btn--secondary:hover {
  background: #ffc84b;
}

.c-btn__text {
  flex-grow: 1;
  text-align: center;
}

.c-btn__arrow,
.c-btn__arrow--white {
  display: inline-block;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  transition: border-color 0.3s;
}
.arrow--orange {
  border-top: 3px solid #ff9933;
  border-right: 3px solid #ff9933;
}

.arrow--white {
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}
.teeth-items {
  list-style: none;
}
.teeth--white {
  background: #fff;
}
.teeth--gray {
  background: #fff6e8;
  border: 1px solid #f08714;
}
.teeth__link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
  color: inherit;
  padding: 8px 40px 8px 16px;
  cursor: pointer;
}

.teeth__link::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  border-top: 3.5px solid #f08714;
  border-right: 3.5px solid #f08714;
  border-radius: 2px;
  transition: transform 0.3s;
  list-style: none;
}

.teeth__link:hover .teeth__image img {
  transform: scale(1.1);
}

.teeth__link:hover .teeth__text {
  color: #f08714;
}

.teeth__image img {
  max-width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}

.teeth__text {
  transition: color 0.3s;
  width: 70%;
  padding-left: 6px;
}
/* =========================================================
   11) Calendar（フッター内）
========================================================= */

.calendar__wrap {
  max-width: 478px;
  position: relative;
}
.cal-white {
  background-color: #fff;
}
.cal-gray {
  background-color: #faf8f5;
}
.cal-btn-wrapper {
  cursor: pointer;
}
.calendar {
  padding-top: 24px;
  padding-right: clamp(20px, 4vw, 40px);
  padding-bottom: 36px;
  padding-left: clamp(20px, 4vw, 40px);
}

.calendar__table th,
.calendar__table td {
  padding: 14px 4px;
  border-bottom: 2px solid #e1e1e1;
  width: 64px;
  font-weight: 700;
  color: #5a5f66;
}
.calendar__table tr:last-child td {
  border-bottom: none;
}
.calendar__table td:first-child {
  white-space: nowrap;
  padding-left: 10px;
  text-align: left;
}
.mark--circle {
  color: #f08714;
}

.mark--cross {
  color: #5a5f66;
}

.mark--triangle {
  color: #ffc84b;
}
.mark--circle,
.mark--cross,
.mark--triangle {
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar__info {
  padding: 10px;
  font-size: 0.875rem;
  line-height: 130%;
  color: #5a5f66;
}

.calendar__date {
  margin-bottom: 4px;
}
.mark-flex {
  display: flex;
}

.cal-btn-inner {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px 20px;
  background: #ffc84b;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s;
  width: 100%;
}

@media (min-width: 768px) {
  .cal-btn-inner {
    border-radius: 10px 0px 0px 0px;
    width: 172px;
  }
}
.cal-btn-inner:hover {
  background: #f08714;
}
.cal-btn {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cal-btn-img {
  width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cal-btn-img-element {
  width: 14px;
}

.cal-btn-img-element path {
  stroke: #f08714;

  transition: stroke 0.3s ease;
}

.cal-btn-inner:hover .cal-btn-img-element path {
  stroke: #fff;
}
.icon-arrow path {
  stroke: '#FFC84B';
  transition: stroke 0.3s ease;
}
.map-button {
  max-height: 36px;
}
.icon-arrow {
  margin-left: 4px;
}
.map-button:hover .icon-arrow path {
  stroke: #fff;
}
.c-map {
  width: 100%;
  aspect-ratio: 16/9;
}
@media (min-width: 769px) {
  .footer__map {
    max-width: 478px;
  }
  .c-map {
    width: 478px;
    aspect-ratio: 0;
  }
}
.map-button {
  bottom: 0;
  right: 0;
  padding: 10px 20px;
  background: #f08714;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Zen Kaku Gothic New';
  font-weight: bold;
  line-height: 130%;
  color: #fff;
  transition: 0.2s;
  width: 100%;
}
@media (min-width: 769px) {
  .map-button {
    bottom: 0;
    right: 0;
    width: 172px;
    background: #f08714;
    border-radius: 10px 0px 0px 0px;
  }
}
.map-button:hover {
  background: #9b876e;
}
.nav__list-js {
  position: fixed;
  display: block;
  top: 62px;
  margin: auto;
  right: -100vw;
  width: 100vw;
  height: calc(100vh - 62px);
  background: #fff6e8;
  z-index: 999;
  overflow-y: scroll;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav__list-js.is-active {
  right: 0;
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 769px) {
  .nav__list-js .flex-md {
    justify-content: space-around;
  }
}
.nav-sp {
  justify-content: space-between;
  font-family: 'Zen Kaku Gothic New';
  font-size: 1rem;
  line-height: 130%;
  color: #5a5f66;
  display: block;
}
.nav-button-p-16 {
  padding: 0 16px;
}
.nav-sp--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.nav-sp::before {
  content: '';
  position: absolute;
  bottom: -9px;
  right: 0;
  width: 160px;
  height: 157px;
  background: url(../images/footer-logo.svg) no-repeat center/cover;
}
@media (min-width: 451px) and (max-width: 1024px) {
  .nav-sp::before {
    left: 56%;
    /* bottom: -9px; */
  }
}
.nav-sp__heading {
  font-family: 'Zen Kaku Gothic New';
  font-style: normal;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 130%;
  padding-left: 16px;
}
.nav-sp__heading::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-top: 3px solid #ff9933;
  border-right: 3px solid #ff9933;
}
.nav-sp__heading a {
  transition: 0.2s;
}
.nav-sp__heading:hover.nav-sp__heading a,
.nav-sp__item:hover.nav-sp__item a {
  color: #f08714;
}
.nav-sp__inner,
.nav-sp__inner--pt-m,
.nav-sp__list {
  padding: 32px 0;
}
.nav-sp__inner {
  line-height: 220%;
  border-bottom: 1px solid #ff9933;
}
.nav-sp__inner--pt-l {
  padding: 72px 0;
}
.nav-sp__list {
  border-bottom: 1px solid #ff9933;
}
.nav-sp__list:first-child {
  padding: 0 0 32px 0;
}
.nav-sp__item {
  padding-right: 16px;
  margin-bottom: 8px;
  line-height: 150%;
}

.nav-sp__item a {
  transition: 0.2s;
}
.max-width-50 {
  max-width: 50%;
}
.nav-sp-border-none {
  border: 0;
}

/* case */
.cases__items {
  border-bottom: 1px solid #e1e1e1;
}

.cases__dl {
  align-items: center;
  transition: 0.2s;
}
.cases__dl:hover {
  opacity: 0.6;
}
.cases__dl a:nth-child(2) {
  max-width: 100%;
}
.cases__category,
.cases__text {
  cursor: pointer;
  line-height: 130%;
}
.cases__category {
  display: inline-flex;
  justify-content: center;
  align-items: center;
 /* text-wrap: nowrap; */
  margin: 0 10px;
  padding: 0 5px;
  min-height: 28px;
  color: #fff;
  background: #f08714;
}

.cases__category a:first-child {
    color: #fff;
}


.cases__text {
  padding: 25px 0;
}
.pagination ul {
  display: flex;
}
.pagination ul li {
  width: 23px;
  height: 31px;
  border: 2px solid #f08714;
  border-radius: 2px;
  text-align: center;
  margin: 0 4px;
  line-height: 26px;
  color: #f08714;
}
.page-item.active {
  background-color: #f08714;
  color: #fff;
}
.container {
  justify-content: space-between;
}
.flex1 {
  flex: 1;
}
.m-a {
  margin: auto;
}
.category-list ul li {
  box-shadow: 0 0 0 1px #ffc84b;
  margin-bottom: 1px;
  width: 260px;
}
.category-list ul li a {
  display: flex;
  align-items: center;
  height: 45px;
  line-height: 130%;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
}
.category-list ul li a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-top: 3px solid #f08714;
  border-right: 3px solid #f08714;
  border-radius: 1px;
}

/* post */
.post__list {
  border-bottom: 1px solid #e1e1e1;
  transition: 0.2s;
}
.post__list:hover {
  opacity: 0.6;
}
.post__date {
  line-height: 130%;
  padding-left: 16px;
}
.post__title {
  display: flex;
  align-items: center;
  line-height: 130%;
  padding-left: 32px;
}
.post__list a {
  cursor: pointer;
  padding: 20px 0;
  width: 100%;
  display: flex;
}

@media (min-width: 768px) {
  .sidebar {
    margin-top: 72px;
  }
}
@media (min-width: 1025px) {
  .nav-sp__wrapper {
    border-bottom: none;
  }
  .nav-sp {
    display: flex;
  }
  .nav-sp-justify-sb {
    justify-content: space-between;
  }
  .nav-sp__heading::before {
    display: none;
  }
  .nav-sp__list {
    border-bottom: none;
  }
  .nav-sp__heading {
    padding-left: 0;
    transform: translateX(-1px);
  }
  .translate-x-8 {
    transform: translateX(8px);
  }
  .nav-sp::before {
    right: 0;
    bottom: 0;
  }
  .nav-sp--block {
    display: block;
  }
  .nav-sp--p-0 {
    padding: 0;
  }
  .nav-sp__inner {
    padding-top: 0;
    padding-bottom: 0;
    border: none;
  }
  .nav-sp__inner:first-child {
    padding: 0;
  }
  .nav-sp__inner.py-16 {
    padding: 0;
  }
  .max-width-50 {
    max-width: none;
  }
  .grid {
    display: block;
  }
  .v-line.v-line-y.mt-50 {
    margin-top: 0;
  }
  .f-nav-item {
    margin-bottom: 36px;
  }
  .m-a {
    margin: 0;
  }
}
.is-sp {
  display: block;
}
.is-sp-button {
  display: flex;
}
.is-pc,
.is-lg {
  display: none;
}
@media (min-width: 769px) {
  .is-pc {
    display: block;
  }
  .is-sp {
    display: none;
  }
  .is-sp-button {
    display: none;
  }
}
@media (min-width: 1025px) {
  .is-lg {
    display: block;
  }
  .is-md {
    display: none;
  }
}

.breadcrumb {
    padding-top: 200px;
    width: 100%;
    margin: 0 auto;
    text-align: right;
    padding-left: clamp(0.75rem, 4vw, 1.5rem);
    padding-right: clamp(0.75rem, 4vw, 1.5rem);
}

@media (min-width: 769px) {
.breadcrumb {
width: 1200px;
max-width:100%;
}
}


#breadcrumbs {
    color: #f08714;
}

#breadcrumbs span span {
    color: #5a5f66;
}

