/*--------------------------------------*
 * foundation
 *--------------------------------------*/

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  line-height: 1.6;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  color: #404040;
  font-size: 1.6rem;
  font-family: 'Noto Serif', 'Noto Serif JP', serif;
  font-weight: normal;
  width: 100%;
  overflow-x: hidden;
  letter-spacing: 0.1em;
  position: relative;
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  overflow-x: hidden;
}

img,
video,
object {
  max-width: 100%;
  height: auto;
  border: none;
  display: block;
}

a {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

a:hover {
  text-decoration: none;
}

a:hover img {
  text-decoration: none;
  opacity: 0.8;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media(min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

.coming-soon {
  text-align: center;
  padding: 5vw 0;
  font-size: 5vw;
}

/*--------------------------------------*
    * layout
    *--------------------------------------*/

.l-header {
  /* position: absolute; */
  width: 100%;
  transition: all .3s;
  max-width: 1440px;
  margin: auto;
}

.l-header h1 {
  font-size: 24px;
}

.l-header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.l-header__logo a {
  padding: 20px 10px;
}

.l-header__logo h1 {
  color: #5e1523;
  font-size: 17px;
  display: inline-block;
  margin-left: 45px;
}

.l-header__logo img {
  max-width: 250px;
  width: 100%;
}

.l-header__info {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2%;
}

.l-header__info a {
  display: block;
  padding: 10px 0;
  font-size: 24px;
}

.l-header__info-text {
  font-size: 14px;
  text-align: center;
}

.l-header__info i {
  margin-right: 4px;
}

.l-header__right {
  width: 70%;
}

.l-header__tel,
.l-header__line,
.l-header__epark {
  width: 23.333333%;
  min-width: 200px;
}

.l-header__tel a {
  background: #675544;
  color: #fff;
  text-align: center;
  border-top: 4px solid #B67B03;
  border-image: linear-gradient(to right, #B67B03 0%, #DAAF08 25%, #FEE9A0 50%, #DAAF08 75%, #B67B03 100%);
  border-bottom: 4px solid #DAAF08;
  border-image-slice: 1;
  box-shadow: 2px 3px 5px -2px #675544;
  letter-spacing: 0;
}

.l-header__line a {
  background: #FCF5EA;
  color: #b9af84;
  text-align: center;
  border-top: 4px solid #B67B03;
  border-image: linear-gradient(to right, #B67B03 0%, #DAAF08 25%, #FEE9A0 50%, #DAAF08 75%, #B67B03 100%);
  border-bottom: 4px solid #DAAF08;
  border-image-slice: 1;
  box-shadow: 2px 3px 5px -2px #675544;
}

.l-header__epark a {
  background: #8fc31f;
  color: #fff;
}

.l-header__time {
  border: 1px solid #b9af84;
  text-align: center;
  font-size: 14px;
  padding: 10px 20px;
  width: 70%;
  min-width: 600px;
  margin-left: auto;
}

.l-header__address span {
  display: inline-block;
  margin-right: 10px;
}

.l-header__address a {
  text-decoration: underline;
}

.l-header__logo {
  margin-bottom: 20px;
}

/* 
.l-header.addColor {
  background-color: #fff;
  transition: all .3s;
} */

@media screen and (max-width: 1024px) {
  .l-header__wrapper {
    flex-direction: column;
  }

  .l-header__address {
    text-align: center;
  }

  .l-header__right {
    width: 100%;
    margin-bottom: 40px;
  }

  .l-header__time {
    /* width: 70%; */
    margin: auto;
  }

  .l-header__info {
    justify-content: center;
  }
}


@media screen and (max-width: 768px) {
  .l-header h1 {
    font-size: 18px;
  }

  .l-header__info {
    display: none;
  }

  .l-header__time {
    width: 100%;
    min-width: auto;
  }

  .l-header__right {
    margin-bottom: 0;
  }

  .l-header .c-content-wrapper {
    margin-bottom: 20px;
  }
}


.l-header__nav {
  display: flex;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 1;
  background: #fff;
  z-index: 3;
}

.l-header__lists {
  display: flex;
  flex-wrap: wrap;
}

.l-header__item {
  text-align: center;
  display: flex;
}

.l-header__item a {
  display: block;
  margin: 40px 10px;
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: 0.05em;
}



.l-header__item span {
  display: block;
  font-size: 12px;
}

.link-wrapper a {
  display: block;
  padding-right: 20px;
  font-size: 24px;
  min-width: 145px;
}

.l-header__item a {
  position: relative;
}

.l-header__item a:hover {
  opacity: .6;
}

.fa-phone-alt,
.fa-envelope {
  margin-right: 4px;
}

.l-header__nav-sp {
  display: none;
}



@media screen and (max-width: 768px) {

  .l-header__nav,
  .link-wrapper {
    display: none;
  }


  .p-contact .link-wrapper {
    display: block;
  }


  .l-header__nav-sp {
    display: block;
  }

  .sp-nav-btn {
    position: relative;
    padding-right: 10px;
    width: 25px;
    height: 16px;
    z-index: 20;
    cursor: pointer;
    position: fixed;
    right: 5%;
    top: 30px;
  }

  .sp-nav-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #404040;
    position: absolute;
  }

  .sp-nav-btn span:nth-of-type(1) {
    top: 0;
    right: 3px;
    transition: ease-in 0.3s;
  }

  .sp-nav-btn span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    margin: auto;
    right: 3px;
    transition: ease-in 0.3s;
  }

  .sp-nav-btn span:nth-of-type(3) {
    bottom: 0;
    right: 3px;
    transition: ease-in 0.3s;
  }

  .sp-nav-btn.active span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
    transition: ease-in .3s;
    background: #404040;
  }

  .sp-nav-btn.active span:nth-of-type(2) {
    opacity: 0;
    transition: ease-in .3s;
  }

  .sp-nav-btn.active span:nth-of-type(3) {
    transform: translateY(-4px) rotate(45deg);
    background: #404040;
  }

  .sp-nav-btn.active:before {
    opacity: 0;
    transition: ease-in .3s;
  }

  .l-header__nav-sp {
    display: block;
    position: fixed;
    z-index: 10;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    transform: translateX(100vw);
    transition: ease-in 0.3s;
    background: #fff;
  }

  .l-header__nav-sp.active {
    transform: translateX(0);
  }

  .l-header__lists-sp {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    height: 100%;
    margin-top: 10vh;
  }

  .l-header__item-sp {
    font-size: 16px;
    text-align: center;
    padding-top: 24px;
  }

  .l-header__item-sp a {
    color: #675544;
  }

  .l-header__item-sp span {
    display: block;
  }
}

.l-footer {
  display: flex;
  align-items: center;
  background-color: #675544;
  color: #ffffff;
}



.l-footer__logo {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.l-footer__logo img {
  width: 48px;
}

.l-footer__logo h1 {
  font-size: 24px;
  padding-left: 4px;
}

.l-footer__address {
  margin: 10px 0;
}

.l-footer__left {
  width: 35%;
  padding-left: 2%;
}


.l-footer__right {
  display: flex;
  text-align: center;
  margin-left: auto;
}

.l-footer__right span {
  display: block;
  font-size: 14px;
}

.l-footer__item a {
  display: block;
  padding: 0 20px;
  color: #ffffff;
}

.l-footer__item a:hover {
  opacity: 0.7;
}

small {
  display: block;
  padding: 20px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .l-footer {
    flex-direction: column-reverse;
  }

  .l-footer__logo {
    justify-content: center;
  }

  .l-footer__logo h1 {
    font-size: 16px;
  }


  .l-footer__left {
    width: 100%;
    text-align: center;
    padding: 0;
  }

  .l-footer__right {
    margin: 0 auto 40px;
  }
}

@media screen and (max-width: 768px) {
  .l-footer__right {
    flex-direction: column;
  }

  .l-footer__item a {
    padding: 10px 0;
  }

  .l-footer__logo img {
    width: 32px;
  }
}





/*--------------------------------------*
    * object
    *--------------------------------------*/
/*------------------------*
    * component
    *-------------------------*/

.c-button {
  position: relative;
  display: inline-block;
  padding: 16px 40px;
  width: 100%;
  max-width: 200px;
  text-align: center;
  transition: all 0.3s;
  color: #fff;
  z-index: 1;
  background: #b9af84;
  border-radius: 10px;
}

.c-button:hover {
  background: #fff;
  color: #b9af84;
}

.c-button i {
  margin-left: 8px;
}

.c-button-point {
  background: none;
  color: #333;
}

.c-button-point:hover {
  background: none;
  color: #b42844;
}

.c-container {
  padding: 80px 0;
}

.c-bg {
  background: #FCF5EB;
}

.c-content-wrapper {
  width: 90%;
  margin: 0 auto;
  max-width: 1440px;
}

.c-section-title {
  font-size: 32px;
  font-weight: bold;
  position: relative;
  z-index: 1;
  background: linear-gradient(transparent 70%, #b9af8470 0);
  display: inline;
  padding: 0 2px 0px;
}

.c-section-title .u-title-bg {
  color: #EDF4F2;
  position: absolute;
  top: -70px;
  left: 0;
  z-index: -1;
  font-size: 124px;
}

.c-section-title .u-title-row1 {
  top: -110px;
}

.c-section-title .u-dib {
  display: inline-block;
}

.c-sub-text {
  display: block;
  font-size: 14px;
}

.c-tel-link {
  display: block;
}

.c-flex-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.c-flex-box:nth-of-type(2) {
  flex-direction: row-reverse;
}


@media screen and (max-width: 768px) {
  .c-button:before {
    width: 48px;
    right: -24px;
  }

  .cta-btn {
    font-size: 18px;
    width: 90%;
  }

  .c-container {
    padding: 40px 0;
  }

  .c-section-title {
    font-size: 24px;
  }

  .c-section-title .u-title-bg {
    top: -40px;
    font-size: 64px;
  }

  .c-flex-box {
    flex-direction: column-reverse;
  }

  .c-flex-box:nth-of-type(2) {
    flex-direction: column-reverse;
  }
}


/*------------------------*
    * project
    *-------------------------*/

.p-mv__wrapper {
  position: relative;
  width: 90%;
  max-width: 1440px;
  margin: auto;
}

.p-mv__wrapper h2 {
  position: absolute;
  bottom: 30%;
  left: 5%;
  z-index: 2;
}

.p-mv__wrapper h2 img {
  max-width: 500px;
}

.p-mv-other h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  bottom: unset;
  transform: translate(-50%, -50%);
}

.p-mv-other img {
  width: 100%;
  object-fit: cover;
}

.p-mv-other h2 img {
  width: 100%;
}

.p-mv-other .u-fv {
  height: 500px;
}

.c-mv-title {
  position: relative;
}

.c-mv-title span {
  content: '';
  position: absolute;
  left: 16px;
  top: -32px;
  font-size: 124px;
  color: rgba(255, 255, 255, 0.3);
}

@media screen and (max-width: 768px) {
  .c-mv-title span {
    font-size: 48px;
    top: -9px;
  }

  .p-mv-other .u-fv {
    height: auto;
  }

  .p-mv__wrapper h2 img {
    max-width: 200px;
  }

  .p-mv-other h2 img {
    max-width: unset;
  }
}

@media screen and (max-width: 599px) {
  .p-mv__wrapper h2 img {
    max-width: 100px;
  }

  .p-mv-other h2 img {
    max-width: unset;
  }
}


.p-mv__other {
  width: 100%;
  position: relative;
}

.p-mv__other img {
  min-height: 400px;
  object-fit: cover;
}

.p-mv__other:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: linear-gradient(160deg, rgba(41, 171, 226, .4) 0%, rgba(222, 240, 250, 0.4962359943977591) 100%);
}

.p-mv__inner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #020242;
  font-size: 4vw;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .p-mv__wrapper h2 {
    font-size: 24px;
  }

  .p-concept__text {
    width: 100%;
    text-align: left;
  }

  .p-mv__inner-text {
    font-size: 24px;
    width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 599px) {
  .p-mv__wrapper h2 {
    font-size: 18px;
  }
}

.p-about {
  text-align: center;
}

.p-about-top-text {
  margin: 40px auto;
  width: 70%;
}

.p-about-img {
  margin: auto;
  margin-bottom: 40px;
  max-width: 1280px;
}

.p-about-corona {
  border: 1px solid #b9af84;
  border-radius: 20px;
  display: inline-block;
  padding: 40px;
  margin-bottom: 80px;
}

.p-about-corona span {
  display: inline-block;
}

.p-about-corona h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.p-about-accident {
  font-size: 32px;
}

.p-about-accident .u-red {
  color: red;
}

.p-about-accident span {
  display: inline-block;
}

.p-about-accident__block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 40px 0;
}

.p-about-accident__item {
  width: 18%;
  font-size: 18px;
  border-radius: 20px;
  color: #fff;
  background: #b9af84;
  padding: 40px 20px;
}

.p-aboutp-accident__bottom-text {
  font-size: 18px;
}

@media screen and (max-width: 1024px) {

  .p-about-accident__item {
    width: 48%;
    margin-bottom: 20px;
  }

}

@media screen and (max-width: 768px) {
  .p-about-top-text {
    width: 100%;
    margin: 20px 0;
    text-align: left;
  }

  .p-about-corona {
    padding: 20px;
    margin-bottom: 40px;
  }

  .p-about-corona h3 {
    font-size: 18px;
  }

  .p-about-accident {
    font-size: 18px;
  }

  .p-about-accident__item {
    width: 100%;
    margin: 10px auto;
  }

  .p-aboutp-accident__bottom-text {
    text-align: left;
  }

  .p-about-accident__block {
    margin: 20px 0;
  }
}


.p-worry {
  text-align: center;
}

.p-worry-img img {
  margin: auto;
}

.p-worry__lists {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 40px 0;
}

.p-worry__item {
  width: 32%;
  border-radius: 20px;
  border: 1px solid #b9af84;
  padding: 20px;
  margin-bottom: 20px;
}

.p-worry__item img {
  height: 300px;
  border-radius: 20px;
  object-fit: cover;
}

.p-worry__item h3 {
  margin-bottom: 20px;
  font-size: 18px;
}

.p-worry__item span {
  display: inline-block;
}

.p-worry-details {
  text-align: left;
  display: inline-block;
}

.p-worry-details i {
  margin-right: 10px;
  color: #b9af85;
}

.p-worry-details p {
  position: relative;
  padding: 1rem 2rem;
  border-bottom: 2px solid #b9af84;
  display: flex;
  align-items: center;
}

.p-worry-details p:before {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 20%;
  height: 2px;
  content: '';
  background: #675544;
}

@media screen and (max-width: 1024px) {
  .p-worry__item {
    width: 48%;
  }
}

@media screen and (max-width: 768px) {
  .p-worry__item {
    width: 100%;
  }

  .p-worry__item img {
    height: auto;
  }

}

.p-approach {
  background: #FCF5EB;
  text-align: center;
}

.p-approach h2 {
  font-size: 48px;
  line-height: 1.25;
}

.p-approach-img img {
  margin: auto;
}

.p-approach-text {
  width: 70%;
  margin: auto;
}

.p-approach-text span {
  display: inline-block;
}

@media screen and (max-width: 768px) {

  .p-approach h2 {
    font-size: 24px;
    line-height: 1.25;
  }

  .p-approach-text {
    text-align: left;
    width: 90%;
  }

  .p-approach-text span {
    display: unset;
  }

}


.p-menu {
  text-align: center;
}

.p-menu__lists {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 40px 0;
}

.p-menu__item {
  width: 32%;
}

.p-menu__item-text {
  background: #FCF5EB;
  padding: 20px;
}

.p-menu__item-text h3 {
  font-size: 24px;
  font-weight: bold;
}

.p-menu__item-text p {
  margin: 20px 0;
}

.p-menu__item-text span {
  display: inline-block;
}

.p-menu-bottom-text {
  color: red;
  text-decoration: underline;
}

@media screen and (max-width: 1024px) {

  .p-menu__item {
    width: 48%;
  }

}


@media screen and (max-width: 768px) {
  .p-menu__item {
    width: 100%;
    margin-bottom: 20px;
  }

}


.p-point {
  background: #FCF5EB;
  text-align: center;
}

.p-point__lists {
  display: flex;
  flex-wrap: wrap;
  margin: 40px 0;
}

.p-point__item {
  position: relative;
  width: 23%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding-bottom: 20px;
}

.p-point__item span {
  position: absolute;
  top: -36px;
  left: 0;
  font-family: 'Avenir', 'Helvetica Neue', 'Helvetica', 'Arial', 'Hiragino Sans', 'ヒラギノ角ゴシック', YuGothic, 'Yu Gothic', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-style: italic;
  color: #d0a006;
  font-size: 48px;
}

.p-point__item h3 {
  margin: 20px 0 0;
  padding: 0 10px;
}

.p-point__item h3>span {
  display: inline-block;
}

.p-point__item:not(:nth-child(4n+4)) {
  margin-right: 2%;
}

.p-point__item:nth-child(n+5) {
  margin-top: 40px;
}

@media screen and (max-width: 1024px) {
  .p-point__item {
    width: 48%;
  }

  .p-point__item:not(:nth-child(4n+4)) {
    margin-right: 0%;
  }

  .p-point__item:not(:nth-child(2n+2)) {
    margin-right: 4%;
  }

  .p-point__item:nth-child(n+3) {
    margin-top: 20px;
  }
}


@media screen and (max-width: 768px) {
  .p-point__item {
    width: 100%;
    margin-bottom: 20px;
  }

  .p-point__item:not(:nth-child(4n+4)) {
    margin-right: 0;
  }

  .p-point__item:nth-child(n+2) {
    margin-top: 20px;
  }
}

.p-blog {
  text-align: center;
}

.p-voice {
  background: url(img/voice_bg.png) no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
  background-attachment: fixed;
}

.p-voice__lists {
  margin: 40px auto;
}

.p-voice__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #FCF5EA;
  padding: 40px;
  border-radius: 20px;
}

