@charset "UTF-8";
/* ------------------------------------
// structure
------------------------------------ */
#header {
  padding: 20px 20px;
}
#header header {
  gap: 1rem 2rem;
}
#header header .address {
  grid-row: 1/2;
  grid-column: 1/3;
  font-size: clamp(1.2rem, 1vw, 1.4rem);
  display: block;
}
#header header .logo {
  grid-column: 1/2;
  grid-row: 2/3;
  max-width: 300px;
}
#header header nav {
  grid-row: 2/3;
  gap: 1.5rem;
  --contactfontsize: clamp(1.8rem, 1.7vw, 2.4rem);
}
#header header nav .contact {
  gap: var(--contactfontsize);
}
#header header nav .contact::before {
  content: "";
}
#header header nav .contact .btn_time {
  display: none;
}
#header header nav .contact .call {
  cursor: pointer;
}
#header header nav .contact .call a {
  font-size: clamp(2.4rem, 2.5vw, 3.6rem);
  gap: 1rem;
}
#header header nav .contact .call a:before {
  width: clamp(2.4rem, 2.5vw, 3.6rem);
}
#header header nav .contact .reserve a {
  gap: 1.5rem;
  padding: 1rem var(--contactfontsize);
}
#header header nav .contact .reserve a:before {
  width: clamp(2rem, 2.2vw, 3.2rem);
}
#header #header_fixed header nav .contact::before {
  display: none;
}
#header #header_fixed header nav .contact .btn_time {
  display: flex;
}

