@charset "UTF-8";
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: 62.5%;
}

@media screen and (max-width: 768px) {
  .br_pc {
    display: none;
  }
}

@media screen and (min-width: 1441px) {
  .br_sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .br_sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .br_sp {
    display: none;
  }
}

.wide {
  width: 1200px;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .wide {
    width: 800px;
  }
}
@media screen and (max-width: 768px) {
  .wide {
    width: 350px;
  }
}

p {
  font-size: 1vw;
  line-height: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  p {
    font-size: 1.8vw;
    line-height: 4vw;
  }
}
@media screen and (max-width: 768px) {
  p {
    font-size: 3.4vw;
    line-height: 8vw;
  }
}

h1 {
  font-size: 3.3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h1 {
    font-size: 4.3vw;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 8vw;
  }
}

h2 {
  font-size: 2.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h2 {
    font-size: 3.3vw;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 6vw;
  }
}

h3 {
  font-size: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h3 {
    font-size: 3vw;
  }
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 5vw;
  }
}

h4 {
  font-size: 1.7vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h4 {
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 768px) {
  h4 {
    font-size: 4vw;
  }
}

h5 {
  font-size: 1.3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h5 {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  h5 {
    font-size: 3.5vw;
  }
}

.fade-in {
  opacity: 0;
  transition-duration: 1s;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 998;
}
.drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  background: #f0e9db;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  z-index: 999;
  overflow-y: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .drawer {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .drawer {
    width: 85%;
  }
	.mv, #lower{
		padding-top:65px !important;
	}
}
header{
	position:fixed !important;
	width:100% !important;
	z-index:999;
	top:0 !important;
}
.gnav {
  width: 100%;
  background: #fff;
  z-index: 1000;
}

.gnav.is-fixed {
  position: fixed;
  left: 0;
  width: 100%;
  animation: gnavFade .3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
}

@keyframes gnavFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mv, #lower{
	padding-top:100px;
}
.drawer.is-open {
  transform: translateX(0);
}
.drawer__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: #af8b4a;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.drawer__close::before, .drawer__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #fff;
}
.drawer__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.drawer__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.drawer__nav {
  padding: 80px 0 40px;
}
.drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.drawer__item {
  border-bottom: 1px solid #c9b89a;
}
.drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  text-decoration: none;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
}
.drawer__link--toggle .drawer__arrow {
  transform: scaleY(-1);
  transition: transform 0.25s ease;
}
.drawer__link--toggle.is-open .drawer__arrow {
  transform: scaleY(1);
}
.drawer__ja {
  font-family: "Hina Mincho", serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #6a5c42;
  line-height: 1.2;
}
.drawer__en {
  font-family: "Lora", serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #c9a64b;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 6px;
}
.drawer__arrow {
  width: 10px;
  height: 10px;
}
.drawer__submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #af8b4a;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.drawer__submenu.is-open {
  max-height: 600px;
  padding: 12px 0;
}
.drawer__submenu li a {
  display: block;
  padding: 10px 30px;
  font-family: "Hina Mincho", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  line-height: 1.4;
  transition: opacity 0.15s ease;
}
.drawer__submenu li a:hover {
  opacity: 0.75;
}

.gnav {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #e8e0d4;
}
@media screen and (max-width: 768px) {
  .gnav {
    display: none !important;
  }
}
.gnav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  height: 65px;
  margin: 0;
  padding: 0;
}
.gnav__sep {
  width: 1px;
  height: 36px;
  background: #c9b89a;
  flex-shrink: 0;
}
.gnav__item {
  position: relative;
  padding: 0 40px;
  height: 65px;
  display: flex;
  align-items: center;
}
.gnav__item--has-submenu:hover .gnav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.gnav__item--has-submenu:hover .gnav__arrow {
  transform: scaleY(1);
}
.gnav__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}
.gnav__link:hover {
  opacity: 0.75;
}
.gnav__link--has-arrow .gnav__en {
  display: flex;
  align-items: center;
  gap: 4px;
}
.gnav__ja {
  font-family: "Hina Mincho", serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #6a5c42;
}
.gnav__en {
  font-family: "Lora", serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: #c9a64b;
}
.gnav__arrow {
  width: 1vw;
  height: 1vw;
  transform: scaleY(-1);
  transition: transform 0.2s ease;
}
.gnav__submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 160px;
  background: #fff;
  border: 1px solid #e8e0d4;
  border-top: 2px solid #c9a64b;
  list-style: none;
  margin: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 100;
}
.gnav__submenu li {
  border-bottom: 1px solid #e8e0d4;
}
.gnav__submenu li:last-child {
  border-bottom: none;
}
.gnav__submenu li a {
  display: block;
  padding: 14px 20px;
  font-family: "Hina Mincho", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #6a5c42;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
  transition: background 0.15s ease, color 0.15s ease;
}
.gnav__submenu li a:hover {
  background: #f9f5ef;
  color: #c9a64b;
}

