@charset "utf-8";
/* :rootのCSS変数の宣言 */
:root {
    --brown: #402C2A;
    --y_brown: #B9A16F;
    --beige: #D3C3A6;
    --l_beige: #F7F5F0;
    --black: #686866;
    --gray: #D9D9D9;
    --white: #ffffff;
    --ff_jp: "Zen Kaku Gothic New", sans-serif;
    --ff_en:  "Roboto", sans-serif;
    --ff_jp_sec: "Noto Serif JP", serif;

}
/* common */
p {
    font-family: var(--ff_jp);
    font-size: 1.6rem;
    color: #686866;
    line-height: 3.2rem;
    letter-spacing: 0.05em;
}
a {
    text-decoration: none;
}
html {
    letter-spacing: 0.05em;
    background-color: #fff;
    font-size: 62.5%;
}
body {
    font-family: var(--ff_jp);
    font-size: 1.6rem;
}
main {
    padding-top: 132px;
    position: relative;
}
.wrap {
    width: 1100px;
    margin: 0 auto;
}
.flex {
    display: flex;
    justify-content: space-between;
}
.pdc-sec-m {
    margin: 0 auto 110px auto;
}
.pdc-sec-deco {
    font-family: var(--ff_en);
    font-size: 12rem;
    font-weight: 600;
    line-height: 0.7;
    color: #EDE7DB;
}
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}
.pdc-sec-ttl {
    margin-bottom: 45px;
}
.pdc-sec-ttl p {
    font-family: var(--ff_en);
    color: var(--beige);
    margin-bottom: 10px;
}
.pdc-sec-ttl h2 {
    color: var(--brown);
    font-size: 5.4rem;
    font-weight: 500;
}
.pdc-home-btn {
    position: relative;
    display: block;
    width: 240px;
    text-align: center;
    color: var(--y_brown);
    padding: 13px 0;
    background-color: var(--white);
    border-radius: 25px;
    border: 1px solid var(--y_brown);
    transition: .3s;
    z-index: 1;
    overflow: hidden;
}
.pdc-home-btn::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 27px;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: 2px solid var(--y_brown);
  border-right: 2px solid var(--y_brown);
  transform: rotate(45deg);
  box-sizing: border-box;
}
.pdc-home-btn:hover::after {
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
  z-index: 1;
}
.pdc-home-btn::before{
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: var(--y_brown);
  transition-duration: .2s;
}
.pdc-home-btn:hover {
    color: var(--white);
    background-color: var(--y_brown);
}
.pdc-home-btn:hover::before {
    width: 100%;
}
.pdc-lead {
    font-size: 3.2rem;
    line-height: 4.8rem;
    margin: 45px auto;
    color: var(--black);
}
.fadeIn {
    opacity: 0;
}
.fadeIn-active {
    animation: fadeInAnime 2s ease-in forwards;
    opacity:0;
}
@keyframes fadeInAnime{
  from {
    filter: blur(6px);
  }
  to {
    opacity: 1;
  }
}
/* .slideIn {
    opacity: 0;
}
.slideIn-active {
    animation: slideInAnime 1s ease-in-out;
} */
@keyframes slideInAnime {
    0% {
        transform: translateX(-50px);
    }
   100%{
           transform: translateX(0);
    }
}
.scroll-in {
animation:scroll-in 1s ease-out forwards;
}
@keyframes scroll-in {
to {
opacity:1;
transform:translateY(0%);
}
}
.scroll-to-top{
    padding: 28px 15px 15px 15px;
    text-align: center;
    background: var(--white);
    color: var(--y_brown);
    border: 1px solid var(--y_brown);
    opacity: 0.6;
    font-family: var(--ff_en);
    font-size: 1.6rem;
    font-weight: 500;
    border-radius: 50%;
    position: fixed;
    right: 45px;
    bottom: 45px;
    cursor: pointer;
    z-index: 500;
    display: none;
    transition: background-color 1s ease-in-out 0s;
 }
 .scroll-to-top:hover {
    background: var(--y_brown);
    color: var(--white);
 }
.scroll-to-top::before {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px var(--y_brown);
  border-right: solid 2px var(--y_brown);
  transform: rotate(-45deg);
  position: absolute;
  top: 20%;
  left: 43%;
}
.scroll-to-top:hover::before {
  border-top: solid 2px var(--white);
  border-right: solid 2px var(--white);
}
.sp {
    display: none;
}
.pc {
    display: block;
}
.tab {
    display: none;
}
@media screen and (max-width: 1200px) {
    .tab {
        display: block;
    }
    .wrap {
        width: 800px;
        margin: 0 auto;
    }
    .pdc-sec-deco {
        font-size: 9rem;
    }
    .pdc-lead {
        font-size: 2.8rem;
        margin: 30px 0;
    }
    .pdc-page-header {
        margin-bottom: 45px;
    }
    .pdc-sec-m {
        margin: 0 auto 110px auto;
    }
}
@media screen and (max-width: 1200px) {
	.wrap {
		width: 780px;
	}
}
@media screen and (max-width: 768px) {
    .sp {
        display: block;
    }
    .pc {
        display: none;
    }
    main {
        padding-top: 70px;
    }
    .pdc-sec-ttl {
        text-align: left;
        width: 335px;
        margin: 0 auto 25px auto;
    }
    .pdc-sec-ttl h2 {
        font-size: 3.2rem;
    }
    .pdc-sec-deco  {
        font-size: 6.4rem;
    }
    .pdc-home-btn {
        margin: 0 auto;
    }
    .pdc-sec-ttl p  {
        margin-bottom: 5px;
    }
    .pdc-sec-m {
    margin: 0 auto 50px auto;
    }
    .wrap {
        width: 335px;
        margin: 0 auto;
    }
    .scroll-to-top {
        right: 20px;
        bottom: 70px;
    }
}
/* ^^^common^^^*/