@media screen and (max-width: 1024px) {
  #header header {
    gap: 1rem 2rem;
  }
  #header header .address {
    grid-row: 1/2;
    grid-column: 1/3;
  }
  #header header .logo {
    grid-row: 2/3;
  }
  #header header nav .gnav {
    grid-row: 3/3;
  }
  #header #header_fixed header .logo {
    grid-row: 1/2;
  }
  #header #header_fixed header nav .gnav li a {
    font-size: clamp(1.6rem, 1.3vw, 1.8rem);
  }
  #header #header_fixed header .btn {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #header {
    padding: 0;
  }
  .js-timeOpen #header {
    background: #F5F2EF;
  }
  #header header {
    max-width: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr max-content;
    justify-content: space-between;
    gap: 0.5rem;
  }
  #header header .address {
    display: block;
    grid-row: 1/2;
    grid-column: 1/3;
    font-size: clamp(1rem, 0.8vw, 1.2rem);
    text-align: center;
    border-bottom: 1px solid #E0DDDC;
    padding: 0.5rem;
  }
  #header header .logo {
    grid-row: 2/3;
    grid-column: 1/2;
    align-self: center;
    place-content: center;
    margin: 0;
    padding: 0.5rem 0.75rem 0.5rem 0.5rem;
  }
  #header header nav {
    display: none;
  }
  #header header .btn {
    grid-column: 2/3;
    grid-row: 2/3;
    display: flex;
    padding-right: 0.5rem;
    gap: 1px;
  }
  #header header .btn > * {
    width: 6rem;
    cursor: pointer;
    position: relative;
    background: #87817C;
    color: #FFF;
    display: grid;
    place-content: center;
    place-items: center;
    gap: 0.4rem;
  }
  #header header .btn > * p {
    text-align: center;
    width: 100%;
    color: #fff;
    line-height: 1;
    font-size: 1.1rem;
  }
  #header header .btn > *.btn_time::before {
    content: "";
    width: 1.6rem;
    aspect-ratio: 1;
    background: url(../img/cmn/icon_calendar.webp) no-repeat 0 0/100% auto;
    top: 0.7rem;
  }
  #header header .btn > *.btn_menu::before {
    content: "";
    width: 1.6rem;
    aspect-ratio: 1;
    background: url(../img/cmn/icon_drawer.webp) no-repeat 0 0/100% auto;
    top: 0.7rem;
  }
  #header #header_fixed {
    padding: 0.5rem 0;
    background: none;
    background: #F5F2EF;
  }
  #header #header_fixed header .address {
    display: block;
    grid-row: 1/2;
    grid-column: 1/3;
  }
  #header #header_fixed header .logo {
    grid-row: 2/3;
    grid-column: 1/2;
  }
  #header #header_fixed header .btn {
    margin-left: auto;
    display: flex;
  }
  #header #header_fixed header nav {
    display: none;
  }
  #header #menu {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0 0 0 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    overflow-y: auto;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s 0s, visibility 0s 0.3s, transform 0s 0.3s;
  }
  .js-menuOpen #header #menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: opacity 0.3s 0s, visibility 0s 0s, transform 0s 0s;
  }
  #header #menu header {
    margin: 0;
    padding: 0;
    height: auto;
    background: #F5F2EF;
  }
  #header #menu header .btn .btn_menu::before {
    content: "";
    width: 1.6rem;
    aspect-ratio: 1;
    background: url(../img/cmn/icon_close.webp) no-repeat 0 0/100% auto;
    top: 0.7rem;
  }
  #header #menu #menuContainer {
    padding: 0.5rem 1.5rem 4.8rem 1.5rem;
    background: #F5F2EF;
  }
  #header #menu #menuContainer > * {
    position: relative;
  }
  #header #menu #menuContainer nav {
    margin: 1.5rem 0 3rem;
  }
  #header #menu #menuContainer nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.5rem;
  }
  #header #menu #menuContainer nav ul li a {
    display: block;
    border: 1px solid #C7C0BB;
    font-size: 1.6rem;
    padding: 1.2rem 0.5rem;
    text-align: center;
  }
  #header #menu #menuContainer nav ul li.reserve {
    display: none;
  }
  #header #menu #menuContainer .logo {
    width: 80%;
    margin: 0 auto 1rem;
  }
  #header #menu #menuContainer .address {
    text-align: center;
    margin-bottom: 3rem;
  }
  #header #menu #menuContainer .timetable {
    margin: 3rem auto;
    width: 100%;
  }
  #header #menu #menuContainer .timetable table {
    min-width: 0;
    margin: 0 auto 0.5rem;
    border-spacing: 0;
    border-left: 1px solid #87817C;
  }
  #header #menu #menuContainer .timetable table th,
  #header #menu #menuContainer .timetable table td {
    padding: 0.3em 0.2em 0.4em;
    font-size: clamp(1.4rem, 1.3vw, 1.3vw);
  }
  #header #menu #menuContainer .timetable table thead th {
    background: #87817C;
    color: #FFF;
    font-weight: normal;
    border-right: 1px solid #FFF;
  }
  #header #menu #menuContainer .timetable table thead th:last-child {
    border-right: none;
  }
  #header #menu #menuContainer .timetable table thead tr:first-child th {
    border-bottom: 1px solid #FFF;
  }
  #header #menu #menuContainer .timetable table tbody tr th {
    background: #87817C;
    color: #FFF;
    border-bottom: 1px solid #FFF;
  }
  #header #menu #menuContainer .timetable table tbody tr td {
    text-align: center;
    vertical-align: center;
    background: #FFF;
    border-right: 1px solid #87817C;
    border-bottom: 1px solid #87817C;
    line-height: 1.3;
  }
  #header #menu #menuContainer .timetable table tbody tr td span {
    display: block;
    transform: rotate(90deg);
  }
  #header #menu #menuContainer .timetable table tbody tr td.clinicClose {
    background: #E0DDDC;
  }
  #header #menu #menuContainer .timetable table tbody tr td.daySat {
    background: #C4D8E1;
  }
  #header #menu #menuContainer .contact {
    display: block;
  }
  #header #menu #menuContainer .contact .call {
    cursor: pointer;
  }
  #header #menu #menuContainer .contact .call a {
    font-size: 2.8rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding-left: -0.04em;
    font-family: "Zen Kaku Gothic New", "Helvetica Neue", sans-serif;
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
  }
  #header #menu #menuContainer .contact .call a:before {
    content: "";
    width: 2.8rem;
    height: 2.8rem;
    background: url(/lib/img/cmn/icon_call.webp) no-repeat top center/contain;
  }
  #header #menu #menuContainer .contact .reserve {
    margin-top: 1cqmax;
  }
  #header #menu #menuContainer .contact .reserve a {
    color: #fff;
    background: #6DB3D4;
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding-left: -0.04em;
    font-family: "Zen Kaku Gothic New", "Helvetica Neue", sans-serif;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    align-items: center;
    padding: 1rem 3rem;
  }
  #header #menu #menuContainer .contact .reserve a:before {
    content: "";
    width: 2.8rem;
    height: 2.7rem;
    background: url(/lib/img/cmn/icon_reserve.webp) no-repeat top center/contain;
  }
  #header #menu #menuContainer .copy {
    margin: 2rem 0 0;
    position: relative;
    text-align: center;
    padding: 1.5rem 0 2rem;
    font-size: 1rem;
    font-family: "Zen Kaku Gothic New", "Helvetica Neue", sans-serif;
  }
  #time_modal .timetable {
    margin: 3rem auto 0;
    width: 100%;
  }
  #time_modal .timetable table {
    min-width: 0;
    margin: 0 auto 0.5rem;
    width: 100%;
  }
  #time_modal .contact {
    display: none;
  }
  #time_modal .close {
    cursor: pointer;
    padding: 0.5rem 1rem;
    display: block;
    position: absolute;
    right: 1rem;
    top: 1rem;
    justify-content: center;
    align-items: center;
    background: #87817C;
    color: #FFF;
    font-size: 1.4rem;
    font-weight: 500;
    gap: 0 0.3rem;
  }
  #time_modal .close::before {
    content: "×";
  }
}
article {
  max-width: calc(1200px + 4rem);
  padding: 0 2rem;
  margin: 7rem auto 10rem;
}