.p-voice__item:nth-of-type(2) {
  margin: 40px 0;
}

.p-voice__item-text {
  text-align: left;
  width: 48%;
}

.p-voice__item h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.p-voice__item-img {
  width: 48%;
}

.p-voice__item-img img {
  border-radius: 20px;
}

@media screen and (max-width: 768px) {
  .p-voice__item {
    flex-direction: column-reverse;
    padding: 20px;
  }

  .p-voice__item-text,
  .p-voice__item-img {
    width: 100%;
  }

  .p-voice__item-text {
    margin-top: 20px;
  }
}


.p-access {
  margin: 80px auto;
  background: #FCF5EA;
  padding: 40px;
  text-align: center;
}

.p-access-inner {
  margin: 40px 0;
  display: flex;
  justify-content: space-between;
}

.p-access-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.p-access-info a {
  display: block;
}

.p-access-img,
.p-access-info {
  width: 48%;
}

.p-access-info i {
  margin-right: 10px;
}

.p-access-info a {
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 40px;
  width: 100%;
}

.p-access-info a:first-of-type {
  background: #b9af84;
  color: #fff;
  font-size: 40px;
}

.p-access-info span {
  font-size: 12px;
  position: relative;
  top: -8px;
  margin-left: 10px;
}

.p-access-info .order-text {
  font-size: 14px;
  text-align: left;
}