.header {
  width: 100%;
  background: #fff;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  height: 100px;
}
@media screen and (max-width: 768px) {
  .header__inner {
    height: 65px;
  }
}
.header__logo {
  flex-shrink: 0;
}
.header__logo a {
  display: block;
}
.header__logo img {
  height: 70px;
  width: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header__logo img {
    height: 50px;
  }
}
@media screen and (max-width: 768px) {
  .header__logo img {
    height: 45px;
  }
}
.header .header_contents {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
}
.header__hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #af8b4a;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header__hamburger {
    margin-right: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .header__hamburger {
    margin-right: 4vw;
  }
}
.header__hamburger img {
  width: 30px;
  height: 20px;
  display: block;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header__hamburger {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .header__hamburger {
    display: flex;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header__address, .header__cta {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .header__address, .header__cta {
    display: none !important;
  }
}
.header__address {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  flex-shrink: 0;
}
.header__address-icon {
  width: 12px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}
.header__address-text p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  color: #6a5c42;
  white-space: nowrap;
}
.header__address-text p + p {
  margin-top: 8px;
}
.header__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 100px;
  padding: 10px 30px;
  background: #e5aa42;
  text-decoration: none;
  flex-shrink: 0;
}
.header__cta-label {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  white-space: nowrap;
}
.header__cta-tel {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-family: "Lora", serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.2;
  color: #fff;
  white-space: nowrap;
}
.header__cta-tel img {
  width: 10px;
  height: 24px;
  transform: rotate(-15deg);
  flex-shrink: 0;
}

.mv {
  position: relative;
  width: 100%;
  height: 720px;
  overflow-x: hidden;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .mv {
    height: 50vw;
  }
}
@media screen and (max-width: 768px) {
  .mv {
    height: calc(100vh - 65px);
    overflow: hidden;
  }
}
.mv__slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.mv__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.mv__slide.is-active {
  opacity: 1;
}
.mv__slide picture {
  display: block;
  width: 100%;
  height: 100%;
}
.mv__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  display: block;
}
.mv__text {
  position: absolute;
  top: 40%;
  transform: translateY(-65%);
  right: 6vw;
  text-align: right;
  z-index: 2;
  pointer-events: none;
}
.mv__text p {
  font-family: "Hina Mincho", serif;
  font-size: 4.8rem;
  font-weight: 400;
  line-height: 1.6;
  color: #784424;
  text-shadow: 4px 4px 15px #fff;
  white-space: nowrap;
  margin: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .mv__text p {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 768px) {
  .mv__text {
    writing-mode: vertical-rl;
    right: 3vw;
    top: 13%;
    transform: none;
    text-align: left;
  }
  .mv__text p {
    font-size: 2.4rem;
    white-space: normal;
    line-height: 1.8;
  }
}
.mv__circles {
  position: absolute;
  left: 80px;
  bottom: 20px;
  display: flex;
  z-index: 3;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .mv__circles {
    left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .mv__circles {
    left: 50%;
    transform: translateX(-50%);
    bottom: 5vw;
  }
}
.mv__circle {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-right: -24px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .mv__circle {
    width: 150px;
    height: 150px;
  }
}
@media screen and (max-width: 768px) {
  .mv__circle {
    width: 115px;
    height: 115px;
    padding: 6px;
    margin-right: -14px;
  }
}
.mv__circle--dark {
  background: linear-gradient(124.039deg, rgb(175, 139, 74) 49.872%, rgb(166, 126, 52) 49.872%);
}
.mv__circle--light {
  background: linear-gradient(124.039deg, rgb(207, 176, 95) 49.872%, rgb(201, 166, 75) 49.872%);
}
.mv__circle:last-child {
  margin-right: 0;
}
.mv__circle-ring {
  position: absolute;
  top: 10px;
  left: 11px;
  width: 178px;
  height: 180px;
  pointer-events: none;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .mv__circle-ring {
    width: 130px;
    height: 130px;
  }
}
@media screen and (max-width: 768px) {
  .mv__circle-ring {
    top: 6px;
    left: 6px;
    width: 102px;
    height: 103px;
  }
}
.mv__circle-inner {
  text-align: center;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  color: #fff;
  position: relative;
  z-index: 1;
}
.mv__circle-inner p {
  margin: 0;
  line-height: 1.5;
  font-size: 0;
}
.mv__circle-lg {
  font-size: 3.6rem;
  line-height: 1.8;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .mv__circle-lg {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 768px) {
  .mv__circle-lg {
    font-size: 2.1rem;
    line-height: 1.4;
  }
}
.mv__circle-sm {
  font-size: 2.2rem;
  line-height: 1.4;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .mv__circle-sm {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .mv__circle-sm {
    font-size: 1.3rem;
  }
}

.sp-fixed-bar {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-fixed-bar {
    display: flex;
    position: fixed;
    bottom: 4vw;
    left: 0;
    width: 100%;
    height: 40px;
    z-index: 500;
  }
}
.sp-fixed-bar__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  height: 100%;
  background: #e5aa42;
  text-decoration: none;
  padding: 0 12px;
  margin: 1vw;
}
.sp-fixed-bar__tel-icon {
  width: 3vw;
  height: 8vw;
  transform: rotate(-15deg);
  flex-shrink: 0;
}
.sp-fixed-bar__tel-text {
  display: flex;
  flex-direction: column;
}
.sp-fixed-bar__tel-label {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
}
.sp-fixed-bar__tel-num {
  font-family: "Lora", serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
}
.sp-fixed-bar__access {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 150px;
  height: 100%;
  background: #6a5c42;
  text-decoration: none;
  padding: 0 16px;
  margin: 1vw;
}
.sp-fixed-bar__access img {
  width: 8vw;
  height: 8vw;
  flex-shrink: 0;
}
.sp-fixed-bar__access span {
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
  line-height: 1.2;
}

.top-info {
  position: relative;
  background: #f0e9db;
  padding: 60px 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top-info {
    padding: 40px 0;
  }
}
.top-info__bg-left {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: auto;
  opacity: 0.4;
  pointer-events: none;
}
.top-info__bg-right {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
  opacity: 0.4;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .top-info__bg-right {
    display: none;
  }
}
.top-info__bg-sp-top {
  display: none;
}
@media screen and (max-width: 768px) {
  .top-info__bg-sp-top {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    pointer-events: none;
  }
}
.top-info__bg-sp-bottom {
  display: none;
}
@media screen and (max-width: 768px) {
  .top-info__bg-sp-bottom {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    pointer-events: none;
  }
}
.top-info__inner {
  width: 80%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .top-info__inner {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  .top-info__inner {
    flex-direction: column;
    padding: 0 20px;
    gap: 40px;
    width: 100%;
  }
}
.top-info__col {
  flex: 1;
  min-width: 0;
  padding: 0 40px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .top-info__col {
    padding: 10px;
  }
}
@media screen and (max-width: 768px) {
  .top-info__col {
    padding: 0;
    width: 100%;
  }
}
.top-info__divider {
  width: 1px;
  background: #c9b89a;
  flex-shrink: 0;
  align-self: stretch;
}
@media screen and (max-width: 768px) {
  .top-info__divider {
    display: none;
  }
}
.top-info__heading {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
}
.top-info__heading-en {
  font-family: "Lora", serif;
  font-size: 4rem;
  font-weight: 400;
  color: #af8b4a;
  line-height: 1.2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .top-info__heading-en {
    font-size: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .top-info__heading-en {
    font-size: 2.8rem;
  }
}
.top-info__heading-ja {
  font-family: "Hina Mincho", serif;
  font-size: 2rem;
  font-weight: 400;
  color: #6a5c42;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .top-info__heading-ja {
    font-size: 1.6rem;
  }
}
.top-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
  height: 18vw;
  overflow: scroll;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .top-info ul {
    height: 42vw;
  }
}
@media screen and (max-width: 768px) {
  .top-info ul {
    height: 80vw;
  }
}
.top-info ul a {
  text-decoration: none;
}
.top-info .outline {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 14px 0;
}
@media screen and (max-width: 768px) {
  .top-info .outline {
    flex-direction: column;
    gap: 4px;
  }
}
.top-info .date {
  font-family: "Lora", serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #6a5c42;
  line-height: 1.2;
  flex-shrink: 0;
  white-space: nowrap;
}
.top-info .title {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #6a5c42;
  text-decoration: none;
  line-height: 1.6;
}
.top-info .title:hover {
  opacity: 0.7;
}

.concept {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .concept {
    padding: 50px 0;
  }
}
.concept {
  background-image: url("./img/group-582.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .concept {
    background-position: top;
  }
}
.concept__inner {
  width: 90%;
  margin-left: auto;
  margin-right: 0;
  position: relative;
  z-index: 1;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .concept__inner {
    margin: auto;
    padding: 0 30px;
  }
}
@media screen and (max-width: 768px) {
  .concept__inner {
    width: 95%;
    margin: auto;
  }
}
.concept__heading {
  display: flex;
  align-items: baseline;
  gap: 24px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .concept__heading {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
  }
}
.concept__heading-en {
  font-family: "Lora", serif;
  font-size: 6.4rem;
  font-weight: 400;
  color: #6a5c42;
  letter-spacing: 0.1em;
  line-height: 1.2;
  white-space: nowrap;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .concept__heading-en {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 768px) {
  .concept__heading-en {
    font-size: 3.2rem;
  }
}
.concept__heading-first {
  color: #af8b4a;
}
.concept__heading-ja {
  font-family: "Hina Mincho", serif;
  font-size: 2rem;
  font-weight: 400;
  color: #6a5c42;
  line-height: 1.2;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .concept__heading-ja {
    font-size: 1.6rem;
  }
}
.concept__body {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 80px;
  text-align: start;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .concept__body {
    flex-direction: column-reverse;
    gap: 40px;
    margin-bottom: 4vw;
  }
}
@media screen and (max-width: 768px) {
  .concept__body {
    flex-direction: column-reverse;
    gap: 40px;
    margin-bottom: 8vw;
  }
}
.concept__text {
  flex: 1;
  min-width: 0;
  width: 50%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .concept__text {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .concept__text {
    width: 100%;
  }
}
.concept__title {
  font-family: "Hina Mincho", serif;
  font-size: 3.6rem;
  font-weight: 400;
  color: #6a5c42;
  line-height: 1.6;
  margin-bottom: 16px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .concept__title {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 768px) {
  .concept__title {
    font-size: 2.4rem;
  }
}
.concept__sub {
  font-family: "Lora", serif;
  font-size: 2rem;
  font-weight: 400;
  color: #c9a64b;
  line-height: 1.4;
  margin-bottom: 24px;
  font-style: italic;
}
@media screen and (max-width: 768px) {
  .concept__sub {
    font-size: 1.6rem;
  }
}
.concept__desc {
  margin-bottom: 40px;
}
.concept__desc p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #6a5c42;
  line-height: 2;
}
.concept__desc p + p {
  margin-top: 16px;
}
.concept__btn {
  display: inline-flex;
  align-items: center;
  border: 1px solid #6a5c42;
  padding: 14px 32px;
  font-family: "Hina Mincho", serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #6a5c42;
  background-color: #E5AA42;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: opacity 0.2s ease;
  margin-right: 10%;
}
.concept__btn:hover {
  opacity: 0.7;
}
.concept__photo-wrap {
  position: relative;
  width: 50%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .concept__photo-wrap {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .concept__photo-wrap {
    flex: none;
    width: 100%;
    padding-left: 0;
    padding-bottom: 14px;
  }
}
.concept__photo {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.concept__photo-border {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  right: 14px;
  bottom: 0;
  width: 95%;
  height: 90%;
  border: 2px solid #fff;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .concept__photo-border {
    top: 47.5%;
  }
}
.concept__photo-triangle {
  position: absolute;
  top: 0;
  left: 0;
  width: 8vw;
  height: 8vw;
  z-index: 2;
  pointer-events: none;
  transform: rotate(90deg);
}

.feature__header {
  position: relative;
  width: 100%;
  background: #fff;
  aspect-ratio: 1440/260;
  overflow: hidden;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .feature__header {
    aspect-ratio: 1024/200;
  }
}
@media screen and (max-width: 768px) {
  .feature__header {
    aspect-ratio: 375/140;
  }
}
.feature__header-shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  transform: scale(-1, 1);
}
.feature__header-inner {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  white-space: nowrap;
  z-index: 2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .feature__header-inner {
    top: 35%;
  }
}
@media screen and (max-width: 768px) {
  .feature__header-inner {
    top: 35%;
  }
}
.feature__header-en {
  font-family: "Lora", serif;
  font-size: 11rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 1.1rem;
  line-height: 1.2;
  margin: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .feature__header-en {
    font-size: 8rem;
    letter-spacing: 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  .feature__header-en {
    font-size: 5rem;
    letter-spacing: 0.5rem;
  }
}
.feature__header-ja {
  font-family: "Hina Mincho", serif;
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin: 6px 0 0;
}
@media screen and (max-width: 768px) {
  .feature__header-ja {
    font-size: 1.4rem;
  }
}
.feature__body {
  position: relative;
}
.feature__diag-wrap {
  position: relative;
  overflow: hidden;
}
.feature__diag-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #decfa8;
  clip-path: polygon(0 0, 100% 43%, 100% 100%, 0 43%);
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .feature__diag-wrap::before {
    top: 20%;
    height: 60%;
    clip-path: polygon(0 0, 100% 32%, 100% 100%, -54% 19%);
  }
}
.feature__diag-wrap--rev::before {
  top: 25%;
  clip-path: polygon(100% 0, 0 43%, 0 100%, 100% 43%);
}
@media screen and (max-width: 768px) {
  .feature__diag-wrap--rev::before {
    top: 35%;
    clip-path: polygon(100% 0, 0 32%, 0 100%, 154% 19%);
  }
}
.feature__item {
  display: flex;
  align-items: stretch;
  min-height: 500px;
  position: relative;
  margin: 4vw 0;
  z-index: 1;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .feature__item {
    min-height: 400px;
  }
}
@media screen and (max-width: 768px) {
  .feature__item {
    flex-direction: column;
    min-height: auto;
  }
}
.feature__item--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .feature__item--reverse {
    flex-direction: column;
  }
}
.feature__item--reverse .feature__content {
  flex-flow: column !important;
}
.feature__photo-wrap {
  position: relative;
  width: 50%;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .feature__photo-wrap {
    width: 95%;
    margin: auto;
    height: 60vw;
  }
}
.feature__photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.feature__photo-border {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 88%;
  border: 2px solid #fff;
  pointer-events: none;
  z-index: 2;
}
.feature__photo-triangle {
  position: absolute;
  top: 0;
  left: 0;
  width: 8vw;
  height: 8vw;
  pointer-events: none;
  transform: rotate(90deg);
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .feature__photo-triangle {
    width: 14vw;
    height: 14vw;
  }
}
.feature__content {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  flex-flow: column-reverse;
  padding: 60px 40px;
  overflow: hidden;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .feature__content {
    padding: 40px 24px;
  }
}
@media screen and (max-width: 768px) {
  .feature__content {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 20px;
  }
}
.feature__stripe {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  opacity: 0.4;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .feature__stripe {
    height: 75%;
  }
}
.feature__stripe--flip {
  right: auto;
  left: 0;
  transform: scaleX(-1);
}
.feature__text {
  flex: 1;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .feature__text {
    width: 100%;
  }
}
.feature__title {
  font-family: "Hina Mincho", serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: #6a5c42;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .feature__title {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  .feature__title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 14px;
  }
}
.feature__desc {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #6a5c42;
  line-height: 2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .feature__desc {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .feature__desc {
    font-size: 1.4rem;
  }
}
.feature__label {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 20px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .feature__label {
    margin-left: 12px;
  }
}
@media screen and (max-width: 768px) {
  .feature__label {
    margin: 0 0 20px;
    align-self: center;
    order: -1;
    text-align: center;
  }
}
.feature__item--reverse .feature__label {
  margin-left: 0;
  margin-right: 20px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .feature__item--reverse .feature__label {
    margin-right: 12px;
  }
}
@media screen and (max-width: 768px) {
  .feature__item--reverse .feature__label {
    margin: 0 0 20px;
  }
}
.feature__label-en {
  writing-mode: vertical-rl;
  font-family: "Lora", serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: #bc9e67;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .feature__label-en {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .feature__label-en {
    font-size: 1.6rem;
  }
}
.feature__label-num {
  font-family: "Lora", serif;
  font-size: 11rem;
  font-weight: 400;
  color: #e5aa42;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .feature__label-num {
    font-size: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .feature__label-num {
    font-size: 7rem;
  }
}
.feature__item--dark {
  flex-direction: column;
  align-items: stretch;
  min-height: auto;
  background: url("./img/feature03_bg.png") center/cover no-repeat;
  background-color: #6a5c42;
}
.feature__dark-head {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 19.4% 50px;
  padding-bottom: 16vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .feature__dark-head {
    padding: 50px 8% 40px;
    padding-bottom: 16vw;
  }
}
@media screen and (max-width: 768px) {
  .feature__dark-head {
    padding: 40px 20px 30px;
  }
}
.feature__dark-head .feature__label {
  margin: 0 0 30px;
}
@media screen and (max-width: 768px) {
  .feature__dark-head .feature__label {
    margin: 0 0 20px;
    order: 0;
    align-self: center;
  }
}
.feature__dark-head .feature__title {
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .feature__dark-head .feature__title {
    text-align: center;
  }
}
.feature__dark-head .feature__desc {
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
  width: 100%;
}
.feature__dark-photos {
  display: flex;
  padding: 0 5.6%;
  gap: 5.6%;
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translate(-50%, 0);
  width: 90%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .feature__dark-photos {
    padding: 0 4%;
    gap: 4%;
  }
}
@media screen and (max-width: 768px) {
  .feature__dark-photos {
    padding: 0 20px;
    gap: 16px;
    position: static;
    transform: translate(0, 0);
    flex-flow: column;
    padding-bottom: 8vw;
  }
}
.feature__dark-photos .feature__photo-wrap {
  flex: 1;
  height: 27.8vw;
  margin: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .feature__dark-photos .feature__photo-wrap {
    height: 30vw;
  }
}
@media screen and (max-width: 768px) {
  .feature__dark-photos .feature__photo-wrap {
    height: 55vw;
    width: 100%;
    flex: 0 0 100%;
  }
}
.feature__equipment {
  display: flex;
  gap: 16px;
  position: relative;
  height: 100%;
  margin: 8vw;
  margin-top: 24px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .feature__equipment {
    gap: 8px;
  }
}
@media screen and (max-width: 768px) {
  .feature__equipment {
    gap: 8px;
  }
}
.feature .feature__item04 {
  margin-top: 24vw;
  height: 50vw;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .feature .feature__item04 {
    height: 230vw;
    margin-bottom: 8vw;
  }
}
.feature .feature__item04 .feature__photo-wrap {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .feature .feature__item04 .feature__photo-wrap {
    height: 50%;
  }
}
.feature__equip-item {
  flex: 1;
  min-width: 0;
  width: 60%;
}
.feature__equip-item:first-child {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.feature__equip-item:first-child .feature__badge {
  bottom: 50%;
  right: -35%;
  z-index: 50;
}
@media screen and (max-width: 768px) {
  .feature__equip-item:first-child .feature__badge {
    bottom: 60%;
  }
}
.feature__equip-item:nth-child(2) {
  position: absolute;
  right: 0;
  top: 30%;
  z-index: 20;
}
.feature__equip-item:nth-child(2) .feature__badge {
  bottom: -25%;
  right: -35%;
  z-index: 50;
}
@media screen and (max-width: 768px) {
  .feature__equip-item:nth-child(2) .feature__badge {
    right: -25%;
  }
}
.feature__equip-item:last-child {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 30;
}
.feature__equip-item:last-child .feature__badge {
  bottom: -25%;
  right: 50%;
  z-index: 50;
}
@media screen and (max-width: 768px) {
  .feature__equip-item:last-child .feature__badge {
    bottom: -20%;
    right: 55%;
  }
}
.feature__equip-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: visible;
}
.feature__equip-photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.feature__equip-border {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 88%;
  border: 2px solid #fff;
  pointer-events: none;
  z-index: 2;
}
.feature__badge {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 15vw;
  height: 15vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .feature__badge {
    width: 18vw;
    height: 18vw;
    bottom: -8px;
    right: -8px;
  }
}
@media screen and (max-width: 768px) {
  .feature__badge {
    width: 28vw;
    height: 28vw;
    bottom: -8px;
    right: -8px;
  }
}
.feature__badge-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 1;
  padding: 16%;
  box-sizing: border-box;
}
.feature__transition {
  display: block;
  width: 100%;
  height: auto;
  transform: rotate(180deg) scale(-1, 1);
}

.med-head {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #fff;
  aspect-ratio: 1440/260;
  overflow: hidden;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .med-head {
    aspect-ratio: 1024/200;
  }
}
@media screen and (max-width: 768px) {
  .med-head {
    aspect-ratio: 375/140;
  }
}
.med-head__side {
  flex: 1;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  min-width: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .med-head__side--left {
    -o-object-position: right;
       object-position: right;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .med-head__side--right {
    -o-object-position: left;
       object-position: left;
  }
}
.med-head__content {
  flex-shrink: 0;
  text-align: center;
  white-space: nowrap;
  padding: 0 2vw;
}
.med-head__en {
  font-family: "Lora", serif;
  font-size: 11rem;
  font-weight: 400;
  color: #bc9e67;
  letter-spacing: 1.1rem;
  line-height: 1.2;
  margin: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .med-head__en {
    font-size: 8rem;
    letter-spacing: 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  .med-head__en {
    font-size: 5rem;
    letter-spacing: 0.5rem;
  }
}
.med-head__ja {
  font-family: "Hina Mincho", serif;
  font-size: 2rem;
  font-weight: 400;
  color: #bc9e67;
  line-height: 1.2;
  margin: 6px 0 0;
}
@media screen and (max-width: 768px) {
  .med-head__ja {
    font-size: 1.4rem;
  }
}

.vision01 {
  position: relative;
  width: 100%;
  aspect-ratio: 1440/560;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .vision01 {
    aspect-ratio: 1024/360;
  }
}
@media screen and (max-width: 768px) {
  .vision01 {
    aspect-ratio: 375/380;
  }
}
.vision01__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.vision01__overlay {
  position: absolute;
  inset: 0;
  background: rgba(154, 154, 154, 0.25);
}
.vision01__texts {
  position: absolute;
  top: 30%;
  left: 45.6%;
  transform: translateY(-50%);
  display: flex;
  gap: 30px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .vision01__texts {
    left: 42%;
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .vision01__texts {
    left: 50%;
    transform: translate(-50%, -50%);
    gap: 14px;
  }
}
.vision01__band {
  background: #f8f8f8;
  padding: 15px;
  writing-mode: vertical-rl;
  font-family: "Hina Mincho", serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: #6a5c42;
  line-height: 1.1;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .vision01__band {
    font-size: 2.2rem;
    padding: 12px;
  }
}
@media screen and (max-width: 768px) {
  .vision01__band {
    font-size: 1.8rem;
    padding: 10px;
  }
}
.vision01__band:last-child {
  height: 38%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .vision01__band:last-child {
    height: 22%;
  }
}
@media screen and (max-width: 768px) {
  .vision01__band:last-child {
    height: 32%;
  }
}

.implant-section {
  display: flex;
  width: 100%;
  height: 40vw;
  overflow: hidden;
  position: relative;
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .implant-section {
    min-height: 240px;
    height: 50vw;
  }
}
@media screen and (max-width: 768px) {
  .implant-section {
    flex-direction: column;
    min-height: auto;
    height: auto;
    margin-bottom: 8vw;
  }
}
.implant-section:before {
  position: absolute;
  content: "";
  width: 98%;
  height: 95%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-top: 1px solid #6A5C42;
  border-left: 1px solid #6A5C42;
  z-index: 10;
}
.implant-section__photo-side {
  position: absolute;
  width: 50%;
  height: 40vw;
  flex-shrink: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .implant-section__photo-side {
    width: 50%;
    height: 50vw;
  }
}
@media screen and (max-width: 768px) {
  .implant-section__photo-side {
    width: 100%;
    height: auto;
  }
}
.implant-section__logo {
  position: absolute;
  top: 4vw;
  left: 2vw;
  width: 14vw;
  height: auto;
  z-index: 2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .implant-section__logo {
    width: 90px;
    top: 14px;
    left: 14px;
  }
}
@media screen and (max-width: 768px) {
  .implant-section__logo {
    width: 80px;
    top: 12px;
    left: 12px;
  }
}
.implant-section__photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  -webkit-mask-image: linear-gradient(to right, black 70%, transparent 95%);
  mask-image: linear-gradient(to right, black 70%, transparent 95%);
}
@media screen and (max-width: 768px) {
  .implant-section__photo {
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  }
}
.implant-section__content {
  flex: 1;
  background: linear-gradient(127.918deg, rgb(247, 225, 166) 77.558%, rgb(244, 214, 139) 77.558%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 40px 60px 40px 30px;
  gap: 20px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .implant-section__content {
    padding: 30px 40px 30px 20px;
    gap: 14px;
  }
}
@media screen and (max-width: 768px) {
  .implant-section__content {
    padding: 30px 20px;
    align-items: stretch;
    gap: 14px;
    padding-top: 107vw;
  }
}
.implant-section__title {
  font-family: "Hina Mincho", serif;
  font-size: 4rem;
  font-weight: 400;
  color: #6a5c42;
  text-align: center;
  letter-spacing: 0.4rem;
  line-height: 1.6;
  margin: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .implant-section__title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .implant-section__title {
    font-size: 2.8rem;
  }
}
.implant-section__subtitle-box {
  background: #fff;
  padding: 10px 30px;
}
@media screen and (max-width: 768px) {
  .implant-section__subtitle-box {
    padding: 10px 16px;
  }
}
.implant-section__subtitle-box p {
  font-family: "Hina Mincho", serif;
  font-size: 2rem;
  font-weight: 400;
  color: #6a5c42;
  line-height: 1.6;
  white-space: nowrap;
  margin: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .implant-section__subtitle-box p {
    font-size: 1.6rem;
    white-space: normal;
  }
}
@media screen and (max-width: 768px) {
  .implant-section__subtitle-box p {
    font-size: 1.4rem;
    white-space: normal;
  }
}
.implant-section__desc {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #6a5c42;
  line-height: 2;
  margin: 0;
  text-align: left;
  width: 40%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .implant-section__desc {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .implant-section__desc {
    font-size: 1.4rem;
    width: 100%;
  }
}
.implant-section__btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #6a5c42;
  padding: 10px 10px 10px 60px;
  gap: 60px;
  text-decoration: none;
  transition: opacity 0.2s ease;
	z-index:30;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .implant-section__btn {
    gap: 40px;
    padding: 10px 10px 10px 40px;
  }
}
@media screen and (max-width: 768px) {
  .implant-section__btn {
    width: 100%;
    justify-content: space-between;
    gap: 0;
    padding: 10px 16px;
  }
}
.implant-section__btn:hover {
  opacity: 0.7;
}
.implant-section__btn span {
  font-family: "Hina Mincho", serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #6a5c42;
  line-height: 1.2;
  white-space: nowrap;
}
.implant-section__btn img {
  width: 30px;
  height: 1px;
  display: block;
  flex-shrink: 0;
}

.ceramic-section {
  display: flex;
  width: 100%;
  height: 40vw;
  overflow: hidden;
  position: relative;
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .ceramic-section {
    min-height: 240px;
    height: 50vw;
  }
}
@media screen and (max-width: 768px) {
  .ceramic-section {
    flex-direction: column;
    min-height: auto;
    height: auto;
    margin-bottom: 8vw;
  }
}
.ceramic-section:before {
  position: absolute;
  content: "";
  width: 98%;
  height: 95%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-top: 1px solid #6A5C42;
  border-right: 1px solid #6A5C42;
  z-index: 10;
}
.ceramic-section__photo-side {
  position: absolute;
  width: 55%;
  height: 40vw;
  flex-shrink: 0;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .ceramic-section__photo-side {
    width: 50%;
    height: 50vw;
  }
}
@media screen and (max-width: 768px) {
  .ceramic-section__photo-side {
    width: 100%;
    top: 0;
    height: auto;
    transform: translate(0, 0%);
  }
}
.ceramic-section__photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .ceramic-section__photo {
    -webkit-mask-image: linear-gradient(to left, black 70%, transparent 95%);
    mask-image: linear-gradient(to left, black 70%, transparent 95%);
  }
}
@media screen and (max-width: 768px) {
  .ceramic-section__photo {
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  }
}
.ceramic-section__content {
  flex: 1;
  background: linear-gradient(-127.918deg, #ECCC95 77.558%, #EAC483 77.558%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 60px 40px 30px;
  gap: 20px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .ceramic-section__content {
    padding: 30px 40px 30px 20px;
    gap: 14px;
  }
}
@media screen and (max-width: 768px) {
  .ceramic-section__content {
    padding: 30px 20px;
    align-items: stretch;
    gap: 14px;
    padding-top: 85vw;
  }
}
.ceramic-section__title {
  font-family: "Hina Mincho", serif;
  font-size: 4rem;
  font-weight: 400;
  color: #6a5c42;
  text-align: center;
  letter-spacing: 0.4rem;
  line-height: 1.6;
  margin: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .ceramic-section__title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .ceramic-section__title {
    font-size: 2.8rem;
  }
}
.ceramic-section__subtitle-box {
  background: #fff;
  padding: 10px 30px;
}
@media screen and (max-width: 768px) {
  .ceramic-section__subtitle-box {
    padding: 10px 16px;
  }
}
.ceramic-section__subtitle-box p {
  font-family: "Hina Mincho", serif;
  font-size: 2rem;
  font-weight: 400;
  color: #6a5c42;
  line-height: 1.6;
  white-space: nowrap;
  margin: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .ceramic-section__subtitle-box p {
    font-size: 1.6rem;
    white-space: normal;
  }
}
@media screen and (max-width: 768px) {
  .ceramic-section__subtitle-box p {
    font-size: 1.4rem;
    white-space: normal;
  }
}
.ceramic-section__desc {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #6a5c42;
  line-height: 2;
  margin: 0;
  text-align: left;
  width: 40%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .ceramic-section__desc {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .ceramic-section__desc {
    font-size: 1.4rem;
    width: 100%;
  }
}
.ceramic-section__btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #6a5c42;
  padding: 10px 10px 10px 60px;
  gap: 60px;
  text-decoration: none;
  transition: opacity 0.2s ease;
	z-index:30;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .ceramic-section__btn {
    gap: 40px;
    padding: 10px 10px 10px 40px;
  }
}
@media screen and (max-width: 768px) {
  .ceramic-section__btn {
    width: 100%;
    justify-content: space-between;
    gap: 0;
    padding: 10px 16px;
  }
}
.ceramic-section__btn:hover {
  opacity: 0.7;
}
.ceramic-section__btn span {
  font-family: "Hina Mincho", serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #6a5c42;
  line-height: 1.2;
  white-space: nowrap;
}
.ceramic-section__btn img {
  width: 30px;
  height: 1px;
  display: block;
  flex-shrink: 0;
}

.mouthpiece-section {
  display: flex;
  width: 100%;
  height: 40vw;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .mouthpiece-section {
    min-height: 240px;
    height: 60vw;
  }
}
@media screen and (max-width: 768px) {
  .mouthpiece-section {
    flex-direction: column;
    min-height: auto;
    height: auto;
  }
}
.mouthpiece-section:before {
  position: absolute;
  content: "";
  width: 98%;
  height: 95%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-top: 1px solid #6A5C42;
  border-left: 1px solid #6A5C42;
  z-index: 10;
}
.mouthpiece-section__photo-side {
  position: absolute;
  width: 50%;
  height: 40vw;
  flex-shrink: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .mouthpiece-section__photo-side {
    width: 50%;
    height: 60vw;
  }
}
@media screen and (max-width: 768px) {
  .mouthpiece-section__photo-side {
    width: 100%;
    height: auto;
  }
}
.mouthpiece-section__photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  -webkit-mask-image: linear-gradient(to right, black 70%, transparent 95%);
  mask-image: linear-gradient(to right, black 70%, transparent 95%);
}
@media screen and (max-width: 768px) {
  .mouthpiece-section__photo {
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  }
}
.mouthpiece-section__content {
  flex: 1;
  background: linear-gradient(127.918deg, #E8BD9A 77.558%, #D9AD89 77.558%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 40px 60px 40px 30px;
  gap: 20px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .mouthpiece-section__content {
    padding: 30px 40px 30px 20px;
    gap: 14px;
  }
}
@media screen and (max-width: 768px) {
  .mouthpiece-section__content {
    padding: 30px 20px;
    align-items: stretch;
    gap: 14px;
    padding-top: 90vw;
  }
}
.mouthpiece-section__title {
  font-family: "Hina Mincho", serif;
  font-size: 4rem;
  font-weight: 400;
  color: #6a5c42;
  text-align: center;
  letter-spacing: 0.4rem;
  line-height: 1.6;
  margin: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .mouthpiece-section__title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .mouthpiece-section__title {
    font-size: 2.8rem;
  }
}
.mouthpiece-section__subtitle-box {
  background: #fff;
  padding: 10px 30px;
}
@media screen and (max-width: 768px) {
  .mouthpiece-section__subtitle-box {
    padding: 10px 16px;
  }
}
.mouthpiece-section__subtitle-box p {
  font-family: "Hina Mincho", serif;
  font-size: 2rem;
  font-weight: 400;
  color: #6a5c42;
  line-height: 1.6;
  white-space: nowrap;
  margin: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .mouthpiece-section__subtitle-box p {
    font-size: 1.6rem;
    white-space: normal;
  }
}
@media screen and (max-width: 768px) {
  .mouthpiece-section__subtitle-box p {
    font-size: 1.4rem;
    white-space: normal;
  }
}
.mouthpiece-section__desc {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #6a5c42;
  line-height: 2;
  margin: 0;
  text-align: left;
  width: 40%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .mouthpiece-section__desc {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .mouthpiece-section__desc {
    font-size: 1.4rem;
    width: 100%;
  }
}
.mouthpiece-section__btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #6a5c42;
  padding: 10px 10px 10px 60px;
  gap: 60px;
  text-decoration: none;
  transition: opacity 0.2s ease;
	z-index:30;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .mouthpiece-section__btn {
    gap: 40px;
    padding: 10px 10px 10px 40px;
  }
}
@media screen and (max-width: 768px) {
  .mouthpiece-section__btn {
    width: 100%;
    justify-content: space-between;
    gap: 0;
    padding: 10px 16px;
  }
}
.mouthpiece-section__btn:hover {
  opacity: 0.7;
}
.mouthpiece-section__btn span {
  font-family: "Hina Mincho", serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #6a5c42;
  line-height: 1.2;
  white-space: nowrap;
}
.mouthpiece-section__btn img {
  width: 30px;
  height: 1px;
  display: block;
  flex-shrink: 0;
}

.med-grid {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background-image: url("./img/med-grid-bg.png");
  background-size: cover;
  background-position: center;
}
.med-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(97, 97, 97, 0.7);
  pointer-events: none;
}
.med-grid__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.med-grid__row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  width: 90%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .med-grid__row {
    gap: 20px;
  }
}
.med-grid__card {
  position: relative;
  width: 20%;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 30px 0;
  text-decoration: none;
  background-image: linear-gradient(124.039deg, rgb(238, 233, 228) 49.872%, rgb(233, 223, 215) 49.872%);
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .med-grid__card {
    width: 35%;
  }
}
@media screen and (max-width: 768px) {
  .med-grid__card {
    width: 45%;
    height: 40vw;
    gap: 14px;
    padding: 15px 0;
    justify-content: flex-start;
  }
}
.med-grid__card--dark {
  background-image: linear-gradient(124.039deg, rgb(236, 233, 227) 49.872%, rgb(227, 222, 213) 49.872%);
}
.med-grid__card:hover {
  opacity: 0.85;
}
.med-grid__icon {
  width: 25%;
  height: 50%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .med-grid__icon {
    height: 40%;
  }
}
.med-grid__label {
  font-family: "Hina Mincho", serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #6a5c42;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}
.med-grid__arrow {
  position: absolute;
  bottom: 9px;
  right: 15px;
  width: 57px;
  height: 27px;
  display: block;
}

.top-rt {
  display: flex;
  width: 80%;
  margin: 4vw auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .top-rt {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .top-rt {
    width: 100%;
    flex-direction: column;
  }
}
.top-rt__recruit {
  background-image: url("../大崎ダイエー歯科//img/recruit.png");
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  width: 50%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .top-rt__recruit {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .top-rt__recruit {
    width: 100%;
  }
}
.top-rt__recruit-head {
  padding: 40px 50px 24px;
  text-align: center;
  margin-bottom: 30vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .top-rt__recruit-head {
    margin-bottom: 45vw;
    padding: 30px 30px 18px;
  }
}
@media screen and (max-width: 768px) {
  .top-rt__recruit-head {
    margin-bottom: 70vw;
    padding: 36px 20px 16px;
  }
}
.top-rt__recruit-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #bc9e67;
  margin-bottom: 8px;
}
.top-rt__recruit-en {
  font-family: "Lora", serif;
  font-size: 7.2rem;
  font-weight: 400;
  color: #AF8B4A;
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .top-rt__recruit-en {
    font-size: 5.6rem;
  }
}
@media screen and (max-width: 768px) {
  .top-rt__recruit-en {
    font-size: 4.8rem;
  }
}
.top-rt__recruit-ja {
  font-family: "Hina Mincho", serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #6A5C42;
  line-height: 1.4;
  margin: 6px 0 0;
}
@media screen and (max-width: 768px) {
  .top-rt__recruit-ja {
    font-size: 1.6rem;
  }
}
.top-rt__recruit-visual {
  position: relative;
  flex: 1;
}
.top-rt__recruit-photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  min-height: 320px;
}
@media screen and (max-width: 768px) {
  .top-rt__recruit-photo {
    min-height: 240px;
  }
}
.top-rt__recruit-card {
  width: 80%;
  margin: auto;
  position: absolute;
  bottom: 2vw;
  left: 0;
  right: 0;
  padding: 24px 36px 28px;
  background-color: #BC9E67;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .top-rt__recruit-card {
    width: 85%;
    padding: 18px 24px 22px;
  }
}
@media screen and (max-width: 768px) {
  .top-rt__recruit-card {
    padding: 16px 20px 20px;
  }
}
.top-rt__recruit-desc {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.9;
  margin: 0 0 16px;
  text-align: center;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  .top-rt__recruit-desc {
    font-size: 1.3rem;
    margin-bottom: 4vw;
  }
}
.top-rt__recruit-btn {
  display: inline-block;
  font-family: "Hina Mincho", serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #6a5c42;
  background-color: #fff;
  text-decoration: none;
  letter-spacing: 0.05em;
  padding: 0.5vw 1vw;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 768px) {
  .top-rt__recruit-btn {
    padding: 2vw 4vw;
  }
}
.top-rt__recruit-btn:hover {
  opacity: 0.6;
}
.top-rt__topics {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #F0E9DB;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-rt__topics {
    width: 100%;
  }
}
.top-rt__topics .topics__icon01 {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
}
.top-rt__topics .topics__icon02 {
  position: absolute;
  top: 43%;
  right: -44%;
  transform: rotate(-270deg) scale(-1, 1);
  width: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .top-rt__topics .topics__icon02 {
    top: 33%;
    right: -45%;
  }
}
@media screen and (max-width: 768px) {
  .top-rt__topics .topics__icon02 {
    top: 42%;
    right: -45%;
  }
}
.top-rt__topics .topics__icon03 {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(-1, -1);
  width: 100%;
}
.top-rt__topics .topics__icon04 {
  position: absolute;
  bottom: 43%;
  left: -44.5%;
  transform: rotate(270deg) scale(-1, 1);
  width: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .top-rt__topics .topics__icon04 {
    bottom: 33%;
    left: -45.5%;
  }
}
@media screen and (max-width: 768px) {
  .top-rt__topics .topics__icon04 {
    bottom: 43%;
    left: -45.5%;
  }
}
.top-rt__topics-head {
  padding: 40px 50px 24px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .top-rt__topics-head {
    padding: 30px 30px 18px;
  }
}
@media screen and (max-width: 768px) {
  .top-rt__topics-head {
    padding: 36px 20px 16px;
  }
}
.top-rt__topics-en {
  font-family: "Lora", serif;
  font-size: 7.2rem;
  font-weight: 400;
  color: #AF8B4A;
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .top-rt__topics-en {
    font-size: 5.6rem;
  }
}
@media screen and (max-width: 768px) {
  .top-rt__topics-en {
    font-size: 4.8rem;
  }
}
.top-rt__topics-ja {
  font-family: "Hina Mincho", serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #6A5C42;
  line-height: 1.4;
  margin: 6px 0 0;
}
@media screen and (max-width: 768px) {
  .top-rt__topics-ja {
    font-size: 1.6rem;
  }
}
.top-rt ul {
  list-style: none;
  width: 80%;
  margin: auto;
  height: 30vw;
  overflow: scroll;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .top-rt ul {
    height: 40vw;
  }
}
@media screen and (max-width: 768px) {
  .top-rt ul {
    height: 80vw;
  }
}
.top-rt ul a {
  text-decoration: none;
  color: #6A5C42;
  display: block;
  padding: 1vw 0;
  border-bottom: 1px solid #6A5C42;
}
.top-rt ul a li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
}
.top-rt ul a li .thumb {
  width: 50%;
}
.top-rt ul a li .thumb img {
  width: 100%;
}
.top-rt ul a li .outline {
  width: 50%;
}
.top-rt ul a li .outline .date {
  font-family: "Lora";
  margin-bottom: 0.5vw;
}

#lower .lower {
  background-image: url("./img/lower.png");
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 20vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  gap: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower .lower {
    height: 25vw;
  }
}
@media screen and (max-width: 768px) {
  #lower .lower {
    height: 40vw;
  }
}
#lower .lower h2 {
  color: #fff;
  text-align: center;
  font-family: "Lora";
  font-weight: 400;
  letter-spacing: 0.4vw;
  font-size: 6vw;
}
@media screen and (max-width: 768px) {
  #lower .lower h2 {
    font-size: 8vw;
  }
}
#lower .lower h5 {
  color: #fff;
  text-align: center;
  font-family: "Hina Mincho";
}