/* header */
.header {
    height: 132px;
    width: 100%;
    transition: transform 5s 5s ease-in;
    position: fixed;
    top: 0;
    z-index: 1000;
}
header.hidden {
    transform: translateY(-132px);
}
.pdc-logo {
    width: 125px;
    height: auto;
    padding: 40px 20px;
    background-color: #fff;
    border-radius: 0 0 10px 0;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.20);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
}
.pdc-header-tel-text{
    color: var(--brown);
    margin-bottom: 5px;
    text-align: center;
}
.pdc-header-tel-text::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url(../img/tel.png);
    color: var(--brown);
    background-size: contain;
    background-repeat: no-repeat;
    padding-right: 10px;
}
.pdc-header-tel a {
    text-decoration: none;
    color: var(--brown);
    font-family:var(--ff_en);
    font-size: 3.2rem;
    font-weight: 500;
    display: block;
    text-align: center;
}
.pdc-header-tel {
    margin-bottom: 15px;
    text-align: right;
}
nav li a {
    text-decoration: none;
    color: var(--brown);
    font-family: var(--ff_jp);
    font-size: 1.4rem;
    font-weight: 500;
    padding: 0px 20px;
    border-right: 1px solid;
}
nav li:last-child a{
    border-right: none;
}
nav ul {
    display: flex;
    justify-content: space-between;
}
.pdc-header-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-right: 132px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.pdc-header-inner {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 112px;
    background-color: rgb(255 255 255 / 0.8);
    backdrop-filter: blur(8px);
    justify-content: flex-end;
    padding-bottom: 20px;
}
.reserve_btn {
    text-decoration: none;
    color: var(--white);
    font-size: 2rem;
    background-color: var(--y_brown);
    writing-mode: vertical-rl;
    text-orientation: upright;
    width: 55px;
    height: 200px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px 0 0 10px;
}
.reserve_btn span {
    font-family: var(--ff_en);
}
.reserve_btn::before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    background-image: url(../img/calendar.png);
    background-size: contain;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    margin-bottom: 5px;
}
.pdc-contact-link {
    position: fixed;
    right: 0;
     z-index: 1000;
}
@media screen and (max-width: 1200px){
   .pdc-header-menu {
    margin-right: 80px;
   }
   .reserve_btn {
    font-size: 1.8rem;
    width: 45px;
    height: 180px;
   }
   nav li a {
    padding: 0 10px;
   }
 
}
@media screen and (max-width: 768px){
    .pdc-sp-header-inner img {
        width: auto;
        height: 33px;
        padding: 20px 15px 16px 20px;
    }
    .pdc-sp-menu {
        width: 70px;
        height: 70px;
        position: relative;
    }
    .pdc-sp-menu-icon span{
        width: 22px;
        height: 1px;
        background-color: var(--brown);
        position: absolute;
    }
    .pdc-sp-menu-icon span:first-of-type {
        top: 31px;
        left: 24px;
    }
    .pdc-sp-menu-icon span:nth-of-type(2) {
        top: 36px;
        left: 24px;
    }
    .pdc-sp-menu-icon span:last-of-type {
        width: 18px;
        top: 41px;
        left: 24px;
    }
    .pdc-sp-menu-icon.active span:first-of-type {
        top: 50%;
        transform: rotate(45deg);
    }
    .pdc-sp-menu-icon.active span:nth-of-type(2) {
        opacity: 0;
    }
    .pdc-sp-menu-icon.active span:last-of-type {
        top: 50%;
        width: 22px;
        transform: rotate(-45deg);
    }
    .pdc-sp-header {
        width: 100vw;
        position: fixed;
        top: 0;
        z-index: 9999;
        background-color: var(--white);
    }
    .pdc-sp-nav-link a{
        color: var(--black);
        font-size: 1.4rem;
        font-family: var(--ff_jp);
        display: block;
        text-align: center;
    }
    .pdc-sp-nav-link {
        background-color: var(--white);
        padding: 20px 0;
        margin: 0 20px;
        border-bottom: 1px solid var(--gray);
        width: 89vw;
    }
    .pdc-sp-nav-list {
        margin: 0 auto 20px auto;
        padding: 20px 0;
    }
    .pdc-sp-nav {
        background-color: var(--l_beige);
        position: fixed;
        top: 70px;
        right: 0;
        margin: 0;
        z-index: 9998;
        width: 0vw;
         display: flex;
        flex-direction: column;
        align-items: center;
        transition: all 0.3s ease-in-out;
        overflow: hidden
    }
    .pdc-sp-nav.active {
       width: 100vw;
        }
    .pdc-sp-nav-contact-item p {
        font-size:  1.2rem;
        line-height: 1.8rem;
        color: var(--y_brown);
        display: flex;
        align-items: center;
        margin-bottom: 2px;
    }
     .pdc-sp-nav-contact-item p::before {
        content: '';
        display: inline-block;
        width: 12px;
        height: 12px;
        background-image: url(../img/tel.svg);
        background-size: contain;
        background-repeat: no-repeat;
        padding-right: 3px;
     }
     .pdc-sp-nav-tel{
        font-family: var(--ff_en);
        font-size: 2.4rem;
        font-weight: 500;
        color: var(--y_brown);
        text-align: center;
     }
     .pdc-sp-nav-contact-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 237px;
        height: 64px;
        background-color: var(--white);
        border-radius: 32px;
        border: 1px solid var(--y_brown);
        transition: all 0.8s ease-in-out;
     }
     .pdc-sp-nav-reserve {
        color: var(--white);
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: center;
     }
     .pdc-sp-nav-reserve::before {
        content: "";
        display: inline-block;
        width: 18px;
        height: 18px;
        background-image: url(../img/calendar.png);
        background-size: contain;
        background-repeat: no-repeat;
        margin-right: 5px;
     }
     .pdc-sp-nav-contact-list .pdc-sp-nav-contact-item:nth-child(2) {
        background-color: var(--y_brown);
        margin-top: 20px;
        margin: 20px 0 30px 0;
     } 
      .pdc-sp-nav-contact-list {
        width: 237px;
        margin: 0 auto;
      }
    .pdc-contact-link {
        bottom: 0;
        left: calc(100vw - 90px);
    }
    .reserve_btn {
        width: 90px;
        height: auto;
        writing-mode: horizontal-tb;
        border-radius: 0;
        font-size: 1.2rem;
        display: block;
        padding: 11px 0 12px 0;
        border-top: 1px solid var(--y_brown);
        position: relative;
    }
    .reserve_btn::before {
        margin: auto auto 2px auto;
    }
    .reserve_btn::after {
        content: "";
        display: block;
        position: absolute;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-top: 7px solid var(--white);
        transform: rotate(-45deg);
        right: 5px;
        bottom: 5px;
    }
    .reserve_btn span {
        font-weight: 500;
    }
    .pdc-header-tel-text {
        color: var(--y_brown);
        font-size: 1.2rem;
        line-height: 1.8rem;
        display: flex;
        align-items: center;
       }
    .pdc-header-tel-text::before {
        background-image: url(../img/tel.svg);
        padding-right: 5px;
        width: 12px;
        height: 12px;
    }
       .pdc-header-tel-text::after {
        content: "";
        display: block;
        position: absolute;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-top: 7px solid var(--y_brown);
        transform: rotate(-45deg);
        right: 5px;
        bottom: 5px;
    }
    .pdc-header-tel a {
        color: var(--y_brown);
        font-size: 2.4rem;
    }
    .pdc-header-tel {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
        margin-bottom: 0;
        padding: 4.5px 0;
        width: calc(100vw - 90px);
        background: var(--white);
        z-index: 1000;
        border-top: 1px solid var(--y_brown);
    }
    header.hidden {
        transform: none;
    }
    .pdc-contact-area {
        width: 100vw;
    }
}

/* ^^^header^^^ */

/* mv */
.pdc-home-mv {
    width: 1100px;
    height: auto;
    margin: 0 auto 90px auto;
    position: relative;
}
.pdc-home-mv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pdc-mv-main {
    width: 1100px;
    height: 611px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.pdc-home-mv-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    animation: img-change 24s infinite;
    opacity: 0;
}
.pdc-home-mv-item:nth-child(1){
    animation-delay: 0s;
}
.pdc-home-mv-item:nth-child(2){
    animation-delay: 6s;
}
.pdc-home-mv-item:nth-child(3){
    animation-delay: 12s;
}
.pdc-home-mv-item:nth-child(4){
    animation-delay: 18s;
}