.p-access-info a:last-of-type {
  border: 1px solid #b9af84;
  color: #b9af84;
  font-size: 32px;
}

@media screen and (max-width: 1024px) {
  .p-access-inner {
    flex-direction: column;
  }

  .p-access-info span {
    top: -5px;
  }

  .p-access-img,
  .p-access-info {
    width: 100%;
    max-width: 500px;
    margin: auto;
  }

  .p-access-img {
    margin-bottom: 20px;
  }

  .p-access-info a:first-of-type {
    font-size: 32px;
  }

  .p-access-info a:last-of-type {
    font-size: 24px;
  }
}


@media screen and (max-width: 768px) {
  .p-access {
    padding: 20px;
    margin-bottom: 60px;
  }

  .p-access-info a:first-of-type {
    font-size: 18px;
  }

  .p-access-info a:last-of-type {
    font-size: 18px;
  }

  .p-access-info span {
    display: inline-block;
  }
}

.p-point-details-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-point-details-box:not(:last-of-type) {
  margin-bottom: 80px;
}

.p-point-details-box:nth-of-type(2n) {
  flex-direction: row-reverse;
}

.p-point-details__text,
.p-point-details__img {
  width: 48%;
}

.p-point-details__text span {
  font-size: 32px;
  color: #fff;
  background: #b9af84;
  padding: 10px 20px;
  display: inline-block;
  margin-bottom: 10px;
  border-radius: 20px;
}

