@charset "UTF-8";
body {
  /* font-size */
  --10px: 0.625rem;
  --11px: 0.6875rem;
  --12px: 0.75rem;
  --13px: 0.8125rem;
  --14px: 0.875rem;
  --15px: 0.9375rem;
  --16px: 1rem;
  --17px: 1.0625rem;
  --18px: 1.125rem;
  --20px: 1.25rem;
  --22px: 1.375rem;
  --24px: 1.5rem;
  --26px: 1.625rem;
  --28px: 1.75rem;
  --30px: 1.875rem;
  --32px: 2rem;
  --34px: 2.125rem;
  --36px: 2.25rem;
  --38px: 2.375rem;
  --40px: 2.5rem;
  --44px: 2.75rem;
  --46px: 2.875rem;
  --48px: 3rem;
  --50px: 3.125rem;
  --80px: 5rem;
  --240px: 15rem;
  /* color */
  --green: #7DAF14;
  --mgreen: #C5E386;
  --lgreen: #F2F7E7;
  --yellow: #FFF6D0;
  --lyellow: #FFFCEF;
  --blue: #37A7DB;
  --lblue: #EAF6FC;
  --pink: #E676A6;
  --lpink: #FDF1F6;
  --gray: #333333;
  --lgray: #DBDBDB;
  --xlgray: #F8F8F8;
}

body {
  line-height: 1.5;
  font-family: "M PLUS Rounded 1c", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  color: var(--gray);
}

@media (max-width: 640px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 640px) {
  .sp-only {
    display: block;
  }
}

.text-bold {
  font-weight: bold;
}

.text-red {
  color: #e20000;
  font-weight: bold;
}

.inner {
  width: 1200px;
  max-width: unset;
}
@media (min-width: 640px) and (max-width: 1200px) {
  .inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 640px) {
  .inner {
    width: 100%;
  }
}

.wrapper {
  overflow: hidden;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  flex-direction: column;
  align-items: flex-start;
  background-color: #fff;
  z-index: 100;
}
@media (max-width: 1200px) {
  .header {
    height: 7rem;
    box-sizing: border-box;
  }
}
@media (max-width: 640px) {
  .header {
    height: 3.5rem;
  }
}
.header .inner {
  height: 100%;
  position: relative;
}
.header-description {
  width: 100%;
  padding: 0.5em 0;
  color: #fff;
  font-size: var(--12px);
  background: var(--green);
}
@media (max-width: 1200px) {
  .header-description {
    display: none;
  }
}
.header-container {
  width: 100%;
  padding-top: 0.5rem;
}
@media (max-width: 1200px) {
  .header-container {
    height: 7rem;
    padding: 0;
  }
}
@media (max-width: 640px) {
  .header-container {
    height: 3.5rem;
  }
}
.header-container .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 1200px) {
  .header-container .inner {
    padding: 0;
    background: #fff;
  }
}
.header-branding {
  height: 100%;
  margin-right: 4rem;
}
@media (min-width: 640px) and (max-width: 1200px) {
  .header-branding {
    margin-right: 1rem;
  }
}
@media (max-width: 1200px) {
  .header-branding {
    width: 100%;
    margin-right: 0;
    padding-top: 0.25rem;
    padding-left: 0.5rem;
    background: #fff;
    position: relative;
    z-index: 2000;
    border-top: solid 6px var(--green);
  }
}
.header-branding > div {
  height: 100%;
}
@media (max-width: 640px) {
  .header-branding > div {
    width: 14rem;
  }
}
.header-branding .logo-container {
  display: inline-block;
  height: 4.5rem;
}
@media (min-width: 640px) and (max-width: 1200px) {
  .header-branding .logo-container {
    height: 5.5rem;
    padding: 0;
  }
}
@media (max-width: 640px) {
  .header-branding .logo-container {
    padding: 0;
  }
}
.header-logo {
  height: 100%;
}
.header-contact {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 1;
}
@media (max-width: 1200px) {
  .header-contact {
    display: none;
  }
}
.header-contact_container {
  flex: 1;
  margin-left: 2rem;
  display: flex;
  align-items: center;
}
.header-contact_tel_number {
  display: flex;
  align-items: center;
  color: var(--pink);
  font-size: var(--34px);
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 0.1em;
}
.header-contact_tel_number span {
  transition: 0.3s;
}
.header-contact_tel_number:hover::before {
  opacity: 1;
  -webkit-animation: 1s shake;
          animation: 1s shake;
}
.header-contact_tel_number::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.25em;
  background: url(/wp/wp-content/themes/takidental/images/common/icon_tel.svg) no-repeat center/contain;
}
.header-contact_btn {
  width: 100%;
}
.header-contact_schedule {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header-contact_schedule_title {
  padding: 0.5em;
  border-radius: 4px;
  background: var(--green);
  color: #fff;
  font-size: var(--12px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1;
  text-indent: 0.2em;
}
.header-contact_schedule_text {
  flex: 1;
  font-size: var(--13px);
  margin: 0;
  margin-left: 1em;
}
.header-menu {
  width: 100%;
}
.header .menu-toggle {
  position: fixed;
  top: 0;
  right: 0;
  display: none;
  width: 60px;
  height: 60px;
  padding: 0;
  background: none;
  opacity: 1;
  z-index: 1100;
}
@media (max-width: 1200px) {
  .header .menu-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    border: var(--green) solid 4px;
    border-radius: 50%;
    width: 4.5rem;
    height: 4.5rem;
    top: 1.5rem;
    right: 1rem;
    z-index: 3000;
  }
}
@media (max-width: 640px) {
  .header .menu-toggle {
    border: var(--green) solid 3px;
    width: 2.5rem;
    height: 2.5rem;
    top: 0.85rem;
    right: 0.5rem;
  }
}
.header .menu-toggle.toggled .menu-icon {
  transform: rotate(90deg);
}
.header .menu-toggle.toggled .menu-icon .open {
  opacity: 0;
}
.header .menu-toggle.toggled .menu-icon .close {
  opacity: 1;
}
.header .menu-icon {
  position: relative;
  display: block;
  width: 50%;
  height: 50%;
  color: #000;
  font-size: unset !important;
  transition: 0.3s;
}
.header .menu-icon .open, .header .menu-icon .close {
  position: absolute;
  width: 100%;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
.header .menu-icon .open {
  opacity: 1;
}
.header .menu-icon .close {
  opacity: 0;
}
.header-nav {
  height: 100%;
}
@media (max-width: 1200px) {
  .header-nav {
    position: fixed !important;
    top: 7rem;
    right: 0;
    height: auto;
    pointer-events: none;
  }
}
@media (max-width: 640px) {
  .header-nav {
    top: 3.5rem;
  }
}
@media (max-width: 1200px) {
  .header-nav.toggled {
    position: fixed !important;
    top: 7rem;
    right: 0;
    pointer-events: unset;
  }
  .header-nav.toggled .header-nav_list {
    margin-left: auto !important;
    margin-right: 0 !important;
    width: 100vw;
    height: auto !important;
    box-shadow: 0 0 1.5rem rgba(109, 145, 49, 0.5);
    background: rgba(255, 252, 239, 0.9);
    padding: 1rem !important;
    opacity: 1;
    visibility: visible;
    transform: unset;
  }
}
@media (max-width: 640px) {
  .header-nav.toggled {
    top: 3.5rem;
  }
}
.header-nav_list {
  height: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  align-items: center;
  padding: 0.5rem 0 0;
}
@media (max-width: 1200px) {
  .header-nav_list {
    height: auto;
    display: block !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    width: 100vw;
    box-shadow: 0 0 10px rgba(60, 88, 101, 0.3);
    background: rgba(255, 252, 239, 0.9);
    padding: 1rem !important;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    z-index: -1;
  }
}
.header-nav_list .menu-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin: 0 0.5rem;
}
@media (max-width: 1200px) {
  .header-nav_list .menu-item {
    width: 100%;
    height: auto;
    margin: 0;
    border-bottom: 1px solid var(--green);
  }
}
@media (max-width: 1200px) {
  .header-nav_list .menu-item:last-child {
    border-bottom: none !important;
  }
}
.header-nav_list .menu-item a {
  display: flex;
  align-items: center;
  padding: 0.25em 1em;
  padding-left: 0.75em;
  overflow: hidden;
  color: var(--green);
  font-size: var(--18px);
  font-weight: 500;
  text-decoration: none;
  border-radius: 2em;
  transition: background 0.25s;
}
@media (max-width: 1200px) {
  .header-nav_list .menu-item a {
    display: flex !important;
    justify-content: center;
    padding: 0.75em 0 !important;
    padding-right: 1em !important;
    font-size: var(--20px);
  }
}
@media (max-width: 640px) {
  .header-nav_list .menu-item a {
    font-size: var(--16px);
  }
}
.header-nav_list .menu-item a::before {
  content: "";
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  margin-right: 0.5em;
}
.header-nav_list .menu-item a::after {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--yellow);
  border-radius: 2em;
  transition: width 0.5s;
  z-index: -1;
}
.header-nav_list .menu-item a:hover::before {
  -webkit-animation: 1s shake;
          animation: 1s shake;
}
.header-nav_list .menu-item a:hover::after {
  width: 100%;
}
@media (max-width: 1200px) {
  .header-nav_list .menu-item a:hover::after {
    display: none;
  }
}
.header-nav_list .menu-item.home a::before {
  background: url(/wp/wp-content/themes/takidental/images/common/icon_menu01.svg) no-repeat center/contain;
}
.header-nav_list .menu-item.service a::before {
  background: url(/wp/wp-content/themes/takidental/images/common/icon_menu02.svg) no-repeat center/contain;
}
.header-nav_list .menu-item.greeting a::before {
  background: url(/wp/wp-content/themes/takidental/images/common/icon_menu03.svg) no-repeat center/contain;
}
.header-nav_list .menu-item.facilities a::before {
  background: url(/wp/wp-content/themes/takidental/images/common/icon_menu04.svg) no-repeat center/contain;
}
.header-nav_list .menu-item.price a::before {
  background: url(/wp/wp-content/themes/takidental/images/common/icon_menu05.svg) no-repeat center/contain;
}
.header-nav_list .menu-item.access a::before {
  background: url(/wp/wp-content/themes/takidental/images/common/icon_menu06.svg) no-repeat center/contain;
}

@media (max-width: 640px) {
  .bg-overlay {
    display: block;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
  }
}

.btn {
  position: relative;
  background: var(--green);
  border-radius: 3em;
  border: 3px solid var(--green);
  box-shadow: 0 0 0.5em rgba(125, 175, 20, 0.5);
  margin: 0;
  transition: 0.3s;
}
.btn::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0.75em;
  width: 1.75em;
  height: 1.75em;
  border: 3px solid #fff;
  border-radius: 50%;
  background: url(/wp/wp-content/themes/takidental/images/common/icon_btn_arrow03.svg) no-repeat center/50% auto;
  transform: translateY(-50%);
  transition: 0.3s;
  -webkit-animation: 3s infinite btn-arrow;
          animation: 3s infinite btn-arrow;
}
@media (max-width: 640px) {
  .btn::after {
    right: 0.5em;
    width: 1.25em;
    height: 1.25em;
    border: 2px solid #fff;
  }
}
.btn:hover {
  background: #fff;
  box-shadow: 0 0 0.75em rgba(125, 175, 20, 0.7);
}
.btn:hover::after {
  background-color: var(--green);
  border-color: var(--green);
}
.btn:hover a {
  color: var(--green);
}
.btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75em 1em;
  color: #fff;
  text-decoration: none;
  font-size: var(--18px);
  font-weight: bold;
  letter-spacing: 0.1em;
  transition: 0.3s;
}
@media (max-width: 640px) {
  .btn a {
    font-size: var(--14px);
  }
}
.btn-contact:hover a::before {
  background: url(/wp/wp-content/themes/takidental/images/common/icon_reserve_pk.svg) no-repeat center/contain;
}
.btn-contact a {
  padding-right: 2em;
}
.btn-contact a::before {
  content: "";
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  margin-right: 0.75em;
  background: url(/wp/wp-content/themes/takidental/images/common/icon_reserve.svg) no-repeat center/contain;
  transition: 0.3s;
}
@media (max-width: 640px) {
  .btn-contact a::before {
    width: var(--20px);
    height: var(--20px);
  }
}
.btn-pink {
  background: var(--pink);
  box-shadow: 0 0 0.5em rgba(230, 118, 166, 0.5);
  border-color: var(--pink);
}
.btn-pink:hover {
  box-shadow: 0 0 0.75em rgba(230, 118, 166, 0.7);
}
.btn-pink:hover::after {
  background-color: var(--pink);
  border-color: var(--pink);
}
.btn-pink:hover a {
  color: var(--pink);
}
.btn-pink-external::after {
  right: 1.25em;
  background: url(/wp/wp-content/themes/takidental/images/common/icon_btn_external_wh.svg) no-repeat center/80% auto;
  border: none;
  border-radius: 0;
}
@media (max-width: 640px) {
  .btn-pink-external::after {
    right: 0.75em;
  }
}
.btn-pink-external:hover::after {
  background: url(/wp/wp-content/themes/takidental/images/common/icon_btn_external_pk.svg) no-repeat center/80% auto;
}
.btn-green-external::after {
  right: 1.25em;
  background: url(/wp/wp-content/themes/takidental/images/common/icon_btn_external_wh.svg) no-repeat center/80% auto;
  border: none;
  border-radius: 0;
}
@media (max-width: 640px) {
  .btn-green-external::after {
    right: 0.75em;
  }
}
.btn-green-external:hover::after {
  background: url(/wp/wp-content/themes/takidental/images/common/icon_btn_external_gr.svg) no-repeat center/80% auto;
}
.btn-form {
  width: 50%;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .btn-form {
    width: 100%;
  }
}
.btn-form input {
  background: unset;
  font-family: inherit;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  text-align: center;
  padding: 0.75em 1em;
  color: #fff;
  text-decoration: none;
  font-size: var(--18px);
  font-weight: bold;
  letter-spacing: 0.1em;
  transition: 0.3s;
}
@media (max-width: 640px) {
  .btn-form input {
    font-size: var(--14px);
  }
}
.btn-form input:hover {
  opacity: 1;
}
.btn-form .wpcf7-spinner {
  display: none;
}