.lower_bottom {
  text-align: center;
  padding: 2vw 0;
  padding-top: 4vw;
  background-color: #F0E9DB;
  position: relative;
  border-top: 2px solid #E5AA42;
}
@media screen and (max-width: 768px) {
  .lower_bottom {
    padding: 4vw 0;
    padding-top: 8vw;
  }
}
.lower_bottom img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 4vw;
}
@media screen and (max-width: 768px) {
  .lower_bottom img {
    width: 8vw;
  }
}
.lower_bottom h2 {
  font-family: "Hina Mincho";
  font-weight: 300;
  color: #6A5C42;
}

.vision {
  position: relative;
  width: 100%;
  aspect-ratio: 1440/560;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .vision {
    aspect-ratio: 1024/500;
  }
}
@media screen and (max-width: 768px) {
  .vision {
    aspect-ratio: 375/380;
  }
}
.vision__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.vision__overlay {
  position: absolute;
  inset: 0;
  background: rgba(154, 154, 154, 0.25);
}
.vision__texts {
  position: absolute;
  top: 50%;
  left: 45.6%;
  transform: translateY(-50%);
  display: flex;
  gap: 30px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .vision__texts {
    left: 42%;
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .vision__texts {
    left: 50%;
    transform: translate(-50%, -50%);
    gap: 14px;
  }
}
.vision__band {
  background: #f8f8f8;
  padding: 15px;
  writing-mode: vertical-rl;
  font-family: "Hina Mincho", serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: #6a5c42;
  line-height: 1.1;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .vision__band {
    font-size: 2.2rem;
    padding: 12px;
  }
}
@media screen and (max-width: 768px) {
  .vision__band {
    font-size: 1.8rem;
    padding: 10px;
  }
}
.vision__band:last-child {
  height: 27%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .vision__band:last-child {
    height: 21%;
  }
}
@media screen and (max-width: 768px) {
  .vision__band:last-child {
    height: 23%;
  }
}

#concept_text .concept_text {
  width: 90%;
  margin: 4vw auto;
  background-color: #F0E9DB;
  padding: 4vw 8vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  #concept_text .concept_text {
    width: 100%;
    padding: 8vw 2vw;
  }
}
#concept_text .concept_text .concept_trick01 {
  position: absolute;
  top: 0;
  left: 0;
}
#concept_text .concept_text .concept_trick02 {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: scale(-1, 1) rotate(-90deg);
}
#concept_text .concept_text h4 {
  text-align: center;
  color: #BC9C4B;
  margin-bottom: 1vw;
  font-family: "Hina Mincho";
}
@media screen and (max-width: 768px) {
  #concept_text .concept_text h4 {
    margin-bottom: 3vw;
    line-height: 8vw;
  }
}
#concept_text .concept_text p {
  color: #6A5C42;
  line-height: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #concept_text .concept_text p {
    line-height: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #concept_text .concept_text p {
    line-height: 8vw;
  }
}

#concept_flex {
  position: relative;
  margin: 8vw 0;
}
#concept_flex .concept_trick01 {
  position: absolute;
  top: -5vw;
  right: 0;
  transform: scale(-1, 1) rotate(0deg);
}
#concept_flex .concept_trick02 {
  position: absolute;
  bottom: -5vw;
  left: 0;
  transform: scale(-1, 1) rotate(180deg);
}
#concept_flex .concept_flex_contents {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2vw;
  margin: 2vw 0;
  width: 95%;
  margin-left: auto;
  margin-right: 0;
}
#concept_flex .concept_flex_contents:last-child {
  margin-left: 0;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  #concept_flex .concept_flex_contents:last-child {
    margin: auto;
    flex-flow: column-reverse;
  }
}
@media screen and (max-width: 768px) {
  #concept_flex .concept_flex_contents {
    flex-flow: column;
    margin: auto;
    margin-bottom: 8vw;
  }
}
#concept_flex .concept_flex_contents .concept_flex_text {
  width: 60%;
}
@media screen and (max-width: 768px) {
  #concept_flex .concept_flex_contents .concept_flex_text {
    width: 100%;
  }
}
#concept_flex .concept_flex_contents .concept_flex_text h3 {
  color: #BC9C4B;
  margin-bottom: 1vw;
  font-family: "Hina Mincho";
}
#concept_flex .concept_flex_contents .concept_flex_text p {
  color: #6A5C42;
}
#concept_flex .concept_flex_contents .concept_flex_image {
  width: 40%;
}
@media screen and (max-width: 768px) {
  #concept_flex .concept_flex_contents .concept_flex_image {
    width: 100%;
  }
}
#concept_flex .concept_flex_contents .concept_flex_image img {
  width: 100%;
}

