@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Train+One&display=swap");
/****** Elad Shechter's RESET *******/
/*** box sizing border-box for all elements ***/
*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button {
  background-color: transparent;
  color: inherit;
  border-width: 0;
  padding: 0;
  cursor: pointer;
}

figure {
  margin: 0;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
}

ul, ol, dl, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

p {
  margin: 0;
}

cite {
  font-style: normal;
}

fieldset {
  border-width: 0;
  padding: 0;
  margin: 0;
}

/* ------------------------------------
// base
------------------------------------ */
html {
  font-size: 62.5%;
}

body {
  background: #fff;
  color: #3E3E3E;
  font-family: "IBM Plex Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  overflow-wrap: anywhere;
}

a {
  text-decoration: none;
  color: #3E3E3E;
}

a:hover img {
  transition: 0.3s;
  opacity: 0.8;
}
a.no_hover:hover img {
  opacity: 1;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media screen and (min-width: 1440px) {
  a[href^="tel:"] {
    cursor: default;
    pointer-events: none;
  }
}
input:focus::placeholder {
  color: transparent;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
    min-width: 0;
  }
}
/* // screen
----------------------------------- */
.sp {
  display: none;
}

.md {
  display: none;
}

.pc {
  display: block;
}

.pconly {
  display: block;
}

@media screen and (max-width: 1024px) {
  .sp {
    display: none;
  }
  .md {
    display: block;
  }
  .pc {
    display: block;
  }
  .pconly {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
  .md {
    display: block;
  }
  .pc {
    display: none;
  }
  .pconly {
    display: none;
  }
}
.fadein {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s, transform 0.7s;
}

.fadein.visible {
  opacity: 1;
  transform: translateY(0);
}

/* animation
------------------------------------ */
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(4px);
  }
  100% {
    transform: translateY(0);
  }
}
/* comp
------------------------------------ */
.btn_reserve {
  transition: 0.3s;
  background: #FEDA64;
  border-radius: 50vh;
  padding: 1rem clamp(2rem, 4.2vw, 6rem);
  color: #3E3E3E;
  font-weight: 600;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  align-items: center;
  position: relative;
  font-size: clamp(1.2rem, 1.3vw, 1.8rem);
}
.btn_reserve:hover {
  background: #E86A65;
}
.btn_reserve::before {
  content: "";
  width: clamp(1.2rem, 1.3vw, 1.8rem);
  aspect-ratio: 18/20;
  background: url(/lp_PedOrtho/lib/img/icon_reserve.webp) no-repeat center/contain;
}
.btn_reserve::after {
  content: "";
  display: block;
  width: 8px;
  aspect-ratio: 1;
  border-right: 2px solid #5F6368;
  border-bottom: 2px solid #5F6368;
  transform: rotate(-45deg);
  position: absolute;
  right: clamp(1rem, 1.4vw, 2rem);
  top: calc(50% - 4px);
}
@media screen and (max-width: 767px) {
  .btn_reserve {
    padding: 0.5rem 2rem;
  }
}

/* #container
------------------------------------ */
#container {
  display: grid;
  grid-template-columns: 1fr;
}
#container #header {
  position: sticky;
  top: 0;
  background: #FFF;
  padding: 1rem 6rem 1rem clamp(1rem, 1.4vw, 2rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}
#container #header .logo {
  width: clamp(180px, 25vw, 36rem);
}
@media screen and (max-width: 767px) {
  #container #header {
    padding: 1rem 5rem 1rem clamp(1rem, 1.4vw, 2rem);
  }
  #container #header .logo {
    width: clamp(100px, 32vw, 12rem);
  }
  #container #header .btn_reserve {
    padding: 0.5rem 1rem;
  }
  #container #header .btn_reserve::after {
    display: none;
  }
}

.hamburger-menu {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  z-index: 1001;
}
.hamburger-menu > span {
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}
.hamburger-menu.active > span {
  background-color: #FFF;
}
.hamburger-menu.active > span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.hamburger-menu.active > span:nth-child(2) {
  opacity: 0;
}
.hamburger-menu.active > span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
@media screen and (max-width: 767px) {
  .hamburger-menu {
    right: 1rem;
    top: 1.5rem;
  }
}

/* スライドメニュー */
.slide-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #53A8D2 0%, #4ABCBB 100%);
  transition: right 0.3s ease-in-out;
  z-index: 1000;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  overflow-x: hidden;
}
.slide-menu.active {
  right: 0;
}
.slide-menu .menu-list {
  list-style: none;
  padding: 40px 0 0 0;
  margin: 0;
}
.slide-menu .menu-list a {
  display: block;
  padding: 1rem 2rem;
  color: white;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
}
.slide-menu .menu-list a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 767px) {
  .slide-menu {
    right: -80vw;
    width: 80vw;
  }
}