/* ------------------------------------
// #topmv
------------------------------------ */
#topmv {
  position: relative;
}
#topmv .cliniclead {
  position: absolute;
  left: 50%;
  top: 11.8vw;
  background: rgba(255, 255, 255, 0.8);
  transform: translate(-50%, 0);
  padding: 0 2.1vw 3vw;
}
#topmv .cliniclead .date {
  background: #AA8A16;
  color: #FFF;
  font-size: clamp(1.6rem, 1.7vw, 2.4rem);
  font-size: 1.7vw;
  font-family: "Zen Old Mincho";
  padding: 0.5rem 1rem;
  text-align: center;
  width: fit-content;
  margin: 0 auto 0;
  transform: translateY(-50%);
}
#topmv .cliniclead .date span {
  font-size: clamp(1.2rem, 1.3vw, 1.8rem);
  font-size: 1.3vw;
}
#topmv .cliniclead .date:before, #topmv .cliniclead .date:after {
  content: "";
  width: 2rem;
  height: 100%;
  background: #AA8A16;
  position: absolute;
  z-index: -1;
  top: 0;
}
#topmv .cliniclead .date:before {
  right: calc(100% - 2px);
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 100%, 75% 50%);
}
#topmv .cliniclead .date:after {
  left: calc(100% - 2px);
  clip-path: polygon(100% 0%, 25% 50%, 100% 100%, 0 100%, 0 50%, 0 0);
}
#topmv .cliniclead .lead {
  font-size: clamp(2.4rem, 2.4vw, 3.4rem);
  font-size: 2.4vw;
  font-family: "Zen Old Mincho";
  text-align: center;
  font-weight: 600;
  line-height: 1.4;
}
#topmv .cliniclead .lead span {
  font-size: clamp(3.4rem, 4.2vw, 6rem);
  font-size: 4.2vw;
}
#topmv .timetable {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 1rem;
}
#topmv .timetable h2 {
  text-align: center;
  position: absolute;
  left: 2rem;
  top: 1rem;
  font-size: clamp(1.4rem, 1.3vw, 1.3vw);
}
#topmv .timetable table {
  margin: 0 auto 0.5rem;
  min-width: 39.8vw;
  border-spacing: 0;
  border-bottom: 2px solid #F4A7A4;
}
#topmv .timetable table th,
#topmv .timetable table td {
  padding: 0.6em 0.2em 0.7em;
  font-size: clamp(1.4rem, 1.3vw, 1.3vw);
}
#topmv .timetable table thead th {
  padding: 0em 0.2em 0.4em;
  font-weight: normal;
  border-bottom: 2px solid #F4A7A4;
}
#topmv .timetable table tbody tr:first-child th,
#topmv .timetable table tbody tr:first-child td {
  border-bottom: 1px solid #F4A7A4;
}
#topmv .timetable table tbody tr th {
  width: 20%;
  line-height: 1.1;
  white-space: nowrap;
}
#topmv .timetable table tbody tr td {
  width: 11.4285714286%;
  text-align: center;
  vertical-align: center;
  line-height: 1.3;
  color: #F4A7A4;
  font-size: clamp(1.8rem, 1.4vw, 1.4vw);
}
#topmv .timetable table tbody tr td span {
  display: block;
  transform: rotate(90deg);
}
#topmv .timetable table tbody tr td.allday {
  border-right: 1px solid #F4A7A4;
  border-left: 1px solid #F4A7A4;
  border-bottom: none;
  color: #282828;
  font-size: clamp(1.4rem, 1.3vw, 1.3vw);
  white-space: nowrap;
}
#topmv .timetable table tbody tr td.clinicClose {
  color: #282828;
}
#topmv .timetable .note {
  font-size: clamp(1.4rem, 1.1vw, 1.1vw);
}
@media screen and (max-width: 768px) {
  #topmv .cliniclead {
    left: 15%;
    width: 70%;
    top: auto;
    bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    transform: none;
    padding: 0 3.5vw;
  }
  #topmv .cliniclead .date {
    font-size: 4.8vw;
  }
  #topmv .cliniclead .date span {
    font-size: 3.5vw;
  }
  #topmv .cliniclead .lead {
    transform: translateY(-1rem);
    font-size: 4.8vw;
  }
  #topmv .cliniclead .lead span {
    font-size: 6.4vw;
  }
  #topmv .timetable {
    display: none;
  }
}