.clinic {
  width: 80%;
  margin: 4vw auto;
}
@media screen and (max-width: 768px) {
  .clinic {
    margin: 8vw auto;
  }
}
.clinic__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4vw;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .clinic__contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
  }
}
.clinic__address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.clinic__address-icon {
  width: 12px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}
.clinic__address-text p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #6a5c42;
  line-height: 1.6;
}
.clinic__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #e5aa42;
  padding: 10px 24px;
  text-decoration: none;
  min-width: 180px;
  flex-shrink: 0;
}
.clinic__cta-label {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
}
.clinic__cta-tel {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-family: "Lora", serif;
  font-weight: 500;
  font-size: 1.8rem;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
}
.clinic__cta-tel img {
  width: 10px;
  height: 22px;
  transform: rotate(-15deg);
  flex-shrink: 0;
}
.clinic__body {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  width: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .clinic__body {
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .clinic__body {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
}
.clinic__body .calendar {
  max-width: 600px;
}
@media screen and (max-width: 768px) {
  .clinic__body .calendar {
    max-width: 100%;
  }
}
.clinic__body .calendar__title {
  background: #7b6a4a;
  color: #fff;
  text-align: center;
  padding: 10px;
}
.clinic__body .calendar__head,
.clinic__body .calendar__body {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.clinic__body .calendar__head div {
  background: #d7b57d;
  text-align: center;
  padding: 10px;
  border: 1px solid #6A5C42;
}
.clinic__body .calendar__cell {
  border: 1px solid #6A5C42;
  padding: 0.5vw 15px;
  text-align: center;
  background-color: #fff;
  color: #6A5C42;
}
@media screen and (max-width: 768px) {
  .clinic__body .calendar__cell {
    padding: 2vw;
  }
}
.clinic__body {
  /* 休み種類 */
}
.clinic__body .is-holiday {
  background-color: #e3a93d;
}
.clinic__body .is-morning {
  background: #f5b57c;
}
.clinic__body .is-afternoon {
  background: #e6b1a5;
}
.clinic__cal-legend {
  display: flex;
  gap: 6px;
  margin-top: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.clinic__cal-legend-item {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #6a5c42;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #6a5c42;
  line-height: 1.2;
}
.clinic__cal-legend-item--holiday {
  background: #e5aa42;
}
.clinic__cal-legend-item--am {
  background: #faaa69;
}
.clinic__cal-legend-item--pm {
  background: #ecbbaf;
}
.clinic__schedule {
  flex: 1;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .clinic__schedule {
    width: 100%;
  }
}
.clinic__table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #6a5c42;
}
.clinic__table thead th:first-child {
  width: 15%;
}
.clinic__table thead th {
  width: 10%;
}
.clinic__table th, .clinic__table td {
  border-bottom: 1px solid #6a5c42;
  padding: 0.5vw;
  text-align: center;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #6a5c42;
  white-space: nowrap;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .clinic__table th, .clinic__table td {
    padding: 10px 5px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .clinic__table th, .clinic__table td {
    padding: 2vw;
  }
}
.clinic__table th {
  background: #f0e9db;
}
.clinic__table-label {
  text-align: left !important;
  padding-left: 12px !important;
  font-size: 1.3rem !important;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .clinic__table-label {
    font-size: 1.1rem !important;
  }
}
.clinic__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.clinic__mark--circle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #6a5c42;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .clinic__mark--circle {
    width: 12px;
    height: 12px;
  }
}
.clinic__mark--slash {
  font-size: 1.8rem;
  font-weight: 300;
  color: #6a5c42;
  line-height: 1;
}
.clinic__schedule-note {
  margin-top: 14px;
  border: 1px solid #6a5c42;
  padding: 12px 16px 14px;
  background: #faf5ee;
}
.clinic__schedule-note p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #6a5c42;
  line-height: 1.6;
}
.clinic__schedule-note-title {
  display: inline-block;
  background: #6a5c42;
  color: #fff;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  padding: 3px 10px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.lower_headline {
  background-image: url("./img/lower_headline.png");
  padding: 1.5vw 0;
  text-align: center;
  color: #fff;
  width: 90%;
  margin: auto;
  background-position: center;
  background-size: cover;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  .lower_headline {
    margin-bottom: 4vw;
    padding: 3vw 0;
  }
}
.lower_headline h3 {
  font-family: "Hina Mincho";
}

.load_info .load_info_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2vw;
  width: 90%;
  margin: auto;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  .load_info .load_info_contents {
    margin-bottom: 8vw;
    gap: 4vw;
  }
}
.load_info .load_info_contents .load_info_item {
  width: 30%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .load_info .load_info_contents .load_info_item {
    width: 43%;
  }
}
@media screen and (max-width: 768px) {
  .load_info .load_info_contents .load_info_item {
    width: 45%;
  }
}
.load_info .load_info_contents .load_info_item img {
  width: 100%;
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  .load_info .load_info_contents .load_info_item p {
    line-height: 4vw;
  }
}

.scenery {
  margin: 4vw 0;
}
@media screen and (max-width: 768px) {
  .scenery {
    margin: 8vw 0;
  }
}
.scenery .scenery_headline {
  width: 90%;
  margin: auto;
  text-align: center;
  position: relative;
  margin-bottom: 2vw;
}
.scenery .scenery_headline h4 {
  color: #6A5C42;
  font-family: "Hina Mincho";
}
.scenery .scenery_headline::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 42%;
  height: 0.5vw;
  border-top: 1px solid #E5AA42;
  border-bottom: 1px solid #E5AA42;
}
@media screen and (max-width: 768px) {
  .scenery .scenery_headline::before {
    width: 35%;
  }
}
.scenery .scenery_headline::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0%;
  transform: translate(0, -50%);
  width: 42%;
  height: 0.5vw;
  border-top: 1px solid #E5AA42;
  border-bottom: 1px solid #E5AA42;
}
@media screen and (max-width: 768px) {
  .scenery .scenery_headline::after {
    width: 35%;
  }
}
.scenery .scenery_contents {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  .scenery .scenery_contents {
    margin-bottom: 8vw;
  }
}
.scenery .scenery_contents img {
  width: 48%;
  padding: 1vw;
}

.equipment {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 90%;
  margin: 4vw auto;
}
@media screen and (max-width: 768px) {
  .equipment {
    margin: 8vw auto;
  }
}
.equipment .equipment_item {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .equipment .equipment_item {
    width: 46%;
  }
}
.equipment .equipment_item img {
  width: 100%;
}
.equipment .equipment_item h5 {
  padding: 0.5vw;
  text-align: center;
  color: #fff;
  background-color: #E5AA42;
  margin-bottom: 1vw;
  font-size: 1.1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .equipment .equipment_item h5 {
    font-size: 1.8vw;
    height: 6vw;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .equipment .equipment_item h5 {
    font-size: 3.4vw;
    height: 12vw;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.equipment .equipment_item p {
  height: 15vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .equipment .equipment_item p {
    height: 34vw;
  }
}
@media screen and (max-width: 768px) {
  .equipment .equipment_item p {
    height: 52vw;
  }
}

.doctor {
  margin: 4vw auto;
}
@media screen and (max-width: 768px) {
  .doctor {
    margin: 8vw auto;
  }
}
.doctor .doctor_flex {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2vw;
}
@media screen and (max-width: 768px) {
  .doctor .doctor_flex {
    flex-flow: column;
  }
}
.doctor .doctor_flex .doctor_text {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .doctor .doctor_flex .doctor_text {
    width: 100%;
  }
}
.doctor .doctor_flex .doctor_text p {
  margin-bottom: 2vw;
  color: #6A5C42;
}
@media screen and (max-width: 768px) {
  .doctor .doctor_flex .doctor_text p {
    margin-bottom: 4vw;
  }
}
.doctor .doctor_flex .doctor_text .doctor_name {
  text-align: end;
  font-family: "Hina Mincho";
  color: #6A5C42;
  font-weight: 300;
}
.doctor .doctor_flex .doctor_text .doctor_name span {
  margin-left: 1vw;
  color: #E5AA42;
}
.doctor .doctor_flex .doctor_image {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .doctor .doctor_flex .doctor_image {
    width: 100%;
  }
}
.doctor .doctor_flex .doctor_image img {
  width: 100%;
}
.doctor .biography {
  background-color: #F0E9DB;
  padding: 2vw 4vw;
  width: 90%;
  margin: auto;
  margin-top: 1vw;
}
.doctor .biography ul {
  width: 90%;
  margin: auto;
  list-style: none;
}
.doctor .biography ul li {
  margin-bottom: 1vw;
  color: #6A5C42;
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .doctor .biography ul li {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  .doctor .biography ul li {
    font-size: 3.4vw;
    margin-bottom: 4vw;
  }
}
.doctor .biography ul li span {
  color: #E5AA42;
  margin-right: 1vw;
}

.biography_headline {
  width: 90%;
  margin: auto;
  text-align: center;
  position: relative;
  margin-bottom: 2vw;
}
.biography_headline h4 {
  color: #6A5C42;
  font-family: "Hina Mincho";
}
.biography_headline::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 42%;
  height: 0.5vw;
  border-top: 1px solid #E5AA42;
  border-bottom: 1px solid #E5AA42;
}
@media screen and (max-width: 768px) {
  .biography_headline::before {
    width: 35%;
  }
}
.biography_headline::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0%;
  transform: translate(0, -50%);
  width: 42%;
  height: 0.5vw;
  border-top: 1px solid #E5AA42;
  border-bottom: 1px solid #E5AA42;
}
@media screen and (max-width: 768px) {
  .biography_headline::after {
    width: 35%;
  }
}

.recruit_top {
  width: 80%;
  margin: auto;
  margin-top: 4vw;
}
@media screen and (max-width: 768px) {
  .recruit_top {
    margin-top: 8vw;
  }
}
.recruit_top img {
  width: 100%;
}

.recruit_contents {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  flex-wrap: wrap;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  .recruit_contents {
    flex-flow: column;
    margin-bottom: 8vw;
  }
}
.recruit_contents .recruit_item {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .recruit_contents .recruit_item {
    width: 100%;
    margin-bottom: 4vw;
  }
}
.recruit_contents .recruit_item:first-child .recruit_item_text {
  height: 16vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit_contents .recruit_item:first-child .recruit_item_text {
    height: 42vw;
  }
}
@media screen and (max-width: 768px) {
  .recruit_contents .recruit_item:first-child .recruit_item_text {
    height: auto;
  }
}
.recruit_contents .recruit_item:nth-child(2) .recruit_item_text {
  height: 16vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit_contents .recruit_item:nth-child(2) .recruit_item_text {
    height: 42vw;
  }
}
@media screen and (max-width: 768px) {
  .recruit_contents .recruit_item:nth-child(2) .recruit_item_text {
    height: auto;
  }
}
.recruit_contents .recruit_item:nth-child(3) .recruit_item_text {
  height: 28vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit_contents .recruit_item:nth-child(3) .recruit_item_text {
    height: 86vw;
  }
}
@media screen and (max-width: 768px) {
  .recruit_contents .recruit_item:nth-child(3) .recruit_item_text {
    height: auto;
  }
}
.recruit_contents .recruit_item:last-child .recruit_item_text {
  height: 28vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .recruit_contents .recruit_item:last-child .recruit_item_text {
    height: 86vw;
  }
}
@media screen and (max-width: 768px) {
  .recruit_contents .recruit_item:last-child .recruit_item_text {
    height: auto;
  }
}
.recruit_contents .recruit_item img {
  width: 100%;
  vertical-align: top;
}
.recruit_contents .recruit_item .recruit_item_text {
  padding: 2vw;
  background-color: #F0E9DB;
}
@media screen and (max-width: 768px) {
  .recruit_contents .recruit_item .recruit_item_text {
    padding: 8vw 4vw;
  }
}
.recruit_contents .recruit_item .recruit_item_text h5 {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1vw;
  margin-bottom: 1vw;
  color: #6A5C42;
  font-family: "Hina Mincho";
}
.recruit_contents .recruit_item .recruit_item_text h5 img {
  width: 0.5vw;
}
@media screen and (max-width: 768px) {
  .recruit_contents .recruit_item .recruit_item_text h5 {
    gap: 2vw;
    margin-bottom: 2vw;
  }
  .recruit_contents .recruit_item .recruit_item_text h5 img {
    width: 1vw;
  }
}
.recruit_contents .recruit_item .recruit_item_text p {
  color: #6A5C42;
}

.table {
  width: 90%;
  margin: 4vw auto;
}
@media screen and (max-width: 768px) {
  .table {
    margin: 8vw auto;
  }
}
.table table {
  width: 100%;
  border-collapse: collapse;
}
@media screen and (max-width: 768px) {
  .table table tr {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
  }
}
.table table tr td {
  padding: 1vw 2vw;
  border: 1px solid #B4A689;
  font-size: 1vw;
  line-height: 2vw;
}
.table table tr td:first-child {
  background-color: #6A5C42;
  color: #fff;
  width: 20%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .table table tr td:first-child {
    width: 25%;
  }
}
@media screen and (max-width: 768px) {
  .table table tr td:first-child {
    width: 100%;
  }
}
.table table tr td:last-child {
  background-color: #F0E9DB;
  color: #6A5C42;
  width: 80%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .table table tr td:last-child {
    width: 75%;
  }
}
@media screen and (max-width: 768px) {
  .table table tr td:last-child {
    width: 100%;
  }
}
.table table tr td span {
  font-weight: 600;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .table table tr td {
    font-size: 1.8vw;
    line-height: 4vw;
  }
}
@media screen and (max-width: 768px) {
  .table table tr td {
    line-height: 8vw;
    font-size: 3.4vw;
  }
}
.table table tr td ul {
  list-style: none;
}
.table table tr td ul li {
  margin-bottom: 0.5vw;
}
@media screen and (max-width: 768px) {
  .table table tr td ul li {
    margin-bottom: 1.5vw;
  }
}
.table table tr td ul li span {
  color: #E5AA42;
  margin-right: 1vw;
}

.decay {
  margin: 4vw auto;
}
@media screen and (max-width: 768px) {
  .decay {
    margin: 8vw auto;
  }
}
.decay .decay_flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2vw;
  width: 90%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .decay .decay_flex {
    flex-flow: column;
  }
}
.decay .decay_flex .decay_text {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .decay .decay_flex .decay_text {
    width: 100%;
  }
}
.decay .decay_flex .decay_text p {
  color: #6A5C42;
}
.decay .decay_flex .decay_image {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .decay .decay_flex .decay_image {
    width: 100%;
  }
}
.decay .decay_flex .decay_image img {
  width: 100%;
}
.decay .decay_contents {
  background-color: #F0E9DB;
  padding: 2vw 5vw;
}
@media screen and (max-width: 768px) {
  .decay .decay_contents {
    padding: 8vw 5vw;
  }
}
.decay .decay_contents .scenery_headline {
  width: 100%;
  margin: auto;
  text-align: center;
  position: relative;
  margin-bottom: 2vw;
}
.decay .decay_contents .scenery_headline h4 {
  color: #6A5C42;
  font-family: "Hina Mincho";
}
.decay .decay_contents .scenery_headline::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 30%;
  height: 0.5vw;
  border-top: 1px solid #E5AA42;
  border-bottom: 1px solid #E5AA42;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .decay .decay_contents .scenery_headline::before {
    width: 27%;
  }
}
@media screen and (max-width: 768px) {
  .decay .decay_contents .scenery_headline::before {
    width: 14%;
  }
}
.decay .decay_contents .scenery_headline::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0%;
  transform: translate(0, -50%);
  width: 30%;
  height: 0.5vw;
  border-top: 1px solid #E5AA42;
  border-bottom: 1px solid #E5AA42;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .decay .decay_contents .scenery_headline::after {
    width: 27%;
  }
}
@media screen and (max-width: 768px) {
  .decay .decay_contents .scenery_headline::after {
    width: 14%;
  }
}
.decay .decay_contents p {
  width: 90%;
  margin: auto;
  color: #6A5C42;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  .decay .decay_contents p {
    margin-bottom: 8vw;
  }
}

