@charset "UTF-8";
/* ------------------------------------
// greeting
------------------------------------ */
#greeting {
  margin-bottom: 10rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.9vw;
}
#greeting .doctor {
  margin-top: 3rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #greeting {
    margin-bottom: 3rem;
    grid-template-columns: 1fr;
  }
}

/* ------------------------------------
// #profile
------------------------------------ */
#profile {
  margin-bottom: 10rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.9vw;
}
#profile > section {
  background: #FFF;
  border: 1px solid #C7C0BB;
  padding: 0 0 2.4vw 0;
}
#profile > section h3 {
  padding: 1rem;
  text-align: center;
  background: #87817C;
  color: #FFF;
  font-size: clamp(1.8rem, 1.8vw, 2.6rem);
  font-family: "Zen Old Mincho";
  letter-spacing: 0.1em;
  padding-left: -0.1em;
}
#profile > section ul {
  margin-top: 2.4vw;
  padding: 0 4.9vw;
}
@media screen and (max-width: 768px) {
  #profile {
    margin-bottom: 3rem;
    grid-template-columns: 1fr;
  }
  #profile > section ul {
    margin-top: 2.4vw;
    padding: 0 4.9vw;
  }
  #profile > section ul li {
    padding-left: 1em;
    text-indent: -1em;
  }
  #profile > section ul li::before {
    content: "・";
  }
}

/* ------------------------------------
// #gallery
------------------------------------ */
#gallery {
  margin-bottom: 10rem;
}
#gallery .gallery {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
#gallery .gallery .image {
  width: 60%;
  position: relative;
}
#gallery .gallery .image img {
  vertical-align: top;
}
#gallery .gallery .image .slide {
  position: relative;
}
#gallery .gallery .image .slide p {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 0.5rem;
}
#gallery .gallery .thumbs {
  width: 36.6%;
}
#gallery .gallery .thumbs .thumbs_parent {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7vw;
}
#gallery .gallery .thumbs .thumbs_parent .slide {
  aspect-ratio: 1;
  overflow: hidden;
  transition: 0.3s;
  position: relative;
}
#gallery .gallery .thumbs .thumbs_parent .slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  cursor: pointer;
}
#gallery .gallery .thumbs .thumbs_parent .slide img:hover {
  opacity: 0.6;
}
#gallery .gallery .thumbs .thumbs_parent .slide.current::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: solid 3px #6DB3D4;
}
#gallery .gallery .thumbs .thumbs_parent .slick-current .slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  border: solid 3px #D4906B;
}
#gallery .gallery .arrow {
  width: 40px;
  height: 40px;
  padding: 10px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: 0.3s;
}
#gallery .gallery .arrow:hover {
  opacity: 0.7;
}
#gallery .gallery .arrow span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
#gallery .gallery .arrow span::before, #gallery .gallery .arrow span::after {
  content: "";
  position: absolute;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
#gallery .gallery .arrow span::before {
  width: 100%;
  height: 3px;
}
#gallery .gallery .arrow span::after {
  width: 3px;
  height: 100%;
  right: 0;
}
#gallery .gallery .arrow.next {
  right: 20px;
}
#gallery .gallery .arrow.next span {
  transform: rotate(45deg);
}
#gallery .gallery .arrow.prev {
  left: 20px;
}
#gallery .gallery .arrow.prev span {
  transform: rotate(-135deg);
}