/* ------------------------------------
// #news
------------------------------------ */
#news {
  background: #FFF;
  display: grid;
  grid-template-columns: max-content 1fr;
  padding: 3rem;
  gap: 0;
  margin-bottom: 10rem;
}
#news .news_heading {
  padding: 0 5rem 0 2rem;
  border-right: 1px solid #C7C0BB;
  display: grid;
  place-content: center;
}
#news .news_heading hgroup {
  margin: 0 auto 1rem;
  width: fit-content;
  text-align: center;
}
#news .news_heading hgroup .en {
  font-family: "Baskervville", serif;
  letter-spacing: 0.2em;
  padding-left: -0.2em;
  text-transform: uppercase;
  color: #87817C;
  font-size: clamp(1.2rem, 1.1vw, 1.6rem);
}
#news .news_heading hgroup h2 {
  font-size: clamp(2rem, 2.2vw, 3.2rem);
  font-family: "Zen Old Mincho";
  letter-spacing: 0.1em;
  padding-left: -0.1em;
}
#news .news_list {
  align-self: center;
  padding: 0 0 0 5rem;
}
#news .news_list ul li {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 1.5rem;
}
#news .news_list ul li + li {
  margin-top: 1rem;
}
@media screen and (max-width: 1024px) {
  #news {
    padding: 2rem;
  }
  #news .news_heading {
    padding: 0 2rem 0 0;
  }
  #news .news_list {
    align-self: center;
    padding: 0 0 0 2rem;
  }
}
@media screen and (max-width: 768px) {
  #news {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 4rem;
  }
  #news .news_heading {
    padding: 0 0 2rem 0;
    border-bottom: 1px solid #C7C0BB;
    border-right: none;
  }
  #news .news_list {
    align-self: center;
    padding: 0 0 0;
  }
  #news .news_list ul li {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  #news .news_list ul li + li {
    margin-top: 1.5rem;
  }
}