.content {
  padding-right: 0 !important;
  float: unset !important;
}

.text-bold {
  font-weight: bold;
}
.text-green {
  font-weight: bold;
  color: var(--green);
}
.text-pink {
  font-weight: bold;
  color: var(--pink);
}
.text-blue {
  font-weight: bold;
  color: var(--blue);
}
.text-link {
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid var(--green);
  color: var(--green);
  font-weight: bold;
  text-decoration: none;
}
.text-link::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 0.5em;
  background: url(/wp/wp-content/themes/takidental/images/common/icon_link_arrow.svg) no-repeat center/contain;
  transition: margin 0.3s;
}
.text-link:hover::after {
  margin-left: 0.75em;
}
.text-link.link-external::after {
  background: url(/wp/wp-content/themes/takidental/images/common/icon_btn_external.svg) no-repeat center/contain;
}

.mt-1e {
  margin-top: 1em !important;
}
.mt-1r {
  margin-top: 1rem !important;
}

.mb-1e {
  margin-bottom: 1em !important;
}
.mb-1r {
  margin-bottom: 1rem !important;
}

.schedule-table {
  width: 100%;
  margin: 0;
  table-layout: fixed;
  background: #fff;
  border-radius: 1rem;
}
@media (max-width: 640px) {
  .schedule-table {
    border-radius: 0.5rem;
  }
}
.schedule-table_wrapper {
  overflow: hidden;
  border: 2px solid var(--blue);
  border-radius: 1rem;
}
@media (max-width: 640px) {
  .schedule-table_wrapper {
    border-radius: 0.5rem;
  }
}
.schedule-table thead {
  background: var(--blue);
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.schedule-table tbody th {
  color: var(--blue);
  font-weight: bold;
  letter-spacing: 0.1em;
}
.schedule-table tbody th:first-of-type {
  border-left: 0;
}
.schedule-table tbody td:last-of-type {
  border-right: 0;
}
.schedule-table tr:last-of-type th, .schedule-table tr:last-of-type td {
  border-bottom: 0;
}
.schedule-table th, .schedule-table td {
  padding: 0.5em 0;
  border: 2px solid var(--blue);
  font-size: var(--18px);
  text-align: center;
  vertical-align: middle;
}
@media (max-width: 640px) {
  .schedule-table th, .schedule-table td {
    padding: 0.25em 0;
    font-size: var(--10px);
    line-height: 1.25;
  }
}
.schedule-table th.weekday, .schedule-table td.weekday {
  width: 6%;
}
@media (max-width: 640px) {
  .schedule-table th.weekday, .schedule-table td.weekday {
    width: 7%;
  }
}
@media (max-width: 640px) {
  .schedule-table th.weekend, .schedule-table td.weekend {
    width: 16%;
  }
}
@media (max-width: 640px) {
  .schedule-table th {
    font-size: var(--12px);
  }
}
@media (max-width: 640px) {
  .schedule-table tr {
    height: 2em;
  }
}

.gallery_list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.gallery_list_item {
  position: relative;
  width: calc((100% - 4rem) / 3);
  margin-left: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 640px) {
  .gallery_list_item {
    width: 100%;
    margin-left: 0;
  }
}
.gallery_list_item:nth-child(3n-2) {
  margin-left: 0;
}
.gallery_list_item:nth-child(3n-2) .gallery_pic::after {
  background: var(--pink);
  box-shadow: 0 0 0.5rem rgba(230, 118, 166, 0.5);
}
.gallery_list_item:nth-child(3n-2) .gallery_title {
  background: var(--pink);
  box-shadow: 0 0 0.5rem rgba(230, 118, 166, 0.5);
}
@media (max-width: 640px) {
  .gallery_list_item:nth-child(3n-1) {
    margin-left: 0;
  }
}
.gallery_list_item:nth-child(3n-1) .gallery_pic::after {
  background: var(--blue);
  box-shadow: 0 0 0.5rem rgba(55, 167, 219, 0.5);
}
@media (max-width: 640px) {
  .gallery_list_item:nth-child(3n-1) .gallery_pic::after {
    margin-right: 0;
    margin-left: 1rem;
  }
}
.gallery_list_item:nth-child(3n-1) .gallery_title {
  left: unset;
  right: 1.5rem;
  background: var(--blue);
  box-shadow: 0 0 0.5rem rgba(55, 167, 219, 0.5);
}
.gallery_list_item:nth-child(3n) .gallery_pic::after {
  background: var(--green);
  box-shadow: 0 0 0.5rem rgba(125, 175, 20, 0.5);
}
.gallery_list_item:nth-child(3n) .gallery_title {
  background: var(--green);
  box-shadow: 0 0 0.5rem rgba(125, 175, 20, 0.5);
}
.gallery_title {
  position: absolute;
  left: 0.5rem;
  bottom: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
  margin: 0;
  color: #fff;
  font-weight: 500;
  text-align: center;
  z-index: 2;
}
@media (max-width: 640px) {
  .gallery_title {
    font-size: var(--14px);
    width: 5rem;
    height: 5rem;
  }
}
.gallery_pic {
  position: relative;
  margin-right: 1rem;
}
@media (max-width: 640px) {
  .gallery_pic {
    width: 80%;
    margin: 0 auto;
    left: -0.5rem;
  }
}
.gallery_pic::after {
  content: "";
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 0 1rem rgba(101, 155, 12, 0.3);
  background: var(--green);
}
.gallery_pic img {
  position: relative;
  border-radius: 0.5rem;
  width: 100%;
  height: auto;
  vertical-align: top;
  z-index: 1;
}
.gallery_text {
  margin-top: 0.5em;
  font-size: var(--16px);
  text-align: justify;
}
@media (max-width: 640px) {
  .gallery_text {
    width: 85%;
    margin: 0.25em auto 0;
    font-size: var(--14px);
  }
}

.container {
  padding: 10rem 0 0;
}
@media (max-width: 1200px) {
  .container {
    padding: 7rem 0 0;
  }
}
@media (max-width: 640px) {
  .container {
    padding: 3.5rem 0 0;
  }
}
.container.services .page-header_title::before {
  background: url(/wp/wp-content/themes/takidental/images/common/icon_menu02.svg) no-repeat center/contain;
}
.container.greeting .page-header_title::before {
  background: url(/wp/wp-content/themes/takidental/images/common/icon_menu03.svg) no-repeat center/contain;
}
.container.facilities .page-header_title::before {
  background: url(/wp/wp-content/themes/takidental/images/common/icon_menu04.svg) no-repeat center/contain;
}
.container.price .page-header_title::before {
  background: url(/wp/wp-content/themes/takidental/images/common/icon_menu05.svg) no-repeat center/contain;
}
.container.access .page-header_title::before {
  background: url(/wp/wp-content/themes/takidental/images/common/icon_menu06.svg) no-repeat center/contain;
}
.container.recruit .page-header_title::before {
  background: url(/wp/wp-content/themes/takidental/images/common/icon_menu03.svg) no-repeat center/contain;
}

.error404 .page-header_title::before {
  background: url(/wp/wp-content/themes/takidental/images/common/icon_menu_404.svg) no-repeat center/contain;
}

.bg_pic {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.services_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.services_nav_item {
  position: relative;
  width: calc((100% - 2rem) / 3);
  margin-left: 1rem;
  margin-bottom: 1rem;
  background: var(--lyellow);
  border: 2px solid var(--green);
  border-radius: 0.25rem;
}
@media (max-width: 640px) {
  .services_nav_item {
    width: calc((100% - 0.5rem) / 2);
    margin-left: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
.services_nav_item:nth-child(3n-2) {
  margin-left: 0;
}
@media (max-width: 640px) {
  .services_nav_item:nth-child(3n-2) {
    margin-left: 0.5rem;
  }
}
@media (max-width: 640px) {
  .services_nav_item:nth-child(odd) {
    margin-left: 0;
  }
}
.services_nav_item:nth-child(1) a {
  background: url(/wp/wp-content/themes/takidental/images/icon_services01.svg) no-repeat left 1rem center/auto 72%;
}
.services_nav_item:nth-child(2) a {
  background: url(/wp/wp-content/themes/takidental/images/icon_services02.svg) no-repeat left 1rem center/auto 72%;
}
.services_nav_item:nth-child(3) a {
  background: url(/wp/wp-content/themes/takidental/images/icon_services03.svg) no-repeat left 1rem center/auto 75%;
}
.services_nav_item:nth-child(4) a {
  background: url(/wp/wp-content/themes/takidental/images/icon_services04.svg) no-repeat left 1rem center/auto 70%;
}
@media (max-width: 640px) {
  .services_nav_item:nth-child(4) a {
    background-size: auto 60%;
  }
}
.services_nav_item:nth-child(5) a {
  background: url(/wp/wp-content/themes/takidental/images/icon_services05.svg) no-repeat left 1rem center/auto 72%;
}
@media (max-width: 640px) {
  .services_nav_item:nth-child(5) a {
    background-size: auto 65%;
  }
}
.services_nav_item:nth-child(6) a {
  background: url(/wp/wp-content/themes/takidental/images/icon_services06.svg) no-repeat left 1rem center/auto 62%;
}
@media (max-width: 640px) {
  .services_nav_item:nth-child(6) a {
    background-size: auto 60%;
  }
}
.services_nav_item:nth-child(7) a {
  background: url(/wp/wp-content/themes/takidental/images/icon_services07.svg) no-repeat left 1.75rem center/auto 75%;
}
.services_nav_item:nth-child(8) a {
  background: url(/wp/wp-content/themes/takidental/images/icon_services08.svg) no-repeat left 1rem center/auto 55%;
}
@media (max-width: 640px) {
  .services_nav_item:nth-child(8) a {
    background-size: auto 45%;
  }
}
.services_nav_item:nth-child(9) a {
  background: url(/wp/wp-content/themes/takidental/images/icon_services09.svg) no-repeat left 1.25rem top 35%/auto 75%;
}
.services_nav_item:nth-child(10) a {
  background: url(/wp/wp-content/themes/takidental/images/icon_services10.svg) no-repeat left 1rem center/auto 50%;
}
@media (max-width: 640px) {
  .services_nav_item:nth-child(10) a {
    background-size: auto 45%;
  }
}
.services_nav_item:nth-child(11) a {
  background: url(/wp/wp-content/themes/takidental/images/icon_services11.svg) no-repeat left 1rem center/auto 70%;
}
@media (max-width: 640px) {
  .services_nav_item:nth-child(11) a {
    background-size: auto 65%;
  }
}
.services_nav_item::after {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background: url(/wp/wp-content/themes/takidental/images/common/icon_btn_arrow02.svg) no-repeat top -0.1rem center/contain;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  pointer-events: none;
}
@media (max-width: 640px) {
  .services_nav_item::after {
    width: 0.75rem;
    height: 0.75rem;
    right: 0.5rem;
  }
}
.services_nav_item a {
  display: block;
  padding: 1em;
  color: var(--green);
  font-size: var(--20px);
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: 0.25s;
}
@media (max-width: 640px) {
  .services_nav_item a {
    padding: 0.5em 0.75em;
    padding-left: 2.5rem;
    font-size: var(--13px);
    text-align: left;
    background-position: left 0.5rem center !important;
  }
}
.services_nav_item a:hover {
  background-color: var(--yellow);
}
.services_notice {
  color: var(--gray);
  text-align: center;
}
@media (max-width: 640px) {
  .services_notice {
    font-size: var(--14px);
  }
}
.services_contact {
  max-width: 800px;
  padding: 1.5rem 1rem;
  margin: 4rem auto;
  border: 2px solid var(--green);
  border-radius: 1rem;
  box-shadow: 0 0 1rem rgba(101, 155, 12, 0.3);
  background: #fff;
}
@media (max-width: 640px) {
  .services_contact {
    margin: 2rem auto;
    padding: 1rem;
    border-radius: 0.5rem;
  }
}
.services_contact_title {
  margin: 0 0 0.5em;
  color: var(--green);
  font-size: var(--20px);
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (max-width: 640px) {
  .services_contact_title {
    font-size: var(--15px);
    letter-spacing: 0.05em;
  }
}
.services_contact_text {
  text-align: center;
}
.services_contact_tel_number {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5rem;
  color: var(--pink);
  font-size: var(--48px);
  font-weight: bold;
  line-height: 1.25;
  text-decoration: none;
  letter-spacing: 0.1em;
}
@media (min-width: 640px) and (max-width: 1200px) {
  .services_contact_tel_number {
    font-size: var(--44px);
  }
}
@media (max-width: 640px) {
  .services_contact_tel_number {
    margin-bottom: 0.75rem;
    font-size: var(--30px);
  }
}
.services_contact_tel_number span {
  transition: 0.3s;
}
.services_contact_tel_number:hover::before {
  opacity: 1;
  -webkit-animation: 1s shake;
          animation: 1s shake;
}
.services_contact_tel_number::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.25em;
  background: url(/wp/wp-content/themes/takidental/images/common/icon_tel.svg) no-repeat center/contain;
}
.services_contact_btn {
  width: 100%;
}
.services_contact_schedule {
  display: flex;
  justify-content: center;
  align-items: center;
}
.services_contact_schedule_title {
  padding: 0.5em;
  border-radius: 4px;
  background: var(--green);
  color: #fff;
  font-size: var(--13px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1;
  text-indent: 0.2em;
}
@media (max-width: 640px) {
  .services_contact_schedule_title {
    font-size: var(--11px);
  }
}
.services_contact_schedule_text {
  font-size: var(--14px);
  margin: 0;
  margin-left: 1em;
}
@media (max-width: 640px) {
  .services_contact_schedule_text {
    font-size: var(--12px);
  }
}
.services_contact_notice {
  font-size: var(--14px);
}
.services_section {
  margin-bottom: 4rem;
}
.services_section:last-of-type {
  margin-bottom: 0;
}
.services_section_title {
  padding: 0.25em;
  margin: 0 0 1em;
  background: var(--green);
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
}
@media (max-width: 640px) {
  .services_section_title {
    margin-bottom: 1em;
    font-size: var(--20px);
  }
}
.services_section_content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .services_section_content {
    flex-direction: column;
  }
}
.services_section_pic {
  width: 30%;
}
@media (max-width: 640px) {
  .services_section_pic {
    width: 50%;
    margin: 0 auto 1.5rem;
  }
}
.services_section_pic img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.services_section_text {
  flex: 1;
  margin-left: 2.5rem;
}
@media (max-width: 640px) {
  .services_section_text {
    margin-left: 0;
  }
}
.services_section_text h3 {
  margin: 0 0 1em;
  color: var(--green);
  font-size: var(--18px);
  font-weight: 500;
  line-height: 1.75;
}
@media (max-width: 640px) {
  .services_section_text h3 {
    font-size: var(--16px);
  }
}
.services_section_text h3:last-of-type {
  margin-bottom: 0;
}
.services_section_text p {
  margin: 0 0 1em;
  font-size: var(--18px);
  line-height: 1.75;
}
@media (max-width: 640px) {
  .services_section_text p {
    font-size: var(--16px);
  }
}
.services_section_text p:last-of-type {
  margin-bottom: 0;
}
.services_section_text ul {
  margin: 0 0 1em;
}
.services_section_text ul:last-of-type {
  margin-bottom: 0;
}
.services_section_text ul li {
  padding-left: 1em;
  color: var(--green);
  font-size: var(--18px);
  font-weight: 500;
  line-height: 1.75;
  text-indent: -1em;
}
@media (max-width: 640px) {
  .services_section_text ul li {
    font-size: var(--16px);
  }
}
.services_section_text a {
  color: var(--green);
  text-decoration: underline;
  transition: opacity 0.3s;
}
.services_section_text a:hover {
  opacity: 0.75;
}
.services_section_text .text-green {
  font-weight: 500;
}

.greeting_message_pic {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 2rem 2rem 0 0;
  overflow: hidden;
}
@media (max-width: 640px) {
  .greeting_message_pic {
    border-radius: 1rem 1rem 0 0;
  }
}
.greeting_message_pic img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.greeting_message_text {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem;
  border-radius: 0 0 2rem 2rem;
  background: var(--lgreen);
  color: var(--green);
  font-size: var(--20px);
  font-weight: bold;
  line-height: 1.75;
  text-align: center;
}
@media (max-width: 640px) {
  .greeting_message_text {
    padding: 1rem 0.25rem;
    border-radius: 0 0 1rem 1rem;
    font-size: var(--16px);
  }
}
.greeting_message_text p {
  margin: 0;
}
.greeting_section {
  margin-bottom: 4rem;
}
.greeting_section:last-of-type {
  margin-bottom: 0;
}
.greeting_section_title {
  padding: 0.25em;
  margin: 0 0 1.5em;
  border-bottom: 2px solid var(--green);
  color: var(--green);
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
}
@media (max-width: 640px) {
  .greeting_section_title {
    font-size: var(--20px);
    word-break: keep-all;
  }
}
.greeting_section_content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 640px) and (max-width: 1200px) {
  .greeting_section_content {
    max-width: unset;
  }
}
@media (max-width: 640px) {
  .greeting_section_content {
    flex-direction: column;
  }
}
.greeting_section_pic {
  position: relative;
  width: 35%;
  padding-left: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 640px) {
  .greeting_section_pic {
    width: 80%;
    margin: 0 auto 2.5rem;
    padding: 0;
  }
}
.greeting_section_pic img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  border-radius: 50%;
  overflow: hidden;
}
.greeting_section_name {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 10rem;
  height: 10rem;
  margin: 0;
  border-radius: 50%;
  box-shadow: 0 0 0.5em rgba(230, 118, 166, 0.5);
  background: var(--pink);
  color: #fff;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media (max-width: 640px) {
  .greeting_section_name {
    left: -2rem;
    bottom: -1rem;
    width: 8rem;
    height: 8rem;
    margin: 0;
  }
}
.greeting_section_name.bg-blue {
  background: var(--blue);
  box-shadow: 0 0 0.5em rgba(55, 167, 219, 0.5);
}
.greeting_section_name .text-s {
  font-size: var(--14px);
  margin-bottom: 0.5em;
}
@media (max-width: 640px) {
  .greeting_section_name .text-s {
    font-size: var(--10px);
  }
}
.greeting_section_name .text-m {
  font-size: var(--20px);
  margin-bottom: 0.75em;
}
@media (max-width: 640px) {
  .greeting_section_name .text-m {
    font-size: var(--18px);
  }
}
.greeting_section_name .text-l {
  font-size: var(--26px);
  margin-bottom: 0.25em;
}
@media (max-width: 640px) {
  .greeting_section_name .text-l {
    font-size: var(--20px);
  }
}
.greeting_section_sentence {
  margin-left: 2.5rem;
  flex: 1;
}
@media (max-width: 640px) {
  .greeting_section_sentence {
    margin-left: 0;
  }
}
.greeting_section_catch {
  margin: 0 0 1em !important;
  color: var(--green);
  font-size: var(--28px);
  font-weight: bold;
}
@media (max-width: 640px) {
  .greeting_section_catch {
    font-size: var(--24px);
    text-align: center;
  }
}
.greeting_section_subtitle {
  margin: 1em 0 0.5em;
  color: var(--green);
  font-size: var(--20px);
  font-weight: bold;
  line-height: 1.75;
}
@media (max-width: 640px) {
  .greeting_section_subtitle {
    font-size: var(--18px);
  }
}
.greeting_section_text p {
  margin: 0 0 1em;
  font-size: var(--18px);
  line-height: 1.75;
}
@media (max-width: 640px) {
  .greeting_section_text p {
    font-size: var(--16px);
  }
}
.greeting_section_text p:last-of-type {
  margin-bottom: 0;
}
.greeting_section_detail_content {
  display: flex;
  border: 2px solid var(--green);
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 640px) {
  .greeting_section_detail_content {
    flex-direction: column;
  }
}
.greeting_section_detail_title {
  width: 35%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--green);
  color: #fff;
  font-size: var(--18px);
  font-weight: bold;
}
@media (max-width: 640px) {
  .greeting_section_detail_title {
    width: 100%;
    padding: 0.5em;
    font-size: var(--16px);
    justify-content: flex-start;
  }
}
.greeting_section_detail_text {
  flex: 1;
  margin: 0;
  padding: 1em;
  font-size: var(--16px);
  line-height: 1.75;
}
@media (max-width: 640px) {
  .greeting_section_detail_text {
    width: 100%;
    padding: 0.5em 1em;
    font-size: var(--14px);
  }
}

.facilities_section {
  margin-bottom: 4rem;
}
@media (max-width: 640px) {
  .facilities_section {
    margin-bottom: 2rem;
  }
}
.facilities_section:last-of-type {
  margin-bottom: 0;
}
.facilities_section_title {
  padding: 0.25em;
  margin: 0 0 1.5em;
  border-bottom: 2px solid var(--green);
  color: var(--green);
  font-size: var(--28px);
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
}
@media (max-width: 640px) {
  .facilities_section_title {
    font-size: var(--20px);
  }
}
.facilities_section_description {
  margin-top: -1rem;
  margin-bottom: 2rem !important;
  font-size: var(--18px);
  text-align: center;
}
@media (max-width: 640px) {
  .facilities_section_description {
    font-size: var(--14px);
    text-align: justify;
  }
}
.facilities_gallery_list_item {
  display: flex;
  flex-direction: column;
  margin-bottom: 3rem;
}
@media (max-width: 640px) {
  .facilities_gallery_list_item {
    margin-bottom: 2.5rem;
  }
}
.facilities_gallery_list_item .gallery_pic::after {
  background: var(--green) !important;
}
.facilities_gallery_title {
  position: relative;
  left: 0 !important;
  bottom: 0;
  display: inline;
  width: auto;
  height: auto;
  background: none !important;
  color: var(--green);
  font-size: var(--18px);
  text-align: left;
  box-shadow: none !important;
}
@media (max-width: 640px) {
  .facilities_gallery_title {
    font-size: var(--20px);
    text-align: center;
  }
}
.facilities_gallery_pic {
  order: -1;
  margin-bottom: 2rem;
}
.facilities_gallery_pic::after {
  box-shadow: 0 0 0.5rem rgba(125, 175, 20, 0.5) !important;
}
@media (max-width: 640px) {
  .facilities_gallery_pic {
    margin-bottom: 1.5rem;
  }
}
.facilities_emergency {
  padding: 2rem 2rem 4rem;
  margin-bottom: 4rem !important;
  background: var(--lyellow);
}
@media (max-width: 640px) {
  .facilities_emergency {
    padding: 1rem 1rem 1.5rem;
    margin-bottom: 2rem !important;
  }
}
.facilities_emergency_content {
  display: flex;
  justify-content: center;
}
@media (max-width: 640px) {
  .facilities_emergency_content {
    flex-direction: column;
  }
}
.facilities_emergency_sentence {
  margin-left: 2.5rem;
}
@media (max-width: 640px) {
  .facilities_emergency_sentence {
    margin-left: 0;
  }
}
.facilities_emergency_title {
  margin: 0 0 0.5em;
  color: var(--green);
  font-size: var(--20px);
  font-weight: bold;
}
@media (max-width: 640px) {
  .facilities_emergency_title {
    text-align: center;
  }
}
@media (max-width: 640px) {
  .facilities_emergency_pic {
    margin-bottom: 2rem;
  }
}
.facilities_emergency_text {
  font-size: var(--16px);
  line-height: 1.75;
  text-align: justify;
}
@media (max-width: 640px) {
  .facilities_emergency_text {
    font-size: var(--14px);
  }
}
.facilities_emergency_text p {
  margin: 0 0 1em;
}

.price_section {
  margin-bottom: 4rem;
}
@media (max-width: 640px) {
  .price_section {
    margin-bottom: 2rem;
  }
}
.price_section:last-of-type {
  margin-bottom: 0;
}
.price_section_title {
  padding: 0.25em;
  margin: 0 0 1.5em;
  border-bottom: 2px solid var(--green);
  color: var(--green);
  font-size: var(--28px);
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
}
@media (max-width: 640px) {
  .price_section_title {
    font-size: var(--18px);
  }
}
.price_section_description {
  margin-top: -1rem;
  margin-bottom: 2rem !important;
  font-size: var(--18px);
  text-align: center;
}
@media (max-width: 640px) {
  .price_section_description {
    font-size: var(--14px);
    text-align: justify;
  }
}
.price_comparison {
  padding: 2rem 2rem 4rem;
  margin-bottom: 4rem !important;
  background: var(--lyellow);
}
@media (max-width: 640px) {
  .price_comparison {
    padding: 1rem 1rem 1.5rem;
  }
}
.price_comparison_detail_content {
  display: flex;
  border: 2px solid var(--pink);
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
@media (max-width: 640px) {
  .price_comparison_detail_content {
    flex-direction: column;
    margin-bottom: 1rem;
  }
}
.price_comparison_detail_content.private {
  border: 2px solid var(--blue);
}
.price_comparison_detail_content.private .price_comparison_detail_title {
  background: var(--blue);
}
.price_comparison_detail_title {
  width: 15%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--pink);
  color: #fff;
  font-size: var(--18px);
  font-weight: bold;
}
@media (max-width: 640px) {
  .price_comparison_detail_title {
    width: 100%;
    padding: 0.5em 1em;
    font-size: var(--16px);
  }
}
.price_comparison_detail_text {
  flex: 1;
  margin: 0;
  padding: 1em;
  background: #fff;
  font-size: var(--16px);
  line-height: 1.75;
  text-align: justify;
}
@media (max-width: 640px) {
  .price_comparison_detail_text {
    width: 100%;
    padding: 0.5em 1em;
    font-size: var(--14px);
  }
}
.price_notice {
  margin: 0 0 1em !important;
  font-size: var(--16px);
  text-align: center;
}
@media (max-width: 640px) {
  .price_notice {
    font-size: var(--14px);
  }
}
.price_nav {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
@media (max-width: 640px) {
  .price_nav {
    margin-bottom: 1rem;
  }
}
.price_nav_item {
  position: relative;
  width: calc((100% - 2rem) / 3);
  margin-left: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 640px) {
  .price_nav_item {
    width: 100%;
    margin-left: 0;
  }
}
.price_nav_item:nth-child(3n-2) {
  margin-left: 0;
}
.price_nav_item::after {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background: url(/wp/wp-content/themes/takidental/images/common/icon_btn_arrow02.svg) no-repeat top -0.1rem center/contain;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  pointer-events: none;
}
@media (max-width: 640px) {
  .price_nav_item::after {
    width: 0.75rem;
    height: 0.75rem;
    right: 1rem;
  }
}
.price_nav_item a {
  display: block;
  padding: 0.5em 1em;
  border: 2px solid var(--green);
  border-radius: 2em;
  color: var(--green);
  font-size: var(--20px);
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s;
}
@media (max-width: 640px) {
  .price_nav_item a {
    font-size: var(--16px);
  }
}
.price_nav_item a:hover {
  background: var(--lgreen);
}
.price_menu {
  margin-bottom: 4rem;
}
@media (max-width: 640px) {
  .price_menu {
    margin-bottom: 2rem;
  }
}
.price_menu:last-of-type {
  margin-bottom: 0;
}
.price_menu_title {
  padding: 0.25em;
  margin: 0 0 2rem;
  background: var(--green);
  color: #fff;
  font-size: var(--28px);
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
}
@media (max-width: 640px) {
  .price_menu_title {
    font-size: var(--20px);
    margin-bottom: 1em;
  }
}
.price_menu_list_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  border: 2px solid var(--green);
  border-radius: 0.25rem;
  margin: 0 auto 1rem;
}
@media (max-width: 640px) {
  .price_menu_list_item {
    flex-direction: column;
  }
}
.price_menu_name {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 65%;
  height: 100%;
  padding: 1em;
  background: var(--lyellow);
  color: var(--green);
  font-size: var(--20px);
  font-weight: 500;
  text-align: center;
}
@media (max-width: 640px) {
  .price_menu_name {
    width: 100%;
    padding: 0.5em 1em;
    font-size: var(--16px);
  }
}
.price_menu_name .notice {
  margin-top: 0.5em;
  font-size: var(--12px);
  color: var(--gray);
}
@media (max-width: 640px) {
  .price_menu_name .notice {
    font-size: var(--10px);
  }
}
.price_menu_price {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 1em;
  margin: 0;
  font-size: var(--20px);
  text-align: center;
  flex: 1;
}
@media (max-width: 640px) {
  .price_menu_price {
    width: 100%;
    padding: 0.5em 1em;
    font-size: var(--16px);
  }
}

.recruit-header {
  padding-top: 0 !important;
}
.recruit-header_title {
  position: relative;
  margin: 0;
  color: var(--green);
  font-size: var(--34px);
  text-align: center;
  line-height: 2;
  z-index: 1;
}
@media (max-width: 640px) {
  .recruit-header_title {
    font-size: var(--17px);
  }
}
.recruit-header_title span {
  display: inline-block;
  padding: 0 0.25em;
  margin-right: 0.25em;
  background: var(--yellow);
}
.recruit-header_text {
  position: relative;
  margin-top: 1rem;
  margin-bottom: 3rem;
  font-size: var(--20px);
  line-height: 1.75;
  text-align: center;
  z-index: 1;
}
@media (max-width: 640px) {
  .recruit-header_text {
    font-size: var(--16px);
    text-align: left;
  }
}
.recruit-header_pic {
  position: relative;
  margin-bottom: 2rem;
  text-align: center;
  z-index: 1;
}
@media (max-width: 640px) {
  .recruit-header_pic {
    margin-bottom: 1rem;
  }
}
.recruit-header_pic img {
  border: 3px solid var(--green);
  border-radius: 2rem;
  box-shadow: 0 0 1rem rgba(101, 155, 12, 0.3);
  overflow: hidden;
}
@media (max-width: 640px) {
  .recruit-header_pic img {
    border: 2px solid var(--green);
    border-radius: 1rem;
  }
}
.recruit-section {
  margin-bottom: 0 !important;
}
.recruit-point_list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 640px) {
  .recruit-point_list {
    flex-wrap: wrap;
  }
}
.recruit-point_list_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  padding: 2rem;
  margin-right: 2rem;
  background-color: var(--lpink);
  color: var(--pink);
  text-align: center;
}
@media (max-width: 640px) {
  .recruit-point_list_item {
    width: calc(50vw - 1.5rem);
    height: calc(50vw - 1.5rem);
    padding: 1rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
  }
}
.recruit-point_list_item:last-child {
  margin-right: 0;
}
.recruit-point_list_item:nth-child(3n-1) {
  background-color: var(--lblue);
  color: var(--blue);
}
.recruit-point_list_item:nth-child(3n) {
  background-color: var(--lgreen);
  color: var(--green);
}
@media (max-width: 640px) {
  .recruit-point_list_item:nth-child(3n-1) {
    margin-right: 0;
  }
}
.recruit-point_title {
  margin: 0 0 0.5em;
  font-size: var(--24px);
  line-height: 1.5;
}
@media (max-width: 640px) {
  .recruit-point_title {
    font-size: var(--14px);
  }
}
.recruit-point_text {
  margin: 0;
  color: var(--gray);
  font-size: var(--16px);
}
@media (max-width: 640px) {
  .recruit-point_text {
    font-size: var(--12px);
  }
}
.recruit-point_notice {
  margin-top: 2rem;
  font-size: var(--12px);
  text-align: center;
}
@media (max-width: 640px) {
  .recruit-point_notice {
    margin-top: 1rem;
  }
}
.recruit-movie_wrapper {
  max-width: 1000px;
  margin: 0 auto;
}
.recruit-movie_title {
  padding: 0.5em 1em;
  background: var(--lgreen);
  color: var(--green);
  font-size: var(--20px);
  font-weight: 500;
  text-align: center;
}
@media (max-width: 640px) {
  .recruit-movie_title {
    font-size: var(--16px);
  }
}
.recruit-movie_content {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.recruit-movie_content iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.recruit-contact_detail {
  width: 50%;
  margin: 2rem auto 0;
}
@media (max-width: 640px) {
  .recruit-contact_detail {
    width: 100%;
    margin: 2rem 0 0;
  }
}
.recruit-contact_detail_content {
  display: flex;
  justify-content: space-between;
  border: 2px solid var(--green);
  border-radius: 0.25rem;
  margin: 0 auto 1rem;
}
.recruit-contact_detail_title {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 40%;
  padding: 1em;
  border-right: 2px solid var(--green);
  background: var(--green);
  color: #fff;
  font-size: var(--20px);
  font-weight: 500;
  text-align: center;
}
@media (max-width: 640px) {
  .recruit-contact_detail_title {
    width: 30%;
    padding: 0.5em;
    font-size: var(--16px);
    line-height: 1.25;
  }
}
.recruit-contact_detail_text {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  box-sizing: border-box;
  background: var(--lyellow);
  padding: 1em;
  margin: 0;
  font-size: var(--20px);
  text-align: left;
  flex: 1;
}
@media (max-width: 640px) {
  .recruit-contact_detail_text {
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 0.5em;
    font-size: var(--16px);
  }
}
.recruit-contact_detail_text a {
  color: var(--green);
  text-decoration: none;
}
.recruit-form_wrapper {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--lpink);
  border-radius: 1rem;
  padding: 2rem 6rem 4rem;
}
@media (max-width: 640px) {
  .recruit-form_wrapper {
    border-radius: 0.5rem;
    padding: 1.5rem 1rem 2rem;
  }
}
.recruit-form_fields_title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0.5em;
  font-size: var(--18px);
}
@media (max-width: 640px) {
  .recruit-form_fields_title {
    font-size: var(--16px);
  }
}
.recruit-form_fields_title.required::after {
  content: "必須";
  font-size: var(--12px);
  color: #fff;
  background: var(--pink);
  display: inline-block;
  padding: 0 0.5em;
  margin-left: 1em;
  border-radius: 2px;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
}
@media (max-width: 640px) {
  .recruit-form_fields_title.required::after {
    font-size: var(--11px);
  }
}
.recruit-form_fields_input {
  margin: 0 0 1rem;
}
.recruit-form_fields_input input, .recruit-form_fields_input textarea {
  border: 2px solid var(--lgray);
  border-radius: 0.25rem;
  padding: 0.5em;
  background: #fff;
  font-size: var(--16px);
  box-sizing: border-box;
  line-height: 1.5;
}
.recruit-form_fields_input input {
  width: 50%;
}
.recruit-form_fields_input textarea {
  width: 100%;
}
.recruit-form_notice {
  text-align: center;
}
.recruit-form .section-title_ja {
  color: var(--pink);
}
.recruit-occupation_nav {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
@media (max-width: 640px) {
  .recruit-occupation_nav {
    flex-direction: column;
    margin-bottom: 2rem;
  }
}
.recruit-occupation_nav_item {
  position: relative;
  width: calc((100% - 2rem) / 3);
  margin-left: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 640px) {
  .recruit-occupation_nav_item {
    width: 100%;
    margin-left: 0;
    margin-bottom: 0.5rem;
  }
}
.recruit-occupation_nav_item:nth-child(3n-2) {
  margin-left: 0;
}
.recruit-occupation_nav_item::after {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background: url(/wp/wp-content/themes/takidental/images/common/icon_btn_arrow02.svg) no-repeat top -0.1rem center/contain;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  pointer-events: none;
}
.recruit-occupation_nav_item a {
  display: block;
  padding: 0.5em 1em;
  border: 2px solid var(--green);
  border-radius: 2em;
  color: var(--green);
  font-size: var(--20px);
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s;
}
@media (max-width: 640px) {
  .recruit-occupation_nav_item a {
    font-size: var(--16px);
  }
}
.recruit-occupation_nav_item:hover a {
  background: var(--lgreen);
}
.recruit-occupation_merit {
  margin: 4rem 0;
}
@media (max-width: 640px) {
  .recruit-occupation_merit {
    margin: 2rem 0 1.5rem;
  }
}
.recruit-occupation_merit_title {
  color: var(--green);
  font-size: var(--28px);
  text-align: center;
}
@media (max-width: 640px) {
  .recruit-occupation_merit_title {
    font-size: var(--20px);
  }
}
.recruit-occupation_merit_title::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 1rem;
  margin-right: 1rem;
  background: url(/wp/wp-content/themes/takidental/images/common/bg_dots.svg) no-repeat center/contain;
  vertical-align: middle;
}
@media (max-width: 640px) {
  .recruit-occupation_merit_title::before {
    width: 1.5rem;
    height: 0.75rem;
  }
}
.recruit-occupation_merit_title::after {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 1rem;
  margin-left: 1rem;
  background: url(/wp/wp-content/themes/takidental/images/common/bg_dots.svg) no-repeat center/contain;
  vertical-align: middle;
}
@media (max-width: 640px) {
  .recruit-occupation_merit_title::after {
    width: 1.5rem;
    height: 0.75rem;
  }
}
.recruit-occupation_merit_detail_title {
  padding: 0.5em 1em;
  background: var(--lyellow);
  color: var(--green);
  font-size: var(--20px);
  font-weight: 500;
  text-align: center;
}
@media (max-width: 640px) {
  .recruit-occupation_merit_detail_title {
    font-size: var(--16px);
    text-align: left;
    text-indent: -1em;
    padding-left: 2em;
  }
}
.recruit-occupation_merit_detail_text {
  margin: 1em 0 2em;
  font-size: var(--18px);
  line-height: 1.75;
}
@media (max-width: 640px) {
  .recruit-occupation_merit_detail_text {
    padding: 0 0.5em;
    font-size: var(--14px);
  }
}
.recruit-occupation_description {
  margin-bottom: 4rem;
}
.recruit-occupation_description:last-of-type {
  margin-bottom: 0;
}
.recruit-occupation_description_title {
  padding: 0.25em;
  margin: 0 0 2rem;
  background: var(--green);
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
}
@media (max-width: 640px) {
  .recruit-occupation_description_title {
    margin-bottom: 1rem;
    font-size: var(--20px);
  }
}
.recruit-occupation_description_content {
  max-width: 1000px;
  margin: 0 auto;
}
.recruit-occupation_description_catch {
  font-size: var(--20px);
  text-align: center;
  line-height: 1.75;
}
@media (max-width: 640px) {
  .recruit-occupation_description_catch {
    font-size: var(--16px);
    text-align: left;
  }
}
.recruit-occupation_description_list_item {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  border: 2px solid var(--green);
  border-radius: 0.25rem;
  margin: 0 auto 1rem;
}
@media (max-width: 640px) {
  .recruit-occupation_description_list_item {
    flex-direction: column;
  }
}
.recruit-occupation_description_list_title {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 20%;
  padding: 1em;
  border-right: 2px solid var(--green);
  background: var(--lyellow);
  color: var(--green);
  font-size: var(--18px);
  font-weight: 500;
  text-align: left;
}
@media (max-width: 640px) {
  .recruit-occupation_description_list_title {
    width: 100%;
    padding: 0.75em 1em;
    border-right: none;
    border-bottom: 2px solid var(--green);
    font-size: var(--16px);
  }
}
.recruit-occupation_description_list_text {
  height: 100%;
  box-sizing: border-box;
  padding: 1em;
  margin: 0;
  font-size: var(--18px);
  text-align: left;
  flex: 1;
}
@media (max-width: 640px) {
  .recruit-occupation_description_list_text {
    width: 100%;
    padding: 0.75em 1em;
    font-size: var(--16px);
  }
}
.recruit-occupation_description_list_text h5 {
  margin: 0;
}
.recruit-occupation_description_list_text p {
  margin: 0;
}
.recruit-occupation_description_list_text p + h5 {
  margin-top: 1em;
}
.recruit-occupation_description_list_text p + p {
  margin-top: 1em;
}
.recruit-occupation_description_list_text .text-link {
  margin-bottom: 0.5em;
}
.recruit-occupation_description_list_text .text-link:last-of-type {
  margin-bottom: 0;
}