/* #pagetop
------------------------------------ */
#pagetop {
  display: none;
  z-index: 999;
  transition: 0.3s;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
}
#pagetop.show {
  display: block;
}
#pagetop a {
  transition: 0.3s;
  background: #FEDA64;
  border-radius: 50vh;
  padding: 1rem 2.8vw;
  color: #3E3E3E;
  font-weight: 500;
  font-size: clamp(1rem, 1.1vw, 1.6rem);
  align-items: center;
  position: relative;
  margin-block: calc((1cap - 1lh) / 2);
  font-family: "Train One", system-ui;
  letter-spacing: 0.09em;
  text-indent: 0.09em;
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: baseline;
}
#pagetop a:hover {
  background: #E86A65;
}
#pagetop a::after {
  content: "";
  display: block;
  width: 8px;
  aspect-ratio: 1;
  border-right: 2px solid #5F6368;
  border-top: 2px solid #5F6368;
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  #pagetop {
    bottom: 5.5rem;
    right: 0.5rem;
  }
  #pagetop a {
    padding: 0.5rem 1.5rem;
  }
  #pagetop a::after {
    width: 6px;
  }
  #pagetop a:hover {
    background: #FEDA64;
  }
}

/* footer
------------------------------------ */
footer {
  background: #3E3E3E;
  padding: 5rem 0;
  color: #FFF;
}
footer a {
  color: #FFF;
}
footer #footer {
  max-width: calc(1000px + 4rem);
  padding: 0 2rem;
  margin: 0 auto 3.5vw;
  border-bottom: 1px dotted #FFF;
  padding-bottom: 6.9vw;
  display: grid;
  grid-template-columns: minmax(25%, 210px) 1fr max-content;
  align-items: start;
  gap: clamp(2rem, 3.5vw, 5rem);
}
footer #footer .logo {
  text-align: center;
}
footer #footer .logo p {
  font-size: clamp(1.1rem, 0.9vw, 1.3rem);
  margin-top: 1.5rem;
  color: #FFF;
  letter-spacing: 0.09em;
  text-indent: 0.09em;
}
footer .time {
  margin-top: 2rem;
}
footer .time table {
  border-collapse: collapse;
  border-top: 1px solid #FFF;
  border-left: 1px solid #FFF;
  font-size: 1.4rem;
}
footer .time table th, footer .time table td {
  font-weight: normal;
  padding: 0.25rem 0.5rem;
  text-align: left;
  border-right: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
}
footer .time .note {
  margin-top: 1rem;
  font-size: 1.3rem;
}
footer .copy {
  font-size: clamp(1rem, 1vw, 1.4rem);
  text-align: center;
  letter-spacing: 0.09em;
  text-indent: 0.09em;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 5rem 0 10rem;
  }
  footer #footer {
    display: grid;
    grid-template-columns: 1fr;
  }
  footer #footer .logo {
    max-width: 250px;
    margin: 0 auto;
  }
}

/* footerFixed
------------------------------------ */
#footerFixed {
  display: none;
}
@media screen and (max-width: 767px) {
  #footerFixed {
    display: block;
    position: fixed;
    bottom: 0;
    background: #3E3E3E;
    background: linear-gradient(135deg, #53A8D2 0%, #4ABCBB 100%);
    width: 100%;
    z-index: 1002;
  }
  #footerFixed ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: space-between;
    align-items: center;
  }
  #footerFixed ul li {
    border-right: 1px dotted #FFF;
  }
  #footerFixed ul li a {
    padding: 0.5rem 0.5rem 0.3rem;
    display: grid;
    grid-template-columns: 1fr;
    color: #FFF;
    font-size: 1rem;
    text-align: center;
    place-content: center;
    place-items: center;
    gap: 5px;
  }
  #footerFixed ul li a::before {
    content: "";
    display: block;
    width: 2rem;
    aspect-ratio: 1;
    background: #FFF;
  }
  #footerFixed ul li.consult a::before {
    mask: url(/lp_PedOrtho/lib/img/icon_consult.svg) no-repeat center bottom/contain;
  }
  #footerFixed ul li.call a {
    font-size: 0.9rem;
  }
  #footerFixed ul li.call a::before {
    mask: url(/lp_PedOrtho/lib/img/icon_call.svg) no-repeat center bottom/contain;
  }
  #footerFixed ul li.access a::before {
    mask: url(/lp_PedOrtho/lib/img/icon_access.svg) no-repeat center bottom/contain;
  }
  #footerFixed ul li.time {
    border-right: none;
  }
  #footerFixed ul li.time a::before {
    mask: url(/lp_PedOrtho/lib/img/icon_time.svg) no-repeat center bottom/contain;
  }
}