@keyframes img-change {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    20% {
        opacity: 1;
    }
    30% {
        opacity: 1;
    }
    40% {
        opacity: 0;
        transform: scale(1.2) ;
        z-index:9;
    }
    100% {
        opacity: 0;
    }

}
.pdc-main-copy h1 {
    font-size: 3.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    line-height: 54px;
    margin-bottom: 20px;
}
.pdc-main-copy span {
    font-size: 3.2rem;
    letter-spacing: -18px;
}
.pdc-main-copy p {
    line-height: 24px;
}
.pdc-main-copy {
    font-family: var(--ff_jp_sec);
    color: var(--black);
    padding: 25px;
    background-color: rgba(255, 255, 255, .8);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.10);
    animation: slideIn_left;
    animation-duration: 3s;
    animation-timing-function: cubic-bezier(0.25, 1, 0.5, 1);
    animation-fill-mode: forwards;
}
@keyframes slideIn_left {
    0% {
        transform: translateX(-180px);
        opacity: 0;
      }
      100% {
        transform: translateX(0);
      }
      40%,100% {
        opacity: 0.9;
      }
}
.pdc-mv-item {
    color: var(--white);
    font-size: 1.4rem;
    background: var(--y_brown);
    width: 105px;
    height: 105px;
    border-radius: 55px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fade_up 4s;
}
.pdc-mv-item:nth-child(1){
    animation: fade_up 0.5s ease 0.5s 1 forwards;
}
.pdc-mv-item:nth-child(2){
    animation: fade_up 0.5s ease 1s 1 forwards;
}
.pdc-mv-item:nth-child(3){
    animation: fade_up 0.5s ease 1.5s 1 forwards;
}
  @keyframes fade_up {
    30% {
        opacity: 0.3;
    }
    40% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.5;
    }
    60% {
        opacity: 0.6;
    }
    70% {
        opacity: 0.7;
    }
    80% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.9;
    }
      100% {
        opacity: 1;
    }
  }
.pdc-mv-container {
    width: 335px;
}
.pdc-mv-contents {
    width: 1100px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    position: absolute;
    top: 510px;
    left: -25px;
    z-index: 10;
}
@media screen and (max-width: 1200px) {
    .pdc-mv-main {
        width: 66.667vw;
        height: 50vw;
        margin: 0 auto;
    }
    .pdc-mv-contents {
        width: 66.667vw;
        top: 33.333vw;
        left: 13vw;
    }
    .pdc-main-copy {
        padding: 1.667vw;
    }
    .pdc-main-copy h1 {
        font-size: 3.2rem;
    }
    .pdc-home-mv {
        width: 100vw;
    }
}
@media screen and (max-width: 900px) {
    .pdc-mv-contents {
        width: 650px;
    }
    .pdc-main-copy h1 {
        font-size: 2.4rem;
    }
}

@media screen and (max-width: 768px)  {
    .pdc-home-mv {
        width: 100%;
    }
    .pdc-mv-main {
        width: 335px;
        height: 516px;
        margin: 0 auto;
    }
    .pdc-home-mv-item img {
        width: 100%;
    }
    .pdc-main-copy h1 {
        font-size: 2.4rem;
        line-height: 3.2rem;
        margin-bottom: 10px;
    }
    .pdc-main-copy {
        padding: 20px;
        width: 264px;
        margin: 0 auto;

    }
    .pdc-mv-contents {
        width: 100%;
        display: block;
        left: 0;
        top: 219px;
        }
    .pdc-mv-container {
        width: 325px;
        margin: 10px auto 0 auto;
    }
    .pdc-home-mv{
        margin-bottom: 50px;
    }
}
/* ^^^mv^^^ */

/* info-schedule */
.pdc-home-info-ttl {
    font-size: 1.6rem;
    font-family: var(--ff_en);
    font-weight: 600;
    color: var(--brown);
}
.pdc-home-link-news {
    font-size: 1.6rem;
    color: var(--y_brown);
    border-bottom: 1px solid #B9A16F;
    margin-left: 20px;
}
.pdc-home-info-head {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 20px;
}
.pdc-home-info-posts-item {
    padding :12px 36px 12px 0;
    border-bottom: 1px solid var(--gray);
    position: relative;
}
.pdc-home-info-posts-item a {
    font-size: 1.6rem;
    color: var(--black);
}
.pdc-home-info-posts-item::after {
    content: "";
    width: 6px;
    height: 6px;
    border-top: 2px solid #402C2A;
    border-right: 2px solid #402C2A;
    transform: rotate(45deg);
    position: absolute;
    top: 42%;
    right: 5px;
}
.pdc-home-info-posts-day {
    display: inline;
    margin-right: 10px;
    font-family: var(--ff_en);
    font-weight: 600;
}
.pdc-home-info-box {
    width: 947px;
    height: 255px;
    margin: 0 auto;
}
.pdc-home-info {
    padding: 20px;
    background-color: rgb(255 255 255 / 0.7);
    border-radius: 10px;
    width: 410px;
}
.pdc-home-info-sec {
    background-color: var(--l_beige);
    padding: 45px 0;
    width: 1100px;
    border-radius: 10px;
}
.pdc-schedule-table tr {
    border-bottom: 1px solid var(--gray);
}
.pdc-schedule-table th {
    font-family: var(--ff_jp);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--black);
    align-items: center;
    padding: 12px 9px;
    text-align: center;
}
.pdc-schedule-table th:first-child {
   font-size: 1.6rem;
   width: 114px;
   text-align: center;
}
.pdc-home-schedule-circle {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--brown);
}
.pdc-home-schedule-notice {
    font-size: 1.4rem;
}
.pdc-home-schedule-map {
    color: var(--brown);
    font-size: 1.4rem;
    padding: 0px 18px;
    border: 1px solid var(--brown);
    border-radius: 12px;
    align-items: center;
    margin-left: 20px;
}
.pdc-home-schedule-address {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 10px;
}
@media screen and (max-width: 1200px) {
    .pdc-home-info-sec {
        width: 800px;
        margin: 0 auto 110px auto;
    }
    .pdc-home-info-box {
        display: block;
        width: 710px;
        height: auto;
    }
    .pdc-home-info:first-of-type {
        margin: 0 auto 25px auto;
    }
    .pdc-schedule-table {
        margin: 0 auto;
    }
    .pdc-home-schedule-address {
        width: 401px;
        margin: 0 auto;
    }
    .pdc-home-info-head {
        justify-content: center;
    }
	.pdc-home-info {
		margin: 0 auto;
	}
}
@media screen and (max-width: 768px) {
    .pdc-home-info-sec {
        width: 100%;
        padding: 25px 0;
        margin-bottom: 50px;
    }
    .pdc-home-info-box {
        display: block;
        width: 100%;
        height: auto;
    }
    .pdc-home-info-head {
        justify-content: center;
    }
    .pdc-home-info-posts-day {
        padding-bottom: 10px;
    }
    .pdc-home-info-posts-item::after {
        display: none;
    }
    .pdc-schedule-table th {
    padding: 12px 7px;
    }
    .pdc-schedule-table th:first-child {
        font-size: 1.4rem;
        padding: 12px 2px;
    }
    .pdc-schedule-table {
        width: 335px;
        margin: 0 auto;
    }
	    .pdc-home-info:first-of-type {
        margin: 0 auto 25px auto;
    }
    .pdc-home-schedule-notice {
        font-size: 1.2rem;
    }
    .pdc-home-info {
        margin-bottom: 25px;
        width: 335px;
    }
    .pdc-sp-home-info {
        margin: 0 auto;
    }
    .home-info-posts {
        width: 335px;
        margin: 0 auto;
    }
    .pdc-home-schedule-map {
        font-size: 1.1rem;
        padding: 1px 8px;
        width: 51px;
        text-align: center;
    }
    .pdc-home-schedule-address {
        width: 335px;
    }
}
/* info-scheduleここまで */