.svg-symbols {
  display: none;
  width: 0;
  height: 0;
  visibility: hidden;
}

svg.wave {
  width: 200vw;
  height: 2rem;
  overflow: hidden;
  -webkit-animation: 38s linear infinite wave;
          animation: 38s linear infinite wave;
}
@media (max-width: 640px) {
  svg.wave {
    width: 400vw;
    height: 1.5rem;
    -webkit-animation: 24s linear infinite wave;
            animation: 24s linear infinite wave;
  }
}
@media (min-width: 1920px) {
  svg.wave {
    height: 3rem;
  }
}
svg.wave-top {
  position: relative;
  bottom: calc(2rem - 10px);
}
@media (max-width: 640px) {
  svg.wave-top {
    bottom: calc(1.5rem - 10px);
  }
}
svg.wave-bottom {
  position: relative;
  bottom: -6px;
}
svg.wave-green {
  fill: var(--green);
}
svg.wave-white {
  fill: #fff;
}
svg.wave-yellow {
  fill: var(--lyellow);
}
svg.wave-header {
  -webkit-animation: unset;
          animation: unset;
  position: absolute;
  bottom: calc(-2rem + 10px);
  z-index: -2;
}
@media (min-width: 1920px) {
  svg.wave-header {
    bottom: calc(-3rem + 10px);
  }
}
@media (max-width: 1200px) {
  svg.wave-header {
    z-index: 1000;
  }
}
@media (max-width: 640px) {
  svg.wave-header {
    bottom: calc(-1.5rem + 10px);
  }
}

