@charset "utf-8";
h1 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.875rem;
}
h2 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 2rem;
  text-align: center;
}
.commonHead {
  text-align: center;
  margin-bottom: 2rem;
  font-size: clamp(1.875rem, 1.42rem + 2.27vw, 3.125rem);
}
.commonHead span:first-child {
  font-weight: bold;
}
.commonHead span:last-child {
  font-size: clamp(0.875rem, 0.757rem + 0.59vw, 1.125rem);
  display: block;
}
dt {
  font-weight: bold;
  font-size: 1.125rem;
}
dd {
  font-size: 1rem;
}
time {
  font-weight: bold;
  font-size: 0.9rem;
}
.SearchContents {
  background-color: #f6f6e9;
  border-radius: 10px;
  margin-bottom: 6rem;
  padding: 3rem 5rem;
}
.SearchContents.columntagSec {
  padding: 1.5rem 2.5rem;
  background: #f2f3f7;
}
.catWrap {
  border-bottom: 3px solid #fff;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.selectBox {
  display: flex;
  justify-content: center;
  font-weight: bold;
}
.selectWrap {
  position: relative;
  margin-right: 5rem;
}
.selectWrap::before,
.selectWrap::after {
  content: '';
  width: 10px;
  height: 2px;
  display: inline-block;
  border-radius: 10px;
  background: #3c3c3c;
  position: absolute;
  top: calc(50% - 4px);
  pointer-events: none;
}

.selectWrap::before {
  right: 22px;
  transform: rotate(-45deg);
}

.selectWrap::after {
  right: 28px;
  transform: rotate(45deg);
}
.selectBox select {
  appearance: none;
  min-width: 150px;
  padding: 1rem 2rem;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  background-color: #fff;
  font-size: 1em;
  cursor: pointer;
}

option {
  border: solid 2px red;
}
.selectBox button {
  background: #005792;
  padding: 1rem 1.5rem;
  color: #fff;
  border-radius: 30px;
  display: flex;
  align-items: center;
  cursor: pointer;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.16);
}
.selectBox button:hover {
  -webkit-animation: buttonHover 0.3s forwards;
  animation: buttonHover 0.3s forwards;
}
.selectBox button span:first-child {
  padding-right: 0.313rem;
}
.selectBox button span:last-child {
  display: flex;
}
.selectBox button span img {
  width: 15px;
  height: auto;
}
.tagWrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.tagWrap ul li {
  margin: 0 0.5rem 1rem;
}
.tagWrap ul li a {
  background-color: #fff;
  position: relative;
  font-size: clamp(0.625rem, 0.534rem + 0.45vw, 0.875rem);
  display: block;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  border: 2px solid #fff;
}
.tagWrap ul li a:hover {
  border: 2px solid #fd5f00;
  background: #fd5f0014;
}

.columntagSec .tagWrap ul li a:before {
  content: '#';
}

.articleSec > ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}
.articleSec > ul > li {
  width: 48%;
  display: flex;
}
.articleSec > ul > li a {
  display: block;
  width: 100%;
  background: #f2f3f7;
  border-radius: 10px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.16);
  margin-bottom: 2.5rem;
}

.articleSec > ul > li:last-child a {
  margin-bottom: 0rem;
}
.articleSec > ul > li a:hover {
  -webkit-animation: buttonHover 0.3s forwards;
  animation: buttonHover 0.3s forwards;
}
.catParts {
  background: #005792;
  border-radius: 10px 0;
  color: #fff;
  width: 30%;
  padding: 0.4rem 0;
  text-align: center;
}
.articleSec,
.columnSec,
.dentalClinicSec {
  margin-bottom: 8rem;
}
.articleSec > p {
  font-size: 1.2rem;
}
.articleSec dl {
  padding: 1.4rem;
}
.articleSec dl dt {
  border-bottom: 3px solid #fff;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.articleSec dl dd {
  font-size: 0.8rem;
}
.tagParts {
  padding: 0 1.4rem 1.4rem;
}
.tagParts ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.tagParts ul li {
  font-size: 0.8rem;
  border-radius: 20px;
  margin-left: 0.5rem;
  font-weight: bold;
  color: #005792;
}
.select {
  width: 225px;
  height: 40px;
  cursor: pointer;
  background-color: white;
  box-shadow: 0 2px 0 white;
  border-radius: 2px;
}

.select_expand {
  width: 0;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}

.select_expand::after {
  content: '\003E';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleY(1.75);
  color: #3e3e3e;
  font-size: 28px;
  pointer-events: none;
  z-index: 2;
  transition: all 250ms cubic-bezier(0.4, 0.25, 0.3, 1);
  opacity: 0.6;
}

.select_expand:hover::after {
  opacity: 1;
}

.select_expand:checked::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleX(-1) scaleY(1.75);
}

.select_expandLabel {
  display: block;
  width: 100%;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}

.select_close {
  display: none;
}

.select_closeLabel {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
}

.select_items {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 2px solid #2fb5d1;
  border-radius: 2px;
  padding-top: 40px;
}

.select_input {
  display: none;
}