/* hx
------------------------------------ */
.typeGrade01 {
  margin-bottom: 9rem;
}
@media screen and (max-width: 767px) {
  .typeGrade01 {
    margin-bottom: 4.5rem;
  }
}
.typeGrade01 h2 {
  font-size: clamp(2rem, 2.4vw, 3.4rem);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 1.4vw, 2rem);
  margin-bottom: clamp(1rem, 1.4vw, 2rem);
  font-weight: 500;
}
.typeGrade01 h2:before {
  content: "";
  display: block;
  width: clamp(3rem, 4.2vw, 6rem);
  aspect-ratio: 57/77;
  background: url(/lp_PedOrtho/lib/img/icon_sectionTitle.webp) no-repeat center/contain;
}
.typeGrade01:after {
  content: "";
  display: block;
  margin: 0 auto;
  background-image: linear-gradient(to right, #53A8D2 0%, #53A8D2 14.58%, transparent 14.58%, transparent 16.67%, #E89FBB 16.67%, #E89FBB 31.25%, transparent 31.25%, transparent 33.33%, #BBA1CB 33.33%, #BBA1CB 47.92%, transparent 47.92%, transparent 50%, #D1AEAA 50%, #D1AEAA 64.58%, transparent 64.58%, transparent 66.67%, #F19996 66.67%, #F19996 81.25%, transparent 81.25%, transparent 83.33%, #F7DD89 83.33%, #F7DD89 97.92%, transparent 97.92%, transparent 100%);
  background-size: 100% clamp(3px, 0.4vw, 0.6rem);
  background-repeat: no-repeat;
  background-position: left bottom;
  height: clamp(3px, 0.4vw, 0.6rem);
  width: clamp(150px, 20vw, 28.8rem);
}

.typeGrade03 {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .typeGrade03 {
    margin-bottom: 3rem;
  }
}
.typeGrade03 h2 {
  font-size: clamp(2rem, 2.2vw, 3.2rem);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 1.4vw, 2rem);
  margin-bottom: clamp(1rem, 1.4vw, 2rem);
  font-weight: 500;
  line-height: 1.4;
}
.typeGrade03 h2 strong {
  font-size: clamp(2.4rem, 2.9vw, 4.2rem);
  font-weight: 500;
}
.typeGrade03 h2:before {
  content: "";
  display: block;
  width: clamp(3rem, 4.2vw, 6rem);
  aspect-ratio: 57/77;
  background: url(/lp_PedOrtho/lib/img/icon_sectionTitle.webp) no-repeat center/contain;
}
.typeGrade03:after {
  content: "";
  display: block;
  margin: 0 auto;
  background-image: linear-gradient(to right, #53A8D2 0%, #53A8D2 14.58%, transparent 14.58%, transparent 16.67%, #E89FBB 16.67%, #E89FBB 31.25%, transparent 31.25%, transparent 33.33%, #BBA1CB 33.33%, #BBA1CB 47.92%, transparent 47.92%, transparent 50%, #D1AEAA 50%, #D1AEAA 64.58%, transparent 64.58%, transparent 66.67%, #F19996 66.67%, #F19996 81.25%, transparent 81.25%, transparent 83.33%, #F7DD89 83.33%, #F7DD89 97.92%, transparent 97.92%, transparent 100%);
  background-size: 100% clamp(3px, 0.4vw, 0.6rem);
  background-repeat: no-repeat;
  background-position: left bottom;
  height: clamp(3px, 0.4vw, 0.6rem);
  width: clamp(150px, 20vw, 28.8rem);
}

.typeGrade02 {
  margin-bottom: 9rem;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .typeGrade02 {
    margin-bottom: 4.5rem;
  }
}
.typeGrade02 .logo {
  width: clamp(12rem, 14.6vw, 21rem);
  margin: 0 auto 2rem;
}
.typeGrade02 p {
  font-size: clamp(1.8rem, 2.2vw, 3.2rem);
  font-weight: 500;
}
.typeGrade02 h2 {
  font-size: clamp(2.4rem, 2.9vw, 4.2rem);
  margin-bottom: clamp(1rem, 1.4vw, 2rem);
  font-weight: 500;
}
.typeGrade02:after {
  content: "";
  display: block;
  margin: 0 auto;
  background-image: linear-gradient(to right, #53A8D2 0%, #53A8D2 14.58%, transparent 14.58%, transparent 16.67%, #E89FBB 16.67%, #E89FBB 31.25%, transparent 31.25%, transparent 33.33%, #BBA1CB 33.33%, #BBA1CB 47.92%, transparent 47.92%, transparent 50%, #D1AEAA 50%, #D1AEAA 64.58%, transparent 64.58%, transparent 66.67%, #F19996 66.67%, #F19996 81.25%, transparent 81.25%, transparent 83.33%, #F7DD89 83.33%, #F7DD89 97.92%, transparent 97.92%, transparent 100%);
  background-size: 100% clamp(3px, 0.4vw, 0.6rem);
  background-repeat: no-repeat;
  background-position: left bottom;
  height: clamp(3px, 0.4vw, 0.6rem);
  width: clamp(150px, 20vw, 28.8rem);
}