@-webkit-keyframes wave {
  from {
    right: 100vw;
  }
  to {
    right: 0;
  }
}

@keyframes wave {
  from {
    right: 100vw;
  }
  to {
    right: 0;
  }
}
@-webkit-keyframes dots {
  0% {
    transform: rotate(0deg) translate(15%, 25%);
  }
  25% {
    transform: rotate(90deg) translate(0, -15%);
  }
  50% {
    transform: rotate(180deg) translate(0, -20%);
  }
  75% {
    transform: rotate(270deg) translate(0, -15%);
  }
  100% {
    transform: rotate(360deg) translate(15%, 25%);
  }
}
@keyframes dots {
  0% {
    transform: rotate(0deg) translate(15%, 25%);
  }
  25% {
    transform: rotate(90deg) translate(0, -15%);
  }
  50% {
    transform: rotate(180deg) translate(0, -20%);
  }
  75% {
    transform: rotate(270deg) translate(0, -15%);
  }
  100% {
    transform: rotate(360deg) translate(15%, 25%);
  }
}
@-webkit-keyframes shake {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-15deg);
  }
  75% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes shake {
  0% {
    transform: rotate(0);
  }
  25% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-15deg);
  }
  75% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0);
  }
}
@-webkit-keyframes shake-icon {
  0% {
    transform: rotate(0);
  }
  40% {
    transform: rotate(0);
  }
  45% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(-20deg);
  }
  55% {
    transform: rotate(15deg);
  }
  60% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes shake-icon {
  0% {
    transform: rotate(0);
  }
  40% {
    transform: rotate(0);
  }
  45% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(-20deg);
  }
  55% {
    transform: rotate(15deg);
  }
  60% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(0);
  }
}
@-webkit-keyframes shake-title {
  0% {
    transform: translateY(-50%) rotate(0);
  }
  25% {
    transform: translateY(-50%) rotate(5deg);
  }
  50% {
    transform: translateY(-50%) rotate(-5deg);
  }
  75% {
    transform: translateY(-50%) rotate(5deg);
  }
  100% {
    transform: translateY(-50%) rotate(0);
  }
}
@keyframes shake-title {
  0% {
    transform: translateY(-50%) rotate(0);
  }
  25% {
    transform: translateY(-50%) rotate(5deg);
  }
  50% {
    transform: translateY(-50%) rotate(-5deg);
  }
  75% {
    transform: translateY(-50%) rotate(5deg);
  }
  100% {
    transform: translateY(-50%) rotate(0);
  }
}
@-webkit-keyframes btn-arrow {
  0% {
    transform: translate(0, -50%);
  }
  40% {
    transform: translate(0, -50%);
  }
  50% {
    transform: translate(-0.4rem, -50%);
  }
  60% {
    transform: translate(0, -50%);
  }
  100% {
    transform: translate(0, -50%);
  }
}
@keyframes btn-arrow {
  0% {
    transform: translate(0, -50%);
  }
  40% {
    transform: translate(0, -50%);
  }
  50% {
    transform: translate(-0.4rem, -50%);
  }
  60% {
    transform: translate(0, -50%);
  }
  100% {
    transform: translate(0, -50%);
  }
}
.-fade-up, .-fade-up-fv {
  opacity: 0;
  visibility: hidden;
}
.-fade-up.-show, .-fade-up-fv.-show {
  visibility: visible;
  -webkit-animation-name: fade-up;
          animation-name: fade-up;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.-fade-up-sv {
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 1200px) {
  .-fade-up-sv {
    visibility: visible;
    -webkit-animation-name: fade-up;
            animation-name: fade-up;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
  }
}
.-fade-up-sv.-show {
  visibility: visible;
  -webkit-animation-name: fade-up;
          animation-name: fade-up;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.-delay01 {
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
@media (max-width: 640px) {
  .-delay01 {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
}

.-delay02 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
@media (max-width: 640px) {
  .-delay02 {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
  }
}

.-delay03 {
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}
@media (max-width: 640px) {
  .-delay03 {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
  }
}

@-webkit-keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.-shake {
  -webkit-animation: 1s shake-title;
          animation: 1s shake-title;
}

.dot::before {
  content: "";
  position: absolute;
  top: -10vw;
  right: -7vw;
  width: 30vw;
  height: 30vw;
  display: block;
  border-radius: 50%;
  background: var(--yellow);
  z-index: 0;
  -webkit-animation: 22s linear infinite dots;
          animation: 22s linear infinite dots;
  transition: 1s;
}
@media (max-width: 640px) {
  .dot::before {
    top: 50vw;
    right: -10vw;
    width: 60vw;
    height: 60vw;
  }
}
.dot-recruit01::before {
  top: 20vw;
  right: -10vw;
}
@media (max-width: 640px) {
  .dot-recruit01::before {
    top: 80vw;
    background: var(--lyellow);
  }
}
.dot-recruit02::before {
  top: 50vw;
  right: unset;
  left: 0;
  width: 15vw;
  height: 15vw;
  background: var(--lyellow);
}
@media (max-width: 640px) {
  .dot-recruit02::before {
    top: 130vw;
    left: -10vw;
    width: 20vw;
    height: 20vw;
  }
}
.dot-yellow {
  position: relative;
}
.dot-yellow::before {
  content: "";
  position: absolute;
  top: -10vw;
  right: -7vw;
  width: 30vw;
  height: 30vw;
  display: block;
  border-radius: 50%;
  background: var(--yellow);
  z-index: 0;
  -webkit-animation: 22s linear infinite dots;
          animation: 22s linear infinite dots;
  transition: 1s;
}
@media (max-width: 640px) {
  .dot-yellow::before {
    top: 50vw;
    right: -10vw;
    width: 60vw;
    height: 60vw;
  }
}
.dot-pink {
  position: relative;
}
.dot-pink::before {
  content: "";
  position: absolute;
  top: -4vw;
  left: -7vw;
  width: 30vw;
  height: 30vw;
  display: block;
  border-radius: 50%;
  background: var(--lpink);
  z-index: 0;
  -webkit-animation: 22s linear infinite dots;
          animation: 22s linear infinite dots;
  transition: 1s;
}
@media (max-width: 640px) {
  .dot-pink::before {
    top: -20vw;
    width: 80vw;
    height: 80vw;
  }
}
.dot-blue {
  position: relative;
}
.dot-blue::before {
  content: "";
  position: absolute;
  top: -4vw;
  left: -7vw;
  width: 30vw;
  height: 30vw;
  display: block;
  border-radius: 50%;
  background: var(--lblue);
  z-index: 0;
  -webkit-animation: 22s linear infinite dots;
          animation: 22s linear infinite dots;
  transition: 1s;
}
@media (max-width: 640px) {
  .dot-blue::before {
    top: -20vw;
    left: -7vw;
    width: 80vw;
    height: 80vw;
  }
}
.dot-green {
  position: relative;
}
.dot-green::before {
  content: "";
  position: absolute;
  top: -4vw;
  right: -7vw;
  width: 30vw;
  height: 30vw;
  display: block;
  border-radius: 50%;
  background: var(--lgreen);
  z-index: 0;
  -webkit-animation: 22s linear infinite dots;
          animation: 22s linear infinite dots;
  transition: 1s;
}
@media (max-width: 640px) {
  .dot-green::before {
    top: -20vw;
    right: -7vw;
    width: 80vw;
    height: 80vw;
  }
}

.key-visual {
  min-width: 1200px;
  background: var(--lyellow);
}
@media (max-width: 640px) {
  .key-visual {
    width: 100%;
    min-width: unset;
    padding-bottom: 2rem;
  }
}
.key-visual_slider {
  position: relative;
  margin-bottom: 0 !important;
  opacity: 0;
  visibility: hidden;
  transition: 1s;
}
.key-visual_slider.slick-initialized {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 1920px) {
  .key-visual_slider {
    max-width: 1920px;
    margin: 0 auto !important;
  }
}
.key-visual_slider .slick-dots {
  width: 50vw;
  right: 0;
  bottom: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 640px) and (max-width: 1200px) {
  .key-visual_slider .slick-dots {
    bottom: 2rem;
  }
}
@media (max-width: 640px) {
  .key-visual_slider .slick-dots {
    width: 100vw;
    position: relative;
    bottom: unset;
    z-index: 1;
    margin-top: 1rem;
  }
}
.key-visual_slider .slick-dots li {
  width: 3rem;
  height: auto;
  margin: 0 0.25rem;
}
.key-visual_slider .slick-dots li:nth-child(1).slick-active button::before {
  background: var(--pink);
}
.key-visual_slider .slick-dots li:nth-child(2).slick-active button::before {
  background: var(--blue);
}
.key-visual_slider .slick-dots li:nth-child(3).slick-active button::before {
  background: var(--green);
}
.key-visual_slider .slick-dots li button {
  width: 3rem;
  height: auto;
  padding: 0;
}
.key-visual_slider .slick-dots li button::before {
  content: "";
  width: 3rem;
  height: 0.5rem;
  background: var(--lgray);
  opacity: 1;
}
.key-visual_slider_item {
  background: var(--lyellow);
}
.key-visual_slider_wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 640px) {
  .key-visual_slider_wrapper {
    flex-direction: column;
  }
}
.key-visual_slider_pic {
  flex: 1;
  position: relative;
}
.key-visual_slider_pic::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 4rem;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--lyellow));
}
@media (max-width: 640px) {
  .key-visual_slider_pic::after {
    top: unset;
    bottom: 0;
    width: 100vw;
    height: 4rem;
    background: linear-gradient(transparent, var(--lyellow));
    transform: translateY(1px);
  }
}
.key-visual_slider_pic img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.key-visual_slider_sentence {
  flex: 1;
  padding: 2rem;
  padding-left: 4rem;
}
@media (min-width: 640px) and (max-width: 1200px) {
  .key-visual_slider_sentence {
    padding-left: 3rem;
  }
}
@media (max-width: 640px) {
  .key-visual_slider_sentence {
    position: relative;
    padding: 0 1rem 1rem;
    margin-top: -3rem;
    z-index: 1;
  }
}
.key-visual_slider_sentence:hover::after {
  margin-top: 5vw;
  margin-left: -20vw;
}
.key-visual_slider_sentence::before {
  content: "";
  position: absolute;
  bottom: 4vw;
  left: 50vw;
  width: 8vw;
  height: 8vw;
  display: block;
  border-radius: 50%;
  background: var(--yellow);
  z-index: -1;
  transform: rotate(0deg) translate(15%, 25%);
  transition: 1s;
  -webkit-animation: 14s linear infinite dots;
          animation: 14s linear infinite dots;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}