.periodontal {
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  .periodontal {
    margin-bottom: 8vw;
  }
}
.periodontal .periodontal_flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2vw;
  width: 90%;
  margin: auto;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  .periodontal .periodontal_flex {
    flex-flow: column;
    margin-bottom: 8vw;
  }
}
.periodontal .periodontal_flex .periodontal_text {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .periodontal .periodontal_flex .periodontal_text {
    width: 100%;
  }
}
.periodontal .periodontal_flex .periodontal_text p {
  color: #6A5C42;
}
.periodontal .periodontal_flex .periodontal_text h4 {
  color: #BC9C4B;
  margin-top: 1.5vw;
  margin-bottom: 0.5vw;
  font-family: "Hina Mincho";
}
.periodontal .periodontal_flex .periodontal_image {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .periodontal .periodontal_flex .periodontal_image {
    width: 100%;
  }
}
.periodontal .periodontal_flex .periodontal_image img {
  width: 100%;
}
.periodontal .periodontal_images {
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  .periodontal .periodontal_images {
    margin-bottom: 8vw;
  }
}
.periodontal .periodontal_images img {
  width: 30%;
  margin: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .periodontal .periodontal_images img {
    width: 42%;
  }
}
@media screen and (max-width: 768px) {
  .periodontal .periodontal_images img {
    width: 45%;
  }
}
.periodontal .periodontal_check {
  position: relative;
  background-color: #F0E9DB;
  padding: 4vw 0;
}
.periodontal .periodontal_check .check_bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.periodontal .periodontal_check .periodontal_check_contents {
  position: relative;
  z-index: 10;
  width: 90%;
  margin: auto;
  margin-top: 2vw;
  margin-bottom: 4vw;
  background-color: #fff;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.15);
  padding: 2vw 5vw;
}
@media screen and (max-width: 768px) {
  .periodontal .periodontal_check .periodontal_check_contents {
    padding: 8vw 5vw;
  }
}
.periodontal .periodontal_check .periodontal_check_contents h4 {
  color: #fff;
  text-align: center;
  padding: 1vw;
  background-color: #E5AA42;
  font-family: "Hina Mincho";
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  .periodontal .periodontal_check .periodontal_check_contents h4 {
    padding: 3vw;
    margin-bottom: 4vw;
  }
}
.periodontal .periodontal_check .periodontal_check_contents .check_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.periodontal .periodontal_check .periodontal_check_contents .check_contents .check_item {
  width: 45%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1vw;
  padding: 1vw 0;
  border-bottom: 1px dotted #6A5C42;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .periodontal .periodontal_check .periodontal_check_contents .check_contents .check_item {
    padding: 2vw 0;
  }
}
@media screen and (max-width: 768px) {
  .periodontal .periodontal_check .periodontal_check_contents .check_contents .check_item {
    width: 100%;
    padding: 4vw 0;
    gap: 3vw;
  }
}
.periodontal .periodontal_check .periodontal_check_contents .check_contents .check_item img {
  width: 2vw;
}
@media screen and (max-width: 768px) {
  .periodontal .periodontal_check .periodontal_check_contents .check_contents .check_item img {
    width: 4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .periodontal .periodontal_check .periodontal_check_contents .check_contents .check_item p {
    line-height: 2vw;
  }
}
.periodontal .periodontal_contents {
  background-color: #F0E9DB;
  padding: 2vw 5vw;
}
@media screen and (max-width: 768px) {
  .periodontal .periodontal_contents {
    padding: 8vw 5vw;
  }
}
.periodontal .periodontal_contents .scenery_headline {
  width: 100%;
  margin: auto;
  text-align: center;
  position: relative;
  margin-bottom: 2vw;
}
.periodontal .periodontal_contents .scenery_headline h4 {
  color: #6A5C42;
  font-family: "Hina Mincho";
}
.periodontal .periodontal_contents .scenery_headline:first-child::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 25%;
  height: 0.5vw;
  border-top: 1px solid #E5AA42;
  border-bottom: 1px solid #E5AA42;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .periodontal .periodontal_contents .scenery_headline:first-child::before {
    width: 18%;
  }
}
@media screen and (max-width: 768px) {
  .periodontal .periodontal_contents .scenery_headline:first-child::before {
    width: 14%;
  }
}
.periodontal .periodontal_contents .scenery_headline:first-child::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0%;
  transform: translate(0, -50%);
  width: 25%;
  height: 0.5vw;
  border-top: 1px solid #E5AA42;
  border-bottom: 1px solid #E5AA42;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .periodontal .periodontal_contents .scenery_headline:first-child::after {
    width: 18%;
  }
}
@media screen and (max-width: 768px) {
  .periodontal .periodontal_contents .scenery_headline:first-child::after {
    width: 14%;
  }
}
.periodontal .periodontal_contents .scenery_headline:nth-child(3)::before, .periodontal .periodontal_contents .scenery_headline:nth-child(5)::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 35%;
  height: 0.5vw;
  border-top: 1px solid #E5AA42;
  border-bottom: 1px solid #E5AA42;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .periodontal .periodontal_contents .scenery_headline:nth-child(3)::before, .periodontal .periodontal_contents .scenery_headline:nth-child(5)::before {
    width: 34%;
  }
}
@media screen and (max-width: 768px) {
  .periodontal .periodontal_contents .scenery_headline:nth-child(3)::before, .periodontal .periodontal_contents .scenery_headline:nth-child(5)::before {
    width: 25%;
  }
}
.periodontal .periodontal_contents .scenery_headline:nth-child(3)::after, .periodontal .periodontal_contents .scenery_headline:nth-child(5)::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0%;
  transform: translate(0, -50%);
  width: 35%;
  height: 0.5vw;
  border-top: 1px solid #E5AA42;
  border-bottom: 1px solid #E5AA42;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .periodontal .periodontal_contents .scenery_headline:nth-child(3)::after, .periodontal .periodontal_contents .scenery_headline:nth-child(5)::after {
    width: 34%;
  }
}
@media screen and (max-width: 768px) {
  .periodontal .periodontal_contents .scenery_headline:nth-child(3)::after, .periodontal .periodontal_contents .scenery_headline:nth-child(5)::after {
    width: 25%;
  }
}
.periodontal .periodontal_contents p {
  width: 90%;
  margin: auto;
  color: #6A5C42;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  .periodontal .periodontal_contents p {
    margin-bottom: 8vw;
  }
}

.preventive .preventive_headline {
  margin-top: 2vw;
}
@media screen and (max-width: 768px) {
  .preventive .preventive_headline {
    margin-top: 4vw;
  }
}
.preventive > p {
  width: 90%;
  margin: auto;
  margin-bottom: 2vw;
  color: #6A5C42;
}
@media screen and (max-width: 768px) {
  .preventive > p {
    margin-bottom: 4vw;
  }
}
.preventive .preventive_flex {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
}
@media screen and (max-width: 768px) {
  .preventive .preventive_flex {
    flex-flow: column;
  }
}
.preventive .preventive_flex .preventive_text {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .preventive .preventive_flex .preventive_text {
    width: 100%;
  }
}
.preventive .preventive_flex .preventive_text h4 {
  margin-bottom: 1vw;
  color: #BC9C4B;
  font-family: "Hina Mincho";
}
@media screen and (max-width: 768px) {
  .preventive .preventive_flex .preventive_text h4 {
    margin-bottom: 2vw;
  }
}
.preventive .preventive_flex .preventive_text p {
  color: #6A5C42;
}
.preventive .preventive_flex .preventive_image {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .preventive .preventive_flex .preventive_image {
    width: 100%;
  }
}
.preventive .preventive_flex .preventive_image img {
  width: 100%;
}
.preventive .preventive_contents {
  background-color: #F0E9DB;
  padding: 2vw 5vw;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  .preventive .preventive_contents {
    padding: 8vw 5vw;
    margin-bottom: 8vw;
  }
}
.preventive .preventive_contents .scenery_headline {
  width: 100%;
  margin: auto;
  text-align: center;
  position: relative;
  margin-bottom: 2vw;
}
.preventive .preventive_contents .scenery_headline h4 {
  color: #6A5C42;
  font-family: "Hina Mincho";
}
.preventive .preventive_contents .scenery_headline:first-child::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 25%;
  height: 0.5vw;
  border-top: 1px solid #E5AA42;
  border-bottom: 1px solid #E5AA42;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .preventive .preventive_contents .scenery_headline:first-child::before {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  .preventive .preventive_contents .scenery_headline:first-child::before {
    width: 32%;
  }
}
.preventive .preventive_contents .scenery_headline:first-child::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0%;
  transform: translate(0, -50%);
  width: 25%;
  height: 0.5vw;
  border-top: 1px solid #E5AA42;
  border-bottom: 1px solid #E5AA42;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .preventive .preventive_contents .scenery_headline:first-child::after {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  .preventive .preventive_contents .scenery_headline:first-child::after {
    width: 32%;
  }
}
.preventive .preventive_contents .scenery_headline:nth-child(6)::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 30%;
  height: 0.5vw;
  border-top: 1px solid #E5AA42;
  border-bottom: 1px solid #E5AA42;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .preventive .preventive_contents .scenery_headline:nth-child(6)::before {
    width: 22%;
  }
}
@media screen and (max-width: 768px) {
  .preventive .preventive_contents .scenery_headline:nth-child(6)::before {
    width: 5%;
  }
}
.preventive .preventive_contents .scenery_headline:nth-child(6)::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0%;
  transform: translate(0, -50%);
  width: 30%;
  height: 0.5vw;
  border-top: 1px solid #E5AA42;
  border-bottom: 1px solid #E5AA42;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .preventive .preventive_contents .scenery_headline:nth-child(6)::after {
    width: 22%;
  }
}
@media screen and (max-width: 768px) {
  .preventive .preventive_contents .scenery_headline:nth-child(6)::after {
    width: 5%;
  }
}
.preventive .preventive_contents h5 {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1vw;
  color: #6A5C42;
  font-family: "Hina Mincho";
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  .preventive .preventive_contents h5 {
    gap: 2vw;
    margin-bottom: 2vw;
  }
}
.preventive .preventive_contents p {
  width: 90%;
  margin: auto;
  color: #6A5C42;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  .preventive .preventive_contents p {
    margin-bottom: 8vw;
  }
}
.preventive .preventive_contents .preventive_contents_flex {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2vw;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  .preventive .preventive_contents .preventive_contents_flex {
    flex-flow: column;
    margin-bottom: 4vw;
  }
}
.preventive .preventive_contents .preventive_contents_flex p {
  width: 60%;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .preventive .preventive_contents .preventive_contents_flex p {
    width: 100%;
  }
}
.preventive .preventive_contents .preventive_contents_flex img {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .preventive .preventive_contents .preventive_contents_flex img {
    width: 100%;
  }
}
.preventive .preventive_contents02 {
  background-color: #F0E9DB;
  padding: 2vw 5vw;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  .preventive .preventive_contents02 {
    padding: 8vw 5vw;
    margin-bottom: 8vw;
  }
}
.preventive .preventive_contents02 .scenery_headline {
  width: 100%;
  margin: auto;
  text-align: center;
  position: relative;
  margin-bottom: 2vw;
}
.preventive .preventive_contents02 .scenery_headline h4 {
  color: #6A5C42;
  font-family: "Hina Mincho";
}
.preventive .preventive_contents02 .scenery_headline:first-child::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 20%;
  height: 0.5vw;
  border-top: 1px solid #E5AA42;
  border-bottom: 1px solid #E5AA42;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .preventive .preventive_contents02 .scenery_headline:first-child::before {
    width: 10%;
  }
}
@media screen and (max-width: 768px) {
  .preventive .preventive_contents02 .scenery_headline:first-child::before {
    width: 7%;
  }
}
.preventive .preventive_contents02 .scenery_headline:first-child::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0%;
  transform: translate(0, -50%);
  width: 20%;
  height: 0.5vw;
  border-top: 1px solid #E5AA42;
  border-bottom: 1px solid #E5AA42;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .preventive .preventive_contents02 .scenery_headline:first-child::after {
    width: 10%;
  }
}
@media screen and (max-width: 768px) {
  .preventive .preventive_contents02 .scenery_headline:first-child::after {
    width: 7%;
  }
}
.preventive .preventive_contents02 h5 {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1vw;
  color: #6A5C42;
  font-family: "Hina Mincho";
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  .preventive .preventive_contents02 h5 {
    gap: 2vw;
    margin-bottom: 2vw;
  }
}
.preventive .preventive_contents02 p {
  width: 90%;
  margin: auto;
  color: #6A5C42;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  .preventive .preventive_contents02 p {
    margin-bottom: 8vw;
  }
}
.preventive .preventive_contents02 .preventive_contents_flex {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2vw;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  .preventive .preventive_contents02 .preventive_contents_flex {
    flex-flow: column;
    margin-bottom: 4vw;
    align-items: center;
  }
}
.preventive .preventive_contents02 .preventive_contents_flex .preventive_contents_flex_text {
  width: 80%;
}
@media screen and (max-width: 768px) {
  .preventive .preventive_contents02 .preventive_contents_flex .preventive_contents_flex_text {
    width: 100%;
  }
}
.preventive .preventive_contents02 .preventive_contents_flex .preventive_contents_flex_text h5 {
  padding: 1vw;
  background-color: #E5AA42;
  color: #fff;
  margin-bottom: 1vw;
}
.preventive .preventive_contents02 .preventive_contents_flex .preventive_contents_flex_text p {
  color: #6A5C42;
}
@media screen and (max-width: 768px) {
  .preventive .preventive_contents02 .preventive_contents_flex .preventive_contents_flex_text p {
    margin-bottom: 0;
  }
}
.preventive .preventive_contents02 .preventive_contents_flex img {
  width: 15%;
}
@media screen and (max-width: 768px) {
  .preventive .preventive_contents02 .preventive_contents_flex img {
    width: 50%;
  }
}

.oral > p {
  width: 90%;
  margin: 2vw auto;
  color: #6A5C42;
}
@media screen and (max-width: 768px) {
  .oral > p {
    margin: 4vw auto;
  }
}
.oral .oral_contents {
  width: 90%;
  margin: auto;
}
.oral .oral_contents .oral_content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2vw;
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  .oral .oral_contents .oral_content {
    flex-flow: column;
    margin-bottom: 4vw;
  }
}
.oral .oral_contents .oral_content .oral_text {
  width: 55%;
}
@media screen and (max-width: 768px) {
  .oral .oral_contents .oral_content .oral_text {
    width: 100%;
  }
}
.oral .oral_contents .oral_content .oral_text h4 {
  color: #BC9C4B;
  margin-bottom: 1vw;
  font-family: "Hina Mincho";
}
.oral .oral_contents .oral_content .oral_text p {
  color: #6A5C42;
}
.oral .oral_contents .oral_content .oral_image {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .oral .oral_contents .oral_content .oral_image {
    width: 100%;
  }
}
.oral .oral_contents .oral_content .oral_image img {
  width: 100%;
}

.implant {
  margin: 4vw auto;
}
@media screen and (max-width: 768px) {
  .implant {
    margin: 8vw auto;
  }
}
.implant .implant_contents {
  width: 90%;
  margin: auto;
}
.implant .implant_contents .implant_content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2vw;
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  .implant .implant_contents .implant_content {
    flex-flow: column;
    margin-bottom: 4vw;
  }
}
.implant .implant_contents .implant_content .implant_text {
  width: 55%;
}
@media screen and (max-width: 768px) {
  .implant .implant_contents .implant_content .implant_text {
    width: 100%;
  }
}
.implant .implant_contents .implant_content .implant_text h4 {
  color: #BC9C4B;
  margin-bottom: 1vw;
  font-family: "Hina Mincho";
}
.implant .implant_contents .implant_content .implant_text p {
  color: #6A5C42;
}
.implant .implant_contents .implant_content .implant_image {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .implant .implant_contents .implant_content .implant_image {
    width: 100%;
  }
}
.implant .implant_contents .implant_content .implant_image img {
  width: 100%;
}
.implant > p {
  width: 90%;
  margin: auto;
  color: #6A5C42;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  .implant > p {
    margin-bottom: 8vw;
  }
}
.implant .scenery_headline {
  width: 90%;
  margin: auto;
  text-align: center;
  position: relative;
  margin-bottom: 2vw;
}
.implant .scenery_headline h4 {
  color: #6A5C42;
  font-family: "Hina Mincho";
}
.implant .scenery_headline::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 35%;
  height: 0.5vw;
  border-top: 1px solid #E5AA42;
  border-bottom: 1px solid #E5AA42;
}
@media screen and (max-width: 768px) {
  .implant .scenery_headline::before {
    width: 27%;
  }
}
.implant .scenery_headline::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0%;
  transform: translate(0, -50%);
  width: 35%;
  height: 0.5vw;
  border-top: 1px solid #E5AA42;
  border-bottom: 1px solid #E5AA42;
}
@media screen and (max-width: 768px) {
  .implant .scenery_headline::after {
    width: 27%;
  }
}
.implant #implant_text .implant_text {
  width: 90%;
  margin: 4vw auto;
  background-color: #F0E9DB;
  padding: 4vw 8vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  .implant #implant_text .implant_text {
    width: 100%;
    padding: 8vw 2vw;
  }
}
.implant #implant_text .implant_text .concept_trick01 {
  position: absolute;
  top: 0;
  left: 0;
}
.implant #implant_text .implant_text .concept_trick02 {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: scale(-1, 1) rotate(-90deg);
}
.implant #implant_text .implant_text h4 {
  text-align: center;
  color: #BC9C4B;
  margin-bottom: 1vw;
  font-family: "Hina Mincho";
}
@media screen and (max-width: 768px) {
  .implant #implant_text .implant_text h4 {
    margin-bottom: 3vw;
    line-height: 8vw;
  }
}
.implant #implant_text .implant_text p {
  color: #6A5C42;
  line-height: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .implant #implant_text .implant_text p {
    line-height: 4vw;
  }
}
@media screen and (max-width: 768px) {
  .implant #implant_text .implant_text p {
    line-height: 8vw;
  }
}

.compare-cards {
  display: flex;
  width: 90%;
  margin: auto;
  padding: 40px 0;
  justify-content: center;
  gap: 40px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .compare-cards {
    gap: 24px;
    padding: 30px 20px;
  }
}
@media screen and (max-width: 768px) {
  .compare-cards {
    flex-direction: column;
    padding: 24px 20px;
    gap: 24px;
  }
}
.compare-cards__item {
  width: 560px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background: #f0e9db;
  padding: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .compare-cards__item {
    width: calc(50% - 12px);
  }
}
@media screen and (max-width: 768px) {
  .compare-cards__item {
    width: 100%;
  }
}
.compare-cards__head {
  background: #e5aa42;
  color: #fff;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  padding: 20px;
  margin-bottom: 20px;
}
.compare-cards__text {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #6a5c42;
  line-height: 2;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .compare-cards__text {
    font-size: 1.4rem;
  }
}