.p-point-details__text h3 {
  font-weight: bold;
  font-size: 24px;
  margin: 20px 0;
}

@media screen and (max-width: 768px) {

  .p-point-details-box,
  .p-point-details-box:nth-of-type(2n) {
    flex-direction: column;
  }

  .p-point-details__text,
  .p-point-details__img {
    width: 100%;
    display: contents;
  }

  .p-point-details-box span,
  .p-point-details-box img {
    order: -1;
  }

  .p-point-details-box span {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .p-point-details-box h3 {
    font-size: 18px;
    margin-top: 20px;
  }
}

.p-treatment-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FCF5EA;
  position: relative;
  z-index: 0;
}

.p-treatment-box:nth-of-type(2n) {
  flex-direction: row-reverse;
}

.p-treatment-box:nth-of-type(2n) .p-treatment__text {
  padding-right: 2.5%;
  padding-left: 0;
}

.p-treatment-box:not(:last-of-type) {
  margin-bottom: 80px;
}

.p-treatment__text,
.p-treatment__img {
  width: 48%;
}

.p-treatment__text {
  padding-left: 2.5%;
}

.p-treatment__text h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.p-treatment__price-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.p-treatment__price-wrapper span {
  font-size: 12px;
}

.p-treatment__price-wrapper p {
  padding: 0 10px;
  background: #FCF5EA;
}