@media (max-width: 640px) {
  .key-visual_slider_sentence::before {
    left: 5vw;
    bottom: 2vw;
    width: 12vw;
    height: 12vw;
  }
}
.key-visual_slider_sentence::after {
  content: "";
  position: absolute;
  top: -4vw;
  right: -7vw;
  width: 30vw;
  height: 30vw;
  display: block;
  border-radius: 50%;
  background: var(--yellow);
  z-index: -1;
  -webkit-animation: 22s linear infinite dots;
          animation: 22s linear infinite dots;
  transition: 1s;
}
@media (max-width: 640px) {
  .key-visual_slider_sentence::after {
    top: 18vw;
    right: -7vw;
    width: 40vw;
    height: 40vw;
  }
}
.key-visual_slider_catch {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 2rem;
}
@media (min-width: 1920px) {
  .key-visual_slider_catch {
    margin-top: 3rem;
  }
}
@media (min-width: 640px) and (max-width: 1200px) {
  .key-visual_slider_catch {
    margin-top: 1rem;
  }
}
@media (max-width: 640px) {
  .key-visual_slider_catch {
    margin-top: 0;
  }
}
.key-visual_slider_catch span {
  display: inline-block;
  padding: 0.4em 0.75em;
  margin-bottom: 0.5em;
  box-shadow: 0 0 0.25em rgba(125, 175, 20, 0.5);
  background: var(--green);
  color: #fff;
  font-size: var(--30px);
  letter-spacing: 0.1em;
  line-height: 1;
}
@media (min-width: 640px) and (max-width: 1200px) {
  .key-visual_slider_catch span {
    font-size: var(--28px);
  }
}
@media (max-width: 640px) {
  .key-visual_slider_catch span {
    font-size: var(--20px);
  }
}
.key-visual_slider_desc p {
  margin: 0;
  font-size: var(--16px);
  line-height: 1.75;
}
@media (max-width: 640px) {
  .key-visual_slider_desc p {
    font-size: var(--14px);
  }
}