/* menu */
.pdc-home-menu {
    background-color: var(--l_beige);
    width: 100%;
    border-radius: 40px;
}
.pdc-home-menu-deco-ttl {
    color: var(--white);
    width: 1100px;
    text-align: right;
    line-height: 0.7;
    opacity: 1;
    margin: 0 auto;
}
.pdc-home-menu-contents {
    width: 240px;
    height: 240px;
    background-color: rgb(255 255 255 / 0.5);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 45px;
    transition: .3s;
    cursor: pointer;
}
.pdc-home-menu-contents:hover {
    background-color: var(--white);
    outline: 3px solid var(--y_brown);
}
.pdc-home-menu-contents:last-child {
    width: 240px;
    height: 100%;
    background-color: transparent;
    margin-top: 190px;
    outline: none;
}
.pdc-home-menu-contents img {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}
.pdc-home-menu-contents p {
    text-align: center;
    font-weight: 500;
}
.pdc-home-menu-container {
    display: flex;
    flex-wrap: wrap;
    width: 1100px;
    justify-content: space-between;
}
    .pdc-news-sec-m {
        margin-bottom: 110px;
    }

@media screen and (max-width: 1200px) {
    .pdc-home-menu-deco-ttl {
        width: 800px;
        margin: 0 auto;
        text-align: right;
    }
    .pdc-home-menu-contents {
        width: 185px;
        height: 185px;
        margin-bottom: 20px;
    }
    .pdc-home-menu-container {
        width: 800px;
    }
    .pdc-home-menu-tab-btn {
        width: 185px;
    }
    .pdc-home-menu-contents:last-child {
        width: 185px;
        margin-top: 133px;
    }
    .pdc-home-menu {
        padding-bottom: 25px;
    }
}
@media screen and (max-width: 800px)  {
	width: 780px;
}
@media screen and (max-width: 768px) {
    .pdc-home-menu-deco-ttl {
        width: 100%;
    }
    .pdc-home-menu-contents {
        width: 157px;
        height:  157px;
        margin-bottom: 20px;
    }
    .pdc-home-menu-contents img {
        width: 50px;
        height: 50px;
        display: block;
        margin: 0 auto;
    }
    .pdc-home-menu-container {
        width: 335px;
        margin: 0 auto;
    }
    .pdc-home-menu-inner {
        width: 100%;
    }
    .pdc-home-menu-contents:last-child {
        margin: 0 auto 25px auto;
    }
    .pdc-home-menu {
        border-radius: 20px;
    }
 
}

/* policy始まり */
.pdc-home-policy-inner {
    width: 1366px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 45px;
}
.pdc-home-policy-desc {
    width: 537px;
    margin-bottom: 45px;
}
.pdc-home-policy-img {
    width: 590px;
    height: auto;
    border-radius: 20px;
    margin: 45px auto 177px auto;
    position: relative;
    z-index: 1;
    opacity: 0;
}
.pdc-home-policy-area-text {
    background-color: rgb(255 255 255 / 0.5);
    padding: 45px 135px;
    margin: 90px auto 45px auto;
    border-radius: 20px;
    position: absolute;
    left: 548px;
}
.pdc-home_policy {
    background-image: url(../img/pdc-home-policy-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    /* margin-bottom: 110px; */
}
@media screen and (max-width: 1200px) {
    /* .pdc-home-policy-img {
        width: 320px;
        margin: 45px 0 495px 0;
    }
    .pdc-home-policy-desc {
        width: 400px;
    }
    .pdc-home-policy-area-text{
        padding: 45px 45px 45px 90px;
        left: 265px;
    }
    .pdc-home-policy-inner {
        width: 800px;
        margin: 0 auto;
    }
    .pdc-home_policy {
        background-size: auto 100% ;
    } */
    .pdc-home-policy-inner {
        width: 100%;
        flex-direction: column-reverse;
        position: static;
    }
    .pdc-home-policy-area-text {
        position: relative;
    }
    .pdc-home-policy-img {
        width:  500px;
        height: auto;
        position: absolute;
        right: 0;
        bottom: 45px;
        left: 0;
        margin: auto;
     }
    .pdc-lead {
        margin: 25px 0;
        line-height: 3.6rem;
    }
    .pdc-home-policy-desc {
        width: 710px;
    }
    .pdc-home-policy-area-text {
        padding: 45px 45px 90px 45px;
        left: auto;
        margin: 45px auto 0 auto;
    }
    .pdc-home-policy-desc  {
        margin-bottom: 25px;
    }
    .pdc-home_policy {
        height: 1216px;
        position: relative;
    }
    .pdc-home-policy-area-text a {
        margin: 0 auto;
    }
    .pdc-home-policy-area-text>.pdc-sec-deco {
        text-align: center;
    }
    .pdc-home-policy-area-text>.pdc-lead {
        text-align: center;
    }
}
@media screen and (max-width: 768px) {
    .pdc-home-policy-inner {
        width: 100%;
        flex-direction: column-reverse;
        position: static;
    }
    .pdc-home-policy-area-text {
        position: relative;
    }
    .pdc-home-policy-img {
        width:  335px;
        height: auto;
        position: absolute;
        right: 0;
        bottom: 45px;
        left: 0;
        margin: auto;
     }
    .pdc-lead {
        font-size: 2.4rem;
        margin: 25px 0;
        line-height: 3.6rem;
    }
    .pdc-home-policy-desc {
        width: 335px;
    }
    .pdc-home-policy-area-text {
        padding: 25px 20px 50px 20px;
        left: auto;
        margin: 25px auto 0 auto;
    }
    .pdc-home-policy-desc  {
        margin-bottom: 25px;
    }
    .pdc-home_policy {
        height: 1190px;
        position: relative;
    }
}
/* message始まり */
.pdc-home-message {
    position: relative;
    overflow: hidden;
}
.pdc-home-staff-name-main {
    font-size: 2.4rem;
    margin-bottom: 20px;
}
.pdc-home-staff-name-sub {
    margin-bottom: 2px;
}
.pdc-home-message-txt {
    width: 534px;
    margin-bottom: 45px;
}
.pdc-home-message-contents img {
    width: 477px;
    height: auto;
    border-radius: 20px;
}
.pdc-home-message-inner {
    z-index: 2;
    padding: 45px 0;
}
.pde-home-message-bg {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translate(-50%, -50%);
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255,255,255,1) ,rgba(255,255,255,0));
    z-index: -1; /* 動画の上に表示 */
 }
 @media screen and (max-width: 1200px){
    .pdc-home-message-area-txt {
        width: 335px;
    }
    .pdc-home-message-contents img {
        width: 378px;
    }
    .pdc-home-message-txt {
        width: 378px;
    }
    .pdc-home-message-inner {
        align-items: center;
    }
 }

 @media screen and (max-width: 746px) {
    .pdc-home-message-inner {
        display: block;
        padding: 25px 0;
    }
    .pdc-home-message-txt {
        width: 335px;
    }
    .pdc-home-message-contents img {
        width: 335px;
    }
    .pdc-home-message-txt {
        margin-bottom: 25px;
    }
    .pdc-home-message-contents {
        margin-top: 25px;
    }
    .pde-home-message-bg {
        height: 100%;
        width: auto;
    }
 }
 /* voice始まり */
 .pdc-home-voice-head {
    justify-content: flex-start;
 }
 .pdc-home-voice-head img{
    width: 91px;
    height: auto;
    margin-right: 20px;
 }
 .pdc-home-voice-ttl {
    display: flex;
    justify-content: center;
    align-items: center;
 }
 .pdc-home-voice-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: 20px;
    box-shadow:  0px 12px 30px 8px rgba(104, 104, 102, 0.1);
    opacity: 0;
 }
 .pdc-home-voice-card p {
    width: 296px;
    height: auto;
 }
 .pdc-home-voice-contents {
    margin-bottom: 45px;
 }
 .pdc-home-voice-btn {
    width: 242px;
    margin: 0 auto;
    padding-bottom: 45px;
 }
 .pdc-home-voice {
    background: linear-gradient(180deg, var(--white) 0%, var(--white) 60%, var(--l_beige) 40%, var(--l_beige) 100%); 
}
 @media screen and (max-width: 1200px){
    .pdc-home-voice-card p {
        width: 213px;
    }
    .pdc-home-voice-contents {
        width: 800px;
        margin: 0 auto 45px auto;
    }
    .pdc-home-voice-contents::-webkit-scrollbar {
        display: none;
    }
    .pdc-home-voice-head img {
        margin-right: 5px;
    }
    .pdc-home-voice-card {
        width: 213px;
    }
 }
 @media screen and (max-width: 746px) {
    .pdc-home-voice-deco-ttl {
        flex-direction: column-reverse;
    }
    .pdc-sec-deco-sp-voice {
        text-align: right;
    }
    .pdc-home-voice-ttl {
        line-height: 3.2rem;
    }
    .pdc-home-voice-card p {
        width: 200px;
    }
    .pdc-home-voice-contents {
        width: 100%;
        position: relative;
        min-height: 389px;
        height: auto;
        flex-wrap: nowrap;
        overflow-x: auto;
        margin-bottom: 25px;
         -webkit-overflow-scrolling: touch;
    }
    .pdc-home-voice-contents::-webkit-scrollbar {
        display: none;
    }
    .pdc-home-voice-head img {
        margin-right: 5px;
    }
    .pdc-home-voice-card {
        margin: 0 10px;
    }
    .pdc-home-voice-card:first-child {
        margin-left: 20px;
    }
    .pdc-home-voice-sp-wrap {
        width: 100%;
    }
 }
