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

  レイアウト・基本カラー

---------------------------------*/
#globalContainer {
  position: relative;
}
#content {}
:root {
  --co-bl: #333;
  --co-gr: #808080;
  --co-gol: #308B87;
  --co-gol-h: #17767B;
  --bg-col: #EFF2F5;
  --width: 1200px;
}
.en {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  .en {}
}
/*---------------------------------

  header

---------------------------------*/
header {
  background-color: transparent;
  position: fixed;
  transition: all .3s;
  width: 100%;
  z-index: 100;
}
header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: .3s;
}
header .wrap #logo {
  margin: 0 2.5%;
  overflow: hidden;
}
header .wrap #logo a {
  display: flex;
  align-items: center;
}
header .wrap #logo svg {
  max-width: 18rem;
  width: 100%;
  vertical-align: bottom;
}
header .wrap #logo .st0 {
  fill: #fff;
}
header .wrap #logo a span {
  background: var(--bg-col);
  border-radius: 2rem;
  color: var(--co-gol);
  font-size: .8em;
  margin-left: 2rem;
  padding: .1rem 1.5rem;
}
/*---------------------------------
  グローバルナビゲーション
---------------------------------*/
#gnav {
  font-size: 1.2em;
}
#gnav .SPmenu {
  display: none;
}
#gnav ul {
  display: flex;
  align-items: center;
}
#gnav ul li.PCnone {
  display: none;
}
#gnav ul li {
  margin-right: 3.5rem;
}
#gnav ul li a {
  color: #fff;
  display: block;
  font-size: 1.1em;
  font-weight: 500;
  padding: 1.5rem 1rem;
  position: relative;
}
#gnav ul li a .icon {
  background-size: 2.5rem 2.5rem;
  background-position: left;
  background-repeat: no-repeat;
  display: block;
  padding-left: 3.5rem;
}
#gnav ul li a .icon.__prevention {
  background-image: url("../images/menu_i_03.svg");
}
#gnav ul li a .icon.__periodontal {
  background-image: url("../images/menu_i_02.svg");
}
#gnav ul li a .icon.__implant {
  background-image: url("../images/menu_i_04.svg");
}
#gnav ul li a .icon.__relax {
  background-image: url("../images/menu_i_11.svg");
}
#gnav ul li.current a, #gnav ul li a:hover {
  color: var(--co-gol-h);
}
header .hoLink {
  aspect-ratio: 1/1;
}
header .hoLink a {
  background: #415053;
  color: #fff;
  display: grid;
  align-content: center;
  height: 100%;
  padding: .5rem 1rem;
}
header .hoLink a svg {
  display: block;
  fill: #fff;
  margin: 0 auto;
  width: 5rem;
  height: 5rem;
}
header .hoLink a span {
  display: block;
}
@media screen and (max-width: 1440px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {
  header .wrap {}
  header .wrap #logo {
    max-width: 27rem;
  }
}
/*---------------------------------
  スクロールしたら
---------------------------------*/
header.header-sc {
  background: #fff;
}
header.header-sc .wrap #logo .st0 {
  fill: #333;
}
header.header-sc #gnav ul li a {
  color: var(--co-gol);
}
header.header-sc #gnav ul li a .icon.__prevention {
  background-image: url("../images/menu_i_03_c.svg");
}
header.header-sc #gnav ul li a .icon.__periodontal {
  background-image: url("../images/menu_i_02_c.svg");
}
header.header-sc #gnav ul li a .icon.__implant {
  background-image: url("../images/menu_i_04_c.svg");
}
header.header-sc #gnav ul li a .icon.__relax {
  background-image: url("../images/menu_i_11_c.svg");
}
/*---------------------------------
  トグルメニュー（ipadサイズから）
---------------------------------*/
@media screen and (max-width: 1024px) {
  header.header-sc {
    background: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  #gnav .overlay {
    background: #d2b191bd;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh);
    display: none;
  }
  .navToggle {
    background: var(--co-bl);
    color: #fff;
    cursor: pointer;
    position: fixed;
    top: 0;
    right: 6rem;
    z-index: 100;
    display: block;
    width: 6rem;
    height: 6rem;
    -moz-transition: all 0.6s;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    text-align: center;
  }
  .navToggle::after {
    content: 'MENU';
    font-size: 1rem;
    line-height: 1;
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    margin: auto;
  }
  .navToggle span {
    background: #fff;
    display: block;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    width: 30px;
    height: 2px;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .navToggle span:nth-of-type(1) {
    top: 10px;
  }
  .navToggle span:nth-of-type(2) {
    top: 20px;
  }
  .navToggle span:nth-of-type(3) {
    top: 30px;
  }
  .navToggle.active::after {
    content: 'CLOSE';
  }
  .navToggle.active span:nth-of-type(1) {
    display: none;
  }
  .navToggle.active span:nth-of-type(2) {
    -moz-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    top: 20px;
    right: 0;
  }
  .navToggle.active span:nth-of-type(3) {
    -moz-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    top: 20px;
    right: 0;
  }
  /* このクラスを、jQueryで付与・削除する */
  nav.globalMenuSp.panelactive {
    display: block;
    animation-name: fade-in;
    animation-duration: .5s;
  }
  nav.globalMenuSp {
    background: rgba(249, 248, 244, 0.9);
    display: none;
    position: fixed;
    z-index: 99;
    top: 0;
    right: 0;
    width: 100%;
    height: calc(100vh);
    max-width: 48rem;
    padding: 7.5rem 1.5rem 3rem;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  #gnav {
    font-size: 1.1em;
  }
  #gnav #SPlogo {
    margin: 3rem auto;
    max-width: 25rem;
  }
  #gnav ul {
    display: block;
  }
  #gnav ul li.PCnone {
    display: block;
  }
  #gnav ul li {
    margin: .5rem 0;
  }
  #gnav ul li a {
    color: #333;
    padding: 0;
  }
  #gnav ul li a::after {
    display: none;
  }
  #gnav ul li a.current {
    color: #333;
  }
  #gnav ul li a {
    padding: 1rem;
  }
  #gnav ul li.PCnone {
    display: block;
  }
  header.header-sc #gnav ul li a {
    color: #333;
  }
  header #gnav ul li a .icon.__periodontal {
    background-image: url("../images/menu_i_03_c.svg");
  }
  header #gnav ul li a .icon.__prevention {
    background-image: url("../images/menu_i_02_c.svg");
  }
  header #gnav ul li a .icon.__implant {
    background-image: url("../images/menu_i_04_c.svg");
  }
  header #gnav ul li a .icon.__relax {
    background-image: url("../images/menu_i_06_c.svg");
  }
  header .hoLink.PCmenu {
    width: 6rem;
  }
  header .hoLink.PCmenu a {
    padding: 0.5rem;
  }
  header .hoLink.PCmenu a svg {
    width: 3rem;
    height: 3rem;
  }
  header .hoLink.PCmenu a span {
    font-size: 0.5em;
    text-align: center;
  }
  #gnav .SPmenu {
    aspect-ratio: 1/1;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 6rem;
  }
  header .hoLink.SPmenu a {
    background: #534741;
    color: #fff;
    display: grid;
    align-content: center;
    height: 100%;
    padding: 0.5rem;
  }
  header .hoLink.SPmenu a svg {
    display: block;
    fill: #fff;
    margin: 0 auto;
    width: 3rem;
    height: 3rem;
  }
  header .hoLink.SPmenu a span {
    display: block;
    font-size: 0.5em;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  nav.globalMenuSp {
    padding: 6.5rem 1rem 10rem;
  }
  #gnav ul li a {}
}
/*---------------------------------

  連携歯科医院

---------------------------------*/
#renkei {
  background: url("../images/renkei_bg.jpg") no-repeat center/cover;
  background-attachment: fixed;
  padding: 15rem 5%;
}
#renkei .wrap {}
#renkei .wrap .btn {
  margin: auto;
  max-width: 60rem;
  width: 90%;
}
#renkei .wrap .btn a {
  background: #fff;
  padding: 4rem;
  padding-right: 0;
}
#renkei .wrap .btn a span {
  font-size: 1.6em;
  font-weight: 500;
}
#renkei .wrap .btn a::before {
  background: #ddd;
}
#renkei .wrap .btn a:hover {
  color: #333;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {
  #renkei {
    padding: 6rem 5%;
  }
  #renkei .wrap .btn a {
    padding: 3rem;
  }
  #renkei .wrap .btn a span {
    font-size: 1.2em;
  }
}
@media screen and (max-width: 480px) {
  #renkei {
    padding: 5rem 2.5%;
  }
  #renkei .wrap .btn a span {
    font-size: 1em;
  }
  #renkei .wrap .btn a {
    padding: 2rem;
  }
}
/*---------------------------------

	footer

---------------------------------*/
footer {
  background: #F2F1F1;
}
footer .wrap {
  margin: auto;
  max-width: var(--width);
  width: 90%;
}
footer .telBox {
  border-bottom: 1px solid;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem 5rem;
}
footer .telBox p {
  font-size: .8em;
  font-weight: 600;
  letter-spacing: .08em;
  margin-right: 2rem;
}
footer .telBox ._tel {}
footer .telBox ._tel a {
  pointer-events: none;
}
footer .telBox ._tel a img {
  max-width: 30rem;
  width: 100%;
  vertical-align: bottom;
}
footer .infoBox {
  display: flex;
  justify-content: space-between;
  padding: 5rem 0;
}
footer .infoBox ._info .logo {}
footer .infoBox ._info .logo a {
  display: flex;
  align-items: center;
}
footer .infoBox ._info .logo a img {
  max-width: 18rem;
  width: 100%;
  vertical-align: bottom;
}
footer .infoBox ._info .logo a span {
  background: #fff;
  border-radius: 2rem;
  color: var(--co-gol);
  font-size: .8em;
  margin-left: 2rem;
  padding: .1rem 1.5rem;
}
footer .infoBox ._info p {
  margin-top: 1rem;
}
footer .infoBox ._info p a {
  color: #000;
  text-decoration: underline;
}
footer .infoBox ._fnav {}
footer .infoBox ._fnav ul {
  display: flex;
  list-style: none;
}
footer .infoBox ._fnav ul li {
  margin-left: 2rem;
}
footer .infoBox ._fnav ul li a {
  color: #333;
  display: block;
  font-weight: 500;
}
footer .infoBox ._fnav ul li a:hover {
  color: var(--co-gol);
}
footer .infoBox ._fnav .btn {
  margin-left: auto;
  margin-top: 2rem;
}
/*コピーライト*/
footer .copylight {
  font-size: .8em;
  letter-spacing: 0.1em;
  padding: 5rem;
  text-align: center;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {
  footer .infoBox {
    display: block;
    padding: 5rem 0 0;
  }
  footer .infoBox ._info {
    text-align: center;
  }
  footer .infoBox ._info .logo {
    margin: auto;
    max-width: fit-content;
  }
  footer .infoBox ._fnav {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  footer .telBox {
    padding: 3rem 0rem;
  }
}
/*---------------------------------

	pagetop

---------------------------------*/
#page-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 10;
}
#page-top a {
  background: #333;
  text-decoration: none;
  color: #fff;
  width: 5rem;
  height: 5rem;
  text-align: center;
  display: block;
  border-radius: 50%;
  position: relative;
}
#page-top a .arrow {
  display: block;
}
#page-top a .arrow::before {
  content: '';
  width: 10px;
  height: 6px;
  background: url("../images/pagetop_arrow.svg") no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all .3s;
}
#page-top a:hover {
  opacity: 1;
  text-decoration: none;
  background: #aaa;
}
#page-top a:hover .arrow::before {
  top: -10px;
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {}
/*---------------------------------

	ボタン

---------------------------------*/
.btn {
  max-width: max-content;
  min-width: 27rem;
}
.btn a {
  border: 1px solid var(--co-gr);
  color: var(--co-bl);
  display: block;
  padding: .5rem 2rem;
  padding-right: 0;
  position: relative;
}
.btn a span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .9em;
  line-height: 1.4;
  position: relative;
  z-index: 3;
}
.btn a span::after {
  background: url("../images/arr_d.svg") no-repeat center/2rem;
  border-left: 1px solid var(--co-gr);
  content: '';
  display: block;
  flex: 0 0 auto;
  margin-left: 2.5rem;
  width: 6rem;
  height: 4rem;
}
.btn a:hover {
  color: #fff;
}
.btn a::before {
  background: var(--co-bl);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.btn a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
@media screen and (max-width: 1024px) {}
@media screen and (max-width: 896px) {}
@media screen and (max-width: 480px) {}
/*---------------------------------

	inview

---------------------------------*/
/*.fadeIn {
  opacity: 0;
  transition: 2s;
}
.fadeIn.is-show {
  opacity: 1;
}*/
.fadeIn {
  opacity: 0;
  transform: translate(0, 5rem);
  transition: 1s;
}
.fadeIn.is-show {
  transform: translate(0, 0);
  opacity: 1;
}