.section {
  position: relative;
  padding: 4rem 0;
  margin-bottom: 4rem;
}
@media (max-width: 640px) {
  .section {
    padding: 2rem 0;
    margin-bottom: 2rem;
  }
}
.section-title {
  position: relative;
  margin-bottom: 4rem;
  text-align: center;
  z-index: 1;
}
@media (max-width: 640px) {
  .section-title {
    margin-top: 0;
    margin-bottom: 2rem;
  }
}
.section-title::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1rem;
  margin: 0 auto 0.5rem;
  background: url(/wp/wp-content/themes/takidental/images/common/bg_dots.svg) no-repeat center/contain;
}
@media (max-width: 640px) {
  .section-title::before {
    margin: 0 auto 0.25rem;
  }
}
.section-title_en {
  display: block;
  margin-bottom: 1em;
  color: var(--mgreen);
  font-size: var(--20px);
  letter-spacing: 0.1em;
}
@media (max-width: 640px) {
  .section-title_en {
    font-size: var(--14px);
    margin-bottom: 0.5em;
  }
}
.section-title_ja {
  color: var(--green);
  font-size: var(--34px);
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media (max-width: 640px) {
  .section-title_ja {
    font-size: var(--22px);
  }
}
.section-title_ja .number {
  font-size: var(--40px);
  display: inline-block;
  letter-spacing: -0.1em;
  vertical-align: baseline;
  line-height: 1;
}
@media (max-width: 640px) {
  .section-title_ja .number {
    font-size: var(--30px);
  }
}
.section-description {
  position: relative;
  margin-top: -2rem;
  margin-bottom: 4rem !important;
  font-size: var(--18px);
  text-align: center;
  z-index: 1;
}
@media (max-width: 640px) {
  .section-description {
    margin-top: -1rem;
    margin-bottom: 2rem !important;
    font-size: var(--12px);
  }
}
.section-information {
  background: var(--lyellow);
}
.section-information::after {
  content: "";
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: 2rem;
  background: url(/wp/wp-content/themes/takidental/images/common/bg_wave_yellow.svg) no-repeat bottom center/100vw auto;
  transform: translateY(calc(100% - 2px)) scaleY(-1);
}
@media (max-width: 640px) {
  .section-information::after {
    width: 200%;
    background-size: 200vw auto;
  }
}
@media (min-width: 1920px) {
  .section-information::after {
    height: 3rem;
  }
}
.section-information_content {
  display: grid;
  grid-template-columns: 1fr 45rem;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 1rem rgba(101, 155, 12, 0.3);
  background: #fff;
}
@media (max-width: 640px) {
  .section-information_content {
    display: block;
    padding: 1rem 1rem;
  }
}
.section-information_time {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 640px) {
  .section-information_time {
    display: flex;
  }
}
.section-information_time::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.25em;
  background: url(/wp/wp-content/themes/takidental/images/icon_clock_pk.svg) no-repeat center/contain;
}
.section-information_message {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-column: 1/3;
  padding: 0.25em;
  margin-bottom: 2rem;
  background: var(--xlgray);
  font-size: var(--26px);
  font-weight: 500;
  text-align: center;
}
@media (max-width: 640px) {
  .section-information_message {
    flex-direction: column;
    margin-bottom: 1rem;
    font-size: var(--17px);
  }
}
.section-information_message span {
  display: inline-block;
  margin-left: 0.5em;
  color: var(--pink);
}
.section-information_message_time {
  display: inline-block;
  margin-right: 1em;
}
@media (max-width: 640px) {
  .section-information_message_time {
    font-size: var(--14px);
  }
}
@media (max-width: 640px) {
  .section-information_message_text-pink {
    font-size: var(--12px);
  }
}
.section-information_news {
  grid-row: 2/4;
  border: 2px solid var(--green);
  border-radius: 1rem;
  overflow: hidden;
  margin-right: 2rem;
  background: #fff;
}
@media (max-width: 640px) {
  .section-information_news {
    margin: 0 0 1em 0;
    border-radius: 0.5rem;
  }
}
.section-information_news_title {
  margin: 0;
  padding: 0.5em 0;
  background: var(--green);
  border: 2px solid var(--green);
  color: #fff;
  font-size: var(--18px);
  text-align: center;
}
@media (max-width: 640px) {
  .section-information_news_title {
    font-size: var(--14px);
  }
}
.section-information_news_text {
  padding: 0.75em 1em;
  font-size: var(--16px);
}
@media (max-width: 640px) {
  .section-information_news_text {
    font-size: var(--12px);
  }
}
.section-information_news_text a {
  color: var(--green);
  transition: 0.25s;
}
.section-information_news_text a:hover {
  text-decoration: underline;
  opacity: 0.75;
}
.section-information_schedule {
  margin-bottom: 2rem;
}
@media (max-width: 640px) {
  .section-information_schedule {
    margin-bottom: 1rem;
  }
}
.section-information_schedule_notice {
  font-size: var(--14px);
  text-align: right;
}
@media (max-width: 640px) {
  .section-information_schedule_notice {
    font-size: var(--10px);
    text-align: center;
  }
}
.section-information_detail {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 640px) {
  .section-information_detail {
    display: inline-block;
    text-align: center;
    width: 100%;
  }
}
.section-information_detail_title {
  display: inline-block;
  padding: 0.5em;
  border-radius: 4px;
  overflow: hidden;
  background: var(--green);
  color: #fff;
  font-size: var(--18px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  text-indent: 0.1em;
}
@media (max-width: 640px) {
  .section-information_detail_title {
    font-size: var(--14px);
  }
}
.section-information_detail_text {
  flex: 1;
  margin-left: 1em;
  font-size: var(--17px);
  line-height: 2;
}
@media (max-width: 640px) {
  .section-information_detail_text {
    margin-left: 0;
    font-size: var(--12px);
  }
}
.section-information_bnr {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 800px;
  margin: 4rem auto 0;
}
@media (max-width: 640px) {
  .section-information_bnr {
    margin-top: 2rem;
  }
}
.section-information_bnr_item {
  margin-bottom: 1.5rem;
}
@media (max-width: 640px) {
  .section-information_bnr_item {
    margin-bottom: 1rem;
  }
}
.section-information_bnr_item:last-child {
  margin-bottom: 0;
}
.section-information_bnr_item a {
  display: block;
  transition: transform 0.3s;
}
.section-information_bnr_item a:hover {
  transform: translateY(4px);
  opacity: 1 !important;
}
.section-information_bnr_item img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  box-shadow: 0 0 1rem rgba(101, 155, 12, 0.3);
  opacity: 1 !important;
}
.section-facilities_list_item:nth-child(even) .section-facilities_title {
  left: 0.5rem;
  right: unset;
}
@media (max-width: 640px) {
  .section-facilities_list_item:nth-child(even) .section-facilities_title {
    left: unset;
    right: 3.5rem;
    bottom: 1rem;
  }
}
@media (max-width: 640px) {
  .section-facilities_title {
    left: 2.5rem;
    bottom: 1rem;
  }
}
.section-features_list {
  counter-reset: features 0;
}
.section-features_list_item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: calc(100% - 5rem);
  margin-bottom: 6rem;
  counter-increment: features;
}
@media (max-width: 640px) {
  .section-features_list_item {
    width: 100%;
    display: block;
    margin-bottom: 3rem;
  }
}
.section-features_list_item:hover::after {
  margin-top: 5vw;
  margin-left: 5vw;
}
.section-features_list_item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 10vw;
  width: 30vw;
  height: 30vw;
  display: block;
  border-radius: 50%;
  background: var(--lpink);
  z-index: 0;
  -webkit-animation: 28s linear infinite dots;
          animation: 28s linear infinite dots;
  transform: rotate(0deg) translate(15%, 25%);
  transition: 1s;
}
@media (max-width: 640px) {
  .section-features_list_item::after {
    top: 50vw;
    right: -7vw;
    width: 80vw;
    height: 80vw;
  }
}
.section-features_list_item:nth-child(2)::after {
  content: "";
  position: absolute;
  top: -4vw;
  right: -7vw;
  width: 30vw;
  height: 30vw;
  display: block;
  border-radius: 50%;
  background: var(--lblue);
  z-index: 0;
  -webkit-animation: 28s linear 2s infinite dots;
          animation: 28s linear 2s infinite dots;
  transform: rotate(0deg) translate(15%, 25%);
  transition: 1s;
}
@media (max-width: 640px) {
  .section-features_list_item:nth-child(2)::after {
    top: 50vw;
    right: 15vw;
    width: 80vw;
    height: 80vw;
  }
}
.section-features_list_item:nth-child(2) .section-features_title {
  color: var(--blue);
}
.section-features_list_item:nth-child(2) .section-features_pic::before {
  background: var(--blue);
  box-shadow: 0 0 0.5rem rgba(55, 167, 219, 0.5);
}
.section-features_list_item:nth-child(2) .section-features_pic::after {
  background: var(--blue);
  box-shadow: 0 0 0.5rem rgba(55, 167, 219, 0.5);
}
.section-features_list_item:nth-child(3)::after {
  content: "";
  position: absolute;
  top: -4vw;
  right: 10vw;
  width: 30vw;
  height: 30vw;
  display: block;
  border-radius: 50%;
  background: var(--lgreen);
  z-index: 0;
  -webkit-animation: 28s linear 2s infinite dots;
          animation: 28s linear 2s infinite dots;
  transform: rotate(0deg) translate(15%, 25%);
  transition: 1s;
}
@media (max-width: 640px) {
  .section-features_list_item:nth-child(3)::after {
    top: 50vw;
    right: -7vw;
    width: 80vw;
    height: 80vw;
  }
}
.section-features_list_item:nth-child(3) .section-features_title {
  color: var(--green);
}
.section-features_list_item:nth-child(3) .section-features_pic::before {
  background: var(--green);
  box-shadow: 0 0 0.5rem rgba(125, 175, 20, 0.5);
}
.section-features_list_item:nth-child(3) .section-features_pic::after {
  background: var(--green);
  box-shadow: 0 0 0.5rem rgba(125, 175, 20, 0.5);
}
.section-features_list_item:nth-child(even) {
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 640px) {
  .section-features_list_item:nth-child(even) {
    margin-left: 0;
  }
}
.section-features_list_item:last-child {
  margin-bottom: 0;
}
.section-features_pic {
  position: relative;
  width: 40%;
  margin-left: 2.5rem;
  z-index: 1;
}
@media (max-width: 640px) {
  .section-features_pic {
    width: calc(100% - 1.5rem);
    margin: 0 auto;
  }
}
.section-features_pic::before {
  content: "0" counter(features);
  position: absolute;
  top: -2rem;
  left: -2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 1rem rgba(230, 118, 166, 0.5);
  color: #fff;
  font-size: var(--40px);
  font-weight: bold;
  z-index: 2;
}
@media (max-width: 640px) {
  .section-features_pic::before {
    top: -0.75rem;
    left: -0.75rem;
    width: 4.5rem;
    height: 4.5rem;
    font-size: var(--28px);
  }
}
.section-features_pic::after {
  content: "";
  position: absolute;
  right: -1.5rem;
  bottom: -1.5rem;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  box-shadow: 0 0 0.5rem rgba(230, 118, 166, 0.5);
  background: var(--pink);
}
@media (max-width: 640px) {
  .section-features_pic::after {
    right: -0.75rem;
    bottom: -0.75rem;
  }
}
.section-features_pic img {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  vertical-align: bottom;
  z-index: 1;
}
.section-features_sentence {
  position: relative;
  flex: 1;
  padding-left: 4.5rem;
  z-index: 1;
}
@media (max-width: 640px) {
  .section-features_sentence {
    margin-top: 2.25rem;
    padding-left: 0.75rem;
  }
}
.section-features_title {
  margin: 0;
  font-size: var(--28px);
  font-weight: bold;
  color: var(--pink);
}
@media (max-width: 640px) {
  .section-features_title {
    font-size: var(--18px);
  }
}
.section-features_title::after {
  content: "";
  display: block;
  width: 10rem;
  height: 4px;
  margin: 1.5rem 0;
  background: url(/wp/wp-content/themes/takidental/images/common/icon_bar.svg) no-repeat center center/contain;
}
.section-features_text {
  font-size: var(--18px);
  line-height: 2;
}
@media (max-width: 640px) and (max-width: 640px) {
  .section-features_text {
    font-size: var(--14px);
  }
}
.section-clinic {
  padding: 2rem 0 3rem;
  margin-bottom: 0;
  background: var(--green);
}
@media (max-width: 640px) {
  .section-clinic {
    padding: 1.25rem 0 2rem;
  }
}
.section-clinic .inner {
  padding: 0 2rem;
}
@media (max-width: 640px) {
  .section-clinic .inner {
    padding: 0 1rem;
  }
}
.section-clinic_title {
  margin: 0 0 1em;
  color: #fff;
  font-size: var(--28px);
  font-weight: bold;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media (max-width: 640px) {
  .section-clinic_title {
    font-size: var(--15px);
    line-height: 2.25;
  }
}
.section-clinic_title .text-marker {
  display: inline-block;
  margin-right: 0.5em;
  background: var(--yellow);
  color: var(--green);
  border-radius: 0.25rem;
}
.section-clinic_container {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 1rem;
  box-shadow: 0 0 1rem rgba(101, 155, 12, 0.75);
  overflow: hidden;
  background: #fff;
}
@media (min-width: 640px) and (max-width: 1200px) {
  .section-clinic_container {
    max-width: unset;
  }
  .section-clinic_container .pc-only {
    display: none;
  }
}
.section-clinic_question {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.25rem 1.5rem 1rem;
  background: var(--lgreen);
  font-size: var(--24px);
  font-weight: 500;
  color: var(--green);
  line-height: 1.75;
}
@media (max-width: 640px) {
  .section-clinic_question {
    justify-content: flex-start;
    padding: 0.75rem 1rem 0.5rem;
    font-size: var(--13px);
    line-height: 1.5;
  }
}
.section-clinic_question::before {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.25em;
  background: url(/wp/wp-content/themes/takidental/images/icon_question.svg) no-repeat center/contain;
  transition: 0.3s;
  -webkit-animation: 5s infinite shake-icon;
          animation: 5s infinite shake-icon;
}
@media (max-width: 640px) {
  .section-clinic_question::before {
    width: 2em;
    height: 2em;
    margin-right: 0.75em;
  }
}
.section-clinic_answer {
  padding: 1rem 1.5rem 1.5rem;
  margin: 0;
  font-size: var(--16px);
  text-align: center;
  line-height: 2;
}
@media (max-width: 1200px) {
  .section-clinic_answer {
    text-align: left;
  }
}
@media (max-width: 640px) {
  .section-clinic_answer {
    font-size: var(--11px);
    padding: 0.5rem 1rem 0.75rem;
    line-height: 1.75;
  }
}
.section-news_list {
  position: relative;
  height: 20rem;
  padding: 0.5rem 1rem;
  border: 2px solid var(--green);
  border-radius: 1rem;
  box-shadow: 0 0 1rem rgba(101, 155, 12, 0.3);
  background: rgba(255, 255, 255, 0.7);
  overflow-y: scroll;
  z-index: 1;
}
@media (max-width: 640px) {
  .section-news_list {
    height: 15rem;
    padding: 0.25rem 0.5rem;
  }
}
.section-news_list_item:last-child a {
  border-bottom: none;
}
.section-news_list_item a {
  display: flex;
  align-items: center;
  padding: 0.5em;
  border-bottom: 1px solid var(--lgray);
  color: var(--gray);
  font-size: var(--18px);
  text-decoration: none;
  transition: color 0.3s;
}
@media (max-width: 640px) {
  .section-news_list_item a {
    display: block;
    font-size: var(--14px);
  }
}
.section-news_list_item a:hover {
  color: var(--green);
}
.section-news_date {
  width: 10%;
  margin-right: 1em;
  color: var(--green);
  font-weight: bold;
}
@media (max-width: 640px) {
  .section-news_date {
    margin-right: 0.5em;
    font-size: var(--12px);
  }
}
.section-news_tags {
  display: inline-block;
}
.section-news_tags_item {
  background: var(--pink);
  color: #fff;
  display: inline-block;
  padding: 0.5em 0.75em;
  margin-right: 1em;
  font-size: var(--15px);
  border-radius: 0.25em;
  line-height: 1;
}
@media (max-width: 640px) {
  .section-news_tags_item {
    font-size: var(--10px);
    padding: 0.25em 0.5em;
    line-height: 1.25;
  }
}
.section-news_tags_item.news {
  background: var(--pink);
}
.section-news_tags_item.recruit {
  background: var(--blue);
}
.section-news_title {
  flex: 1;
  margin: 0;
  font-weight: normal;
  text-decoration: underline;
}
@media (max-width: 640px) {
  .section-news_title {
    margin-top: 0.25em;
  }
}
.section-btn {
  width: 50%;
  margin: 2rem auto;
}
@media (max-width: 640px) {
  .section-btn {
    width: 100%;
  }
}
.section-message {
  background: var(--lyellow);
  margin-bottom: 0;
  z-index: 1;
}
.section-message_wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (max-width: 640px) {
  .section-message_wrapper {
    display: block;
  }
}
.section-message_pic {
  position: relative;
  width: 35%;
  padding-left: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 640px) {
  .section-message_pic {
    width: 80%;
    margin: 0 auto 2.5rem;
    padding: 0;
  }
}
.section-message_pic img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  border-radius: 50%;
  overflow: hidden;
}
.section-message_name {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 10rem;
  height: 10rem;
  margin: 0;
  border-radius: 50%;
  box-shadow: 0 0 0.5em rgba(230, 118, 166, 0.5);
  background: var(--pink);
  color: #fff;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media (max-width: 640px) {
  .section-message_name {
    left: -2rem;
    bottom: -1rem;
    width: 8rem;
    height: 8rem;
    margin: 0;
  }
}
.section-message_name .text-s {
  font-size: var(--14px);
  margin-bottom: 0.5em;
}
@media (max-width: 640px) {
  .section-message_name .text-s {
    font-size: var(--10px);
  }
}
.section-message_name .text-m {
  font-size: var(--20px);
  margin-bottom: 0.75em;
}
@media (max-width: 640px) {
  .section-message_name .text-m {
    font-size: var(--18px);
  }
}
.section-message_name .text-l {
  font-size: var(--26px);
  margin-bottom: 0.25em;
}
@media (max-width: 640px) {
  .section-message_name .text-l {
    font-size: var(--20px);
  }
}
.section-message_sentence {
  margin-left: 2rem;
  flex: 1;
}
@media (max-width: 640px) {
  .section-message_sentence {
    margin: 0;
  }
}
.section-message_title {
  margin: 0 0 1em;
  color: var(--green);
  font-size: var(--28px);
  font-weight: bold;
}
@media (max-width: 640px) {
  .section-message_title {
    font-size: var(--18px);
    text-align: center;
  }
}
.section-message_text {
  position: relative;
  margin-bottom: 2em;
  font-size: var(--18px);
  line-height: 2;
  z-index: 1;
}
@media (max-width: 640px) {
  .section-message_text {
    font-size: var(--14px);
  }
}
.section-message_btn {
  width: 70%;
  margin-right: 0;
}
@media (max-width: 640px) {
  .section-message_btn {
    width: 100%;
  }
}
.section-medical {
  background: var(--lyellow);
}
@media (max-width: 640px) {
  .section-medical {
    padding-bottom: 4rem;
  }
}
.section-medical::after {
  content: "";
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  height: 2rem;
  background: url(/wp/wp-content/themes/takidental/images/common/bg_wave_yellow.svg) no-repeat bottom center/100vw auto;
  transform: translateY(calc(100% - 2px)) scaleY(-1);
}
@media (max-width: 640px) {
  .section-medical::after {
    width: 200%;
    background-size: 200vw auto;
  }
}
@media (min-width: 1920px) {
  .section-medical::after {
    height: 3rem;
  }
}
.section-medical_title {
  margin: 0 0 0.25em;
  font-size: var(--22px);
  font-weight: bold;
  text-align: center;
}
@media (max-width: 640px) {
  .section-medical_title {
    font-size: var(--16px);
  }
}
.section-medical_desc {
  margin: 0 0 1rem !important;
  font-size: var(--16px);
  text-align: center;
  transition: 0.5s;
}
@media (max-width: 640px) {
  .section-medical_desc {
    font-size: var(--11px);
  }
}
.section-medical_pic {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 9rem;
  height: 9rem;
  margin: 0 auto;
  transition: 0.5s;
}
@media (max-width: 640px) {
  .section-medical_pic {
    width: 5rem;
    height: 5rem;
  }
}
.section-medical_pic.image-xs img {
  width: 40%;
}
.section-medical_pic.image-sm img {
  width: 45%;
}
.section-medical_pic.image-lg img {
  width: 55%;
}
.section-medical_pic.image-xl img {
  width: 60%;
}
.section-medical_pic img {
  width: 50%;
  height: auto;
  opacity: 1 !important;
}
@media (max-width: 640px) {
  .section-medical_pic img {
    max-width: 60% !important;
    max-height: 60% !important;
  }
}
.section-medical_list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .section-medical_list {
    margin-bottom: -1rem;
  }
}
.section-medical_list_item {
  width: calc((100% - 6rem) / 4);
  margin-left: 2rem;
  margin-bottom: 2rem;
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 0 0.5rem rgba(101, 155, 12, 0.3);
  transition: box-shadow 0.3s;
}
@media (max-width: 640px) {
  .section-medical_list_item {
    width: calc((100% - 1rem) / 2);
    margin-left: 1rem;
    margin-bottom: 1rem;
    border-radius: 1rem;
  }
}
.section-medical_list_item:nth-child(4n-3) {
  margin-left: 0;
}
@media (max-width: 640px) {
  .section-medical_list_item:nth-child(odd) {
    margin-left: 0;
  }
}
.section-medical_list_item:nth-child(3n-2) .section-medical_title {
  color: var(--pink);
}
.section-medical_list_item:nth-child(3n-2) .section-medical_pic {
  background: var(--lpink);
}
.section-medical_list_item:nth-child(3n-2) .section-medical_pic svg path {
  fill: var(--pink);
}
.section-medical_list_item:nth-child(3n-2):hover a {
  color: var(--pink);
}
.section-medical_list_item:nth-child(3n-1) .section-medical_title {
  color: var(--blue);
}
.section-medical_list_item:nth-child(3n-1) .section-medical_pic {
  background: var(--lblue);
}
.section-medical_list_item:nth-child(3n-1) .section-medical_pic svg path {
  fill: var(--blue);
}
.section-medical_list_item:nth-child(3n-1):hover a {
  color: var(--blue);
}
.section-medical_list_item:nth-child(3n) .section-medical_title {
  color: var(--green);
}
.section-medical_list_item:nth-child(3n) .section-medical_pic {
  background: var(--lgreen);
}
.section-medical_list_item:nth-child(3n) .section-medical_pic svg path {
  fill: var(--green);
}
.section-medical_list_item:nth-child(3n):hover a {
  color: var(--green);
}
.section-medical_list_item:hover {
  box-shadow: 0 0 1rem rgba(125, 175, 20, 0.5);
}
.section-medical_list_item:hover a {
  padding-bottom: 0.5rem;
}
.section-medical_list_item:hover .section-medical_desc {
  margin: 0 0 0.5rem !important;
}
.section-medical_list_item:hover .section-medical_pic {
  width: 10rem;
  height: 10rem;
}
@media (max-width: 640px) {
  .section-medical_list_item:hover .section-medical_pic {
    width: 5.75rem;
    height: 5.75rem;
  }
}
.section-medical_list_item a {
  display: block;
  padding: 1rem 1rem 1.25rem;
  color: var(--gray);
  text-decoration: none;
  transition: padding 0.5s;
}
@media (max-width: 640px) {
  .section-medical_list_item a {
    padding: 0.75rem 0.5rem;
  }
}
.section-footer {
  position: relative;
  padding: 2rem 0 4rem;
  margin-top: 4rem;
  margin-bottom: 0;
  background: var(--lyellow);
}
@media (max-width: 640px) {
  .section-footer {
    padding: 2rem 0 3rem;
    margin-top: 2rem;
  }
}
.section-footer::before {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  height: 2rem;
  background: url(/wp/wp-content/themes/takidental/images/common/bg_wave_yellow.svg) no-repeat bottom center/100vw auto;
  transform: translateY(calc(-100% + 2px));
}
@media (max-width: 640px) {
  .section-footer::before {
    width: 200%;
    background-size: 200vw auto;
  }
}
@media (min-width: 1920px) {
  .section-footer::before {
    height: 3rem;
  }
}
.section-footer_contact {
  position: relative;
}
.section-footer_contact_title {
  position: absolute;
  top: 50%;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 10rem;
  height: 10rem;
  margin: 0;
  border-radius: 50%;
  box-shadow: 0 0 0.5em rgba(125, 175, 20, 0.5);
  background: var(--green);
  color: #fff;
  font-size: var(--20px);
  font-weight: 500;
  letter-spacing: 0.1em;
  transform: translateY(-50%);
}
@media (max-width: 640px) {
  .section-footer_contact_title {
    top: 0;
    width: 6.5rem;
    height: 6.5rem;
    right: 0;
    margin: 0 auto;
    font-size: var(--16px);
  }
}
.section-footer_contact_title::before {
  content: "";
  display: block;
  width: 3em;
  height: 3em;
  margin-bottom: 0.5rem;
  background: url(/wp/wp-content/themes/takidental/images/common/icon_teeth.svg) no-repeat center/contain;
}
@media (max-width: 640px) {
  .section-footer_contact_title::before {
    width: 2em;
    height: 2em;
  }
}
.section-footer_contact_wrapper {
  display: flex;
  align-items: flex-start;
  padding: 0.5rem 1rem 1.5rem;
  padding-left: 6rem;
  margin-left: 5rem;
  border-radius: 1rem;
  box-shadow: 0 0 1rem rgba(101, 155, 12, 0.3);
  background: #fff;
}
@media (max-width: 640px) {
  .section-footer_contact_wrapper {
    display: block;
    margin: 4.5rem 0 0 0;
    padding: 4rem 1rem 2rem;
  }
}
.section-footer_contact_container {
  flex: 1;
  margin: 0 1rem;
}
@media (max-width: 640px) {
  .section-footer_contact_container {
    margin: 0 0 2rem;
  }
  .section-footer_contact_container:last-of-type {
    margin-bottom: 0;
  }
}
.section-footer_contact_subtitle {
  border-bottom: 2px solid var(--green);
  color: var(--green);
  font-size: var(--20px);
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (max-width: 640px) {
  .section-footer_contact_subtitle {
    margin: 0 0 1em;
    font-size: var(--16px);
    line-height: 2;
  }
}
.section-footer_contact_text {
  text-align: center;
}
.section-footer_contact_tel_number {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5rem;
  color: var(--pink);
  font-size: var(--48px);
  font-weight: bold;
  line-height: 1.25;
  text-decoration: none;
  letter-spacing: 0.1em;
}
@media (min-width: 640px) and (max-width: 1200px) {
  .section-footer_contact_tel_number {
    font-size: var(--44px);
  }
}
@media (max-width: 640px) {
  .section-footer_contact_tel_number {
    font-size: var(--30px);
  }
}
.section-footer_contact_tel_number span {
  transition: 0.3s;
}
.section-footer_contact_tel_number:hover::before {
  opacity: 1;
  -webkit-animation: 1s shake;
          animation: 1s shake;
}
.section-footer_contact_tel_number::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.25em;
  background: url(/wp/wp-content/themes/takidental/images/common/icon_tel.svg) no-repeat center/contain;
}
.section-footer_contact_btn {
  width: 100%;
}
.section-footer_contact_schedule {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-footer_contact_schedule_title {
  padding: 0.5em;
  border-radius: 4px;
  background: var(--green);
  color: #fff;
  font-size: var(--13px);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1;
  text-indent: 0.2em;
}
@media (max-width: 640px) {
  .section-footer_contact_schedule_title {
    font-size: var(--11px);
  }
}
.section-footer_contact_schedule_text {
  font-size: var(--14px);
  margin: 0;
  margin-left: 1em;
}
@media (max-width: 640px) {
  .section-footer_contact_schedule_text {
    font-size: var(--12px);
    margin-left: 0.75em;
  }
}
.section-footer_contact_notice {
  font-size: var(--14px);
}
@media (max-width: 640px) {
  .section-footer_contact_notice {
    font-size: var(--12px);
  }
}
.section-footer_wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 4rem 0;
}
@media (max-width: 640px) {
  .section-footer_wrapper {
    display: block;
    margin: 2rem 0;
  }
}
.section-footer_container {
  display: flex;
  justify-content: flex-start;
  flex-direction: column-reverse;
  gap: 2rem;
  flex: 1;
  margin-right: 1rem;
}
@media (max-width: 640px) {
  .section-footer_container {
    flex-direction: column;
    margin-right: 0;
  }
}
.section-footer_container.wide {
  width: 60%;
  margin-right: 0;
  flex: unset;
}
@media (max-width: 640px) {
  .section-footer_container.wide {
    margin-top: 2rem;
    width: 100%;
  }
}
.section-footer_detail_title {
  display: inline-block;
  padding: 0.5em;
  border-radius: 4px;
  background: var(--green);
  color: #fff;
  font-size: var(--18px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  text-indent: 0.1em;
}
@media (max-width: 640px) {
  .section-footer_detail_title {
    font-size: var(--14px);
  }
}
.section-footer_detail_text {
  margin-top: 0.75em;
  margin-left: 0;
  font-size: var(--17px);
  line-height: 2;
}
@media (max-width: 640px) {
  .section-footer_detail_text {
    width: 100%;
    font-size: var(--14px);
  }
}
.section-footer_notice {
  font-size: var(--14px);
  text-align: right;
}
@media (max-width: 640px) {
  .section-footer_notice {
    font-size: var(--10px);
    text-align: center;
  }
}
.section-footer_map {
  border: 2px solid var(--green);
  border-radius: 1rem;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 640px) {
  .section-footer_map #map-canvas {
    height: 20rem !important;
  }
}
.section-footer_logo {
  width: 85%;
  margin: 0 auto;
  text-align: center;
}