.compare-table-wrap {
  width: 90%;
  margin: auto;
  background: #fff;
  padding: 40px 0 60px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 768px) {
  .compare-table-wrap {
    padding: 24px 0 40px;
  }
}

.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  table-layout: fixed;
}
.compare-table__th {
  background: #6a5c42;
  color: #fff;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  padding: 20px;
  border-right: 1px solid #000;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .compare-table__th {
    font-size: 1.6rem;
    padding: 14px 10px;
  }
}
@media screen and (max-width: 768px) {
  .compare-table__th {
    font-size: 1.4rem;
    padding: 12px 8px;
  }
}
.compare-table__th:last-child {
  border-right: none;
}
.compare-table__img-cell {
  background: #f0e9db;
  padding: 20px;
  text-align: center;
  border-right: 1px solid #000;
  border-left: 1px solid #000;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .compare-table__img-cell {
    padding: 12px;
  }
}
.compare-table__img-cell + .compare-table__img-cell {
  border-left: none;
}
.compare-table__img-cell:last-child img {
  width: 45%;
}
.compare-table__img-cell img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .compare-table__img-cell img {
    width: 100%;
    height: 130px;
  }
}
@media screen and (max-width: 768px) {
  .compare-table__img-cell img {
    width: 100%;
    height: 90px;
  }
}
.compare-table__img-cell--diagram img {
  -o-object-fit: contain;
     object-fit: contain;
  background: #fff;
}
.compare-table__label {
  background: #6a5c42;
  color: #fff;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  padding: 20px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .compare-table__label {
    font-size: 1.6rem;
    padding: 14px 10px;
  }
}
@media screen and (max-width: 768px) {
  .compare-table__label {
    font-size: 1.4rem;
    padding: 12px 8px;
  }
}
.compare-table__cell {
  background: #f0e9db;
  padding: 20px;
  border-right: 1px solid #000;
  border-left: 1px solid #000;
  vertical-align: top;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .compare-table__cell {
    padding: 14px 10px;
  }
}
@media screen and (max-width: 768px) {
  .compare-table__cell {
    padding: 12px 8px;
  }
}
.compare-table__cell + .compare-table__cell {
  border-left: none;
}
.compare-table__cell--last {
  border-bottom: 1px solid #000;
}
.compare-table__subhead {
  background: #bc9c4b;
  color: #fff;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  padding: 14px 20px;
  margin: -20px -20px 16px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .compare-table__subhead {
    font-size: 1.6rem;
    padding: 10px;
    margin: -14px -10px 12px;
  }
}
@media screen and (max-width: 768px) {
  .compare-table__subhead {
    font-size: 1.4rem;
    padding: 8px;
    margin: -12px -8px 10px;
  }
}
.compare-table__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.compare-table__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.compare-table__list img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.compare-table__list span {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #000;
  line-height: 1.4;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .compare-table__list span {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .compare-table__list span {
    font-size: 1.3rem;
  }
}

.implant-flow {
  width: 90%;
  margin: 2vw auto 4vw;
}
@media screen and (max-width: 768px) {
  .implant-flow {
    margin: 4vw auto 8vw;
  }
}
.implant-flow__step {
  display: flex;
  align-items: flex-start;
  gap: 3vw;
}
@media screen and (max-width: 768px) {
  .implant-flow__step {
    flex-direction: column;
    gap: 0;
  }
}
.implant-flow__left {
  flex: 1;
  width: 100%;
}
.implant-flow__header {
  display: flex;
  align-items: center;
  gap: 1.5vw;
  background: #F0E9DB;
  padding: 1vw 2vw;
  margin-bottom: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .implant-flow__header {
    gap: 2vw;
    padding: 1.5vw 2vw;
  }
}
@media screen and (max-width: 768px) {
  .implant-flow__header {
    gap: 3vw;
    padding: 3vw 4vw;
    margin-bottom: 3vw;
  }
}
.implant-flow__num {
  font-family: "Hina Mincho", serif;
  font-size: 4vw;
  color: #BC9C4B;
  line-height: 1;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .implant-flow__num {
    font-size: 5.5vw;
  }
}
@media screen and (max-width: 768px) {
  .implant-flow__num {
    font-size: 10vw;
  }
}
.implant-flow__title {
  font-family: "Hina Mincho";
  font-size: 2vw;
  color: #6A5C42;
  line-height: 1.4;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .implant-flow__title {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 768px) {
  .implant-flow__title {
    font-size: 4.5vw;
  }
}
.implant-flow__desc {
  color: #6A5C42;
  padding: 0 2vw;
}
@media screen and (max-width: 768px) {
  .implant-flow__desc {
    padding: 0;
  }
}
.implant-flow__img {
  width: 240px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .implant-flow__img {
    width: 180px;
  }
}
@media screen and (max-width: 768px) {
  .implant-flow__img {
    width: 100%;
    border-radius: 8px;
    margin-top: 3vw;
  }
}
.implant-flow__img img {
  width: 100%;
  display: block;
}
.implant-flow__arrow {
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-top: 20px solid #BC9C4B;
  margin: 1.5vw auto;
}
@media screen and (max-width: 768px) {
  .implant-flow__arrow {
    margin: 4vw auto;
  }
}

.implant-info {
  background: #F0E9DB;
  padding: 4vw 5%;
  margin-top: 4vw;
}
@media screen and (max-width: 768px) {
  .implant-info {
    padding: 8vw 5%;
    margin-top: 8vw;
  }
}
.implant-info__maint {
  display: flex;
  align-items: flex-start;
  gap: 4vw;
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .implant-info__maint {
    gap: 3vw;
  }
}
@media screen and (max-width: 768px) {
  .implant-info__maint {
    flex-direction: column;
    gap: 5vw;
    margin-bottom: 8vw;
  }
}
.implant-info__maint-text {
  flex: 1;
}
.implant-info__maint-text p {
  color: #6A5C42;
}
.implant-info__maint-title {
  color: #BC9C4B;
  font-family: "Hina Mincho", serif;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  .implant-info__maint-title {
    margin-bottom: 4vw;
    line-height: 1.5;
  }
}
.implant-info__maint-img {
  width: 42%;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .implant-info__maint-img {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  .implant-info__maint-img {
    width: 100%;
  }
}
.implant-info__maint-img img {
  width: 100%;
  display: block;
}
.implant-info__trouble-banner {
  position: relative;
  background: #BC9C4B;
  overflow: hidden;
  text-align: center;
  padding: 2vw 4vw;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  .implant-info__trouble-banner {
    padding: 4vw 10vw;
    margin-bottom: 4vw;
  }
}
.implant-info__trouble-banner::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-bottom: 78px solid #9A7A30;
  border-right: 260px solid transparent;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .implant-info__trouble-banner::before {
    border-right-width: 180px;
  }
}
@media screen and (max-width: 768px) {
  .implant-info__trouble-banner::before {
    border-bottom-width: 60px;
    border-right-width: 120px;
  }
}
.implant-info__trouble-banner::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-top: 78px solid #9A7A30;
  border-left: 260px solid transparent;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .implant-info__trouble-banner::after {
    border-left-width: 180px;
  }
}
@media screen and (max-width: 768px) {
  .implant-info__trouble-banner::after {
    border-top-width: 60px;
    border-left-width: 120px;
  }
}
.implant-info__trouble-banner h4 {
  color: #fff;
  font-family: "Hina Mincho", serif;
  position: relative;
  z-index: 1;
}
.implant-info__trouble-text {
  color: #6A5C42;
}
.implant-info__trouble-note {
  color: #BC9C4B;
}

.aesthetic {
  margin: 4vw auto;
}
@media screen and (max-width: 768px) {
  .aesthetic {
    margin: 8vw auto;
  }
}
.aesthetic .aesthetic_flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-flow: row-reverse;
  gap: 2vw;
  width: 90%;
  margin: auto;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  .aesthetic .aesthetic_flex {
    flex-flow: column;
    margin-bottom: 8vw;
  }
}
.aesthetic .aesthetic_flex .aesthetic_image {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .aesthetic .aesthetic_flex .aesthetic_image {
    width: 100%;
  }
}
.aesthetic .aesthetic_flex .aesthetic_image img {
  width: 100%;
  display: block;
}
.aesthetic .aesthetic_flex .aesthetic_text {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .aesthetic .aesthetic_flex .aesthetic_text {
    width: 100%;
  }
}
.aesthetic .aesthetic_flex .aesthetic_text p {
  color: #6a5c42;
  line-height: 2;
  margin-bottom: 1.5vw;
}
@media screen and (max-width: 768px) {
  .aesthetic .aesthetic_flex .aesthetic_text p {
    margin-bottom: 4vw;
  }
}
.aesthetic .aesthetic_flex .aesthetic_text p:last-child {
  margin-bottom: 0;
}
.aesthetic .aesthetic_sub_image {
  width: 50%;
  margin: 0 auto 4vw;
}
@media screen and (max-width: 768px) {
  .aesthetic .aesthetic_sub_image {
    width: 100%;
    margin-bottom: 8vw;
  }
}
.aesthetic .aesthetic_sub_image img {
  width: 100%;
  display: block;
}
.aesthetic .aesthetic_insurance {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .aesthetic .aesthetic_insurance {
    width: 100%;
  }
}
.aesthetic .aesthetic_insurance .aesthetic_insurance_header {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e5aa42;
  padding: 20px;
}
.aesthetic .aesthetic_insurance .aesthetic_insurance_header p {
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
}
.aesthetic .aesthetic_insurance .aesthetic_insurance_items {
  margin: 2vw auto 0;
}
@media screen and (max-width: 768px) {
  .aesthetic .aesthetic_insurance .aesthetic_insurance_items {
    margin-top: 4vw;
  }
}
.aesthetic .aesthetic_insurance .aesthetic_insurance_items .aesthetic_insurance_item {
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  .aesthetic .aesthetic_insurance .aesthetic_insurance_items .aesthetic_insurance_item {
    margin-bottom: 4vw;
  }
}
.aesthetic .aesthetic_insurance .aesthetic_insurance_items .aesthetic_insurance_item .aesthetic_insurance_item_title {
  display: flex;
  align-items: center;
  gap: 1vw;
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  .aesthetic .aesthetic_insurance .aesthetic_insurance_items .aesthetic_insurance_item .aesthetic_insurance_item_title {
    gap: 3vw;
    margin-bottom: 2vw;
  }
}
.aesthetic .aesthetic_insurance .aesthetic_insurance_items .aesthetic_insurance_item .aesthetic_insurance_item_title img {
  width: 2vw;
  height: 2vw;
}
@media screen and (max-width: 768px) {
  .aesthetic .aesthetic_insurance .aesthetic_insurance_items .aesthetic_insurance_item .aesthetic_insurance_item_title img {
    width: 4vw;
    height: 4vw;
  }
}
.aesthetic .aesthetic_insurance .aesthetic_insurance_items .aesthetic_insurance_item .aesthetic_insurance_item_title p {
  color: #6a5c42;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}
.aesthetic .aesthetic_insurance .aesthetic_insurance_items .aesthetic_insurance_item_text {
  color: #6a5c42;
  line-height: 2;
}

.ceramic {
  padding: 4vw 5vw;
  margin-bottom: 4vw;
  background-color: #f0e9db;
}
@media screen and (max-width: 768px) {
  .ceramic {
    padding: 8vw 5vw;
    margin-bottom: 8vw;
  }
}
.ceramic .lower_headline {
  width: 100%;
}
.ceramic .ceramic_header {
  position: relative;
  background-color: #bc9c4b;
  padding: 20px 10px;
  text-align: center;
  overflow: hidden;
}
.ceramic .ceramic_header p {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: "Hina Mincho";
  font-size: 32px;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .ceramic .ceramic_header p {
    font-size: 20px;
  }
}
.ceramic .ceramic_header .ceramic_header__deco {
  position: absolute;
  top: 0;
  height: 100%;
  width: auto;
}
.ceramic .ceramic_header .ceramic_header__deco--left {
  left: 0;
  transform: scaleY(-1);
}
.ceramic .ceramic_header .ceramic_header__deco--right {
  right: 0;
  transform: scaleY(-1) rotate(180deg);
}
.ceramic .ceramic_intro {
  margin: 2vw auto;
}
@media screen and (max-width: 768px) {
  .ceramic .ceramic_intro {
    margin: 4vw auto;
  }
}
.ceramic .ceramic_intro p {
  color: #6a5c42;
  line-height: 2;
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  .ceramic .ceramic_intro p {
    margin-bottom: 3vw;
  }
}
.ceramic .ceramic_intro p:last-child {
  margin-bottom: 0;
}
.ceramic .ceramic_contents .ceramic_item {
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  .ceramic .ceramic_contents .ceramic_item {
    margin-bottom: 8vw;
  }
}
.ceramic .ceramic_contents .ceramic_item:last-child {
  margin-bottom: 0;
}
.ceramic .ceramic_contents .ceramic_item h3 {
  color: #bc9c4b;
  font-family: "Hina Mincho";
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 1.5vw;
}
@media screen and (max-width: 768px) {
  .ceramic .ceramic_contents .ceramic_item h3 {
    font-size: 22px;
    margin-bottom: 3vw;
  }
}
.ceramic .ceramic_contents .ceramic_item .ceramic_item_flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2vw;
}
@media screen and (max-width: 768px) {
  .ceramic .ceramic_contents .ceramic_item .ceramic_item_flex {
    flex-flow: column;
  }
}
.ceramic .ceramic_contents .ceramic_item .ceramic_item_flex .ceramic_item_text {
  width: 55%;
}
@media screen and (max-width: 768px) {
  .ceramic .ceramic_contents .ceramic_item .ceramic_item_flex .ceramic_item_text {
    width: 100%;
  }
}
.ceramic .ceramic_contents .ceramic_item .ceramic_item_flex .ceramic_item_text p {
  color: #6a5c42;
  line-height: 2;
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  .ceramic .ceramic_contents .ceramic_item .ceramic_item_flex .ceramic_item_text p {
    margin-bottom: 3vw;
  }
}
.ceramic .ceramic_contents .ceramic_item .ceramic_item_flex .ceramic_item_text p:last-child {
  margin-bottom: 0;
}
.ceramic .ceramic_contents .ceramic_item .ceramic_item_flex .ceramic_item_image {
  width: 45%;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .ceramic .ceramic_contents .ceramic_item .ceramic_item_flex .ceramic_item_image {
    width: 100%;
  }
}
.ceramic .ceramic_contents .ceramic_item .ceramic_item_flex .ceramic_item_image img {
  width: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.whitening_qa {
  width: 90%;
  margin: 2vw auto 4vw;
}
@media screen and (max-width: 768px) {
  .whitening_qa {
    margin: 4vw auto 8vw;
  }
}
.whitening_qa .whitening_qa_item {
  border-top: 1px solid #d5c49c;
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  .whitening_qa .whitening_qa_item {
    margin-bottom: 2vw;
  }
}
.whitening_qa .whitening_qa_item:last-child {
  border-bottom: 1px solid #d5c49c;
}
.whitening_qa .whitening_qa_item .whitening_qa_question {
  display: flex;
  align-items: stretch;
  cursor: pointer;
}
.whitening_qa .whitening_qa_item .whitening_qa_question .whitening_qa_q {
  flex-shrink: 0;
  width: 60px;
  background-color: #6a5c42;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lora", serif;
  font-weight: bold;
  font-size: 48px;
  color: #fff;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .whitening_qa .whitening_qa_item .whitening_qa_question .whitening_qa_q {
    width: 44px;
    font-size: 32px;
  }
}
.whitening_qa .whitening_qa_item .whitening_qa_question p {
  flex: 1;
  background-color: #d5c49c;
  padding: 10px 50px;
  font-family: "Hina Mincho";
  font-size: 24px;
  color: #6a5c42;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .whitening_qa .whitening_qa_item .whitening_qa_question p {
    font-size: 16px;
    padding: 12px 15px;
  }
}
.whitening_qa .whitening_qa_item .whitening_qa_question .whitening_qa_icon {
  flex-shrink: 0;
  background-color: #d5c49c;
  display: flex;
  align-items: center;
  padding: 0 30px;
  font-size: 28px;
  color: #6a5c42;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .whitening_qa .whitening_qa_item .whitening_qa_question .whitening_qa_icon {
    padding: 0 15px;
    font-size: 22px;
  }
}
.whitening_qa .whitening_qa_item .whitening_qa_answer {
  display: none;
  background-color: #f0e9db;
  padding: 40px 80px;
}
@media screen and (max-width: 768px) {
  .whitening_qa .whitening_qa_item .whitening_qa_answer {
    padding: 20px 20px 20px 59px;
  }
}
.whitening_qa .whitening_qa_item .whitening_qa_answer p {
  color: #6a5c42;
  font-size: 20px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .whitening_qa .whitening_qa_item .whitening_qa_answer p {
    font-size: 16px;
  }
}