.p-treatment__price::before {
  content: "";
  width: 100%;
  border-top: 1px dotted #333;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
}

@media screen and (max-width: 768px) {

  .p-treatment-box,
  .p-treatment-box:nth-of-type(2n) {
    flex-direction: column-reverse;
  }

  .p-treatment__text,
  .p-treatment-box:nth-of-type(2n) .p-treatment__text {
    padding: 0 20px 20px;
  }

  .p-treatment__text h3 {
    font-size: 18px;
    text-align: center;
    margin-top: 20px;
  }

  .p-treatment__text,
  .p-treatment__img {
    width: 100%;
  }

  .p-treatment__price-wrapper p {
    font-size: 12px;
  }

  .p-treatment-box:not(:last-of-type) {
    margin-bottom: 20px;
  }
}

.p-staff {
  text-align: center;
}

.p-staff__lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 80px 0;
}

.p-staff__item {
  width: 32%;
}

.p-staff__item h3 {
  margin: 10px 0;
}

@media screen and (max-width: 768px) {
  .p-staff__item {
    width: 100%;
  }

  .p-staff__item:not(:last-of-type) {
    margin-bottom: 40px;
  }

  .p-staff__item img {
    object-fit: cover;
    object-position: top;
    width: 100%;
    max-height: 500px;
    margin: auto;
  }
}