.access-information {
  padding: 0;
}
@media (max-width: 640px) {
  .access-information {
    margin-bottom: 3rem !important;
  }
}
.access-information_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 640px) {
  .access-information_wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }
}
.access-information_map {
  width: 50%;
  height: 20rem;
  border: 2px solid var(--green);
  border-radius: 1rem;
  box-shadow: 0 0 1rem rgba(101, 155, 12, 0.3);
  overflow: hidden;
}
@media (max-width: 640px) {
  .access-information_map {
    width: 100%;
    height: 14rem;
    margin-top: 2rem;
  }
}
.access-information_text {
  margin-left: 2rem;
  flex: 1;
}
@media (max-width: 640px) {
  .access-information_text {
    margin-left: 0;
    width: 100%;
  }
}
.access-information_title {
  margin: 0 0 0.5em;
  color: var(--green);
  font-size: var(--24px);
  font-weight: bold;
}
@media (max-width: 640px) {
  .access-information_title {
    font-size: var(--20px);
  }
}
.access-information_address {
  margin: 0 0 1em;
  font-size: var(--18px);
  line-height: 2;
}
@media (max-width: 640px) {
  .access-information_address {
    margin-bottom: 1.5em;
    font-size: var(--14px);
    line-height: 1.5;
  }
}
.access-section {
  margin-bottom: 4rem;
}
@media (max-width: 640px) {
  .access-section {
    margin-bottom: 2rem;
  }
}
.access-section:last-of-type {
  margin-bottom: 0;
}
.access-section_title {
  padding: 0.25em;
  margin: 0 0 1em;
  border-bottom: 2px solid var(--green);
  color: var(--green);
  font-size: var(--28px);
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
}
@media (max-width: 640px) {
  .access-section_title {
    font-size: var(--20px);
  }
}
.access-section_description {
  font-size: var(--18px);
  text-align: center;
}
@media (max-width: 640px) {
  .access-section_description {
    font-size: var(--14px);
    text-align: justify;
  }
}
.access-transport {
  padding: 2rem 2rem 4rem;
  margin-bottom: 0;
  background: var(--lyellow);
}
@media (max-width: 640px) {
  .access-transport {
    padding: 1rem 1rem 1.5rem;
  }
}
.access-transport_detail {
  margin-bottom: 2rem;
}
.access-transport_detail_content {
  position: relative;
  display: flex;
  width: 60%;
  border-radius: 0.5rem;
  margin: 0 auto 1rem;
}
@media (max-width: 640px) {
  .access-transport_detail_content {
    width: 100%;
    margin-bottom: 1rem;
    align-items: center;
  }
}
.access-transport_detail_content:last-of-type {
  margin-bottom: 0;
}
.access-transport_detail_content.bus .access-transport_detail_title {
  background: var(--blue);
}
.access-transport_detail_title {
  position: relative;
  width: 6rem;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-size: var(--18px);
  font-weight: bold;
  z-index: 1;
}
@media (max-width: 640px) {
  .access-transport_detail_title {
    width: 3.5rem;
    height: 3.5rem;
    padding: 0;
    font-size: var(--13px);
  }
}
.access-transport_detail_text {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  flex: 1;
  margin: 0;
  margin-left: -3rem;
  padding: 1em;
  padding-left: 5rem;
  background: #fff;
  font-size: var(--16px);
  line-height: 1.75;
}
@media (max-width: 640px) {
  .access-transport_detail_text {
    width: 100%;
    min-height: 5rem;
    padding: 0.5em 1em;
    padding-left: 2.5rem;
    margin-left: -1.75rem;
    font-size: var(--14px);
  }
}
.access-transport_detail_text p {
  display: block;
  width: 100%;
  margin: 0;
}
.access-transport_detail_text p + p {
  margin-top: 0.5em;
}
.access-transport_detail_text .text-link {
  color: var(--pink);
  border-color: var(--pink);
}
.access-transport_detail_text .text-link::after {
  background: url(/wp/wp-content/themes/takidental/images/common/icon_link_arrow_pk.svg) no-repeat center/contain;
}
.access-guide_list {
  counter-reset: guide-item 0;
}
.access-guide_list_item {
  counter-increment: guide-item;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 5.5rem;
}
@media (max-width: 640px) {
  .access-guide_list_item {
    flex-direction: column;
    position: relative;
  }
  .access-guide_list_item::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: block;
    background: url(/wp/wp-content/themes/takidental/images/common/icon_access_arrow.svg) no-repeat center/contain;
    transform: translate(-50%, calc(100% + 1.5rem));
  }
}
.access-guide_list_item:last-of-type {
  margin-bottom: 0;
}
.access-guide_list_item:last-of-type .gallery_pic::before {
  content: none;
}
@media (max-width: 640px) {
  .access-guide_list_item:last-of-type::after {
    content: none;
  }
}
.access-guide_list_item:nth-child(3n-2) .gallery_pic::after {
  background: var(--pink);
  box-shadow: 0 0 1rem rgba(230, 118, 166, 0.5);
}
.access-guide_list_item:nth-child(3n-2) .access-guide_title {
  color: var(--pink);
}
.access-guide_list_item:nth-child(3n-2) .access-guide_title::before {
  background: var(--pink);
}
.access-guide_list_item:nth-child(3n-1) .gallery_pic::after {
  background: var(--blue);
  box-shadow: 0 0 1rem rgba(55, 167, 219, 0.5);
}
.access-guide_list_item:nth-child(3n-1) .access-guide_title {
  color: var(--blue);
}
.access-guide_list_item:nth-child(3n-1) .access-guide_title::before {
  background: var(--blue);
}
.access-guide_list_item:nth-child(3n) .gallery_pic::after {
  background: var(--green);
  box-shadow: 0 0 1rem rgba(125, 175, 20, 0.5);
}
.access-guide_list_item:nth-child(3n) .access-guide_title {
  color: var(--green);
}
.access-guide_list_item:nth-child(3n) .access-guide_title::before {
  background: var(--green);
}
.access-guide_pic {
  width: 35%;
  position: relative;
}
@media (max-width: 640px) {
  .access-guide_pic {
    width: 80%;
  }
}
.access-guide_pic::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: block;
  background: url(/wp/wp-content/themes/takidental/images/common/icon_access_arrow.svg) no-repeat center/contain;
  transform: translate(-50%, calc(100% + 2rem));
}
@media (max-width: 640px) {
  .access-guide_pic::before {
    display: none;
  }
}
.access-guide_sentence {
  flex: 1;
  padding-left: 2rem;
}
@media (max-width: 640px) {
  .access-guide_sentence {
    padding-left: 0;
  }
}
.access-guide_title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0.5em 0 1em;
  font-size: var(--24px);
}
@media (max-width: 640px) {
  .access-guide_title {
    margin: 2em 0 1em;
    font-size: var(--18px);
  }
}
.access-guide_title::before {
  content: "0" counter(guide-item);
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.5em;
  color: #fff;
  font-size: var(--20px);
}
@media (max-width: 640px) {
  .access-guide_title::before {
    font-size: var(--14px);
  }
}
.access-guide_text {
  font-size: var(--18px);
}
@media (max-width: 640px) {
  .access-guide_text {
    font-size: var(--14px);
    text-align: justify;
  }
}