/* ------------------------------------
// #about
------------------------------------ */
#about {
  max-width: 1200px;
  margin: 0 auto 10rem;
}
#about .about_container {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 0 4.2vw;
}
#about .about_container .text p {
  line-height: 1.8;
}
#about .about_container .btn .btn01 {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 768px) {
  #about {
    margin: 0 auto 4rem;
  }
  #about .about_container {
    grid-template-columns: 1fr;
    gap: 2rem 0;
  }
}

/* ------------------------------------
// #feature
------------------------------------ */
#feature {
  max-width: 1200px;
  margin: 0 auto 10rem;
}
#feature .htype01 h2 span {
  font-size: clamp(4rem, 4.2vw, 6rem);
  font-weight: 600;
}
#feature .feature_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.8vw;
}
#feature .feature_container section {
  padding: 2.8vw;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  gap: 2rem;
  gap: 0;
}
#feature .feature_container section .number {
  border-bottom: 1px solid #FFF;
  font-family: "Castoro Titling", serif;
  letter-spacing: 0.1em;
  padding-left: -0.1em;
  text-transform: uppercase;
  text-align: center;
  font-size: clamp(1.8rem, 1.4vw, 2rem);
  color: #FFF;
}
#feature .feature_container section .number span {
  display: inline-block;
  margin-left: 1rem;
  font-size: clamp(3.5rem, 4.9vw, 7rem);
}
#feature .feature_container section h3 {
  font-size: clamp(2.4rem, 2.4vw, 3.4rem);
  font-family: "Zen Old Mincho";
  letter-spacing: 0.1em;
  padding-left: -0.1em;
  text-align: center;
  color: #FFF;
  place-content: center;
  padding: 2rem 0;
  line-height: 1.2;
}
#feature .feature_container section .text {
  margin-top: 0;
  background: #FFF;
  padding: 4rem 2rem;
}
#feature .feature_container section .btn {
  background: #FFF;
  padding: 4rem 2rem;
}
#feature .feature_container section .btn .btn01 {
  width: auto;
  justify-content: center;
}
#feature .feature_container #feature01 {
  background: #C1B98E;
}
#feature .feature_container #feature02 {
  background: #96A6B0;
}
#feature .feature_container #feature03 {
  background: #D4906B;
}
#feature .feature_container #feature04 {
  background: #9DAD94;
}
@media screen and (max-width: 1024px) {
  #feature .feature_container {
    grid-template-columns: 1fr;
  }
  #feature .feature_container section {
    padding: 2.8vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-row: auto;
  }
  #feature .feature_container section .number {
    border-bottom: none;
    align-self: center;
  }
  #feature .feature_container section h3 {
    padding: 2rem 0;
  }
  #feature .feature_container section .photo {
    grid-row: 2/4;
  }
  #feature .feature_container section .photo img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  #feature .feature_container section .text {
    padding: 2rem 2rem;
  }
  #feature .feature_container section .btn {
    padding: 1rem 2rem;
  }
}
@media screen and (max-width: 768px) {
  #feature {
    margin: 0 auto 4rem;
  }
  #feature .htype01 h2 span {
    font-size: clamp(2.4rem, 3.3vw, 4.8rem);
  }
  #feature .feature_container {
    grid-template-columns: 1fr;
    gap: 10.7vw;
  }
  #feature .feature_container section {
    padding: 2.8vw;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-row: auto;
  }
  #feature .feature_container section .number {
    border-bottom: 1px solid #FFF;
    align-self: center;
  }
  #feature .feature_container section h3 {
    padding: 2rem 0;
  }
  #feature .feature_container section .photo {
    grid-row: auto;
  }
  #feature .feature_container section .photo img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  #feature .feature_container section .text {
    padding: 2rem 2rem;
  }
  #feature .feature_container section .btn {
    padding: 1rem 2rem;
  }
}