.select_label {
  transition: all 250ms cubic-bezier(0.4, 0.25, 0.3, 1);
  display: block;
  height: 0;
  font-size: 1.2rem;
  line-height: 40px;
  overflow: hidden;
  color: #3e3e3e;
  background-color: #fff;
  cursor: pointer;
  padding-left: 20px;
}

.select_label-placeholder {
  height: 40px;
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.6;
  background-color: transparent;
}

.select_expand:checked + .select_closeLabel {
  display: block;
}

.select_expand:checked + .select_closeLabel + .select_options .select_label {
  height: 40px;
}

.select_options .select_label:hover {
  background-color: #f7f7f7;
}

.select_expand:checked + .select_closeLabel + .select_options + .select_expandLabel {
  display: none;
}

.select_input:checked + .select_label {
  height: 40px;
  margin-top: -40px;
}
.select_expand:checked + .select_closeLabel + .select_options .select_label {
  height: 40px;
}

.select_options .select_label:hover {
  background-color: #f7f7f7;
}

.select_expand:checked + .select_closeLabel + .select_options + .select_expandLabel {
  display: none;
}

.select_input:checked + .select_label {
  height: 40px;
  margin-top: -40px;
}
.popularSec {
  margin-bottom: 6rem;
}
.popularSec ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.5rem;
}
.popularSec ul li .detail {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}
.popularSec ul time {
  position: absolute;
  bottom: 0;
  right: 0;
}
.popularSec ul li a,
.columnSec ul li a {
  transition: 0.2s;
}
.popularSec ul li a:hover,
.columnSec ul li a:hover {
  opacity: 0.6;
}
.popularSec ul li .detail > .figure {
  border: 1px solid #707070;
  padding: 0.6rem;
  display: inline-flex;
  width: 100%;
}
.popularSec ul li .detail > .figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 700 / 380;
  object-fit: cover;
  vertical-align: middle;
}
.popularSec dl {
  margin-bottom: 2.5rem;
}
.popularSec dl dt {
  margin: 1rem 0 0.5rem;
}
.popularSec dl dt a {
  display: block;
}
.columnSec ul li .detail {
  display: flex;
  border-top: 2px solid #c7c7c7;
  padding: 2rem 0;
}
.columnSec ul li .detail .figure {
  border: 1px solid #707070;
  padding: 0.6rem;
  display: grid;
  margin: 0;
  width: 27%;
  align-self: start;
}
.columnSec ul li .detail img {
  width: 100%;
  aspect-ratio: 700 / 380;
  object-fit: cover;
  vertical-align: middle;
}
.columnSec ul li .detail > div {
  display: flex;
  flex-wrap: wrap;
  padding-left: 2.5rem;
  width: 73%;
}
.columnSec ul li .detail > div dl {
  width: 100%;
  margin-bottom: 8px;
}
.columnSec ul li .detail > div dt {
  margin-bottom: 1rem;
}
.columnSec ul li .detail > div dt a {
  display: block;
}
.columnSec ul li time {
  display: flex;
  justify-content: flex-start;
  align-items: start;
  margin-right: auto;
  line-height: 24px;
}
.newsSec {
  margin-bottom: 6rem;
}
.newsSec > ul li {
  padding: 20px 0;
  border-bottom: 1px solid #f2f3f7;
  display: flex;
  align-items: center;
}
.newsSec > ul li > div {
  display: flex;
  align-items: center;
}
.newsSec > ul li > div:first-child {
  font-size: 14px;
  font-weight: 700;
  display: flex;
}
.newsSec > ul li > div:first-child > div {
  background: #005792;
  border-radius: 10px;
  color: #fff;
  min-width: 110px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsSec > ul li time {
  min-width: 90px;
  margin: 0 10px;
}
.newsSec > ul li a:hover {
  opacity: 0.6;
}
.dentalClinicList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-bottom: -40px;
}
.dentalClinicList > li {
  width: 30%;
  margin-bottom: 40px;
}
.dentalClinicList::after {
  content: '';
  display: block;
  width: 30%;
  height: 0;
}
.dentalClinicList > li a {
  display: block;
  background: #f2f3f7;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  height: 100%;
}
.dentalClinicList > li a:hover {
  -webkit-animation: buttonHover 0.3s forwards;
  animation: buttonHover 0.3s forwards;
}
.dentalClinicList > li a figure {
  display: flex;
  border-radius: 10px 10px 0 0;
  aspect-ratio: 3 / 1.8;
  width: 100%;
  overflow: hidden;
  justify-content: center;
  align-items: center;
}
.dentalClinicList > li a figure img {
  object-fit: cover;
  margin: 0;
  max-width: unset;
  width: 100%;
  height: 100%;
}
.dentalClinicSec .clinicDetail {
  padding: 8px 16px 24px;
}
.dentalClinicSec .clinicDetail .prefectures {
  font-size: 14px;
  font-weight: 700;
  padding-left: 24px;
  background-image: url(../img/bxs_map.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: left;
  margin-bottom: 10px;
}
.dentalClinicSec .clinicDetail .title {
  font-size: 18px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px #005792 dashed;
  font-weight: 700;
  line-height: 1.25;
  min-height: calc(2em * 1.25 + 10px);
  display: flex;
  align-items: center;
}
.dentalClinicSec .clinicDetail .address {
  font-size: 14px;
  min-height: calc(3em * 1.6);
}
.dentalClinicSec .clinicDetail .menu dt {
  color: #005792;
  font-weight: 700;
  font-size: 14px;
  margin-top: 10px;
  line-height: 125%;
  margin-bottom: 5px;
}
.dentalClinicSec .clinicDetail .menu dd {
  font-size: 14px;
  line-height: 125%;
}
.floatBtn {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  height: 240px;
  justify-content: center;
  background: #cdddea;
}
.floatBtn .one,
.floatBtn .two {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
.popularSec .columnTagPickUpColumn {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 0.625rem;
  margin-top: 8px;
}
.popularSec .columnTagPickUpColumn li {
  border-radius: 20px;
  font-weight: bold;
  color: #005792;
  margin-bottom: 0;
}
.columnTagColumnList {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 8px;
}
.columnTagColumnList li {
  border-radius: 20px;
  font-weight: bold;
  color: #005792;
  line-height: 24px;
}

.not-kwbox {
  margin-top: 5rem;
}

.more {
  margin-top: 3.125rem;
}

@media screen and (min-width: 769px) {
  .articleSec > ul > li:nth-child(odd):nth-last-child(2) a {
    margin-bottom: 0rem;
  }
}

@media screen and (max-width: 768px) {
  dt {
    font-size: clamp(1.125rem, 0.886rem + 1.02vw, 1.375rem);
  }
  dd {
    font-size: clamp(1rem, 0.881rem + 0.51vw, 1.125rem);
  }
  .SearchContents,
  .SearchContents.columntagSec {
    background: #fff;
    padding: 0;
  }
  .catWrap {
    background-color: #f6f6e9;
    border-radius: 10px;
    padding: 2rem 1rem;
  }
  .selectBox {
    display: flex;
    justify-content: center;
    font-weight: bold;
  }
  .selectWrap {
    position: relative;
    margin-right: 1rem;
  }
  .selectBox select {
    appearance: none;
    min-width: 150px;
    padding: 1rem 2rem;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.16);
    border-radius: 10px;
    background-color: #fff;
    color: #333333;
    font-size: 1em;
    cursor: pointer;
  }
  option {
    border: solid 2px red;
  }
  .selectBox button {
    background: #005792;
    padding: 1rem 1.5rem;
    color: #fff;
    border-radius: 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  .selectBox button span:first-child {
    padding-right: 0.8rem;
  }
  .selectBox button span img {
    width: 15px;
    height: auto;
  }
  .tagWrap {
    padding: 2rem 0;
    border-radius: 10px;
    background: #f2f3f7;
  }
  .tagWrap ul li a {
    padding: 0.5rem 1rem;
    font-size: clamp(0.625rem, 0.148rem + 2.04vw, 1.125rem);
  }
  .articleSec > ul > li {
    width: 100%;
  }
  .catParts {
    font-size: clamp(1rem, 0.523rem + 2.04vw, 1.5rem);
    padding: 2% 0;
  }
  .articleSec dl dt {
    font-size: clamp(1rem, 0.404rem + 2.54vw, 1.625rem);
  }
  .tagParts ul li {
    font-size: clamp(0.75rem, 0.392rem + 1.53vw, 1.125rem);
  }
  .popularSec ul {
    display: block;
  }
  .popularSec ul li {
    margin-bottom: 2rem;
  }
  .popularSec dl {
    margin-bottom: 8px;
  }

  .popularSec ul time {
    position: relative;
  }
  .popularSec dl dt {
    margin-top: 0.5rem;
  }
  .columnSec ul li .detail {
    flex-wrap: wrap;
    border-top: none;
    padding: 0;
  }
  .columnSec ul li .detail .figure {
    width: 100%;
  }
  .columnSec ul li .detail > div {
    width: 100%;
    padding-left: 0;
    margin-bottom: 2rem;
  }
  .columnSec dl {
    margin-bottom: 2.5rem;
  }
  .columnSec dt {
    margin: 1rem 0 0.5rem;
  }

  .newsSec {
    margin-bottom: 2rem;
  }
  .newsSec > ul {
    max-width: 100%;
  }
  .newsSec > ul li {
    align-items: flex-start;
    flex-direction: column;
  }
  .newsSec > ul li a {
    margin: 20px 0 0 0;
    font-size: 14px;
  }
  .newsSec > ul li > div:first-child {
    width: 100%;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .newsSec > ul li > div:first-child > div {
    height: 24px;
  }
  .newsSec > ul li time {
    min-width: 90px;
    margin: 0;
  }
  .dentalClinicList > li {
    width: 100%;
  }
  .dentalClinicSec .clinicDetail .title {
    min-height: auto;
  }
  .dentalClinicSec .clinicDetail .address {
    min-height: auto;
  }

  .not-kwbox {
    margin-top: 1rem;
  }
}