.error-section {
  margin-bottom: 4rem;
}
.error-section_title {
  padding: 0.25em;
  margin: 0 0 0.5em;
  color: var(--green);
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
}
@media (max-width: 640px) {
  .error-section_title {
    font-size: var(--20px);
  }
}
.error-section_content {
  text-align: center;
}
.error-section_search {
  margin-bottom: 4rem;
}
@media (max-width: 640px) {
  .error-section_search {
    margin-bottom: 2rem;
  }
}
.error-section_btn {
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 640px) {
  .error-section_btn {
    max-width: unset;
  }
}

input[type=search] {
  border: 2px solid var(--green);
  padding: 0.75em 1em;
  font-size: var(--18px);
  border-radius: 0.5em;
  width: 50%;
}

.single-content {
  padding: 0 0 10rem;
}
@media (max-width: 640px) {
  .single-content {
    padding: 0 0 5rem;
  }
}
.single-content .inner {
  max-width: 1000px;
  margin: 0 auto;
}
.single-content article p {
  font-size: var(--16px);
  line-height: 1.75;
}
.single-content article a {
  color: var(--green);
  text-decoration: underline;
}
.single-content article table {
  width: auto;
  min-width: 300px;
  max-width: 100%;
  margin: 2rem 0;
  border: 1px solid var(--green);
}
@media (max-width: 640px) {
  .single-content article table {
    width: 100%;
  }
}
.single-content article table.table-wide {
  width: 500px;
}
@media (max-width: 640px) {
  .single-content article table.table-wide {
    width: 100%;
  }
}
.single-content article table th, .single-content article table td {
  border: 1px solid var(--green);
  padding: 0.5em 1em;
  font-size: var(--16px);
}
@media (max-width: 640px) {
  .single-content article table th, .single-content article table td {
    padding: 0.25em;
    font-size: var(--14px);
  }
}
.single-content article table th {
  background: var(--lgreen);
}
.single-content article .green {
  background: none !important;
  color: var(--green);
  font-weight: bold;
}
.single-content article .red {
  background: none !important;
  color: var(--pink);
  font-weight: bold;
}
.single-header {
  padding: 4rem 1rem 3rem;
  margin: 0 -1rem 4rem;
  background: var(--lyellow);
}
@media (max-width: 640px) {
  .single-header {
    padding: 3rem 1rem 2rem;
    margin: 0 -1rem 2rem;
  }
}
.single-header_tags {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.single-header_tags_item {
  font-size: var(--14px);
}
@media (max-width: 640px) {
  .single-header_tags_item {
    font-size: var(--12px);
  }
}
.single-header .entry-wrapper {
  padding: 0.25rem 0 0.5rem 1.5rem;
  border-left: 6px solid var(--green);
}
@media (max-width: 640px) {
  .single-header .entry-wrapper {
    padding-left: 1rem;
    border-left: 4px solid var(--green);
  }
}
.single-header .entry-title {
  margin-top: 0.25em;
  margin-bottom: 0.5em;
  color: var(--gray);
  font-size: var(--24px);
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media (max-width: 640px) {
  .single-header .entry-title {
    font-size: var(--20px);
  }
}
.single-header .entry-meta {
  margin: 0;
  color: var(--green);
  font-size: var(--16px);
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media (max-width: 640px) {
  .single-header .entry-meta {
    font-size: var(--14px);
  }
}
.single-footer .nav-links {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 5rem;
}
@media (max-width: 640px) {
  .single-footer .nav-links {
    flex-direction: column;
    margin-top: 2rem;
  }
}
.single-footer .nav-previous, .single-footer .nav-next {
  margin: 0 0 0.5em;
  border: 2px solid var(--green);
  border-radius: 0.5rem;
}
@media (max-width: 640px) {
  .single-footer .nav-previous, .single-footer .nav-next {
    border-radius: 0.25rem;
  }
}
.single-footer .nav-previous a, .single-footer .nav-next a {
  padding: 0.5em 1em;
  display: block;
  border-radius: 0.25em;
  color: var(--green);
  font-size: var(--18px);
  text-decoration: none;
  transition: background 0.3s;
}
@media (max-width: 640px) {
  .single-footer .nav-previous a, .single-footer .nav-next a {
    font-size: var(--14px);
  }
}
.single-footer .nav-previous a:hover, .single-footer .nav-next a:hover {
  background: var(--lgreen);
}

.page-header {
  padding: 4rem 0;
  background: var(--lyellow);
  text-align: center;
  min-width: 1200px;
  box-sizing: border-box;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .page-header {
    min-width: unset;
    padding: 2rem 1rem;
    text-align: justify;
  }
}
@media (max-width: 640px) {
  .page-header .inner {
    padding: 0;
  }
}
.page-header_title {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 0.5em;
  margin: 0;
  color: var(--green);
  font-size: var(--30px);
  font-weight: bold;
  line-height: 1.75;
}
@media (max-width: 640px) {
  .page-header_title {
    font-size: var(--20px);
    text-align: center;
    line-height: 1.5;
  }
}
.page-header_title::before {
  content: "";
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  margin-right: 0.5em;
}
.page-header_description {
  margin-top: 1em;
  font-size: var(--18px);
  line-height: 1.75;
}
@media (max-width: 640px) {
  .page-header_description {
    font-size: var(--12px);
    text-align: center;
    line-height: 1.5;
  }
}
.page-content {
  padding: 4rem 0;
}
@media (max-width: 640px) {
  .page-content {
    padding: 2rem 0;
  }
}

.footer {
  position: relative;
  background: var(--green);
}
.footer-nav_list {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 0 1.5rem;
}
@media (max-width: 640px) {
  .footer-nav_list {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 0;
  }
}
.footer-nav_list .menu-item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 1em;
}
@media (max-width: 640px) {
  .footer-nav_list .menu-item {
    justify-content: flex-start;
    margin: 0;
    width: 100%;
  }
}
.footer-nav_list .menu-item a {
  display: flex;
  align-items: center;
  padding: 0;
  color: #fff;
  font-size: var(--16px);
  text-decoration: none;
}
@media (max-width: 1200px) {
  .footer-nav_list .menu-item a {
    width: 100%;
    padding: 0.25em 0;
    font-size: var(--20px);
    line-height: 2;
  }
}
@media (max-width: 640px) {
  .footer-nav_list .menu-item a {
    font-size: var(--16px);
  }
}
.footer-nav_list .menu-item a::before {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  margin-right: 0.5em;
  background: url(/wp/wp-content/themes/takidental/images/common/icon_menu_arrow.svg) no-repeat center/contain;
}
.footer-copyright {
  padding: 1em;
  color: #fff;
  font-size: var(--14px);
  text-align: center;
  letter-spacing: 0.1em;
}
@media (max-width: 1200px) {
  .footer-copyright {
    padding: 2em 0.5em;
    font-size: var(--12px);
  }
}

.section-clinic {
  display: none !important;
}
/*# sourceMappingURL=customize.css.map */