/* ------------------------------------
// #treatment
------------------------------------ */
#treatment {
  max-width: 1200px;
  margin: 0 auto 10rem;
}
#treatment .treatment_container ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 2.1vw;
}
#treatment .treatment_container ul li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 1rem;
}
#treatment .treatment_container ul li a {
  display: inherit;
  grid-template-rows: inherit;
  grid-row: inherit;
  gap: 1rem;
  background: #FFF;
  text-align: center;
  padding: 3rem 1rem;
  align-items: start;
  justify-items: center;
}
#treatment .treatment_container ul li a .icon {
  width: 50%;
  margin: 0 auto;
}
#treatment .treatment_container ul li a .title {
  font-size: clamp(2.2rem, 1.8vw, 2.6rem);
  font-family: "Zen Old Mincho";
  letter-spacing: 0.1em;
  padding-left: -0.1em;
  font-weight: 600;
}
#treatment .treatment_container ul li a .disc {
  text-align: center;
  line-height: 1.5;
  font-size: clamp(1.6rem, 1.3vw, 1.8rem);
  padding: 0 1rem;
}
#treatment .treatment_container ul li.mushiba a {
  color: #8D7F9A;
}
#treatment .treatment_container ul li.ireba a {
  color: #698BA4;
}
#treatment .treatment_container ul li.periodontal a {
  color: #A79650;
}
#treatment .treatment_container ul li.preventive a {
  color: #518364;
}
#treatment .treatment_container ul li.whitening a {
  color: #AC645A;
}
#treatment .treatment_container ul li.mousepiece a {
  color: #916642;
}
#treatment .treatment_container ul li.orthodontics a {
  color: #51686A;
}
#treatment .treatment_container ul li.child a {
  color: #8B8E6C;
}
#treatment .treatment_container ul li.homevisit a {
  color: #9F544B;
}
@media screen and (max-width: 768px) {
  #treatment {
    margin: 0 auto 4rem;
  }
  #treatment .treatment_container ul {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.1vw;
  }
  #treatment .treatment_container ul li {
    display: grid;
    grid-template-rows: auto;
    grid-row: span 3;
  }
  #treatment .treatment_container ul li a {
    grid-template-columns: 7rem 1fr;
    background: #FFF;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 0rem 2rem;
    align-items: start;
    justify-items: stretch;
  }
  #treatment .treatment_container ul li a .icon {
    width: 100%;
    margin: 0 auto;
    grid-row: 1/3;
    align-self: center;
  }
  #treatment .treatment_container ul li a .title {
    font-size: clamp(1.6rem, 1.3vw, 1.8rem);
    text-align: left;
    font-weight: bold;
  }
  #treatment .treatment_container ul li a .disc {
    text-align: left;
    line-height: 1.5;
    font-size: clamp(1.2rem, 1.1vw, 1.6rem);
    padding: 0 0;
  }
}

/* ------------------------------------
// #oralfrailty
------------------------------------ */
#oralfrailty {
  max-width: 1200px;
  margin: 0 auto 10rem;
}
#oralfrailty .oralfrailty_container {
  background: #FFF;
  display: grid;
  grid-template-columns: 1fr 40%;
}
#oralfrailty .oralfrailty_container .photo01 {
  grid-column: 1/3;
}
#oralfrailty .oralfrailty_container .photo02 img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
#oralfrailty .oralfrailty_container .text {
  background: #FFF;
  padding: 3rem 4.2vw;
  align-self: center;
}
#oralfrailty .oralfrailty_container .text .btn {
  margin-top: 2rem;
}
#oralfrailty .oralfrailty_container .text .btn .btn01 {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 768px) {
  #oralfrailty {
    margin: 0 auto 4rem;
  }
  #oralfrailty .oralfrailty_container {
    background: #FFF;
    display: grid;
    grid-template-columns: 1fr 40%;
  }
  #oralfrailty .oralfrailty_container .photo01 {
    grid-column: 1/3;
  }
  #oralfrailty .oralfrailty_container .photo02 {
    grid-column: 1/3;
  }
  #oralfrailty .oralfrailty_container .photo02 img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  #oralfrailty .oralfrailty_container .text {
    grid-column: 1/3;
    background: #FFF;
    padding: 3rem 4.2vw;
    align-self: center;
  }
  #oralfrailty .oralfrailty_container .text .btn {
    margin-top: 2rem;
  }
  #oralfrailty .oralfrailty_container .text .btn .btn01 {
    margin: 0 0 0 auto;
    padding: 0.5rem 1rem;
  }
}