.denture {
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  .denture {
    margin-bottom: 8vw;
  }
}
.denture .denture_intro {
  display: flex;
  align-items: flex-start;
  gap: 2vw;
  width: 90%;
  margin: 2vw auto 4vw;
}
@media screen and (max-width: 768px) {
  .denture .denture_intro {
    flex-flow: column;
    margin: 4vw auto 8vw;
  }
}
.denture .denture_intro .denture_intro_image {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .denture .denture_intro .denture_intro_image {
    width: 100%;
  }
}
.denture .denture_intro .denture_intro_image img {
  width: 100%;
  display: block;
}
.denture .denture_intro .denture_intro_text {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .denture .denture_intro .denture_intro_text {
    width: 100%;
  }
}
.denture .denture_intro .denture_intro_text .denture_subtitle {
  color: #bc9c4b;
  font-family: "Hina Mincho";
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 3vw;
}
@media screen and (max-width: 768px) {
  .denture .denture_intro .denture_intro_text .denture_subtitle {
    font-size: 22px;
    margin-bottom: 6vw;
  }
}
.denture .denture_intro .denture_intro_text p {
  color: #6a5c42;
  line-height: 2;
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  .denture .denture_intro .denture_intro_text p {
    margin-bottom: 3vw;
  }
}
.denture .denture_intro .denture_intro_text p:last-child {
  margin-bottom: 0;
}
.denture .denture_contents {
  padding: 4vw 5vw;
}
@media screen and (max-width: 768px) {
  .denture .denture_contents {
    padding: 8vw 5vw;
  }
}
.denture .denture_contents .denture_item {
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  .denture .denture_contents .denture_item {
    margin-bottom: 8vw;
  }
}
.denture .denture_contents .denture_item:last-child {
  margin-bottom: 0;
}
.denture .denture_contents .denture_item h4 {
  color: #bc9c4b;
  font-family: "Hina Mincho";
  font-size: 32px;
  line-height: 1.4;
  margin-bottom: 1.5vw;
}
@media screen and (max-width: 768px) {
  .denture .denture_contents .denture_item h4 {
    font-size: 22px;
    margin-bottom: 3vw;
  }
}
.denture .denture_contents .denture_item .denture_item_h4--sub {
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .denture .denture_contents .denture_item .denture_item_h4--sub {
    font-size: 20px;
  }
}
.denture .denture_contents .denture_item .denture_item_h4--sub span {
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  .denture .denture_contents .denture_item .denture_item_h4--sub span {
    font-size: 16px;
  }
}
.denture .denture_contents .denture_item .denture_item_flex {
  display: flex;
  align-items: flex-start;
  gap: 2vw;
}
@media screen and (max-width: 768px) {
  .denture .denture_contents .denture_item .denture_item_flex {
    flex-flow: column;
  }
}
.denture .denture_contents .denture_item .denture_item_flex .denture_item_text {
  width: 55%;
}
@media screen and (max-width: 768px) {
  .denture .denture_contents .denture_item .denture_item_flex .denture_item_text {
    width: 100%;
  }
}
.denture .denture_contents .denture_item .denture_item_flex .denture_item_text p {
  color: #6a5c42;
  line-height: 2;
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  .denture .denture_contents .denture_item .denture_item_flex .denture_item_text p {
    margin-bottom: 3vw;
  }
}
.denture .denture_contents .denture_item .denture_item_flex .denture_item_text p:last-child {
  margin-bottom: 0;
}
.denture .denture_contents .denture_item .denture_item_flex .denture_item_text .denture_resin_heading {
  font-family: "Hina Mincho";
  font-size: 24px;
  color: #6a5c42;
  padding: 5px 20px;
  margin-bottom: 2vw;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1vw;
  padding-left: 0;
}
@media screen and (max-width: 768px) {
  .denture .denture_contents .denture_item .denture_item_flex .denture_item_text .denture_resin_heading {
    font-size: 18px;
    margin-bottom: 4vw;
    gap: 2vw;
  }
}
.denture .denture_contents .denture_item .denture_item_flex .denture_item_image {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .denture .denture_contents .denture_item .denture_item_flex .denture_item_image {
    width: 100%;
  }
}
.denture .denture_contents .denture_item .denture_item_flex .denture_item_image img {
  width: 100%;
  display: block;
}
.denture .denture_contents .denture_item .denture_magnet_info {
  display: flex;
  align-items: stretch;
  gap: 0;
  background-color: #f0e9db;
  margin-top: 2vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  .denture .denture_contents .denture_item .denture_magnet_info {
    flex-flow: column;
    margin-top: 4vw;
  }
}
.denture .denture_contents .denture_item .denture_magnet_info .denture_magnet_col {
  flex: 1;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .denture .denture_contents .denture_item .denture_magnet_info .denture_magnet_col {
    padding: 20px;
  }
}
.denture .denture_contents .denture_item .denture_magnet_info .denture_magnet_col .denture_magnet_heading {
  font-family: "Hina Mincho";
  font-size: 24px;
  color: #6a5c42;
  padding: 5px 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1vw;
  padding-left: 0;
}
@media screen and (max-width: 768px) {
  .denture .denture_contents .denture_item .denture_magnet_info .denture_magnet_col .denture_magnet_heading {
    font-size: 18px;
    gap: 2vw;
  }
}
.denture .denture_contents .denture_item .denture_magnet_info .denture_magnet_col p {
  color: #6a5c42;
  line-height: 2;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .denture .denture_contents .denture_item .denture_magnet_info .denture_magnet_col p {
    font-size: 3.4vw !important;
  }
}
.denture .denture_contents .denture_item .denture_magnet_info .denture_magnet_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 30px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .denture .denture_contents .denture_item .denture_magnet_info .denture_magnet_list {
    grid-template-columns: 1fr;
  }
}
.denture .denture_contents .denture_item .denture_magnet_info .denture_magnet_list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6a5c42;
  font-size: 16px;
}
.denture .denture_contents .denture_item .denture_magnet_info .denture_magnet_list li img {
  width: 2vw;
  height: 2vw;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .denture .denture_contents .denture_item .denture_magnet_info .denture_magnet_list li img {
    width: 4vw;
    height: 4vw;
  }
}
.denture .denture_contents .denture_item .denture_magnet_info .denture_magnet_divider {
  width: 1px;
  height: 80%;
  background-color: #d5c49c;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .denture .denture_contents .denture_item .denture_magnet_info .denture_magnet_divider {
    width: 100%;
    height: 1px;
    top: 60%;
  }
}
.denture .denture_contents .denture_item .denture_resin_sub {
  margin-top: 2vw;
}
@media screen and (max-width: 768px) {
  .denture .denture_contents .denture_item .denture_resin_sub {
    margin-top: 4vw;
  }
}
.denture .denture_contents .denture_item .denture_resin_sub .denture_resin_cards {
  display: flex;
  gap: 2vw;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  .denture .denture_contents .denture_item .denture_resin_sub .denture_resin_cards {
    flex-flow: column;
    gap: 4vw;
    margin-bottom: 4vw;
  }
}
.denture .denture_contents .denture_item .denture_resin_sub .denture_resin_cards .denture_resin_card {
  flex: 1;
  background-color: #F0E9DB;
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 40px 20px;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .denture .denture_contents .denture_item .denture_resin_sub .denture_resin_cards .denture_resin_card {
    padding: 20px;
  }
}
.denture .denture_contents .denture_item .denture_resin_sub .denture_resin_cards .denture_resin_card .denture_resin_card__title {
  background-color: #e5aa42;
  color: #fff;
  font-size: 20px;
  padding: 15px 20px;
  width: 100%;
  text-align: center;
  line-height: 1.2;
}
.denture .denture_contents .denture_item .denture_resin_sub .denture_resin_cards .denture_resin_card p {
  color: #6a5c42;
  font-size: 16px;
  line-height: 2;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .denture .denture_contents .denture_item .denture_resin_sub .denture_resin_cards .denture_resin_card p {
    font-size: 3.4vw !important;
  }
}
.denture .denture_contents .denture_item .denture_resin_sub .denture_resin_wide {
  background-color: #F0E9DB;
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 40px;
  gap: 20px;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  .denture .denture_contents .denture_item .denture_resin_sub .denture_resin_wide {
    padding: 20px;
    margin-bottom: 4vw;
  }
}
.denture .denture_contents .denture_item .denture_resin_sub .denture_resin_wide:last-child {
  margin-bottom: 0;
}
.denture .denture_contents .denture_item .denture_resin_sub .denture_resin_wide .denture_resin_wide__title {
  background-color: #e5aa42;
  color: #fff;
  font-size: 20px;
  padding: 15px 20px;
  width: 100%;
  text-align: center;
  line-height: 1.2;
}
.denture .denture_contents .denture_item .denture_resin_sub .denture_resin_wide p {
  color: #6a5c42;
  font-size: 16px;
  line-height: 2;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .denture .denture_contents .denture_item .denture_resin_sub .denture_resin_wide p {
    font-size: 3.4vw !important;
  }
}

.pediatric {
  margin: 4vw auto;
}
@media screen and (max-width: 768px) {
  .pediatric {
    margin: 8vw auto;
  }
}
.pediatric .pediatric_flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2vw;
  width: 90%;
  margin: auto;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  .pediatric .pediatric_flex {
    flex-flow: column;
    margin-bottom: 8vw;
  }
}
.pediatric .pediatric_flex .pediatric_text {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .pediatric .pediatric_flex .pediatric_text {
    width: 100%;
  }
}
.pediatric .pediatric_flex .pediatric_text h4 {
  font-family: "Hina Mincho";
  color: #BC9C4B;
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  .pediatric .pediatric_flex .pediatric_text h4 {
    margin-bottom: 4vw;
  }
}
.pediatric .pediatric_flex .pediatric_text p {
  color: #6A5C42;
}
.pediatric .pediatric_flex .pediatric_image {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .pediatric .pediatric_flex .pediatric_image {
    width: 100%;
  }
}
.pediatric .pediatric_flex .pediatric_image img {
  width: 100%;
}
.pediatric .pediatric_noFlex {
  width: 90%;
  margin: auto;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  .pediatric .pediatric_noFlex {
    margin-bottom: 8vw;
  }
}
.pediatric .pediatric_noFlex .pediatric_text {
  width: 100%;
}
.pediatric .pediatric_noFlex .pediatric_text h4 {
  font-family: "Hina Mincho";
  color: #BC9C4B;
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  .pediatric .pediatric_noFlex .pediatric_text h4 {
    margin-bottom: 4vw;
  }
}
.pediatric .pediatric_noFlex .pediatric_text p {
  color: #6A5C42;
}
.pediatric .periodontal_check {
  position: relative;
  background-color: #F0E9DB;
  padding: 4vw 0;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  .pediatric .periodontal_check {
    margin-bottom: 8vw;
  }
}
.pediatric .periodontal_check .check_bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.pediatric .periodontal_check .periodontal_check_contents {
  position: relative;
  z-index: 10;
  width: 90%;
  margin: auto;
  margin-top: 2vw;
  margin-bottom: 4vw;
  background-color: #fff;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.15);
  padding: 2vw 5vw;
}
@media screen and (max-width: 768px) {
  .pediatric .periodontal_check .periodontal_check_contents {
    padding: 8vw 5vw;
  }
}
.pediatric .periodontal_check .periodontal_check_contents h4 {
  color: #fff;
  text-align: center;
  padding: 1vw;
  background-color: #E5AA42;
  font-family: "Hina Mincho";
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  .pediatric .periodontal_check .periodontal_check_contents h4 {
    padding: 3vw;
    margin-bottom: 4vw;
  }
}
.pediatric .periodontal_check .periodontal_check_contents .check_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.pediatric .periodontal_check .periodontal_check_contents .check_contents .check_item {
  width: 45%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1vw;
  padding: 1vw 0;
  border-bottom: 1px dotted #6A5C42;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .pediatric .periodontal_check .periodontal_check_contents .check_contents .check_item {
    padding: 2vw 0;
  }
}
@media screen and (max-width: 768px) {
  .pediatric .periodontal_check .periodontal_check_contents .check_contents .check_item {
    width: 100%;
    padding: 4vw 0;
    gap: 3vw;
  }
}
.pediatric .periodontal_check .periodontal_check_contents .check_contents .check_item img {
  width: 2vw;
}
@media screen and (max-width: 768px) {
  .pediatric .periodontal_check .periodontal_check_contents .check_contents .check_item img {
    width: 4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .pediatric .periodontal_check .periodontal_check_contents .check_contents .check_item p {
    line-height: 2vw;
  }
}
.pediatric .pediatric_devices {
  width: 90%;
  margin: 2vw auto 4vw;
  display: flex;
  flex-direction: column;
  gap: 2vw;
}
@media screen and (max-width: 768px) {
  .pediatric .pediatric_devices {
    margin: 4vw auto 8vw;
    gap: 4vw;
  }
}
.pediatric .pediatric_devices .pediatric_device {
  background-color: #f0e9db;
  padding: 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .pediatric .pediatric_devices .pediatric_device {
    padding: 20px;
  }
}
.pediatric .pediatric_devices .pediatric_device .pediatric_device_title {
  padding: 5px 40px;
  padding-left: 0;
}
@media screen and (max-width: 768px) {
  .pediatric .pediatric_devices .pediatric_device .pediatric_device_title {
    padding: 5px 20px;
    padding-left: 0;
  }
}
.pediatric .pediatric_devices .pediatric_device .pediatric_device_title p {
  font-family: "Hina Mincho";
  color: #6a5c42;
  font-size: 24px;
  line-height: 1.2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1vw;
}
@media screen and (max-width: 768px) {
  .pediatric .pediatric_devices .pediatric_device .pediatric_device_title p {
    gap: 2vw;
    font-size: 20px;
  }
}
.pediatric .pediatric_devices .pediatric_device > p {
  color: #6a5c42;
  line-height: 2;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .pediatric .pediatric_devices .pediatric_device > p {
    font-size: 3.4vw;
  }
}
.pediatric .biography_headline::after, .pediatric .biography_headline::before {
  width: 30%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .pediatric .biography_headline::after, .pediatric .biography_headline::before {
    width: 24%;
  }
}
@media screen and (max-width: 768px) {
  .pediatric .biography_headline::after, .pediatric .biography_headline::before {
    width: 10%;
  }
}

.pediatric_steps {
  width: 90%;
  margin: 0 auto 4vw;
}
@media screen and (max-width: 768px) {
  .pediatric_steps {
    margin-bottom: 8vw;
  }
}
.pediatric_steps .pediatric_step {
  display: flex;
  gap: 20px;
  align-items: center;
  background-color: #f0e9db;
  padding: 20px 40px;
}
@media screen and (max-width: 768px) {
  .pediatric_steps .pediatric_step {
    padding: 15px 20px;
    gap: 15px;
  }
}
.pediatric_steps .pediatric_step .pediatric_step_number {
  font-family: "Lora", serif;
  font-weight: normal;
  font-size: 48px;
  color: #bc9c4b;
  line-height: 1.2;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .pediatric_steps .pediatric_step .pediatric_step_number {
    font-size: 32px;
  }
}
.pediatric_steps .pediatric_step .pediatric_step_title {
  font-family: "Hina Mincho";
  font-size: 24px;
  color: #6a5c42;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .pediatric_steps .pediatric_step .pediatric_step_title {
    font-size: 18px;
  }
}
.pediatric_steps .pediatric_step_text {
  padding: 20px 40px;
}
@media screen and (max-width: 768px) {
  .pediatric_steps .pediatric_step_text {
    padding: 15px 20px;
  }
}
.pediatric_steps .pediatric_step_text p {
  color: #6a5c42;
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .pediatric_steps .pediatric_step_text p {
    font-size: 3.4vw;
  }
}
.pediatric_steps .pediatric_step_arrow {
  display: flex;
  justify-content: center;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  .pediatric_steps .pediatric_step_arrow {
    margin-bottom: 4vw;
  }
}
.pediatric_steps .pediatric_step_arrow img {
  width: 30%;
  height: 40px;
  display: block;
}
@media screen and (max-width: 768px) {
  .pediatric_steps .pediatric_step_arrow img {
    height: 24px;
  }
}

.pediatric_fee {
  width: 90%;
  margin: 2vw auto 4vw;
}
@media screen and (max-width: 768px) {
  .pediatric_fee {
    margin: 4vw auto 8vw;
  }
}
.pediatric_fee .pediatric_fee_heading {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  .pediatric_fee .pediatric_fee_heading {
    gap: 20px;
    margin-bottom: 4vw;
  }
}
.pediatric_fee .pediatric_fee_heading .pediatric_fee_line {
  flex: 1;
}
.pediatric_fee .pediatric_fee_heading .pediatric_fee_line img {
  width: 100%;
  display: block;
}
.pediatric_fee .pediatric_fee_heading p {
  font-family: "Hina Mincho";
  font-size: 32px;
  color: #6a5c42;
  line-height: 1.2;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .pediatric_fee .pediatric_fee_heading p {
    font-size: 22px;
  }
}
.pediatric_fee .pediatric_fee_table {
  width: 100%;
}
.pediatric_fee .pediatric_fee_table .pediatric_fee_row {
  display: flex;
  border-bottom: 1px solid #b4a689;
}
.pediatric_fee .pediatric_fee_table .pediatric_fee_row:first-child {
  border-top: 1px solid #b4a689;
}
.pediatric_fee .pediatric_fee_table .pediatric_fee_row .pediatric_fee_label {
  width: 50%;
  background-color: #6a5c42;
  color: #fff;
  padding: 20px;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .pediatric_fee .pediatric_fee_table .pediatric_fee_row .pediatric_fee_label {
    padding: 15px;
    font-size: 3.4vw;
  }
}
.pediatric_fee .pediatric_fee_table .pediatric_fee_row .pediatric_fee_value {
  width: 50%;
  background-color: #f0e9db;
  color: #6a5c42;
  padding: 20px;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .pediatric_fee .pediatric_fee_table .pediatric_fee_row .pediatric_fee_value {
    padding: 15px;
    font-size: 3.4vw;
  }
}
.pediatric_fee .pediatric_fee_table .pediatric_fee_note {
  color: #6a5c42;
  font-size: 14px;
  margin-top: 1vw;
}
@media screen and (max-width: 768px) {
  .pediatric_fee .pediatric_fee_table .pediatric_fee_note {
    margin-top: 2vw;
    font-size: 3vw;
  }
}