@media screen and (max-width: 768px) {
  #gallery {
    margin-bottom: 3rem;
  }
  #gallery .gallery {
    display: block;
    margin-bottom: 3rem;
  }
  #gallery .gallery .image {
    width: auto;
    margin-bottom: 3vw;
  }
  #gallery .gallery .image .slide p {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #E0DDDC;
    text-align: center;
    padding: 0.5rem;
  }
  #gallery .gallery .thumbs {
    width: auto;
    margin: 0 -2rem;
  }
  #gallery .gallery .thumbs .thumbs_parent {
    display: block;
  }
  #gallery .gallery .thumbs .thumbs_parent::after {
    display: none;
  }
  #gallery .gallery .thumbs .thumbs_parent .slide {
    width: 30vw !important;
    height: 30vw;
    margin: 0 1.5vw;
    border-radius: 1rem;
  }
  #gallery .gallery .arrow {
    width: 3rem;
    height: 3rem;
    padding: 0.8rem;
  }
  #gallery .gallery .arrow.next {
    right: 0.5rem;
  }
  #gallery .gallery .arrow.prev {
    left: 0.5rem;
  }
}
/* ------------------------------------
// #feature
------------------------------------ */
#feature {
  margin-bottom: 10rem;
}
#feature > section {
  margin-bottom: 10rem;
}
#feature > section h3 {
  font-size: clamp(2rem, 1.8vw, 2.6rem);
  font-family: "Zen Old Mincho";
  letter-spacing: 0.1em;
  padding-left: -0.1em;
  text-align: center;
  font-weight: 600;
  border-bottom: 1px solid #87817C;
  width: fit-content;
  margin: 0 auto 5rem;
}
#feature > section p {
  width: fit-content;
  margin: 0 auto 5rem;
}
#feature > section .photo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.2vw;
}
#feature > section .photo p {
  width: 100%;
  background: #E0DDDC;
  text-align: center;
  padding: 0.5rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #feature {
    margin-bottom: 3rem;
  }
  #feature > section {
    margin-bottom: 5rem;
  }
  #feature > section .photo {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  #feature > section .photo p {
    width: 100%;
    background: #E0DDDC;
    text-align: center;
    padding: 0.5rem;
    margin-bottom: 1rem;
  }
}

/* ------------------------------------
// #oralequipment
------------------------------------ */
#oralequipment {
  background: #FFF;
  padding: 6.9vw 4.2vw;
}
#oralequipment h3 {
  font-size: clamp(2rem, 2.4vw, 3.4rem);
  font-family: "Zen Old Mincho";
  letter-spacing: 0.1em;
  padding-left: -0.1em;
  text-align: center;
  font-weight: 600;
  border-bottom: 1px solid #87817C;
  width: fit-content;
  margin: 0 auto 5rem;
}
#oralequipment .text {
  width: fit-content;
  margin: 0 auto 5rem;
}
#oralequipment .text .btn .btn01 {
  width: 100%;
  justify-content: center;
  margin-top: 3rem;
  padding: 0.5rem 1rem;
}
#oralequipment .photo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.8vw;
}
#oralequipment .photo p {
  width: 100%;
  background: #E0DDDC;
  text-align: center;
  padding: 0.5rem;
  margin-bottom: 1rem;
}
#oralequipment .photo p span {
  display: inline-block;
}
#oralequipment .photo li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
}
@media screen and (max-width: 1024px) {
  #oralequipment .photo {
    gap: 1.4vw;
  }
  #oralequipment .photo p span {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  #oralequipment h3 {
    margin-bottom: 3rem;
  }
  #oralequipment .photo {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.8vw;
  }
}

/* ------------------------------------
// #forcustmer
------------------------------------ */
#forcustmer {
  margin-top: 10rem;
}
#forcustmer h3 {
  font-size: clamp(2rem, 1.8vw, 2.6rem);
  font-family: "Zen Old Mincho";
  letter-spacing: 0.1em;
  padding-left: -0.1em;
  text-align: center;
  font-weight: 600;
  border-bottom: 1px solid #87817C;
  width: fit-content;
  margin: 0 auto 5rem;
}
#forcustmer p {
  width: fit-content;
  margin: 0 auto 5rem;
}
#forcustmer dl {
  max-width: 1200px;
  margin: 0 auto;
  background: #FFF;
  padding: 3rem;
}
#forcustmer dl dt {
  border-bottom: 1px dotted #282828;
}
#forcustmer dl dt + dd {
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  #forcustmer dl {
    padding: 2rem 1rem;
  }
}