/* 院内写真 */
.pdc-home-introduction-scroll {
       width: 100%;
}
.pdc-introduction-item {
    width: 410px;
    height: auto;
    margin-right: 20px;
    border-radius: 10px;
}
@media screen and (max-width: 768px) {
    .pdc-introduction-item {
        width: 293px;
        margin-right: 10px;
    }
}
/* アクセス */
.pdc-home-access-ttl {
    display: inline-block;
}
.pdc-home-access-ttl-box {
    text-align: center;
}
.pdc-home-access-address {
    text-align: center;
    margin-bottom: 20px;
}
.pdc-home-access-map {
    width: 660px;
    margin: 0 auto 45px auto;
}
.pdc-home-access-map iframe {
	aspect-ratio: 4 / 3;
	width: 100%;
	height: auto;
}
.pdc-home-access-textarea {
    width: 660px;
    height: auto;
    margin: 0 auto 45px auto;
}
.pdc-home-access-container p {
    margin-bottom: 10px;
}
.pdc-home-access-container img {
    width: 527px;
    height: auto;
} 
@media screen and (max-width: 1200px) {
    .pdc-home-sp-map iframe {
	width: 377px;
	height: 243px;
    }
    .pdc-home-access-container img {
        width: 377px;
    }
    .pdc-home-access {
        margin-bottom: 110px;
    }
    }

@media screen and (max-width: 786px) {
    .pdc-home-access-address {
        text-align-last: left;
    }
    .pdc-home-access-item {
        display: block;
    }
    .pdc-home-access-map {
        width: 335px;
        margin-bottom: 25px;
    }
    .pdc-home-access-textarea {
        width: 335px;
        margin: 0 auto 25px auto;
    }
    .pdc-home-sp-map iframe{
	aspect-ratio: 4 / 3;
	width: 335px;
	height: auto;
    }
    .pdc-home-access-container img {
    width: 100%;
    }
    .pdc-home-access {
        margin-bottom: 110px;
    }
}
 /* footer */
