@charset "UTF-8";
/* CSS Document */
/*---------------------------------

  サブページ共通

---------------------------------*/
#mainContainer {}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {}
/*---------------------------------
  ページタイトル
---------------------------------*/
#pageTitle {
  position: relative;
}
#pageTitle .inner {
  background: #fff;
  border-radius: 1rem 1rem 0 0;
  margin: auto;
  text-align: center;
  padding: 5rem 5rem 2rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 60rem;
  width: 90%;
  z-index: 5;
}
#pageTitle h1 {
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: .3em;
}
#pageTitle .en {
  color: var(--co-gol);
  font-size: 1.2em;
  letter-spacing: 0.4em;
  margin-left: 1rem;
}
#pageTitle .bg-img {
  height: 60vh;
  position: relative;
  overflow: hidden;
}
#pageTitle .bg-img::after {
  content: '';
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#pageTitle .bg-img img {
  position: fixed;
  bottom: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  #pageTitle {}
  #pageTitle h1 {}
}
@media screen and (max-width: 896px) {
  #pageTitle .inner {
    max-width: 40rem;
  }
  #pageTitle .bg-img {
    height: 45vh;
  }
  #pageTitle h1 {
    font-size: 2.8rem;
  }
  #pageTitle .en {
    font-size: 1em;
  }
}
@media screen and (max-width: 480px) {
  #pageTitle .inner {
    padding: 2rem 3rem 2rem;
    width: 80%;
  }
  #pageTitle h1 {
    font-size: 2.3rem;
  }
  #pageTitle .bg-img {
    height: 35vh;
  }
  #pageTitle .bg-img img {
    position: relative;
  }
}
/*---------------------------------
  パンくず
---------------------------------*/
#breadlist {
  background: #fff;
  font-size: 80%;
  list-style: none;
  margin: 0;
  padding: 1.5rem 0;
  position: relative;
  width: 100%;
  z-index: 1;
}
#breadlist ol {
  margin: auto;
  max-width: 140rem;
  text-align: right;
  width: 90%;
}
#breadlist li {
  display: inline-block;
}
#breadlist li::after {
  border-style: solid;
  border-width: 3px 0 3px 6px;
  border-color: transparent transparent transparent #ccc;
  content: '';
  display: inline-block;
  margin: 0 5px;
  width: 0;
  height: 0;
}
#breadlist li:last-child::after {
  content: none;
}
#breadlist li a, #breadlist li {
  color: var(--co-gol);
}
#breadlist li:last-child a, #breadlist li:last-child {
  color: var(--co-bl);
}
@media screen and (max-width: 1024px) {
  #breadlist {}
}
@media screen and (max-width: 896px) {
  #breadlist {}
}
@media screen and (max-width: 480px) {
  #breadlist {
    margin: auto;
    padding: .5rem 0;
  }
}
/*---------------------------------

  レイアウト

---------------------------------*/
.page-sub #sideColum {
  display: none;
}
#mainColum {
  background: #fff;
  padding-top: 7rem;
}
#mainColum section {
  padding: 7rem 0 12rem;
}
#mainColum section + section {
  padding-top: 7rem;
}
#mainColum section:last-child {
  padding-bottom: 15rem;
}
section .wrap {
  margin: auto;
  max-width: 110rem;
  width: 90%;
}
section .txt {
  line-height: 2;
  text-align: justify;
}
section .txt p + p {
  margin-top: .7em;
}
section figure img {
  width: 100%;
  vertical-align: bottom;
}
section .wrap ._flex {
  display: flex;
  justify-content: space-between;
}
section .wrap figure {
  flex-basis: 43%;
  order: -1;
}
section:nth-child(even) .wrap figure {
  order: 1;
}
section .wrap .txtBox {
  flex-basis: 50%;
}
section .btn {
  margin: 2rem 0 0;
}
@media screen and (max-width: 1024px) {
  section {
    padding: 7rem 0 0;
  }
}
@media screen and (max-width: 896px) {
  section .wrap ._flex {
    display: block;
  }
  section .wrap figure {
    margin: 2rem auto;
    max-width: 50rem;
  }
}
@media screen and (max-width: 480px) {
  #mainColum {
    padding-top: 3rem;
  }
  #mainColum section + section {
    padding-top: 4rem;
  }
  #mainColum section {
    padding: 4rem 0 5rem;
  }
  section:last-child {
    padding-bottom: 7rem;
  }
  section .txt {
    line-height: 1.8;
  }
  section .wrap ._flex {}
  section .wrap figure {}
  section .btn {
    margin: 2rem auto 0;
  }
}
/*---------------------------------
  見出し
---------------------------------*/
section .title {
  margin-bottom: 5rem;
  text-align: center;
}
section .title h2 {
  background: rgb(166, 151, 79);
  background: linear-gradient(0deg, rgba(79,161,166,1.00) 0%, rgba(123,175,191,1.00) 100%);
  color: #fff;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: .15em;
  padding: 2rem;
}
section h3 {
  background: var(--bg-col);
  color: #555;
  font-size: 1.2em;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.4;
  margin: 0 0 2rem;
  padding: .8rem 1.5rem;
}
section h4 {
  color: var(--co-gol);
  font-size: 1.05em;
  font-weight: 600;
  letter-spacing: 2px;
  margin: 2rem 0 .5rem;
}
section ol {
  margin-left: 2.5rem;
}
section ol li::marker {}
section .txt ul {
  list-style: none;
}
section .txt ul li {
  line-height: 1.5;
  margin: 1.5rem 0;
  padding-left: 2.5rem;
  position: relative;
}
section .txt ul li::before {
  background: var(--co-gol);
  border-radius: 50%;
  content: '';
  position: absolute;
  top: .5rem;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
}
section table {
  margin: 3rem 0;
}
section table tr {
  border-bottom: 1px solid #ddd;
}
section table th {
  padding: 1.5rem 2rem;
}
section table td {
  padding: 1.5rem 2rem;
}
@media screen and (max-width: 1024px) {
  section .title {
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 896px) {
  section .title {
    margin-bottom: 3rem;
  }
  section .title h2 {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 480px) {
  section .title {
    margin-bottom: 3rem;
  }
  section .title h2 {
    font-size: 1.2em;
    line-height: 1.2;
  }
  section h3 {
    font-size: 1.1em;
    padding-left: 2rem;
  }
  section h3::after {
    width: 1rem;
    height: .2rem;
    top: 1.4rem;
  }
  section h4 {
    font-size: 1em;
    margin: 2rem 0 .5rem;
  }
  section table {
    min-width: 100%;
  }
  section table th, section table td {
    font-size: .85em;
    padding: 0.8rem;
  }
}
/*---------------------------------

  流れ（共通スタイル）

---------------------------------*/
.flowBlock {
  padding: 7rem 0 3rem;
}
.flowBlock .flow__wrap {
  display: flex;
  counter-reset: cnt;
}
/* 数字リンク */
.flowBlock .flow__wrap .__numLink {
  flex: 0 0 12rem;
}
.flowBlock .flow__wrap .__numLink .__sticky {
  position: sticky;
  top: 11rem;
}
.flowBlock .flow__wrap .__numLink .__sticky ul {
  list-style: none;
  margin: 0;
}
.flowBlock .flow__wrap .__numLink .__sticky ul li {
  padding-bottom: 2rem;
  position: relative;
  width: 5rem;
}
.flowBlock .flow__wrap .__numLink .__sticky ul li:not(:last-child)::after {
  background: var(--co-gol);
  content: '';
  margin: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: .1rem;
  height: 2rem;
}
.flowBlock .flow__wrap .__numLink .__sticky ul li a {
  border-radius: 50%;
  background: var(--bg-col);
  color: var(--co-gol);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  height: 5rem;
}
.flowBlock .flow__wrap .__numLink .__sticky ul li a.link-current {
  background: var(--co-gol);
  color: #fff;
}
/* 内容 */
.flowBlock .flow__wrap .flow__item {
  background: var(--bg-col);
  border-radius: 1rem;
  display: flex;
  justify-content: space-between;
  padding: 3rem;
  position: relative;
}
.flowBlock .flow__wrap .__box:not(:first-child) {
  padding-top: 6rem;
  position: relative;
}
.flowBlock .flow__wrap .__box:not(:first-child)::after {
  background: url(../../images/flow_arr.svg);
  content: '';
  margin: auto;
  position: absolute;
  top: 1rem;
  left: 0;
  right: 0;
  width: 4rem;
  height: 4rem;
}
.flowBlock .flow__wrap .txtBox {
  color: var(--co-gr);
  flex-basis: 56%;
}
.flowBlock .flow__wrap .txtBox h3 {
  background: none;
  margin: 0;
  margin-bottom: 2rem;
  padding: 0;
}
.flowBlock .flow__wrap .txtBox h3::before {
  border-radius: 50%;
  background: #fff;
  color: var(--co-gol);
  counter-increment: cnt;
  content: '0'counter(cnt);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  margin-bottom: 0.5rem;
  width: 4rem;
  height: 4rem;
}
.flowBlock .flow__wrap .txtBox .txt {
  font-size: .9em;
  line-height: 1.8;
}
.flowBlock .flow__wrap .flow__item figure {
  border-radius: 1rem;
  flex-basis: 40%;
  order: -1;
  overflow: hidden;
}
.flowBlock .second_ {
  border: 1px solid;
  font-size: 2rem;
  font-weight: 500;
  margin: auto;
  max-width: 50rem;
  padding: 2rem;
  text-align: center;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  .flowBlock {
    padding: 3rem 0 0;
  }
  .flowBlock .flow__wrap .__numLink {
    flex: 0 0 5rem;
  }
  .flowBlock .flow__wrap .__numLink .__sticky ul li {
    width: 4rem;
  }
  .flowBlock .flow__wrap .__numLink .__sticky ul li a {
    height: 4rem;
  }
  .flowBlock .flow__wrap .flow__item {
    display: block;
    padding: 1.5rem;
  }
  .flowBlock .flow__wrap .flow__item::after {}
  .flowBlock .flow__wrap .txtBox h3 {}
  .flowBlock .flow__wrap .flow__item figure {
    margin-top: 1rem;
  }
}
/*---------------------------------

  診療案内

---------------------------------*/
.medicalBlock {
  border-top: 1px solid var(--bg-col);
  border-bottom: 1px solid var(--bg-col);
  padding: 0 !important;
  margin: 0 auto;
}
.medicalBlock .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: none;
  width: 100%;
}
.medicalBlock .wrap ._meBox {
  flex-basis: calc(100%/4 - .05rem);
}
.medicalBlock .wrap ._meBox a {
  background: #000;
  color: #fff;
  display: block;
  position: relative;
}
.medicalBlock .wrap ._meBox a::after {
  background: url("../images/arr_w.svg") no-repeat center right/1.8rem;
  content: '詳細はこちら';
  padding-right: 2.5rem;
  position: absolute;
  right: 1rem;
  bottom: 1rem;
}
.medicalBlock .wrap ._meBox a:hover {
  background: #0B514B;
}
.medicalBlock .wrap ._meBox a figure {
  aspect-ratio: 1;
}
.medicalBlock .wrap ._meBox a figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  opacity: .5;
}
.medicalBlock .wrap ._meBox a p {
  background-size: 9rem 9rem;
  background-position: top center;
  background-repeat: no-repeat;
  font-size: 1.7em;
  margin: auto;
  height: fit-content;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10rem 0 0;
  text-align: center;
}
.medicalBlock .wrap ._meBox a p.__periodontal {
  background-image: url("../images/menu_i_02.svg");
}
.medicalBlock .wrap ._meBox a p.__prevention {
  background-image: url("../images/menu_i_03.svg");
}
.medicalBlock .wrap ._meBox a p.__implant {
  background-image: url("../images/menu_i_04.svg");
}
.medicalBlock .wrap ._meBox a p.__relax {
  background-image: url("../images/menu_i_11.svg");
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {
  .medicalBlock .wrap ._meBox {
    flex-basis: calc(100%/2 - .05rem);
    margin-top: .1rem;
  }
  .medicalBlock .wrap ._meBox a figure {
    aspect-ratio: 3 / 2;
  }
}
@media screen and (max-width: 480px) {
  .medicalBlock .wrap ._meBox a figure {
    aspect-ratio: 1;
    margin: 0;
  }
  .medicalBlock .wrap ._meBox a p {
    background-size: 4rem 4rem;
    font-size: 1.2em;
    padding: 5rem 0 0;
  }
}