.pediatric_caution {
  width: 90%;
  margin: 2vw auto 4vw;
}
@media screen and (max-width: 768px) {
  .pediatric_caution {
    margin: 4vw auto 8vw;
  }
}
.pediatric_caution .pediatric_caution_box {
  border: 1px solid #505050;
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .pediatric_caution .pediatric_caution_box {
    padding: 20px;
    gap: 20px;
  }
}
.pediatric_caution .pediatric_caution_box p {
  font-family: "Zen Old Mincho", serif;
  color: #505050;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 768px) {
  .pediatric_caution .pediatric_caution_box p {
    font-size: 3.4vw;
    letter-spacing: 0.5px;
  }
}

.pediatric_mouth_text {
  width: 90%;
  margin: 2vw auto;
  color: #6a5c42;
  line-height: 2;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .pediatric_mouth_text {
    margin: 4vw auto;
  }
}

.pediatric_mouth_cards {
  display: flex;
  gap: 2vw;
  width: 90%;
  margin: 0 auto 4vw;
}
@media screen and (max-width: 768px) {
  .pediatric_mouth_cards {
    flex-flow: column;
    gap: 4vw;
    margin-bottom: 8vw;
  }
}
.pediatric_mouth_cards .pediatric_mouth_card {
  flex: 1;
  background-color: #f0e9db;
  display: flex;
  flex-flow: column;
  align-items: center;
  padding: 40px 20px;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .pediatric_mouth_cards .pediatric_mouth_card {
    padding: 20px;
  }
}
.pediatric_mouth_cards .pediatric_mouth_card .pediatric_mouth_card__title {
  background-color: #6a5c42;
  color: #fff;
  font-size: 20px;
  padding: 15px 20px;
  width: 100%;
  text-align: center;
  line-height: 1.2;
}
.pediatric_mouth_cards .pediatric_mouth_card p {
  color: #6a5c42;
  font-size: 16px;
  line-height: 2;
  width: 100%;
}

.pediatric_straighten {
  width: 90%;
  margin: 0 auto 4vw;
}
@media screen and (max-width: 768px) {
  .pediatric_straighten {
    margin-bottom: 8vw;
  }
}
.pediatric_straighten h4 {
  color: #bc9c4b;
  font-family: "Hina Mincho";
  font-size: 32px;
  line-height: 1.4;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  .pediatric_straighten h4 {
    font-size: 22px;
    margin-bottom: 4vw;
  }
}
.pediatric_straighten .pediatric_straighten_flex {
  display: flex;
  align-items: flex-start;
  gap: 2vw;
}
@media screen and (max-width: 768px) {
  .pediatric_straighten .pediatric_straighten_flex {
    flex-flow: column;
  }
}
.pediatric_straighten .pediatric_straighten_flex .pediatric_straighten_image {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .pediatric_straighten .pediatric_straighten_flex .pediatric_straighten_image {
    width: 100%;
  }
}
.pediatric_straighten .pediatric_straighten_flex .pediatric_straighten_image img {
  width: 100%;
  display: block;
}
.pediatric_straighten .pediatric_straighten_flex .pediatric_straighten_text {
  width: 55%;
}
@media screen and (max-width: 768px) {
  .pediatric_straighten .pediatric_straighten_flex .pediatric_straighten_text {
    width: 100%;
  }
}
.pediatric_straighten .pediatric_straighten_flex .pediatric_straighten_text p {
  color: #6a5c42;
  line-height: 2;
  font-size: 16px;
}

.pediatric_flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2vw;
  width: 90%;
  margin: auto;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  .pediatric_flex {
    flex-flow: column;
    margin-bottom: 8vw;
  }
}
.pediatric_flex .pediatric_text {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .pediatric_flex .pediatric_text {
    width: 100%;
  }
}
.pediatric_flex .pediatric_text h4 {
  font-family: "Hina Mincho";
  color: #BC9C4B;
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  .pediatric_flex .pediatric_text h4 {
    margin-bottom: 4vw;
  }
}
.pediatric_flex .pediatric_text p {
  color: #6A5C42;
}
.pediatric_flex .pediatric_image {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .pediatric_flex .pediatric_image {
    width: 100%;
  }
}
.pediatric_flex .pediatric_image img {
  width: 100%;
}

.pediatric_noFlex {
  width: 90%;
  margin: auto;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  .pediatric_noFlex {
    margin-bottom: 8vw;
  }
}
.pediatric_noFlex .pediatric_text {
  width: 100%;
}
.pediatric_noFlex .pediatric_text h4 {
  font-family: "Hina Mincho";
  color: #BC9C4B;
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  .pediatric_noFlex .pediatric_text h4 {
    margin-bottom: 4vw;
  }
}
.pediatric_noFlex .pediatric_text p {
  color: #6A5C42;
}

.periodontal_check {
  position: relative;
  background-color: #F0E9DB;
  padding: 4vw 0;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  .periodontal_check {
    margin-bottom: 8vw;
  }
}
.periodontal_check .check_bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.periodontal_check .periodontal_check_contents {
  position: relative;
  z-index: 10;
  width: 90%;
  margin: auto;
  margin-top: 2vw;
  margin-bottom: 4vw;
  background-color: #fff;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.15);
  padding: 2vw 5vw;
}
@media screen and (max-width: 768px) {
  .periodontal_check .periodontal_check_contents {
    padding: 8vw 5vw;
  }
}
.periodontal_check .periodontal_check_contents h4 {
  color: #fff;
  text-align: center;
  padding: 1vw;
  background-color: #E5AA42;
  font-family: "Hina Mincho";
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  .periodontal_check .periodontal_check_contents h4 {
    padding: 3vw;
    margin-bottom: 4vw;
  }
}
.periodontal_check .periodontal_check_contents .check_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.periodontal_check .periodontal_check_contents .check_contents .check_item {
  width: 45%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1vw;
  padding: 1vw 0;
  border-bottom: 1px dotted #6A5C42;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .periodontal_check .periodontal_check_contents .check_contents .check_item {
    padding: 2vw 0;
  }
}
@media screen and (max-width: 768px) {
  .periodontal_check .periodontal_check_contents .check_contents .check_item {
    width: 100%;
    padding: 4vw 0;
    gap: 3vw;
  }
}
.periodontal_check .periodontal_check_contents .check_contents .check_item img {
  width: 2vw;
}
@media screen and (max-width: 768px) {
  .periodontal_check .periodontal_check_contents .check_contents .check_item img {
    width: 4vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .periodontal_check .periodontal_check_contents .check_contents .check_item p {
    line-height: 2vw;
  }
}

.pediatric_devices {
  width: 90%;
  margin: 2vw auto 4vw;
  display: flex;
  flex-direction: column;
  gap: 2vw;
}
@media screen and (max-width: 768px) {
  .pediatric_devices {
    margin: 4vw auto 8vw;
    gap: 4vw;
  }
}
.pediatric_devices .pediatric_device {
  background-color: #f0e9db;
  padding: 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .pediatric_devices .pediatric_device {
    padding: 20px;
  }
}
.pediatric_devices .pediatric_device .pediatric_device_title {
  padding: 5px 40px;
  padding-left: 0;
}
@media screen and (max-width: 768px) {
  .pediatric_devices .pediatric_device .pediatric_device_title {
    padding: 5px 20px;
    padding-left: 0;
  }
}
.pediatric_devices .pediatric_device .pediatric_device_title p {
  font-family: "Hina Mincho";
  color: #6a5c42;
  font-size: 24px;
  line-height: 1.2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1vw;
}
@media screen and (max-width: 768px) {
  .pediatric_devices .pediatric_device .pediatric_device_title p {
    gap: 2vw;
    font-size: 20px;
  }
}
.pediatric_devices .pediatric_device > p {
  color: #6a5c42;
  line-height: 2;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .pediatric_devices .pediatric_device > p {
    font-size: 3.4vw;
  }
}

.adult_headline {
  margin-top: 4vw;
}
@media screen and (max-width: 768px) {
  .adult_headline {
    margin-top: 8vw;
  }
}

.pediatric_flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2vw;
  width: 90%;
  margin: auto;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  .pediatric_flex {
    flex-flow: column;
    margin-bottom: 8vw;
  }
}
.pediatric_flex .pediatric_text {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .pediatric_flex .pediatric_text {
    width: 100%;
  }
}
.pediatric_flex .pediatric_text h4 {
  font-family: "Hina Mincho";
  color: #BC9C4B;
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  .pediatric_flex .pediatric_text h4 {
    margin-bottom: 4vw;
  }
}
.pediatric_flex .pediatric_text p {
  color: #6A5C42;
}
.pediatric_flex .pediatric_image {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .pediatric_flex .pediatric_image {
    width: 100%;
  }
}
.pediatric_flex .pediatric_image img {
  width: 100%;
}

.medical05_top {
  margin-top: 4vw;
}
@media screen and (max-width: 768px) {
  .medical05_top {
    margin-top: 8vw;
  }
}

.medical05_bottom {
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  .medical05_bottom {
    margin-bottom: 8vw;
  }
}

.medical05_flex {
  background-color: #F0E9DB;
  padding: 2vw 0;
}

.pediatric_flex02 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2vw;
  width: 90%;
  margin: auto;
  margin-bottom: 4vw;
  background-color: #F0E9DB;
}
@media screen and (max-width: 768px) {
  .pediatric_flex02 {
    flex-flow: column;
    margin-bottom: 8vw;
  }
}
.pediatric_flex02 .pediatric_text {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .pediatric_flex02 .pediatric_text {
    width: 100%;
  }
}
.pediatric_flex02 .pediatric_text h4 {
  font-family: "Hina Mincho";
  color: #BC9C4B;
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  .pediatric_flex02 .pediatric_text h4 {
    margin-bottom: 4vw;
  }
}
.pediatric_flex02 .pediatric_text p {
  color: #6A5C42;
}
.pediatric_flex02 .pediatric_image {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .pediatric_flex02 .pediatric_image {
    width: 100%;
  }
}
.pediatric_flex02 .pediatric_image img {
  width: 100%;
}

.pediatric_flex_check {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2vw;
  width: 90%;
  margin: auto;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  .pediatric_flex_check {
    flex-flow: column;
    margin-bottom: 8vw;
  }
}
.pediatric_flex_check .pediatric_text {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .pediatric_flex_check .pediatric_text {
    width: 100%;
  }
}
.pediatric_flex_check .pediatric_text h5 {
  color: #fff;
  text-align: center;
  background-color: #E5AA42;
  padding: 1vw;
  margin-bottom: 1vw;
}
.pediatric_flex_check .pediatric_text p {
  color: #6A5C42;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1vw;
  margin-bottom: 0.5vw;
}
@media screen and (max-width: 768px) {
  .pediatric_flex_check .pediatric_text p {
    gap: 2vw;
    margin-bottom: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  .pediatric_flex_check .pediatric_text p img {
    width: 4vw;
  }
}
.pediatric_flex_check .pediatric_image {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .pediatric_flex_check .pediatric_image {
    width: 100%;
  }
}
.pediatric_flex_check .pediatric_image img {
  width: 100%;
}

.footer__info {
  background: #f0e9db;
  padding: 60px 0 50px;
}
@media screen and (max-width: 768px) {
  .footer__info {
    padding: 40px 0 40px;
  }
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer__inner {
    padding: 0 30px;
  }
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding: 0 20px;
  }
}
.footer__logo {
  text-align: center;
  margin-bottom: 30px;
}
.footer__logo a {
  display: inline-block;
}
.footer__logo img {
  height: 80px;
  width: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer__logo img {
    height: 60px;
  }
}
@media screen and (max-width: 768px) {
  .footer__logo img {
    height: 50px;
  }
}
.footer__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4vw;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .footer__contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
  }
}
.footer__address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.footer__address-icon {
  width: 12px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer__address-text p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #6a5c42;
  line-height: 1.6;
}
.footer__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #e5aa42;
  padding: 10px 24px;
  text-decoration: none;
  min-width: 180px;
  flex-shrink: 0;
}
.footer__cta-label {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
}
.footer__cta-tel {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-family: "Lora", serif;
  font-weight: 500;
  font-size: 1.8rem;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
}
.footer__cta-tel img {
  width: 10px;
  height: 22px;
  transform: rotate(-15deg);
  flex-shrink: 0;
}
.footer__body {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  width: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer__body {
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .footer__body {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
}
.footer__schedule {
  flex: 1;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .footer__schedule {
    width: 100%;
  }
}
.footer__table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #6a5c42;
}
.footer__table thead th:first-child {
  width: 15%;
}
.footer__table thead th {
  width: 10%;
}
.footer__table th, .footer__table td {
  border-bottom: 1px solid #6a5c42;
  padding: 0.5vw;
  text-align: center;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #6a5c42;
  white-space: nowrap;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer__table th, .footer__table td {
    padding: 10px 5px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .footer__table th, .footer__table td {
    padding: 2vw;
  }
}
.footer__table th {
  background: #f0e9db;
}
.footer__table-label {
  text-align: left !important;
  padding-left: 12px !important;
  font-size: 1.3rem !important;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer__table-label {
    font-size: 1.1rem !important;
  }
}
.footer__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer__mark--circle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #6a5c42;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer__mark--circle {
    width: 12px;
    height: 12px;
  }
}
.footer__mark--slash {
  font-size: 1.8rem;
  font-weight: 300;
  color: #6a5c42;
  line-height: 1;
}
.footer__schedule-note {
  margin-top: 14px;
  border: 1px solid #6a5c42;
  padding: 12px 16px 14px;
  background: #faf5ee;
}
.footer__schedule-note p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #6a5c42;
  line-height: 1.6;
}
.footer__schedule-note-title {
  display: inline-block;
  background: #6a5c42;
  color: #fff;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  padding: 3px 10px;
  margin-bottom: 8px;
  line-height: 1.4;
}
.footer .calendar {
  max-width: 600px;
}
@media screen and (max-width: 768px) {
  .footer .calendar {
    max-width: 100%;
  }
}
.footer .calendar__title {
  background: #7b6a4a;
  color: #fff;
  text-align: center;
  padding: 10px;
}
.footer .calendar__head,
.footer .calendar__body {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.footer .calendar__head div {
  background: #d7b57d;
  text-align: center;
  padding: 10px;
  border: 1px solid #6A5C42;
}
.footer .calendar__cell {
  border: 1px solid #6A5C42;
  padding: 0.5vw 15px;
  text-align: center;
  background-color: #fff;
  color: #6A5C42;
}
@media screen and (max-width: 768px) {
  .footer .calendar__cell {
    padding: 2vw;
  }
}
.footer {
  /* 休み種類 */
}
.footer .is-holiday {
  background-color: #e3a93d;
}
.footer .is-morning {
  background: #f5b57c;
}
.footer .is-afternoon {
  background: #e6b1a5;
}
.footer__cal-legend {
  display: flex;
  gap: 6px;
  margin-top: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer__cal-legend-item {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #6a5c42;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #6a5c42;
  line-height: 1.2;
}
.footer__cal-legend-item--holiday {
  background: #e5aa42;
}
.footer__cal-legend-item--am {
  background: #faaa69;
}
.footer__cal-legend-item--pm {
  background: #ecbbaf;
}
.footer__map {
  width: 100%;
  height: 450px;
}
@media screen and (max-width: 768px) {
  .footer__map {
    height: 60vw;
  }
}
.footer__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.footer__sitemap {
  background: #f0e9db;
  padding: 60px 40px 50px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer__sitemap {
    display: none;
  }
}
.footer__sitemap-title {
  font-family: "Lora", serif;
  font-size: 3.6rem;
  font-weight: 400;
  color: #6A5C42;
  line-height: 1.2;
  letter-spacing: 0.08em;
  width: 60%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer__sitemap-title {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .footer__sitemap-title {
    font-size: 2.8rem;
  }
}
.footer__sitemap-divider {
  width: 60%;
  height: 1px;
  background: #c9a64b;
  margin: 20px auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer__sitemap-divider {
    width: 80%;
  }
}
.footer__sitemap-row {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  flex-wrap: wrap;
}
.footer__sitemap-row:last-child {
  margin-bottom: 0;
}
.footer__sitemap-row li {
  position: relative;
  padding: 0 20px;
}
.footer__sitemap-row li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: #6a5c42;
}
.footer__sitemap-row li a {
  font-family: "Hina Mincho", serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #6a5c42;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.6;
}
.footer__sitemap-row li a:hover {
  opacity: 0.7;
}
.footer__copyright {
  background: #AF8B4A;
  padding: 16px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    padding-bottom: 18vw;
  }
}
.footer__copyright p {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
}/*# sourceMappingURL=style.css.map */