.pdc-footer-menu li>a {
    border-right: none;
    padding: 0;
    color: var(--white);
    border-bottom: 2px solid var(--white);
}
.pdc-footer-menu {
    width: 506px;
    margin: 0 auto;
    padding-bottom: 45px;
}
footer {
    background-color: var(--brown);
    padding: 45px 0;
}
.pdc-footer-container p {
    color: var(--white);
}
.pdc-footer-logo {
    font-family: "Zen Old Mincho", serif;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.pdc-footer-inner {
    width: 740px;
    margin: 0 auto 45px auto;
    align-items: center;
}
.pdc-footer-cr {
    color: var(--white);
    text-align: center;
}
.pdc-footer-schedule-table th{
    color: var(--white);
}
.pdc-footer-schedule-circle {
    background-color: var(--white);
}
/* .pdc-footer-link {
    color: var(--white);
    border-bottom: 1px solid var(--white);
} */
 @media screen and (max-width: 786px) {
    .pdc-footer-menu {
        display: none;
    }
    .pdc-footer-inner {
        display: block;
        width: 335px;
        margin-bottom: 25px;
    }
    .pdc-footer-container p {
        text-decoration: none;
        text-align: center;
        color: var(--white);
    }
    footer {
        padding: 25px 0 85px 0;
    }
 }

 /* about_page */
 .pdc-page-header-inner img {
    width: 1100px;
 }
 .pdc-page-header-inner {
    position: relative;
 }
 .pdc-page-ttl {
    font-family: var(--ff_jp);
    font-size: 5.4rem;
    color: var(--white);
    position: absolute;
    top: 112px;
    left: 45px;
 }
 .pdc-about-intro-content {
    color: var(--black);
    line-height: 3.2rem;
 }
 .pdc-about-intro-desc {
    width: 470px;
 }
 .pdc-about-intro-img {
    width: 585px;
    height: auto;
 }
 .pdc-about-intro-inner {
    align-items: center;
}
 .pdc-about-feature {
    background-color: var(--l_beige);
   border-radius: 40px; 
   padding-bottom: 45px;
 }
 .pdc-feature-no {
    font-family: var(--ff_en);
    font-size: 5.4rem;
    font-weight: 400;
    line-height: 8.1rem;
    margin-bottom: 10px;
 }
.pdc-feature-text-area h2 {
    font-family: var(--ff_jp);
    font-size: 3.2rem;
    line-height: 4.8rem;
    color: var(--black);
    margin-bottom: 10px;
}
.pdc-feature-sub-ttl {
    font-weight: 600;
    margin-bottom: 10px;
}
.pdc-feature-text-area {
    width: 410px;
}
.pdc-feature-img {
    width: 555px;
}
.pdc-about-feature-contents {
    align-items: center;
    margin-bottom: 45px;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 45px;
    border-radius: 20px;
}
.pdc-about-feature-contents:nth-child(even) {
    flex-direction: row-reverse;
}
.pdc-about-feature-contents:last-child {
    margin-bottom: 0px;
}
.pdc-about-staff-img {
    width: 445px;
    height: auto;
}
.pdc-about-staff-txt-area {
    width: 521px;
    height: auto;
}
.pdc-about-job-ttl {
    font-size: 1.4rem;
    color: var(--white);
    min-width: 110px;
    height: 40px;
    padding: 0 20px;
    border-radius: 20px;
    background: var(--y_brown);
    display: inline-flex;
	justify-content: center;
	align-items: center;
    margin-bottom: 15px;
}
.pdc-about-staff-name {
    font-size: 3.2rem;
    font-weight: 500;
    margin-bottom: 5px;
}
.pdc-about-staff-sab-name {
    font-family: var(--ff_en);
    margin-bottom: 15px;
}
.pdc-about-staff-box {
    padding: 45px;
    margin-bottom: 45px;
    border: solid 1px var(--y_brown);
    border-radius: 10px;
}
.pdc-about-staff-inner {
    margin-bottom: 45px;
}
.pdc-about-staff-container{
    padding: 45px;
    background: var(--l_beige);
    border-radius: 10px;
}
.staff-career-ttl {
    color: var(--black);
    font-size: 2.4rem;
    margin-bottom: 5px;
}
.pdc-about-staff-container p {
    margin-bottom: 5px;
}
@media screen and (max-width: 1200px) {
    .pdc-about-intro-desc {
        width: 50%;
        padding-right: 45px;
    }
    .pdc-about-feature-contents {
        display: block;
    }
    .pdc-feature-text-area {
           width: 100%;
    }
    .pdc-feature-desc {
    margin-bottom: 45px;
    }
    .pdc-feature-img {
        margin: 0 auto;
    }
    .pdc-feature-no {
        display: inline;
    }
    .pdc-feature-text-area h2 {
        display: inline;
    }
    .pdc-about-staff-inner {
        display: block;
    }
    .pdc-about-staff-img {
        margin: 0 auto 45px auto;
    }
    .pdc-about-staff-txt-area {
           width: 100%;
    }
    .pdc-about-staff-name {
        display: inline;
        vertical-align: middle;
        margin-left: 20px;
    }
    .pdc-about-staff-sab-name {
        display: inline;
        vertical-align: bottom;
        line-height: 42px;
        height: 42px;
    }
}

@media screen and (max-width: 746px) {
    .pdc-page-ttl {
        font-size: 2.4rem;
        top: 35px;
        left: 20px;
    }
    .pdc-about-intro-inner {
        display: block;
    }
    .pdc-about-intro-content {
        width: 335px;
        margin-bottom: 25px;
    }
    .pdc-about-feature-list:last-child {
        margin-bottom: 0;
    }
    .pdc-about-intro-img {
        width: 335px;
    }
    .pdc-about-intro-desc {
        width: 100%;
        margin-bottom: 25px;
        padding-right: 0;
    }
    .pdc-about-intro {
        margin-bottom: 50px;
    }
    .pdc-about-feature-list {
        width: 335px;
        margin: 0 auto 25px auto;
    }
    .pdc-about-feature-contents {
        display: block;
        padding: 20px;
    }
    .pdc-feature-no {
        font-size: 3.6rem;
        line-height: 3.6rem;
        display: block;
    }
    .pdc-feature-text-area h2 {
        font-size: 2.4rem;
        display: block;
    }
    .pdc-feature-text-area {
           width: 100%;
    }
    .pdc-feature-desc {
           width: 100%;
        margin-bottom: 20px;
    }
    .pdc-feature-img {
           width: 100%;
    }
    .pdc-feature-sub-ttl {
           line-height: 2.4rem; 
           width: 100%;
    }
    .pdc-about-staff-inner {
        flex-direction: column;
    }
    .pdc-about-staff-img {
        width: 295px;
        margin-bottom: 25px;
    }
    .pdc-about-staff-txt-area {
        width: 295px;
    }
    .pdc-about-job-ttl {
        margin-bottom: 20px;
        display: block;
    }
    .pdc-about-staff-box {
        padding: 20px;
        margin-bottom: 25px;
    }
    .pdc-about-staff-container {
        padding: 20px;
        flex-direction: column;
    }
    .pdc-about-staff-inner {
        margin-bottom: 20px;
        line-height: 2.4rem;
    }
    .pdc-about-staff-container p {
        margin-bottom: 5px;
    }
    .pdc-about-staff-career {
        margin-bottom: 20px;
    }
    .pdc-about-staff {
        margin-bottom: 110px;
    }
    .pdc-plice-list-sec {
        margin-bottom: 50px;
    }
    .pdc-about-staff-name {
       margin-left: 0;
    }
    .pdc-about-staff-sab-name{
        line-height: 10px;
    }
    .pdc-about-staff-desc {
        margin-top: 20px;
    }
}


/* treatment_page */
.pdc-treatment-intro p {
    width: 555px;
    text-align: center;
    margin: 0 auto 90px auto;
}
.pdc-treatment-ttl h3 {
    color: var(--white);
    font-size: 3.2rem;
    font-family: var(--ff_jp);
    font-weight: 500;    
}
.pdc-treatment-ttl {
    background: var(--beige);
    height: 80px;
    border-radius: 10px;
    display: flex;
    align-items: center;
   padding-left: 110px;
   margin-bottom: 20px;
   position: relative;
}
.pdc-treatment-ttl span {
    position: absolute;
    left: 45px;
    top: 20px;
    display: block;
    width: 45px;
    height: 45px;
    background-image: url(../img/treatment-dentures-illustration.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.pdc-treatment-img {
    width: 530px;
    height: auto;
    border-radius: 10px;
}
.pdc-treatment-text-area {
    width: 432px;
}
h4 {
    font-family: var(--ff_jp);
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--black);
    line-height: 3.6rem;
    margin-bottom: 20px;
}
.pdc-treatment-container {
    align-items: center;
    background: rgb(255 255 255 / 0.7);
    padding: 45px;
    border-radius: 20px;
}
.pdc-treatment-box {
    margin-bottom: 45px;
}
.pdc-treatment-preventive span {
    background-image: url(../img/treatment-yobou-illustration.png);
}
.pdc-treatment-implant span {
    background-image: url(../img/treatment-implant-illustration.png);
}
.pdc-treatment-orthodontics span {
    background-image: url(../img/pdc-treatment-orthodontics-illustration.png);
}
.pdc-treatment-whitening-container {
    margin-bottom: 45px;
}
.pdc-treatment-whitening-desc-ttl::before {
    content: "";
    display: block;
    width: 10px;
    height: 36px;
    background: var(--brown);
    margin-right: 12px;
}
.pdc-treatment-whitening-desc-ttl {
    display: flex;
    align-items: center;
}
.pdc-treatment-whitening-textarea {
    width: 565px;
}
.pdc-treatment-whitening-desc-img {
    width: 400px;
    height: auto;
}
.pdc-treatment-whitening-desc {
    margin-bottom: 45px;
}
.pdc-treatment-whitening-flow {
    color: var(--white);
    background: var(--y_brown);
    width: 197px;
    height: 52px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto 45px auto;
}
.pdc-treatment-whitening-step span {
    font-family: var(--ff_en);
}
.pdc-treatment-whitening-step span:nth-child(2){
    font-size: 3.6rem;
    margin-right: 20px;
}
.pdc-treatment-whitening-step span:first-child {
    margin-right: 5px;
}
.pdc-treatment-whitening-step h4 {
    color: var(--brown);
}
.pdc-treatment-whitening-step-text {
    width: 397px;
    height: 160px;
    margin-bottom: 20px;
}
.pdc-treatment-whitening-step-icon {
    color: var(--white);
    background: var(--beige);
    width: 140px;
    height: 42px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}
.pdc-treatment-step-item {
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
}
.pdc-treatment-whitening-step {
    border: 1px solid var(--y_brown);
    border-radius: 10px;
    padding: 20px 20px 0 20px;
}
.pdc-treatment-whitening-step-box {
    width: 923px;
    margin: 0 auto;
}
.pdc-treatment-box:last-child {
    margin-bottom: 0;
}
@media screen and (max-width: 1200px) { 
    .pdc-treatment-container {
        display: block;
    }
    .pdc-treatment-img {
        margin: 0 auto 45px auto;
    }
    .pdc-treatment-text-area {
        width: 100%;
    }
    .pdc-treatment-text-area h4 {
        text-align: center;
    }
    .pdc-treatment-whitening-container {
        display: block;
    }
    .pdc-treatment-whitening-ex {
        display: block;
    }
    .pdc-treatment-whitening-desc-ttl {
        justify-content: center;
    }
    .pdc-treatment-whitening-textarea {
        width: 100%;
        margin-bottom: 45px;
    }
    .pdc-treatment-whitening-desc-img {
        margin: 0 auto;
    }
    .pdc-treatment-whitening-step-box {
        display: block;
    }
    .pdc-treatment-whitening-step-box {
        width: 100%;
    }
    .pdc-treatment-whitening-step-text {
        width: 100%;
        height: auto;
    }
    .pdc-treatment-whitening-step {
        margin-bottom: 45px;
    }
    .pdc-treatment-whitening-step-count {
        display: flex;
        justify-content: flex-start;
    }
    .pdc-treatment-step-item:last-child {
        margin-left: 45px;
    }
}
@media screen and (max-width: 746px) {
    .pdc-treatment-intro p {
        width: calc(100% - 40px);
        margin-inline: 20px;
        margin:  50px auto;
    }
    .pdc-treatment-ttl {
        padding-left: 65px;
        height: 42px;
    }
    .pdc-treatment-ttl span {
        left: 20px;
        top: 3px;
        width: 35px;
        height: 35px;
    }
    .pdc-treatment-ttl h3 {
        font-size: 2.4rem;
    }
    .pdc-treatment-img {
        width: 100%;
        margin-bottom: 20px;
    }
    .pdc-treatment-container {
        display: block;
        padding: 20px;
    }
    .pdc-treatment-text-area {
        width: 100%;
    }
    .pdc-treatment-text-area h4 {
        font-size: 2.1rem;
        margin-bottom: 20px;
    }
    .pdc-treatment-text-area p {
        width: 100%;
    }
    .pdc-treatment-text-area p {
        width: 100%;
    }
    .pdc-treatment-whitening-container {
        display: block;
        margin-bottom: 20px;
    }
    .pdc-treatment-whitening-ex {
        display: block;
    }
    .pdc-treatment-whitening-desc-img {
        width: 100%;
    }
    .pdc-treatment-whitening-textarea {
        width: 100%;
        margin-bottom: 20px;
    }
    .pdc-treatment-whitening-step-box {
        display: block;
        width: 100%;
    }
    .pdc-treatment-whitening-step-text {
        width: 100%;
        height: auto;
    }
    .pdc-treatment-whitening-desc h4 {
        font-size: 2.1rem;
    }
    .pdc-treatment-whitening-desc-ttl::before {
        height: 62px;
    }
    .pdc-treatment-whitening-desc {
        margin-bottom: 20px;
    }
    .pdc-treatment-whitening-flow {
        margin: 0 auto 20px auto;
    }
    .pdc-treatment-whitening-step span:nth-child(2) {
        font-size: 3.2rem;
    }
    .pdc-treatment-whitening-step {
        margin-bottom: 20px;
    }
    .pdc-treatment-whitening-step:last-child {
        margin-bottom: 0;
    }
    .pdc-treatment-sec {
        margin-bottom: 110px;
    }
    .pdc-treatment-box {
        margin-bottom: 25px;
    }
    .pdc-treatment-whitening-step-count {
        display: block;
    }
    .pdc-treatment-step-item:last-child {
        margin-left: 0px;
    }
}
/* 診療案内ページここまで */

/* 料金案内ページここから */
.pdc-price-list-item a {
    text-decoration: none;
    color: var(--white);
    font-family: var(--ff_jp);
    font-size: 1.6rem;
    font-weight: 400;
}
.pdc-price-list-item a::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-top: 10px solid var(--white);
    border-bottom: 0;
    margin: 20px auto 0 auto;
}
.pdc-price-list-item {
    background: var(--y_brown);
    width: 150px;
    height: 150px;
    border-radius: 75px;
    margin-bottom: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pdc-price-list-heading ul {
    flex-wrap: wrap;
    width: 735px;
    margin: 0 auto;
}
.pdc-price-list-table {
    width: 100%;
}
.pdc-price-list-table caption{
    position: relative;
    margin: 0 0 25px 20px;
}
.pdc-price-list-table caption::before {
    content: "";
    display: block;
    width: 10px;
    height: 48px;
    background: var(--y_brown);
    position: absolute;
    left: -20px;
    display: flex;
    align-items: center;
}
.pdc-price-list-table {
    font-family: var(--ff_jp);
    font-size: 1.6rem;
    margin-bottom: 45px;
}
.pdc-price-list-table thead>tr>th {
    font-weight: 400;
    color: var(--white);
    text-align: center;
    background: var(--beige);
    width: 33.33%;
    height: 80px;
    border: solid 1px var(--white);
}
.pdc-price-list-table {
    color: var(--black);
}
.pdc-price-list-table  tbody>tr>td {
    background: var(--white);
    height: 80px;
    border: solid 1px var(--gray);
    padding-left: 10px;
}
.pdc-price-list-table  tbody>tr>th {
    border: solid 1px var(--gray);
    text-align: center;
}
.pdc-prise-list-about {
    color: var(--beige);
    background: var(--white);
    border: solid 1px var(--beige);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 50px;
    border-radius: 25px;
    margin: 0 0 0 auto;
    transition: 1s;
}
.pdc-price-list-contents {
    margin-bottom: 45px;
}
.pdc-prise-list-about:hover {
    background: var(--beige);
    color: var(--white);
}
.pdc-price-list-childcorrection {
    margin-bottom: 45px;
}
@media screen and (max-width: 746px) {
    .pdc-price-list-table caption::before {
        height: 38px;
    }
    .pdc-price-list-heading ul {
        width: 335px;
    }
    .pdc-about-feature{
        margin-top: 50px;
        border-radius: 20px;
        padding-bottom: 25px;
    }
    .pdc-price-list-table thead>tr  {
        display: none;
    }
    .pdc-price-list-table tbody>tr>th {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        color: var(--white);
        background-color: var(--beige);
        border: solid 1px var(--beige);

    }
    .pdc-price-list-table  tbody>tr>td {
        display: block;
        width: 295px;
        height: auto;
        margin: 0 auto;
        padding: 20px;
        text-align: center;
    }
     .pdc-price-list-table  tbody {
        width: 100%;
     }
     .pdc-prise-list-about {
        margin: 0 auto;
     }
     .pdc-price-list-table {
        margin-bottom: 25px;
     }
     .pdc-price-list-box {
        margin-bottom: 110px;
     }
     .pdc-price-list-item {
        margin-bottom: 25px;
     }
     .pdc-price-list-heading ul {
        padding-bottom: 25px;
     }
     .pdc-price-list-contents {
        margin-bottom: 25px;
     }
}
/* newsページここから */
.pdc-news-list {
    background: var(--white);
    max-width: 1100px;
    margin: 0 auto;
    padding: 45px;
    border-radius: 10px;
}
.pdc-news-item {
    color: var(--black);
    padding: 45px;
    border-top: solid 1px var(--gray);
    transition: 2s;
}
.pdc-news-item a:hover {
    background: var(--l_beige);
}
.pdc-news-item:last-child {
    border-bottom: solid 1px var(--gray);
}
.pdc-news-item a {
    color: var(--black);
}
.pdc-news-head {
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
}
.pdc-news-category {
    color: var(--white);
    background: var(--beige);
    font-size: 1.2rem;
    height: 24px;
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    margin-left: 10px;
}
.pdc-news-pagination {
    height: auto;
    text-align: center;
    margin: 45px auto 0 auto;
}
.page-numbers {
    color: var(--white);
    background-color: var(--beige);
    padding: 5px 10px;
    border-radius: 20px;
    font-family: var(--ff_en);
    font-weight: 600;
    font-size: 1.6rem;
}

@media screen and (max-width: 746px) {
    .pdc-news-item {
        padding: 10px 0;
        display: block;
    }
    .pdc-news-list {
        padding: 20px;
        max-width: 295px;
    }
    .pdc-news-head {
        margin-bottom: 10px;
    }
    .pdc-news-pagination {
        margin-top: 20px;
    }
}
/* news-detail-page */
.pdc-news-ttl {
    font-size: 2.4rem;
    margin-bottom: 20px;
}
.pdc-news-img {
    width: 50%;
}
.pdc-news-back {
    display: flex;
    justify-content: center;
    margin-top: 45px;
}
.pdc-news-back a{
position: relative;
    display: block;
    width: 240px;
    text-align: center;
    color: var(--y_brown);
    padding: 13px 0;
    background-color: var(--white);
    border-radius: 25px;
    border: 1px solid var(--y_brown);
    transition: .3s;
    z-index: 1;
    overflow: hidden;
}
.pdc-news-back a::before {
    content: "";
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: var(--y_brown);
    transition-duration: .2s;
}
.pdc-news-back a:hover {
    color: var(--white);
    background-color: var(--white);
}
.pdc-news-back a:hover::before {
    width: 100%;
}
@media screen and (max-width: 768px) {
    .pdc-news-ttl {
        font-size: 2.1rem;
        line-height: 4.2rem;
    }
    .pdc-news-img {
        width: 100%;
    }
}
/* reservation */
.pdc-reservation {
    margin: 110px 0;
    padding: 45px;
    background-image: url(../img/cta_background.JPG);
    background-size: cover;
    background-position: center;
}
.pdc-reservation-contents span {
    display: inline-block;
    width: 90px;
    height: 90px;
    border-radius: 45px;
    background-image: url(../img/pc_icon.png);
    background-repeat: no-repeat;
    background-size: 40%;
    background-color: var(--y_brown);
    background-position: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.pdc-reservation-box .pdc-reservation-contents:nth-child(2) span {
    background-image: url(../img/phone.png);
}
.pdc-reservation-cta {
    width: 800px;
    margin: 0 auto;
    display: block;
    padding: 45px;
    backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 20px;
}
.pdc-reservation-cta h2 {
    color: var(--black);
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}
.pdc-reservation-contents {
    width: 50%;
    border-right: solid 1px var(--white);
}
.pdc-reservation-contents:last-of-type {
    border-right: none;
}
.pdc-reservation-contents p {
    color: var(--white);
    text-align: center;
    font-size: 2.1rem;
    font-weight: 500;
    padding: 20px 0;
}
.pdc-cta-phone {
    color: var(--brown);
    font-family: var(--ff_en);
    font-size: 3.0rem;
    font-weight: 600;
    line-height: 2rem;
    vertical-align: middle;
    text-align: center;
    display: flex;
    align-items: center;
    width: 205px;
    height: 52px;
}
.pdc-reservation-contents a {
    margin: 0 auto;
}
.pdc-reservation-cta p {
    color: var(--black);
    text-align: center;
    margin-bottom: 20px;
}
@media screen and (max-width: 1200px) {
    .pdc-reservation-cta {
        width: 700px;
    }
}
@media screen and (max-width: 768px) {
    .pdc-reservation-cta {
        max-width: 295px;
        padding: 20px;
    }
    .pdc-reservation-box {
       flex-direction: column ;
    }
    .pdc-reservation-cta h2 {
        font-size: 2.8rem;
        margin: 20px 0  10px 0;
    }
    .pdc-reservation {
        padding:50px 0;
        margin-top: 50px;
    }
    .pdc-reservation-contents {
        border-right: none;
    }
    .pdc-reservation-contents {
        width: 100%;
        margin-bottom: 20px;
    }
    .pdc-reservation-cta p {
        padding: 0;
    }
    .pdc-reservation-contents a {
        margin: 20px auto;
    }
    .pdc-reservation-contents span {
        width: 60px;
        height: 60px;
    }
}
/*pricelist_desc */
.pdc-notice {
    padding-top: 100px;
    margin-bottom: 100px;
}
.notice-ttl {
    font-size: 3.2rem;
    background: var(--beige);
    color: var(--white);
    padding: 20px;
    margin-bottom: 45px;
}
.notice-subheading {
    font-size: 2.4rem;
    font-weight: 500;
    padding-bottom: 20px;
}
.pdc-notice-container li {
    padding-bottom: 10px;
}
.pdc-notice-container li::before {
    content: "";
    display: inline-block;
    background-color: var(--y_brown);
    width: 10px;
    height: 10px;
    border-radius: 5px;
    margin: 0 5px 1px 0;
}
.pdc-notice-container {
    padding-bottom: 45px;
}
@media screen and (max-width: 768px) {
    .pdc-notice {
        padding: 50px 0 0 0;
        margin-bottom: 100px;
    }
    .notice-ttl {
        font-size: 2.4rem;
        padding: 20px;
        margin-bottom: 25px;
    }
    .notice-subheading {
        font-size: 2rem;
        padding-bottom: 10px;
    }
    .pdc-notice-container {
        padding-bottom: 20px;
    }
}