.p-first {
  text-align: center;
}

.p-first__text {
  margin: 40px auto;
  width: 80%;
  max-width: 1440px;
}

.p-first__text span {
  display: inline-block;
}

.p-flow {
  text-align: center;
  background: #FCF5EB;
  counter-reset: number 0;
}

.p-flow__item {
  text-align: left;
  background: #fff;
  border-radius: 12px;
  margin: 40px auto;
  padding: 20px 32px;
  padding-right: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  box-shadow: 0px 0px 10px -3px #b9ae85;
}

.p-flow__item:before {
  content: counter(number, decimal-leading-zero);
  counter-increment: number 1;
  color: #fff;
  background: #b9af84;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -32px;
}

.p-flow__item:after {
  content: '\f063';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  color: #675544;
}

.p-flow__item:last-child {
  margin-bottom: 0;
}

.p-flow__item:last-child:after {
  display: none;
}

.p-flow__item h3 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #675544;
}

.p-flow__item-text {
  width: 48%;
}

.p-flow__item-img {
  width: 48%;
}

.p-flow__item-img img {
  border-radius: 12px;
  object-fit: cover;
  width: 100%;
  max-height: 300px;
}

@media screen and (max-width: 768px) {
  .p-flow__item {
    display: block;
    padding: 20px;
    width: 90%;
  }
  .p-first__text {
    text-align: left;
    width: 100%;
    margin-bottom: 0;
  }
  .p-first__text span {
    display: unset;
  }
  .p-flow__item-text p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .p-flow__item h3 {
    text-align: center;
    font-size: 18px;
    margin-bottom: 10px;
  }
  .p-flow__item-text,
  .p-flow__item-img {
    width: 100%;
  }
  .p-flow__item:before {
    top: -24px;
    left: -24px;
    transform: none;
  }
  
}

@media screen and (max-width:599px) {
  .p-flow__item-img img {
    max-height: 250px;
  }
}

/*------------------------*
    * utitlty
    *-------------------------*/
.u-color {
  color: #675544;
}

.u-sp-info {
  display: none;
}

.u-dn {
  display: none;
}

.u-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 75px 100px 0 100px;
  border-color: #b9af84 transparent transparent transparent;
  margin: 80px auto;
}

@media screen and (max-width: 768px) {
  .u-sp-info {
    display: flex;
    flex: 1;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    margin: 0;
  }

  .u-sp-info .l-header__tel,
  .u-sp-info .l-header__line,
  .u-sp-info .l-header__epark {
    width: 33.3333333%;
    min-width: unset;
  }

  .u-sp-info .l-header__epark a {
    background: #8fc31f;
    color: #fff;
  }

  .u-sp-info .l-header__tel a,
  .u-sp-info .l-header__line a {
    width: 100%;
    display: block;
    font-size: 14px;
    padding: 10px 0;
  }

  .u-sp-info .l-header__tel a {
    letter-spacing: 0;
  }

  .u-sp-info .l-header__info-text {
    font-size: 10px;
  }

  .u-dn {
    display: block;
  }

  .u-triangle {
    margin: 40px auto;
  }

  .u-height-58 h2 img {
    max-width: 150px;
  }

}



.slider {
  position: relative;
  z-index: 1;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}

.slider-item {
  width: 100%;
  /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}

.slider img {
  transform: scale(1);
  transition: 6s ease-in-out;
}

.slider .slick-active img {
  transform: scale(1.05);
  transition: 6s ease-in-out;
}

.slide-animation {
  animation: fadezoom 6s 0s forwards;
}

@keyframes fadezoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.05);
  }
}


@media(min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}


.biz-hour {
  border-collapse: collapse;
  width: 100%;
}

@media screen and (max-width: 414px) {
  .biz-hour {
    /* スマホのときだけ親要素いっぱいに */
    width: 100%;
  }
}

.biz-hour th {
  border-top: 1px solid #b9af84;
}

.biz-hour th,
.biz-hour td {
  font-size: 14px;
  padding: 10px 0;
  text-align: center;
  border-bottom: 1px solid #b9af84;
}

.biz-hour th {
  font-weight: normal;
}

.map {
  margin: 20px 0;
  position: relative;
  width: 100%;
  padding-top: 50%;
  /* = height ÷ width × 100 */
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}