@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
.js-inview[data-inview=fade] {
  opacity: 0;
  transition: opacity 1s;
}
.js-inview[data-inview=fade].is-inview {
  opacity: 1;
}
.js-inview[data-inview=fade-top] {
  opacity: 0;
  transition: opacity 1s, transform 1s;
  transform: translateY(30px);
}
.js-inview[data-inview=fade-top].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview[data-inview=fade-left] {
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  transform: translateX(-30px);
}
.js-inview[data-inview=fade-left].is-inview {
  opacity: 1;
  transform: translateX(0);
}
.js-inview[data-inview=fade-right] {
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  transform: translateX(30px);
}
.js-inview[data-inview=fade-right].is-inview {
  opacity: 1;
  transform: translateX(0);
}
.js-inview[data-inview=fade-bottom] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateY(-30px);
}
.js-inview[data-inview=fade-bottom].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview[data-inview=btn] a::before,
.js-inview[data-inview=btn] button::before {
  transition: transform 0.4s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.js-inview[data-inview=btn] span {
  opacity: 0;
  transition: opacity 0.5s 0.3s, transform 0.5s 0.3s;
  transform: translateY(10px);
}
.js-inview[data-inview=btn] i {
  opacity: 0;
  transition: opacity 0.5s 0.3s, transform 0.5s 0.3s;
  transform: translateY(10px);
}
.js-inview[data-inview=btn].is-inview a::before,
.js-inview[data-inview=btn].is-inview button::before {
  transform: scale(1, 1);
}
.js-inview[data-inview=btn].is-inview span {
  opacity: 1;
  transform: translateY(0);
}
.js-inview[data-inview=btn].is-inview i {
  opacity: 1;
  transform: translateY(0);
}
.js-inview[data-inview=btn-border] a::after,
.js-inview[data-inview=btn-border] button::after {
  transition: transform 0.4s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.js-inview[data-inview=btn-border] span {
  opacity: 0;
  transition: opacity 0.8s 0.3s, transform 0.5s 0.3s;
  transform: translateY(10px);
}
.js-inview[data-inview=btn-border].is-inview a::after,
.js-inview[data-inview=btn-border].is-inview button::after {
  transform: scale(1, 1);
}
.js-inview[data-inview=btn-border].is-inview span {
  opacity: 1;
  transform: translateY(0);
}
.js-inview[data-inview=bg]::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  transition: transform 0.4s;
  transform: scale(1, 1);
  transform-origin: right top;
}
.js-inview[data-inview=bg].is-inview::after {
  transform: scale(0, 1);
}
.js-inview[data-inview=bg-white]::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #fff;
  transition: transform 0.4s;
  transform: scale(1, 1);
  transform-origin: right top;
}
.js-inview[data-inview=bg-white].is-inview::after {
  transform: scale(0, 1);
}
.js-inview[data-inview=bg-scale]::before {
  transition: transform 0.8s;
  transform: translate(-50%, -50%) scale(0.5);
  transform-origin: center center;
}
.js-inview[data-inview=bg-scale].is-inview::before {
  transform: translate(-50%, -50%) scale(1);
}
.js-inview-photo[data-inview=scale-small] {
  transition: transform 1s;
  transform: scale(1.5);
}
.is-inview .js-inview-photo[data-inview=scale-small] {
  transform: scale(1);
}

.js-inview-photo-img[data-inview=scale-small] {
  transition: transform 1s;
  transform: translateX(-50%) scale(1.5);
}
.is-inview .js-inview-photo-img[data-inview=scale-small] {
  transform: translateX(-50%) scale(1);
}

.js-inview-eachItem[data-inview=fade] {
  opacity: 0;
  transition: opacity 0.8s;
}
.js-inview-eachItem[data-inview=fade].is-inview {
  opacity: 1;
}
.js-inview-eachItem[data-inview=fade-top] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateY(30px);
}
.js-inview-eachItem[data-inview=fade-top].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem[data-inview=fade-bottom] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateY(-30px);
}
.js-inview-eachItem[data-inview=fade-bottom].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem[data-inview=fade-right] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateX(30px);
}
.js-inview-eachItem[data-inview=fade-right].is-inview {
  opacity: 1;
  transform: translateX(0);
}
.js-inview-eachItem[data-inview=btn] a::before,
.js-inview-eachItem[data-inview=btn] button::before {
  transition: transform 0.4s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.js-inview-eachItem[data-inview=btn] span {
  opacity: 0;
  transition: opacity 0.8s 0.3s, transform 0.5s 0.3s;
  transform: translateY(10px);
}
.js-inview-eachItem[data-inview=btn].is-inview a::before,
.js-inview-eachItem[data-inview=btn].is-inview button::before {
  transform: scale(1, 1);
}
.js-inview-eachItem[data-inview=btn].is-inview span {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem[data-inview=btn-border] a::after,
.js-inview-eachItem[data-inview=btn-border] button::after {
  transition: transform 0.4s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.js-inview-eachItem[data-inview=btn-border] span {
  opacity: 0;
  transition: opacity 0.8s 0.3s, transform 0.5s 0.3s;
  transform: translateY(10px);
}
.js-inview-eachItem[data-inview=btn-border].is-inview a::after,
.js-inview-eachItem[data-inview=btn-border].is-inview button::after {
  transform: scale(1, 1);
}
.js-inview-eachItem[data-inview=btn-border].is-inview span {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem[data-inview=list-border]::before {
  transition: transform 0.8s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.js-inview-eachItem[data-inview=list-border] span,
.js-inview-eachItem[data-inview=list-border] figure,
.js-inview-eachItem[data-inview=list-border] a {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateY(30px);
}
.js-inview-eachItem[data-inview=list-border] i {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateX(-20px) rotate(45deg);
}
.js-inview-eachItem[data-inview=list-border].is-inview::before {
  transform: scale(1);
}
.js-inview-eachItem[data-inview=list-border].is-inview span,
.js-inview-eachItem[data-inview=list-border].is-inview figure,
.js-inview-eachItem[data-inview=list-border].is-inview a {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem[data-inview=list-border].is-inview i {
  opacity: 1;
  transform: translateX(-10px) rotate(45deg);
}
.js-inview-eachItem-fast[data-inview=fade-top] {
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  transform: translateY(10px);
}
.js-inview-eachItem-fast[data-inview=fade-top].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem-delay[data-inview=fade] {
  opacity: 0;
  transition: transform 0.8s;
}
.js-inview-eachItem-delay[data-inview=fade].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem-delay[data-inview=fade-top] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateY(30px);
}
.js-inview-eachItem-delay[data-inview=fade-top].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem-delay[data-inview=fade-right] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateX(30px);
}
.js-inview-eachItem-delay[data-inview=fade-right].is-inview {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-eachItem-delay[data-inview=fade-bottom] {
  opacity: 0;
  transition: opacity 0.8s, transform 0.8s;
  transform: translateY(-30px);
}
.js-inview-eachItem-delay[data-inview=fade-bottom].is-inview {
  opacity: 1;
  transform: translateY(0);
}

.js-inview-all[data-inview=btn] a::before,
.js-inview-all[data-inview=btn] button::before {
  transition: transform 0.4s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.js-inview-all[data-inview=btn] span {
  opacity: 0;
  transition: opacity 0.8s 0.3s, transform 0.5s 0.3s;
  transform: translateY(10px);
}
.js-inview-all[data-inview=btn].is-inview a::before,
.js-inview-all[data-inview=btn].is-inview button::before {
  transform: scale(1, 1);
}
.js-inview-all[data-inview=btn].is-inview span {
  opacity: 1;
  transform: translateY(0);
}
.js-inview-all[data-inview=btn-border] a::after,
.js-inview-all[data-inview=btn-border] button::after {
  transition: transform 0.4s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.js-inview-all[data-inview=btn-border] span {
  opacity: 0;
  transition: opacity 0.8s 0.3s, transform 0.5s 0.3s;
  transform: translateY(10px);
}
.js-inview-all[data-inview=btn-border].is-inview a::after,
.js-inview-all[data-inview=btn-border].is-inview button::after {
  transform: scale(1, 1);
}
.js-inview-all[data-inview=btn-border].is-inview span {
  opacity: 1;
  transform: translateY(0);
}

_:-ms-lang(x)::-ms-backdrop,
.js-inview-photo[data-inview=scale-small] {
  transform: scale(1);
}

_:-ms-lang(x)::-ms-backdrop,
.js-inview-photo-img[data-inview=scale-small] {
  transform: translateX(-50%) scale(1);
}

.c-header {
  z-index: 99;
  width: 100%;
  position: fixed;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  transition: 0.5s padding;
  padding: 1rem 4rem;
}
.r-top .c-header {
  padding: 4rem;
  top: 0;
}

@media screen and (min-width: 768px), print {
  .c-header::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(245, 238, 232, 0.9);
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
  .r-top .c-header::after {
    opacity: 0;
  }
}
@media screen and (max-width: 767px), print {
  .c-header {
    width: auto;
    transform: inherit;
    position: fixed;
    top: 0;
  }
  .c-header::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    background: #C6BDB5;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    transform: inherit;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    opacity: 0;
  }
  .is-drawer .c-header::before {
    opacity: 0.9;
    pointer-events: inherit;
  }
}
@media screen and (max-width: 767px), print {
  .c-header__spLogo {
    position: absolute;
    z-index: 99;
    left: 4rem;
    top: 4rem;
  }
  .c-header__spLogo svg {
    width: 11rem;
  }
  .c-header__spLogoB {
    position: absolute;
    z-index: 99;
    left: 2rem;
    top: 1rem;
  }
  .c-header__spLogoB svg {
    width: 7rem;
  }
}
@media screen and (max-width: 767px), print {
  .c-header__logo {
    display: none;
  }
}
.c-header__logo svg {
  height: 7rem;
}
@media screen and (max-width: 767px), print {
  .c-header__logo svg {
    width: 7rem;
    height: 8.3rem;
  }
  .r-top .c-header__logo svg {
    width: 11rem;
    height: auto;
  }
}
@media screen and (min-width: 768px), print {
  .c-header__logo svg {
    transition: 0.5s;
  }
  .r-top .c-header__logo svg {
    height: 8rem;
  }
}
.c-header__logo svg path {
  transition: 0.3s;
}
.r-top .c-header__logo svg path {
  fill: #fff;
}

.c-header__logo {
  transition: 0.5s;
}
@media screen and (min-width: 768px), print {
  .c-header__logo:hover {
    opacity: 0.7;
  }
}
.c-header__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px), print {
  .c-header__inner {
    z-index: 2;
    position: fixed;
  }
}
.c-header__left {
  transition: 0.3s;
}
@media screen and (max-width: 767px), print {
  .c-header__left {
    position: fixed;
    overflow: auto;
    top: 0;
    right: 0;
    width: calc(100% - 4rem);
    height: calc(100% - 4rem);
    background: #4A5264;
    border-radius: 0 0 0 2rem;
    padding: 9rem 6rem 6rem;
    display: flex;
    align-items: flex-start;
    opacity: 0;
    pointer-events: none;
  }
  .is-drawer .c-header__left {
    opacity: 1;
    pointer-events: inherit;
  }
  .c-header__left > div {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
  }
}
.c-header__top, .c-header__bottom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 767px), print {
  .c-header__top, .c-header__bottom {
    display: block;
  }
}
.c-header__top a, .c-header__top span, .c-header__bottom a, .c-header__bottom span {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px), print {
  .c-header__top a, .c-header__top span, .c-header__bottom a, .c-header__bottom span {
    display: block;
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px), print {
  .c-header__top a:nth-of-type(n + 2), .c-header__top span:nth-of-type(n + 2), .c-header__bottom a:nth-of-type(n + 2), .c-header__bottom span:nth-of-type(n + 2) {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 768px), print {
  .r-top .c-header__top a, .r-top .c-header__top span, .r-top .c-header__bottom a, .r-top .c-header__bottom span {
    color: #fff;
  }
}
@media screen and (max-width: 767px), print {
  .c-header__top a, .c-header__top span, .c-header__bottom a, .c-header__bottom span {
    color: #fff;
  }
}
@media screen and (min-width: 768px), print {
  .c-header__top a:nth-of-type(n + 2), .c-header__bottom a:nth-of-type(n + 2) {
    margin-left: 2rem;
  }
  .c-header__top > a, .c-header__top > div > a, .c-header__bottom > a, .c-header__bottom > div > a {
    transition: 0.5s;
  }
  .c-header__top > a:hover, .c-header__top > div > a:hover, .c-header__bottom > a:hover, .c-header__bottom > div > a:hover {
    opacity: 0.5 !important;
  }
}
.c-header__top > span, .c-header__bottom > span {
  margin-right: 2rem;
  position: relative;
  padding-right: 2rem;
  cursor: pointer;
}
@media screen and (max-width: 767px), print {
  .c-header__top > span, .c-header__bottom > span {
    margin-right: 0;
    margin-bottom: 2rem;
    padding-right: 0;
  }
  .c-header__top > span > span, .c-header__bottom > span > span {
    position: relative;
  }
  .c-header__top > span > span::after, .c-header__bottom > span > span::after {
    content: "";
    width: 1rem;
    height: 1rem;
    border-bottom: 2px solid #C3AD84;
    border-right: 2px solid #C3AD84;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateY(-25%) rotate(45deg);
    transition: 0.3s transform;
  }
  .c-header__top > span > span.is-active::after, .c-header__bottom > span > span.is-active::after {
    transform: translateY(-50%) translateY(25%) rotate(-135deg);
  }
}
.c-header__top > span.drop--griefcare, .c-header__bottom > span.drop--griefcare {
  padding-left: 2rem;
}
@media screen and (max-width: 767px), print {
  .c-header__top > span.drop--griefcare, .c-header__bottom > span.drop--griefcare {
    padding-left: 0;
  }
}
@media screen and (min-width: 768px), print {
  .c-header__top > span.drop--griefcare .mega, .c-header__bottom > span.drop--griefcare .mega {
    left: -20rem;
  }
  .c-header__top > span.drop--griefcare .mega .mega_inner, .c-header__bottom > span.drop--griefcare .mega .mega_inner {
    width: 45rem;
  }
  .c-header__top > span.drop--griefcare .mega .mega_inner::after, .c-header__bottom > span.drop--griefcare .mega .mega_inner::after {
    left: 23rem;
  }
  .c-header__top > span.drop--griefcare .mega .mega_inner a, .c-header__bottom > span.drop--griefcare .mega .mega_inner a {
    width: calc(50% - 2rem);
  }
}
@media screen and (min-width: 768px), print {
  .c-header__top > span::after, .c-header__bottom > span::after {
    content: "";
    width: 0.6rem;
    height: 0.6rem;
    border-bottom: 2px solid #4A5264;
    border-right: 2px solid #4A5264;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .r-top .c-header__top > span::after, .r-top .c-header__bottom > span::after {
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}
@media screen and (min-width: 768px), print {
  .c-header__top > span:hover .mega, .c-header__bottom > span:hover .mega {
    opacity: 1 !important;
    pointer-events: inherit !important;
  }
}
.c-header__top > span .mega, .c-header__bottom > span .mega {
  transition: 0.3s;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: -12rem;
  top: 2rem;
  padding-top: 3rem;
}
@media screen and (max-width: 767px), print {
  .c-header__top > span .mega, .c-header__bottom > span .mega {
    padding-top: 0;
    opacity: 1;
    position: static;
    pointer-events: inherit;
    display: none;
    transition: inherit;
  }
}
@media screen and (min-width: 768px), print {
  .c-header__top > span .mega:hover, .c-header__bottom > span .mega:hover {
    opacity: 1;
    pointer-events: inherit;
  }
}
.c-header__top > span .mega_inner, .c-header__bottom > span .mega_inner {
  position: relative;
  background: #4A5264;
  display: flex;
  padding: 3rem 2rem;
  width: 68.8rem;
  border-radius: 1rem;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px), print {
  .c-header__top > span .mega_inner::after, .c-header__bottom > span .mega_inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 15rem;
    border-style: solid;
    border-width: 0 15px 17px 15px;
    border-color: transparent transparent #4A5264 transparent;
    transform: translateY(-99%);
  }
}
@media screen and (max-width: 767px), print {
  .c-header__top > span .mega_inner, .c-header__bottom > span .mega_inner {
    width: 100%;
    padding: 0;
    display: block;
  }
}
.c-header__top > span .mega_inner a, .c-header__bottom > span .mega_inner a {
  width: calc(33.3333333333% - 2rem);
  color: #fff;
}
@media screen and (min-width: 768px), print {
  .c-header__top > span .mega_inner a, .c-header__bottom > span .mega_inner a {
    margin: 0 1rem;
  }
  .c-header__top > span .mega_inner a:nth-of-type(n + 4), .c-header__bottom > span .mega_inner a:nth-of-type(n + 4) {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 767px), print {
  .c-header__top > span .mega_inner a, .c-header__bottom > span .mega_inner a {
    width: 100%;
    padding-top: 1rem;
    padding-left: 2rem;
    margin-top: 0;
  }
}
.c-header__top > span .mega_inner a figure, .c-header__bottom > span .mega_inner a figure {
  height: 12rem;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 767px), print {
  .c-header__top > span .mega_inner a figure, .c-header__bottom > span .mega_inner a figure {
    display: none;
  }
}
.c-header__top > span .mega_inner a figure img, .c-header__bottom > span .mega_inner a figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
.c-header__top > span .mega_inner a p, .c-header__bottom > span .mega_inner a p {
  position: relative;
  padding-left: 2rem;
  font-size: 1.5rem;
  margin-top: 1rem;
}
@media screen and (max-width: 767px), print {
  .c-header__top > span .mega_inner a p, .c-header__bottom > span .mega_inner a p {
    margin-top: 0;
    padding-left: 0;
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px), print {
  .c-header__top > span .mega_inner a p::before, .c-header__bottom > span .mega_inner a p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    background: url(../images_add/wa-icon.png) no-repeat center center/contain;
  }
}
@media screen and (min-width: 768px), print {
  .c-header__top > span .mega_inner a:hover img, .c-header__bottom > span .mega_inner a:hover img {
    transform: scale(1.1);
  }
}
.c-header__bottom {
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px), print {
  .c-header__bottom {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px), print {
  .c-header__top > div {
    margin-right: 2rem;
  }
}
@media screen and (max-width: 767px), print {
  .c-header__top {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
  }
  .c-header__top > div {
    order: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #C3AD84;
  }
  .c-header__top > div a {
    margin-top: 0 !important;
    font-size: 1.6rem;
    color: #C3AD84 !important;
  }
  .c-header__top > div a:nth-of-type(n + 2) {
    margin-left: 2rem !important;
  }
}
.c-header__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.5rem;
  padding: 0 1.6rem;
  background: #C3AD84;
  color: #fff;
  border-radius: 9999px;
  white-space: nowrap;
  text-shadow: none !important;
}
@media screen and (max-width: 767px), print {
  .c-header__contact {
    order: 1 !important;
    margin-top: 0 !important;
    width: 100%;
    display: flex !important;
    justify-content: flex-start !important;
    padding-left: 2.5rem;
    height: 5rem;
  }
}
.c-header__contact svg {
  width: 2rem;
  margin-right: 0.5rem;
}
@media screen and (max-width: 767px), print {
  .c-header__contact svg {
    margin-right: 1rem;
  }
}
@media screen and (max-width: 767px), print {
  .c-header__drawer {
    position: fixed;
    z-index: 2;
    right: 0;
    top: 0;
    width: 8rem;
    height: 8rem;
    background: #4A5264;
    border-radius: 0 0 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0.6rem;
  }
  .c-header__drawer-inner div {
    position: relative;
    height: 2rem;
    width: 3.4rem;
  }
  .c-header__drawer-inner div span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 1px;
    width: 100%;
    background: #C3AD84;
    transition: 0.3s;
  }
  .c-header__drawer-inner div span:nth-of-type(1) {
    top: 0;
  }
  .c-header__drawer-inner div span:nth-of-type(3) {
    top: 100%;
  }
  .is-drawer .c-header__drawer-inner div span:nth-of-type(1), .is-drawer .c-header__drawer-inner div span:nth-of-type(3) {
    top: 50%;
  }
  .is-drawer .c-header__drawer-inner div span:nth-of-type(1) {
    transform: rotate(30deg);
  }
  .is-drawer .c-header__drawer-inner div span:nth-of-type(2) {
    opacity: 0;
  }
  .is-drawer .c-header__drawer-inner div span:nth-of-type(3) {
    transform: rotate(-30deg);
  }
  .c-header__drawer-inner b {
    display: block;
    text-align: center;
    margin-top: 0.5rem;
    font-family: "Outfit", sans-serif;
    color: #C3AD84;
    font-size: 1.2rem;
  }
}

.c-footer {
  position: relative;
  z-index: 1;
  background: #4A5264;
  padding-top: 10rem;
  border-radius: 10rem 10rem 0 0;
  margin-top: 5rem;
}
@media screen and (max-width: 767px), print {
  .c-footer {
    border-radius: 5rem 5rem 0 0;
    margin-top: 2rem;
    padding-top: 5.5rem;
  }
}
.c-footer__inner {
  padding-bottom: 8rem;
}
@media screen and (max-width: 767px), print {
  .c-footer__inner {
    padding-bottom: 4rem !important;
  }
}
.c-footer-support {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px), print {
  .c-footer-support {
    display: block;
    padding: 0 1rem;
  }
}
.c-footer-support__ttl * {
  color: #fff;
}
.c-footer-support__right {
  width: 78rem;
}
@media screen and (max-width: 767px), print {
  .c-footer-support__right {
    width: 100%;
    margin-top: 3.6rem;
  }
}
.c-footer-support__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px), print {
  .c-footer-support__btn {
    display: block;
  }
}
.c-footer-support__btn a {
  position: relative;
  border-radius: 9999px;
  width: 37.4rem;
  background: #fff;
  height: 12rem;
  display: flex;
  align-items: center;
  padding-left: 4.6rem;
  border: 2px solid #fff;
  transition: 0.5s;
}
@media screen and (min-width: 768px), print {
  .c-footer-support__btn a:hover {
    background: #4A5264;
    color: #fff;
  }
  .c-footer-support__btn a:hover circle {
    fill: #fff !important;
  }
  .c-footer-support__btn a:hover path, .c-footer-support__btn a:hover line {
    stroke: #4a5264 !important;
  }
}
@media screen and (max-width: 767px), print {
  .c-footer-support__btn a {
    width: 100%;
    height: 8.8rem;
    padding-left: 3.4rem;
  }
  .c-footer-support__btn a:nth-of-type(n + 2) {
    margin-top: 1.4rem;
  }
}
.c-footer-support__btn a div b {
  font-size: 2.2rem;
  display: block;
}
.c-footer-support__btn a div small {
  font-size: 1.6rem;
  display: block;
}
@media screen and (max-width: 767px), print {
  .c-footer-support__btn a div small {
    font-size: 1.4rem;
  }
}
.c-footer-support__btn a svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
  width: 3.5rem;
}
@media screen and (max-width: 767px), print {
  .c-footer-support__btn a svg {
    right: 3.3rem;
  }
}
.c-footer-support__btn a svg * {
  transition: 0.5s;
}
.c-footer-support__tel {
  position: relative;
  display: flex;
  align-items: center;
  color: #C3AD84;
  font-family: "Outfit", sans-serif;
  margin-top: 3rem;
}
@media screen and (max-width: 767px), print {
  .c-footer-support__tel {
    display: block;
    justify-content: center;
  }
}
.c-footer-support__tel span {
  display: flex;
  align-items: center;
  font-size: 5rem;
  font-weight: bold;
}
@media screen and (max-width: 767px), print {
  .c-footer-support__tel span {
    font-size: 3.7rem;
    justify-content: center;
    letter-spacing: 0.1em;
  }
}
.c-footer-support__tel span::before {
  content: "";
  width: 4.4rem;
  height: 4.4rem;
  background: #000;
  background: url(../images_add/tel_icon.png) no-repeat center center/contain;
  margin-right: 0.8rem;
}
@media screen and (max-width: 767px), print {
  .c-footer-support__tel span::before {
    width: 3.3rem;
  }
}
.c-footer-support__tel small {
  font-size: 1.8rem;
  margin-left: 2rem;
}
@media screen and (max-width: 767px), print {
  .c-footer-support__tel small {
    font-size: 1.6rem;
    margin-left: 0;
  }
}
.c-footer-support__map {
  width: 100%;
  height: 40rem;
  border-radius: 1rem;
  overflow: hidden;
  margin-top: 6rem;
}
@media screen and (max-width: 767px), print {
  .c-footer-support__map {
    height: 22rem;
  }
}
.c-footer-btm {
  display: flex;
  justify-content: space-between;
  margin-top: 5.4rem;
}
@media screen and (max-width: 767px), print {
  .c-footer-btm {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 767px), print {
  .c-footer-btm__left {
    margin-top: 4rem;
  }
}
.c-footer-btm__left figure {
  width: 15.8rem;
  margin-left: auto;
  margin-right: auto;
}
.c-footer-btm__left a {
  margin-top: 2rem;
  display: block;
  width: 20rem;
  transition: 0.5s;
}
@media screen and (min-width: 768px), print {
  .c-footer-btm__left a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px), print {
  .c-footer-btm__left a {
    margin-left: auto;
    margin-right: auto;
  }
}
.c-footer-btm__left a img {
  width: 100%;
}
.c-footer-btm__right {
  width: 78rem;
}
@media screen and (max-width: 767px), print {
  .c-footer-btm__right {
    width: 100%;
    padding: 0 1rem;
  }
}
.c-footer-btm__right dl {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.c-footer-btm__right dl * {
  color: #fff;
  font-size: 1.7rem;
}
@media screen and (max-width: 767px), print {
  .c-footer-btm__right dl * {
    font-size: 1.5rem;
  }
}
.c-footer-btm__right dl dt:nth-of-type(n + 2), .c-footer-btm__right dl dd:nth-of-type(n + 2) {
  margin-top: 2.2rem;
}
@media screen and (max-width: 767px), print {
  .c-footer-btm__right dl dt:nth-of-type(n + 2), .c-footer-btm__right dl dd:nth-of-type(n + 2) {
    margin-top: 1.5rem;
  }
}
.c-footer-btm__right dl dt {
  width: 12rem;
  background: #66728D;
  text-align: center;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px), print {
  .c-footer-btm__right dl dt {
    width: 11rem;
  }
}
.c-footer-btm__right dl dd {
  width: calc(100% - 12rem);
  padding-left: 1.6rem;
}
@media screen and (max-width: 767px), print {
  .c-footer-btm__right dl dd {
    width: calc(100% - 11rem);
    padding-left: 0.8rem;
  }
}
.c-footer-btm__right dl dd.map-text {
  display: flex;
  gap: 1rem;
}
.c-footer-btm__right dl dd.wAll {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 1rem);
  margin: 0 -0.5rem;
  margin-top: 2.2rem;
  padding-left: 0;
}
@media screen and (max-width: 767px), print {
  .c-footer-btm__right dl dd.wAll {
    display: block;
  }
}
.c-footer-btm__right dl dd.wAll a {
  position: relative;
  background: #FFFFFF;
  width: calc(33.3333333333% - 1rem);
  border-radius: 0.5rem;
  padding: 1rem 3rem 1rem 1rem;
  margin: 0 0.5rem;
  color: #66728D;
  font-size: 1.4rem;
  border: 1px solid #fff;
  transition: 0.5s;
}
@media screen and (max-width: 767px), print {
  .c-footer-btm__right dl dd.wAll a {
    width: 100%;
    display: block;
  }
}
.c-footer-btm__right dl dd.wAll a:nth-of-type(n + 4) {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px), print {
  .c-footer-btm__right dl dd.wAll a:nth-of-type(n + 2) {
    margin-top: 1rem;
  }
}
.c-footer-btm__right dl dd.wAll a::before {
  content: "";
  position: absolute;
  height: 0.95rem;
  width: 0.575rem;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images_add/arrow_right.png) no-repeat center center/contain;
}
@media screen and (min-width: 768px), print {
  .c-footer-btm__right dl dd.wAll a:hover {
    transform: scale(1.03);
  }
}
.c-footer-btm__right dl dd.fTel {
  font-size: 2.4rem;
  line-height: 1;
  font-family: "Outfit", sans-serif;
}
.c-footer-btm__right dl dd.fTel a {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px), print {
  .c-footer-btm__right dl dd.fTel a {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px), print {
  .c-footer-btm__right dl dd.fTel {
    position: relative;
    top: 0.5rem;
    font-size: 1.5rem;
  }
}
.c-footer-btm__right dl dd .map-p svg * {
  fill: #fff;
}
.c-footer-btm__right dl dd .map-p svg #s-f {
  stroke: #fff !important;
}
.c-footer-btm__list {
  margin-top: 4rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px), print {
  .c-footer-btm__list {
    display: flex;
    flex-wrap: wrap;
  }
}
.c-footer-btm__list a, .c-footer-btm__list span {
  display: inline-block;
  color: #fff;
  transition: 0.5s;
}
@media screen and (min-width: 768px), print {
  .c-footer-btm__list a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px), print {
  .c-footer-btm__p {
    width: 15rem;
  }
  .c-footer-btm__p:nth-of-type(n + 3) {
    margin-top: 2.3rem;
  }
}
.c-footer-btm__p > a, .c-footer-btm__p span {
  font-size: 1.7rem;
}
.c-footer-btm__p > a:nth-of-type(n + 2), .c-footer-btm__p span:nth-of-type(n + 2) {
  margin-top: 1rem;
}
@media screen and (max-width: 767px), print {
  .c-footer-btm__p > a, .c-footer-btm__p span {
    white-space: nowrap;
  }
}
.c-footer-btm__c {
  margin-top: 1.5rem;
  border-left: 1px solid #BABCCE;
  padding-left: 1rem;
}
.c-footer-btm__c a {
  font-size: 1.5rem;
  color: #BABCCE;
}
.c-footer-btm__c a:nth-of-type(n + 2) {
  margin-top: 0.7rem;
}
.c-footer-cr {
  background: #F5EEE8;
}
.c-footer-cr__inner {
  padding: 1.8rem 0 !important;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px), print {
  .c-footer-cr__inner {
    flex-direction: column-reverse;
  }
}
.c-footer-cr__inner p {
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px), print {
  .c-footer-cr__inner p {
    text-align: center;
    margin-top: 1.2rem;
  }
}
@media screen and (max-width: 767px), print {
  .c-footer-cr__inner div {
    display: flex;
    justify-content: center;
  }
  .c-footer-cr__inner div a:nth-of-type(n + 2) {
    margin-left: 2.3rem;
  }
}
@media screen and (min-width: 768px), print {
  .c-footer-cr__inner div a {
    font-size: 1.4rem;
    transition: 0.5s;
  }
  .c-footer-cr__inner div a:hover {
    opacity: 0.7;
  }
  .c-footer-cr__inner div a:nth-of-type(n + 2) {
    margin-left: 2.3rem;
  }
}

.p-strength .s-feature {
  margin-top: 10rem;
}
@media screen and (max-width: 767px), print {
  .p-strength .s-feature {
    margin-top: 5rem;
  }
}
.p-strength .s-feature-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 5.1rem;
}
.p-strength .s-feature-el {
  width: 50rem;
  counter-increment: li;
}
@media screen and (min-width: 768px), print {
  .p-strength .s-feature-el:nth-of-type(n + 3) {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 767px), print {
  .p-strength .s-feature-el:nth-of-type(n + 2) {
    margin-top: 5rem;
  }
}
.p-strength .s-feature-el__figure {
  display: flex;
  align-items: center;
}
.p-strength .s-feature-el__figure > div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 9999px;
  width: 7.8rem;
  height: 7.8rem;
}
.p-strength .s-feature-el__figure > div::after {
  content: counter(li);
  position: absolute;
  height: 3.4rem;
  width: 3.4rem;
  background: #C3AD84;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  left: -1rem;
  top: -1rem;
}
.p-strength .s-feature-el__figure > div img {
  width: 3.2rem;
}
.p-strength .s-feature-el__figure > figcaption {
  padding-left: 2rem;
  font-size: 2.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px), print {
  .p-strength .s-feature-el__figure > figcaption {
    font-size: 2rem;
  }
}
.p-strength .s-feature-el__figure > figcaption span {
  color: #B98F3F;
}
.p-strength .s-feature-el__txt {
  font-size: 1.7rem;
  margin-top: 2.2rem;
}
.p-strength .s-feature-el__link {
  margin-top: 1.7rem;
}
.p-strength .s-connection {
  margin-top: 7rem;
}
.p-strength .s-connection__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.5rem;
  padding-left: 0;
}
.p-strength .s-connection__list a {
  position: relative;
  background: #FFFFFF;
  width: calc(25% - 1rem);
  border-radius: 0.5rem;
  padding: 1rem 3rem 1rem 1rem;
  margin: 0 0.5rem;
  color: #66728D;
  font-size: 1.4rem;
  border: 1px solid #fff;
  transition: 0.5s;
}
@media screen and (max-width: 767px), print {
  .p-strength .s-connection__list a {
    width: 100%;
  }
}
.p-strength .s-connection__list a:hover {
  transform: scale(1.03);
}
@media screen and (min-width: 768px), print {
  .p-strength .s-connection__list a:nth-of-type(n + 5) {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 767px), print {
  .p-strength .s-connection__list a:nth-of-type(n + 2) {
    margin-top: 1rem;
  }
}
.p-strength .s-connection__list a::before {
  content: "";
  position: absolute;
  height: 0.95rem;
  width: 0.575rem;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images_add/arrow_right.png) no-repeat center center/contain;
}

.p-doctor img {
  max-width: 100%;
}
.p-doctor .s-intro {
  padding-left: 3rem;
  margin-top: 8rem;
}
@media screen and (max-width: 767px), print {
  .p-doctor .s-intro {
    display: block;
    padding-left: 0;
    margin-top: 5rem;
  }
}
@media screen and (min-width: 768px), print {
  .p-doctor .s-intro__left {
    width: 76rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8rem;
    margin-left: auto;
    margin-right: auto;
  }
  .p-doctor .s-intro__left * {
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px), print {
  .p-doctor .s-intro__left {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
  }
}
.p-doctor .s-intro__right {
  width: 76rem;
}
@media screen and (min-width: 768px), print {
  .p-doctor .s-intro__right {
    margin-left: auto;
    margin-right: auto;
    margin-top: 5rem;
  }
}
@media screen and (max-width: 767px), print {
  .p-doctor .s-intro__right {
    width: 100%;
    padding-left: 0;
  }
}
.p-doctor .s-intro__right dl {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media screen and (max-width: 767px), print {
  .p-doctor .s-intro__right dl {
    flex-direction: column;
  }
}
.p-doctor .s-intro__right dl dt {
  position: relative;
  width: 12rem;
}
@media screen and (max-width: 767px), print {
  .p-doctor .s-intro__right dl dt {
    width: 100%;
    padding-bottom: 0.5rem;
    font-weight: bold;
  }
}
.p-doctor .s-intro__right dl dt::after {
  content: "";
  position: absolute;
  height: 1.5rem;
  width: 2px;
  background: #C3AD84;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px), print {
  .p-doctor .s-intro__right dl dt::after {
    width: 100%;
    height: 2px;
    top: inherit;
    transform: inherit;
    bottom: 0;
  }
}
.p-doctor .s-intro__right dl dd {
  width: calc(100% - 12rem);
  padding-left: 3rem;
}
@media screen and (max-width: 767px), print {
  .p-doctor .s-intro__right dl dd {
    width: 100%;
    padding-left: 0;
    margin-top: 1rem !important;
  }
}
.p-doctor .s-intro__right dl dt, .p-doctor .s-intro__right dl dd {
  font-size: 1.7rem;
}
.p-doctor .s-intro__right dl dt:nth-of-type(n + 2), .p-doctor .s-intro__right dl dd:nth-of-type(n + 2) {
  margin-top: 2.4rem;
}
.p-doctor .s-intro__right > div {
  position: relative;
  height: 50rem;
  overflow: hidden;
  padding-bottom: 5rem;
  box-sizing: content-box;
}
.p-doctor .s-intro__img {
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 767px), print {
  .p-doctor .s-intro__img {
    height: 29rem;
  }
}
.p-doctor .s-intro__more {
  position: absolute;
  z-index: 2;
  bottom: 0;
  width: 100%;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 15rem;
  background: linear-gradient(to bottom, rgba(245, 238, 232, 0), rgb(245, 238, 232));
}
.p-doctor .s-intro__more p {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border-bottom: 1px solid #4A5264;
  cursor: pointer;
}
.p-doctor .s-intro__more p span {
  position: relative;
  width: 2rem;
  height: 2rem;
  background: #4A5264;
  margin-left: 1rem;
  border-radius: 9999px;
}
.p-doctor .s-intro__more p span::after, .p-doctor .s-intro__more p span::before {
  content: "";
  height: 50%;
  width: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  transition: 0.3s;
}
.p-doctor .s-intro__more p span::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.p-doctor .s-intro__more.is-active {
  background: none;
}
.p-doctor .s-intro__more.is-active p span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.p-doctor .s-intro__ttl {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
@media screen and (min-width: 768px), print {
  .p-doctor .s-intro__ttl {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px), print {
  .p-doctor .s-intro__ttl {
    margin-top: 2rem;
    align-items: center;
  }
}
.p-doctor .s-intro__ttl small, .p-doctor .s-intro__ttl strong, .p-doctor .s-intro__ttl span {
  display: block;
}
.p-doctor .s-intro__ttl small {
  font-size: 1.7rem;
  width: 100%;
  margin-bottom: 2rem;
}
.p-doctor .s-intro__ttl strong {
  font-size: 3.2rem;
}
.p-doctor .s-intro__ttl strong em {
  font-style: inherit;
}
.p-doctor .s-intro__ttl strong em[data-ruby] {
  position: relative;
}
.p-doctor .s-intro__ttl strong em[data-ruby]::before {
  content: attr(data-ruby);
  position: absolute;
  top: -1.2em;
  right: 0;
  margin: auto;
  font-size: 0.5em;
  width: 100%;
  text-align: center;
  font-weight: lighter;
}
.p-doctor .s-intro__ttl span {
  font-size: 1.4rem;
  font-family: "Outfit", sans-serif;
  color: #C3AD84;
  letter-spacing: 0.1em;
  padding: 0 0 0.5rem 1.5rem;
}
.p-doctor .s-intro__img img {
  width: 100%;
}
.p-doctor .s-thought {
  margin-top: 14.7rem;
}
@media screen and (max-width: 767px), print {
  .p-doctor .s-thought {
    margin-top: 6rem;
  }
}
.p-doctor .s-thought__img {
  border-radius: 1rem;
  overflow: hidden;
}
.p-doctor .s-thought__box {
  margin-top: 6rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px), print {
  .p-doctor .s-thought__box {
    margin-top: 3rem;
    display: block;
  }
}
.p-doctor .s-thought__box p {
  width: 62.8rem;
  padding-top: 0.5rem;
  font-size: 1.7rem;
}
@media screen and (max-width: 767px), print {
  .p-doctor .s-thought__box p {
    width: 100%;
    padding-top: 0;
  }
}
.p-doctor .s-about {
  margin-top: 10rem;
}
@media screen and (max-width: 767px), print {
  .p-doctor .s-about {
    margin-top: 8rem;
  }
}
.p-doctor .s-about__ttl {
  margin-bottom: 3rem;
}
.p-doctor .s-about__side {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px), print {
  .p-doctor .s-about__side {
    display: block;
  }
  .p-doctor .s-about__side:nth-of-type(n + 2) {
    margin-top: 7rem;
  }
}
@media screen and (min-width: 768px), print {
  .p-doctor .s-about__side:nth-of-type(odd) {
    margin-right: -8rem;
    flex-direction: row-reverse;
  }
  .p-doctor .s-about__side:nth-of-type(even) {
    margin-left: -8rem;
    flex-direction: row;
  }
  .p-doctor .s-about__side:nth-of-type(n + 2) {
    margin-top: 6rem;
  }
}
.p-doctor .s-about__side figure {
  border-radius: 1rem;
  overflow: hidden;
  width: 62rem;
  height: 39rem;
}
@media screen and (max-width: 767px), print {
  .p-doctor .s-about__side figure {
    width: 100%;
    height: 22rem;
  }
}
.p-doctor .s-about__side figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-doctor .s-about__side p {
  width: 48rem;
  font-size: 1.7rem;
}
@media screen and (max-width: 767px), print {
  .p-doctor .s-about__side p {
    width: 100%;
    margin-top: 3rem;
  }
}
.p-doctor .iframe-Box {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .p-doctor .iframe-Box {
    flex-direction: column;
    gap: 1rem;
  }
}
.p-doctor .iframe-Box figure {
  flex: 1;
  width: auto !important;
  height: auto !important;
}

.p-about .s-about {
  margin-top: 10rem;
}
@media screen and (max-width: 767px), print {
  .p-about .s-about {
    margin-top: 5rem;
  }
}
.p-about .s-about__ttl {
  margin-bottom: 3rem;
}
.p-about .s-about__side {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px), print {
  .p-about .s-about__side {
    display: block;
  }
  .p-about .s-about__side:nth-of-type(n + 2) {
    margin-top: 7rem;
  }
}
@media screen and (min-width: 768px), print {
  .p-about .s-about__side:nth-of-type(odd) {
    margin-right: -8rem;
    flex-direction: row-reverse;
  }
  .p-about .s-about__side:nth-of-type(even) {
    margin-left: -8rem;
    flex-direction: row;
  }
  .p-about .s-about__side:nth-of-type(n + 2) {
    margin-top: 6rem;
  }
}
.p-about .s-about__side figure {
  border-radius: 1rem;
  overflow: hidden;
  width: 62rem;
  height: 39rem;
}
@media screen and (max-width: 767px), print {
  .p-about .s-about__side figure {
    width: 100%;
    height: 22rem;
  }
}
.p-about .s-about__side figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-about .s-about__side p {
  width: 48rem;
  font-size: 1.7rem;
}
@media screen and (max-width: 767px), print {
  .p-about .s-about__side p {
    width: 100%;
    margin-top: 3rem;
  }
}
.p-about .s-about__side p span {
  font-size: 1.7rem;
  font-weight: 500;
  color: #B98F3F;
}
.p-about .s-memory {
  margin-top: 10rem;
}
.p-about .s-memory p {
  margin-top: 3rem;
  font-size: 1.7rem;
}
.p-about .s-memory figure {
  width: 110rem;
  margin-top: 4rem;
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 767px), print {
  .p-about .s-memory figure {
    width: 100%;
  }
}
.p-about .s-memory figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-about .s-logo {
  margin-top: 10rem;
}
.p-about .s-logo div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4rem;
}
@media screen and (max-width: 767px), print {
  .p-about .s-logo div {
    flex-direction: column-reverse;
  }
}
.p-about .s-logo div p {
  font-size: 1.7rem;
  width: calc(100% - 50rem);
  padding-right: 6rem;
}
@media screen and (max-width: 767px), print {
  .p-about .s-logo div p {
    margin-top: 3rem;
    width: 100%;
    padding-right: 0;
  }
}
.p-about .s-logo div figure {
  width: 50rem;
}
@media screen and (max-width: 767px), print {
  .p-about .s-logo div figure {
    width: 100%;
  }
}
.p-about .s-logo div figure img {
  width: 100%;
}

.p-dentist {
  line-height: 2;
}
.p-dentist .s-top {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
@media screen and (max-width: 767px), print {
  .p-dentist .s-top {
    display: block;
  }
}
.p-dentist .s-top__img {
  width: 100%;
}
@media screen and (max-width: 767px), print {
  .p-dentist .s-top__img {
    width: 100%;
  }
}
.p-dentist .s-top__desc {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-top: 1rem;
}
@media screen and (max-width: 767px), print {
  .p-dentist .s-top__desc {
    font-size: 1.4rem;
  }
}
.p-dentist .s-top__left {
  width: 100%;
  font-size: 1.7rem;
  margin-top: 5rem;
}
@media screen and (max-width: 767px), print {
  .p-dentist .s-top__left {
    padding-left: 0;
    width: 100%;
    margin-top: 3rem;
  }
}
.p-dentist .s-top__left .c-link02 {
  margin-top: 2rem;
}
.p-dentist .s-top__left .c-link02 button {
  height: 5rem;
}
.p-dentist .s-about {
  margin-top: 6rem;
  margin-bottom: 4rem;
}
.p-dentist .s-about__ttl {
  line-height: 1.7;
}
@media screen and (max-width: 767px), print {
  .p-dentist .s-about__ttl::before {
    top: 1.6rem;
  }
}
.p-dentist .s-about__box:nth-of-type(n + 2) {
  margin-top: -1px;
}
.p-dentist .s-about__subTtl {
  padding: 1.5rem 6rem 1.5rem 2rem;
}
@media screen and (max-width: 767px), print {
  .p-dentist .s-about__subTtl {
    padding: 1rem 4.8rem 1rem 2rem;
  }
}
.p-dentist .s-about__subTtl {
  font-size: 1.7rem;
  border-bottom: 1px solid #707070;
  margin-bottom: 0;
  position: relative;
  transition: 0.3s;
  cursor: pointer;
}
.p-dentist .s-about__subTtl::after {
  content: "";
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  height: 1rem;
  width: 1rem;
  border-bottom: 2px solid #B98F3F;
  border-right: 2px solid #B98F3F;
}
.p-dentist .s-about__subTtl.is-active::after {
  transform: translateY(-50%) translateY(25%) rotate(-135deg);
}
.p-dentist .s-about__subTtl:hover {
  opacity: 0.7;
}
.p-dentist .s-about__subTtl span {
  display: inline-block;
  position: relative;
  padding-left: 2.5rem;
}
.p-dentist .s-about__subTtl span::before {
  content: "";
  height: 1.2rem;
  width: 1.2rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images_add/wa-icon.png) no-repeat center center/contain;
}
.p-dentist .s-about-inner {
  background: #fff;
  padding: 4rem 3.3rem;
  margin-top: -1px;
}
@media screen and (max-width: 767px), print {
  .p-dentist .s-about-inner {
    padding: 2rem;
  }
}
.p-dentist .s-about-inner > p {
  font-size: 1.7rem;
}
.p-dentist .s-about-inner > p:nth-of-type(n + 2) {
  margin-top: 1.5rem;
}
.p-dentist .s-about-inner > div {
  background: #FAFAFA;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  padding: 4rem 3rem 4rem 7rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px), print {
  .p-dentist .s-about-inner > div {
    padding: 2rem;
    display: block;
  }
}
.p-dentist .s-about-inner > div > figure {
  width: 23.3rem;
  padding-right: 3rem;
}
@media screen and (max-width: 767px), print {
  .p-dentist .s-about-inner > div > figure {
    padding-right: 0;
    width: 15.3rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-dentist .s-about-inner > div > div {
  width: calc(100% - 23.3rem);
  padding-left: 4rem;
}
@media screen and (max-width: 767px), print {
  .p-dentist .s-about-inner > div > div {
    width: 100%;
    padding-left: 0;
    margin-top: 1.5rem;
  }
}
.p-dentist .s-about-inner > div > div > div:nth-of-type(n + 2) {
  margin-top: 1.5rem;
}
.p-dentist .s-about-inner > div > div > div h3 {
  margin-bottom: 0;
  line-height: 1.5;
  color: #B98F3F;
}
.p-dentist .s-about-inner > div > div > div p {
  padding-left: 4rem;
}
@media screen and (max-width: 767px), print {
  .p-dentist .s-about-inner > div > div > div p {
    padding-left: 0;
  }
}
.p-dentist .s-about-inner > ul {
  background: #FAFAFA;
  padding: 2.3rem 3.3rem;
  margin-top: 2.5rem;
  color: #B98F3F;
  line-height: 2.4;
}
@media screen and (max-width: 767px), print {
  .p-dentist .s-about-inner > ul {
    padding: 2rem;
  }
  .p-dentist .s-about-inner > ul li {
    padding-left: 1em;
    text-indent: -1em;
  }
}
.p-dentist .s-about-inner__img {
  width: 60rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
}
@media screen and (max-width: 767px), print {
  .p-dentist .s-about-inner__img {
    width: 100%;
  }
}
.p-dentist .s-about__list {
  width: 110rem;
  margin-top: 10rem;
}
@media screen and (max-width: 767px), print {
  .p-dentist .s-about__list {
    width: 100%;
  }
}
.p-dentist .s-about__list > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px), print {
  .p-dentist .s-about__list > div {
    display: block;
  }
  .p-dentist .s-about__list > div:nth-of-type(n + 2) {
    margin-top: 5rem;
  }
}
@media screen and (min-width: 768px), print {
  .p-dentist .s-about__list > div:nth-of-type(odd) {
    flex-direction: row-reverse;
  }
  .p-dentist .s-about__list > div:nth-of-type(even) {
    flex-direction: row;
    margin-top: 5rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 767px), print {
  .p-dentist .s-about__list > div:nth-of-type(even) {
    margin-top: 0;
  }
}
.p-dentist .s-about__list > div figure {
  width: 45rem;
}
@media screen and (max-width: 767px), print {
  .p-dentist .s-about__list > div figure {
    width: 100%;
  }
}
.p-dentist .s-about__list > div figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-dentist .s-about__list > div .text {
  width: calc(100% - 45rem - 5rem);
  font-size: 1.7rem;
}
@media screen and (max-width: 767px), print {
  .p-dentist .s-about__list > div .text {
    width: 100%;
    margin-top: 3rem;
  }
}

.c-more-dentist__ttl {
  text-align: center;
  color: #B98F3F;
  font-size: 3rem;
  font-weight: 500;
}
.c-more-dentist__list01 p {
  position: relative;
  padding-left: 1em;
}
.c-more-dentist__list01 p::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  background: #C3AD84;
  position: absolute;
  left: 0;
  top: 1.1rem;
  border-radius: 9999px;
}
.c-more-dentist__list01 p:nth-of-type(n + 2) {
  margin-top: 1rem;
}
.c-more-dentist figure {
  padding: 0 !important;
}
.c-more-dentist .s_num {
  position: relative;
}
.c-more-dentist .s_num::after {
  display: inline-block;
  transform: translateY(-0.4rem) scale(0.6);
  content: attr(data-num);
  font-size: 1.7rem;
}
.c-more-dentist__quote {
  padding-top: 3rem;
  border-top: 1px solid #707070;
  margin-top: 5rem;
  font-size: 1.3rem;
}
.c-more-dentist__quote span {
  position: relative;
  display: inline-block;
  padding-left: 0.8em;
}
.c-more-dentist__quote span:nth-of-type(n + 2) {
  margin-top: 0.5rem;
}
.c-more-dentist__quote span::before {
  content: attr(data-num);
  display: inline-block;
  transform: translateY(-0.1rem) scale(0.6);
  font-size: 1.7rem;
  margin-right: 0.5rem;
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (max-width: 767px), print {
  .p-sp-single {
    margin-top: -7rem;
  }
}
.p-sp-single .s-inner {
  background: #FFFFFF;
  padding: 6.8rem 9.2rem;
  border-radius: 1rem;
}
@media screen and (max-width: 767px), print {
  .p-sp-single .s-inner {
    padding: 3rem 2rem;
  }
}
.p-sp-single .s-ttl p {
  display: flex;
  align-items: center;
}
.p-sp-single .s-ttl p a {
  min-width: 10rem;
  height: 2.9rem;
  background: #66728D;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 0 1rem;
  font-size: 1.7rem;
  transition: 0.5s;
}
.p-sp-single .s-ttl p a:hover {
  opacity: 0.7;
}
.p-sp-single .s-ttl p span {
  font-family: "Outfit", sans-serif;
  margin-left: 1.5rem;
  font-weight: 500;
  color: #C3AD84;
  font-size: 1.4rem;
}
.p-sp-single .s-ttl h1 {
  font-size: 3.2rem;
  margin-top: 1rem;
  margin-bottom: 4.2rem;
}
@media screen and (max-width: 767px), print {
  .p-sp-single .s-ttl h1 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
}
.p-sp-single .s-thumb {
  margin-bottom: 4.7rem;
}
@media screen and (max-width: 767px), print {
  .p-sp-single .s-thumb {
    margin-bottom: 3rem;
  }
}
.p-sp-single .s-thumb img {
  width: 100%;
  max-width: inherit;
  height: auto;
}
.p-sp-single .s-contents {
  font-size: 2rem;
  line-height: 1.9;
}
.p-sp-single .s-contents * {
  max-width: 100%;
}
@media (--mobile) {
  .p-sp-single .s-contents {
    font-size: 1.8rem;
  }
}
.p-sp-single .s-contents #toc_container {
  margin-bottom: 5.7rem;
  background: none;
}
.p-sp-single .s-contents #toc_container .toc_list li {
  margin-top: 1rem;
}
.p-sp-single .s-contents #toc_container .toc_list li::before {
  display: none;
}
.p-sp-single .s-contents img {
  margin-bottom: 1.6em;
}
.p-sp-single .s-contents h2 {
  position: relative;
  font-size: 1.4em;
  padding-left: 0.8em;
}
@media screen and (max-width: 767px), print {
  .p-sp-single .s-contents h2 {
    font-size: 1.2em;
  }
}
.p-sp-single .s-contents h2::after {
  content: "";
  height: 0.5em;
  width: 0.5em;
  position: absolute;
  left: 0;
  top: 0.7em;
  background: url(../images_add/wa-icon.png) no-repeat center center/contain;
}
.p-sp-single .s-contents h3 {
  position: relative;
  padding-left: 0.5em;
  padding-right: 0.5em;
  margin-bottom: 1em;
  font-size: 1.125em;
  font-weight: 700;
  border-bottom: 1px solid #C3AD84;
  padding-bottom: 0.3em;
}
@media screen and (max-width: 767px), print {
  .p-sp-single .s-contents h3 {
    font-size: 1.1em;
  }
}
.p-sp-single .s-contents p + p {
  margin-top: 1.75em;
}
.p-sp-single .s-contents a {
  text-decoration: underline;
  transition: opacity 0.3s;
}
.p-sp-single .s-contents a:hover,
.p-sp-single .s-contents a:active {
  opacity: 0.7;
}
.p-sp-single .s-contents ul li {
  position: relative;
  padding-left: 1.05em;
  font-size: 0.85em;
  line-height: 1.5;
}
.p-sp-single .s-contents ul li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}
.p-sp-single .s-contents ul li + li {
  margin-top: 0.5em;
}
.p-sp-single .s-contents ol {
  counter-reset: number 0;
}
.p-sp-single .s-contents ol li + li {
  margin-top: 0.5em;
}
.p-sp-single .s-contents ol li {
  position: relative;
  padding-left: 1.5em;
  font-size: 0.85em;
  line-height: 1.5;
}
.p-sp-single .s-contents ol li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  font-size: 1em;
  font-weight: 700;
  line-height: 1.2;
  content: counter(number) ".";
  counter-increment: number 1;
}
.p-sp-single .s-contents ol .pp-addr {
  padding-left: 1em;
  margin-top: 0.5em;
  margin-bottom: 1.75em;
}
.p-sp-single .s-contents ol .pp-addr span {
  display: inline-block;
}
.p-sp-single .s-contents ol .pp-addr span:first-of-type {
  padding-right: 1em;
}
.p-sp-single .s-contents p {
  font-size: 0.85em;
}
.p-sp-single .s-contents h2,
.p-sp-single .s-contents h3,
.p-sp-single .s-contents h4,
.p-sp-single .s-contents h5,
.p-sp-single .s-contents h6 {
  line-height: 1.8;
}
.p-sp-single .s-contents h2 + h2,
.p-sp-single .s-contents h2 + h3,
.p-sp-single .s-contents h2 + h4,
.p-sp-single .s-contents h2 + h5,
.p-sp-single .s-contents h3 + h2,
.p-sp-single .s-contents h3 + h3,
.p-sp-single .s-contents h3 + h4,
.p-sp-single .s-contents h3 + h5,
.p-sp-single .s-contents h4 + h2,
.p-sp-single .s-contents h4 + h3,
.p-sp-single .s-contents h4 + h4,
.p-sp-single .s-contents h4 + h5,
.p-sp-single .s-contents h5 + h2,
.p-sp-single .s-contents h5 + h3,
.p-sp-single .s-contents h5 + h4,
.p-sp-single .s-contents h5 + h5 {
  margin-top: -0.85em;
}
.p-sp-single .s-contents p + p,
.p-sp-single .s-contents p + img,
.p-sp-single .s-contents p + ul,
.p-sp-single .s-contents p + ol,
.p-sp-single .s-contents img + p,
.p-sp-single .s-contents img + ul,
.p-sp-single .s-contents img + ol,
.p-sp-single .s-contents ul + ol,
.p-sp-single .s-contents ul + p,
.p-sp-single .s-contents ul + img,
.p-sp-single .s-contents ol + p,
.p-sp-single .s-contents ol + img,
.p-sp-single .s-contents ol + ul {
  margin-top: 1.75em;
}

.s-btnArea {
  display: flex;
  align-content: center;
  background: #66728D;
  height: 6.3rem;
  margin-top: 5rem;
}
@media screen and (max-width: 767px), print {
  .s-btnArea {
    height: 4rem;
  }
}
.s-btnArea div:nth-of-type(1), .s-btnArea div:nth-of-type(3) {
  width: 30%;
}
@media screen and (max-width: 767px), print {
  .s-btnArea div:nth-of-type(1), .s-btnArea div:nth-of-type(3) {
    width: 33.3333333333%;
  }
}
.s-btnArea div:nth-of-type(2) {
  width: 40%;
  position: relative;
}
@media screen and (max-width: 767px), print {
  .s-btnArea div:nth-of-type(2) {
    width: 33.3333333333%;
  }
}
.s-btnArea div:nth-of-type(2)::after, .s-btnArea div:nth-of-type(2)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: #fff;
}
.s-btnArea div:nth-of-type(2)::before {
  left: inherit;
  right: 0;
}
.s-btnArea div:nth-of-type(2) a {
  justify-content: center;
}
.s-btnArea div:nth-of-type(3) {
  text-align: right;
}
.s-btnArea div:nth-of-type(3) a {
  justify-content: flex-end;
}
.s-btnArea div a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 3.4rem;
  color: #fff;
  font-size: 1.4rem;
  transition: 0.3s;
}
@media screen and (max-width: 767px), print {
  .s-btnArea div a {
    padding: 0 1.5rem;
  }
}
.s-btnArea div a:hover {
  opacity: 0.7;
}
.s-btnArea div a span {
  padding-left: 1.6rem;
  position: relative;
}
.s-btnArea div a span::after {
  content: "";
  height: 1rem;
  width: 1rem;
  position: absolute;
  left: 0;
  top: 0.8rem;
  background: url(../images_add/wa-icon.png) no-repeat center center/contain;
}
.s-btnArea div a span em {
  font-style: inherit;
}

.p-sp-archive__catWrap {
  position: relative;
  z-index: 1;
}
.p-sp-archive__cat {
  display: flex;
  margin-top: 7.2rem;
}
@media screen and (max-width: 767px), print {
  .p-sp-archive__cat {
    overflow-x: scroll;
  }
}
.p-sp-archive__cat a {
  padding: 0 2rem;
  text-align: center;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid #66728D;
  color: #66728D;
  opacity: 0.4;
  transition: 0.5s;
  font-size: 1.8rem;
}
.p-sp-archive__cat a.active, .p-sp-archive__cat a:hover {
  opacity: 1;
}
@media screen and (max-width: 767px), print {
  .p-sp-archive__cat a {
    white-space: nowrap;
  }
}
.p-sp-archive__tag {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  width: 20rem;
}
@media screen and (max-width: 767px), print {
  .p-sp-archive__tag {
    position: static;
    transform: none;
    margin-top: 2rem;
    width: 100%;
  }
}
.p-sp-archive__tag p {
  position: relative;
  padding: 0.5rem 1rem;
  color: #66728D;
  font-size: 1.4rem;
  padding-right: 3rem;
  cursor: pointer;
}
.p-sp-archive__tag p span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
}
.p-sp-archive__tag p::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-75%) rotate(45deg);
  height: 0.7rem;
  width: 0.7rem;
  border-right: 1px solid #66728D;
  border-bottom: 1px solid #66728D;
  transition: 0.3s;
}
.p-sp-archive__tag p.is-active::after {
  content: "";
  top: 50%;
  transform: translateY(-25%) rotate(-135deg);
}
.p-sp-archive__tag ul {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  margin-bottom: 0;
  padding: 0.5rem 1rem;
  display: none;
  background: #fff;
  width: 100%;
}
.p-sp-archive__tag ul li:nth-of-type(n + 2) {
  padding-top: 0.5rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(102, 114, 141, 0.4);
}
.p-sp-archive__tag ul li a {
  color: #66728D;
  font-size: 1.4rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  width: 100%;
  transition: 0.3s;
}
.p-sp-archive__tag ul li a:hover {
  opacity: 0.7;
}
.p-sp-archive__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1.2rem;
  margin-top: 3.1rem;
}
.p-sp-archive__el {
  position: relative;
  width: calc(33.3333333333% - 2.4rem);
  margin: 0 1.2rem;
  padding-bottom: 2.5rem;
  background: #fff;
  border-radius: 0 0 1rem 1rem;
}
.p-sp-archive__el:nth-of-type(n + 4) {
  margin-top: 8rem;
}
@media screen and (max-width: 767px), print {
  .p-sp-archive__el {
    width: 100%;
    padding-bottom: 1rem;
  }
  .p-sp-archive__el:nth-of-type(n + 2) {
    margin-top: 4rem;
  }
}
.p-sp-archive__pager {
  display: flex;
  gap: 0.6rem;
  width: calc(100% - 3rem);
  margin: 0 auto;
  margin-top: auto;
}
.p-sp-archive__pager a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #C3AD84;
  border-radius: 0.5rem;
  padding: 1rem 0;
  color: #FFF;
  font-size: 1.4rem;
  transition: 0.5s;
  border: 1px solid transparent;
}
@media screen and (min-width: 768px), print {
  .p-sp-archive__pager a:hover {
    background: #FFF;
    border-color: #C3AD84;
    color: #C3AD84;
  }
}
.p-sp-archive__pager a.new {
  position: relative;
}
.p-sp-archive__pager a.new::after {
  content: "";
  position: absolute;
  top: 0;
  transform: translateY(-50%) translateY(-0.2rem);
  width: 4.6rem;
  height: 1.9rem;
  background: url(../images_add/ic-new.png) no-repeat center center/contain;
}
.p-sp-archive__wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media screen and (max-width: 767px), print {
  .p-sp-archive__wrap {
    height: auto;
  }
}
.p-sp-archive__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.p-sp-archive__link:hover + .p-sp-archive__img img {
  transform: scale(1.1);
}
.p-sp-archive__img {
  height: 22rem;
  width: 100%;
  overflow: hidden;
  border-radius: 1rem 1rem 0 0;
  flex-shrink: 0;
}
.p-sp-archive__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
.p-sp-archive__tWrap {
  padding: 2.5rem 2.5rem 2.5rem 2.5rem;
  height: calc(100% - 22rem);
}
@media screen and (max-width: 767px), print {
  .p-sp-archive__tWrap {
    padding: 2rem 2.5rem 1rem 2.5rem;
    height: 100%;
  }
}
.p-sp-archive__tWrap > div {
  position: relative;
}
.p-sp-archive__date {
  display: block;
  text-align: right;
  font-family: "Outfit", sans-serif;
  margin-left: 1.5rem;
  font-weight: 500;
  color: #C3AD84;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}
.p-sp-archive__cats {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  min-width: 10rem;
  padding: 0 1rem;
  height: 2.9rem;
  background: #66728D;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  font-size: 1.7rem;
  border: 2px solid #66728D;
  transition: 0.5s;
}
.p-sp-archive__cats:hover {
  opacity: 0.7;
}
.p-sp-archive__ttl {
  margin-bottom: 0;
  font-size: 1.6rem;
  margin-top: 1rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  min-height: 3.4em;
}
.p-sp-archive__tagBox {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-wrap: wrap;
  margin-top: 0.8rem;
}
.p-sp-archive__tagBox span {
  line-height: 1;
  margin-right: 0.5rem;
}
.p-sp-archive__tags {
  font-size: 1.4rem;
  transition: 0.3s;
}
.p-sp-archive__tags:hover {
  opacity: 0.7;
}
.p-sp-archive .wp-pagenavi {
  display: flex;
  align-items: center;
  margin: 0 -0.2rem;
  margin-top: 5rem;
}
.p-sp-archive .wp-pagenavi span, .p-sp-archive .wp-pagenavi a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  margin: 0 0.2rem;
}
.p-sp-archive .wp-pagenavi span.current, .p-sp-archive .wp-pagenavi span:hover, .p-sp-archive .wp-pagenavi a.current, .p-sp-archive .wp-pagenavi a:hover {
  background: #66728D;
  color: #fff;
}
.p-sp-archive .wp-pagenavi a {
  background: #fff;
  color: #66728D;
}

.p-omusubi .sec-ttl01 {
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px), print {
  .p-omusubi .sec-ttl01 {
    margin-top: 7rem;
  }
}
.p-omusubi .s-mv {
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
  height: 54rem;
}
@media screen and (max-width: 767px), print {
  .p-omusubi .s-mv {
    height: 18rem;
  }
}
.p-omusubi .s-about {
  margin-top: 5.5rem;
}
@media screen and (max-width: 767px), print {
  .p-omusubi .s-about {
    margin-top: 4rem;
  }
}
.p-omusubi .s-about-text {
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
.p-omusubi .s-about-list {
  margin-top: 6rem;
}
.p-omusubi .s-about-list > div:first-of-type {
  display: grid;
  grid-template-columns: 52rem 1fr;
  -moz-column-gap: 6rem;
       column-gap: 6rem;
  align-items: center;
}
@media screen and (max-width: 767px), print {
  .p-omusubi .s-about-list > div:first-of-type {
    display: flex;
    flex-direction: column;
    row-gap: 4rem;
  }
}
.p-omusubi .s-about-list > div:last-of-type {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: 1fr 52rem;
  -moz-column-gap: 6rem;
       column-gap: 6rem;
  align-items: center;
}
@media screen and (max-width: 767px), print {
  .p-omusubi .s-about-list > div:last-of-type {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 4rem;
    margin-top: 4rem;
  }
}
.p-omusubi .s-about-list > div figure {
  border-radius: 1rem;
  overflow: hidden;
}
.p-omusubi .s-about-list > div p {
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
.p-omusubi .s-overview {
  margin-top: 10rem;
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px), print {
  .p-omusubi .s-overview {
    margin-top: 6rem;
    margin-bottom: 6rem;
  }
}
.p-omusubi .s-overview-list > div {
  position: relative;
  padding-bottom: 5rem;
  box-sizing: content-box;
  height: 30rem;
  overflow: hidden;
}
@media screen and (max-width: 767px), print {
  .p-omusubi .s-overview-list > div {
    height: 45rem;
  }
}
.p-omusubi .s-overview-list > div dl > div {
  display: grid;
  grid-template-columns: 1fr 97rem;
}
@media screen and (max-width: 767px), print {
  .p-omusubi .s-overview-list > div dl > div {
    grid-template-columns: 1fr;
  }
}
.p-omusubi .s-overview-list > div dl > div dt, .p-omusubi .s-overview-list > div dl > div dd {
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
.p-omusubi .s-overview-list > div dl > div:nth-of-type(n + 2) {
  margin-top: 0.5rem;
}
.p-omusubi .s-overview__more {
  position: absolute;
  z-index: 2;
  bottom: 0;
  width: 100%;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 15rem;
  background: linear-gradient(to bottom, rgba(245, 238, 232, 0), rgb(245, 238, 232));
}
.p-omusubi .s-overview__more p {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border-bottom: 1px solid #4A5264;
  cursor: pointer;
}
.p-omusubi .s-overview__more p span {
  position: relative;
  width: 2rem;
  height: 2rem;
  background: #4A5264;
  margin-left: 1rem;
  border-radius: 9999px;
}
.p-omusubi .s-overview__more p span::after, .p-omusubi .s-overview__more p span::before {
  content: "";
  height: 50%;
  width: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  transition: 0.3s;
}
.p-omusubi .s-overview__more p span::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.p-omusubi .s-overview__more.is-active {
  background: none;
}
.p-omusubi .s-overview__more.is-active p span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.p-omusubi .s-overview__more--tel {
  color: #4A5264;
}
@media screen and (max-width: 767px), print {
  .p-omusubi .s-overview__more--tel {
    text-decoration: underline;
  }
}
.p-omusubi .s-article ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
  row-gap: 4rem;
  margin-bottom: 0;
}
@media screen and (max-width: 767px), print {
  .p-omusubi .s-article ul {
    grid-template-columns: 1fr;
    row-gap: 3rem;
  }
}
.p-omusubi .s-article ul li a {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #FFF;
}
@media screen and (min-width: 768px), print {
  .p-omusubi .s-article ul li a {
    height: 100%;
  }
}
.p-omusubi .s-article ul li a figure {
  width: 100%;
  height: 22rem;
  overflow: hidden;
}
.p-omusubi .s-article ul li a figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s all;
}
@media screen and (min-width: 768px), print {
  .p-omusubi .s-article ul li a:hover img {
    transform: scale(1.05);
  }
}
.p-omusubi .s-article-desc {
  padding: 1rem 2rem 1.5rem 2rem;
}
.p-omusubi .s-article-date {
  font-family: "Outfit", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  font-weight: 400;
  line-height: 1;
  color: #C3AD84;
}
.p-omusubi .s-article-ttl {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.4;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.p-omusubi .s-article-caption {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.p-omusubi .wp-pagenavi {
  display: flex;
  align-items: center;
  margin: 0 -0.2rem;
  margin-top: 5rem;
}
.p-omusubi .wp-pagenavi span, .p-omusubi .wp-pagenavi a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  margin: 0 0.2rem;
}
.p-omusubi .wp-pagenavi span.current, .p-omusubi .wp-pagenavi span:hover, .p-omusubi .wp-pagenavi a.current, .p-omusubi .wp-pagenavi a:hover {
  background: #66728D;
  color: #fff;
}
.p-omusubi .wp-pagenavi a {
  background: #fff;
  color: #66728D;
}

@media screen and (max-width: 767px), print {
  .p-om-single {
    margin-top: -7rem;
  }
}
.p-om-single .s-inner {
  background: #FFFFFF;
  padding: 6.8rem 9.2rem;
  border-radius: 1rem;
}
@media screen and (max-width: 767px), print {
  .p-om-single .s-inner {
    padding: 3rem 2rem;
  }
}
.p-om-single .s-ttl span {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  color: #C3AD84;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}
.p-om-single .s-ttl h1 {
  font-size: 3.2rem;
  font-weight: bold;
  margin-top: 1rem;
  margin-bottom: 4rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px), print {
  .p-om-single .s-ttl h1 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
}
.p-om-single .s-thumb {
  margin-bottom: 4.7rem;
}
@media screen and (max-width: 767px), print {
  .p-om-single .s-thumb {
    margin-bottom: 3rem;
  }
}
.p-om-single .s-thumb img {
  width: 100%;
  max-width: inherit;
  height: auto;
}
.p-om-single .s-contents {
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
.p-om-single .s-contents * {
  max-width: 100%;
}
@media (--mobile) {
  .p-om-single .s-contents {
    font-size: 1.6rem;
  }
}
.p-om-single .s-contents #toc_container {
  margin-bottom: 5.7rem;
  background: none;
}
.p-om-single .s-contents #toc_container .toc_list li {
  margin-top: 1rem;
}
.p-om-single .s-contents #toc_container .toc_list li::before {
  display: none;
}
.p-om-single .s-contents img {
  margin-bottom: 1.6em;
}
.p-om-single .s-contents h2 {
  position: relative;
  font-size: 1.4em;
  padding-left: 0.8em;
}
@media screen and (max-width: 767px), print {
  .p-om-single .s-contents h2 {
    font-size: 1.2em;
  }
}
.p-om-single .s-contents h2::after {
  content: "";
  height: 0.5em;
  width: 0.5em;
  position: absolute;
  left: 0;
  top: 0.7em;
  background: url(../images_add/wa-icon.png) no-repeat center center/contain;
}
.p-om-single .s-contents h3 {
  position: relative;
  padding-left: 0.5em;
  padding-right: 0.5em;
  margin-bottom: 1em;
  font-size: 1.125em;
  font-weight: 700;
  border-bottom: 1px solid #C3AD84;
  padding-bottom: 0.3em;
}
@media screen and (max-width: 767px), print {
  .p-om-single .s-contents h3 {
    font-size: 1.1em;
  }
}
.p-om-single .s-contents p + p {
  margin-top: 1.75em;
}
.p-om-single .s-contents a {
  text-decoration: underline;
  transition: opacity 0.3s;
}
.p-om-single .s-contents a:hover,
.p-om-single .s-contents a:active {
  opacity: 0.7;
}
.p-om-single .s-contents ul li {
  position: relative;
  padding-left: 1.05em;
  font-size: 0.85em;
  line-height: 1.5;
}
.p-om-single .s-contents ul li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}
.p-om-single .s-contents ul li + li {
  margin-top: 0.5em;
}
.p-om-single .s-contents ol {
  counter-reset: number 0;
}
.p-om-single .s-contents ol li + li {
  margin-top: 0.5em;
}
.p-om-single .s-contents ol li {
  position: relative;
  padding-left: 1.5em;
  font-size: 0.85em;
  line-height: 1.5;
}
.p-om-single .s-contents ol li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  font-size: 1em;
  font-weight: 700;
  line-height: 1.2;
  content: counter(number) ".";
  counter-increment: number 1;
}
.p-om-single .s-contents ol .pp-addr {
  padding-left: 1em;
  margin-top: 0.5em;
  margin-bottom: 1.75em;
}
.p-om-single .s-contents ol .pp-addr span {
  display: inline-block;
}
.p-om-single .s-contents ol .pp-addr span:first-of-type {
  padding-right: 1em;
}
.p-om-single .s-contents h2,
.p-om-single .s-contents h3,
.p-om-single .s-contents h4,
.p-om-single .s-contents h5,
.p-om-single .s-contents h6 {
  line-height: 1.8;
}
.p-om-single .s-contents h2 + h2,
.p-om-single .s-contents h2 + h3,
.p-om-single .s-contents h2 + h4,
.p-om-single .s-contents h2 + h5,
.p-om-single .s-contents h3 + h2,
.p-om-single .s-contents h3 + h3,
.p-om-single .s-contents h3 + h4,
.p-om-single .s-contents h3 + h5,
.p-om-single .s-contents h4 + h2,
.p-om-single .s-contents h4 + h3,
.p-om-single .s-contents h4 + h4,
.p-om-single .s-contents h4 + h5,
.p-om-single .s-contents h5 + h2,
.p-om-single .s-contents h5 + h3,
.p-om-single .s-contents h5 + h4,
.p-om-single .s-contents h5 + h5 {
  margin-top: -0.85em;
}
.p-om-single .s-contents p + p,
.p-om-single .s-contents p + img,
.p-om-single .s-contents p + ul,
.p-om-single .s-contents p + ol,
.p-om-single .s-contents img + p,
.p-om-single .s-contents img + ul,
.p-om-single .s-contents img + ol,
.p-om-single .s-contents ul + ol,
.p-om-single .s-contents ul + p,
.p-om-single .s-contents ul + img,
.p-om-single .s-contents ol + p,
.p-om-single .s-contents ol + img,
.p-om-single .s-contents ol + ul {
  margin-top: 1.75em;
}

.s-btnArea {
  display: flex;
  align-content: center;
  background: #66728D;
  height: 6.3rem;
  margin-top: 5rem;
}
@media screen and (max-width: 767px), print {
  .s-btnArea {
    height: 4rem;
  }
}
.s-btnArea div:nth-of-type(1), .s-btnArea div:nth-of-type(3) {
  width: 30%;
}
@media screen and (max-width: 767px), print {
  .s-btnArea div:nth-of-type(1), .s-btnArea div:nth-of-type(3) {
    width: 33.3333333333%;
  }
}
.s-btnArea div:nth-of-type(2) {
  width: 40%;
  position: relative;
}
@media screen and (max-width: 767px), print {
  .s-btnArea div:nth-of-type(2) {
    width: 33.3333333333%;
  }
}
.s-btnArea div:nth-of-type(2)::after, .s-btnArea div:nth-of-type(2)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 1px;
  background: #fff;
}
.s-btnArea div:nth-of-type(2)::before {
  left: inherit;
  right: 0;
}
.s-btnArea div:nth-of-type(2) a {
  justify-content: center;
}
.s-btnArea div:nth-of-type(3) {
  text-align: right;
}
.s-btnArea div:nth-of-type(3) a {
  justify-content: flex-end;
}
.s-btnArea div a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 3.4rem;
  color: #fff;
  font-size: 1.4rem;
  transition: 0.3s;
}
@media screen and (max-width: 767px), print {
  .s-btnArea div a {
    padding: 0 1.5rem;
  }
}
.s-btnArea div a:hover {
  opacity: 0.7;
}
.s-btnArea div a span {
  padding-left: 1.6rem;
  position: relative;
}
.s-btnArea div a span::after {
  content: "";
  height: 1rem;
  width: 1rem;
  position: absolute;
  left: 0;
  top: 0.8rem;
  background: url(../images_add/wa-icon.png) no-repeat center center/contain;
}
.s-btnArea div a span em {
  font-style: inherit;
}

.p-contact .s-tel__tel {
  display: flex;
  align-items: center;
}
.p-contact .s-tel__tel figure {
  display: flex;
  margin-right: 1.5rem;
}
.p-contact .s-tel__tel span {
  font-size: 5rem;
  font-family: "Outfit", sans-serif;
  color: #66728D;
  letter-spacing: 0.05em;
  font-weight: bold;
}
@media screen and (max-width: 767px), print {
  .p-contact .s-tel__tel span {
    font-size: 4rem;
  }
}
.p-contact .s-support {
  margin-top: 6rem;
}
.p-contact .s-support__ttl {
  position: relative;
  color: #4a5264;
  font-size: 2.8rem;
  text-align: left;
  padding-left: 2rem;
}
@media screen and (max-width: 767px), print {
  .p-contact .s-support__ttl {
    margin-bottom: 1rem;
  }
}
.p-contact .s-support__ttl::before {
  content: "";
  height: 1rem;
  width: 1rem;
  position: absolute;
  left: 0;
  top: 2.1rem;
  background: url(../images_add/wa-icon.png) no-repeat center center/contain;
}
.p-contact .s-support__txt {
  background: #EFE6DE;
  padding: 2rem;
  line-height: 2;
}
.p-contact .s-form {
  margin-top: 6rem;
}
@media screen and (max-width: 767px), print {
  .p-contact .s-form {
    margin-top: 5rem;
  }
}
.p-contact .s-form br {
  display: none !important;
}
.p-contact .s-form__ttl {
  position: relative;
  color: #4a5264;
  font-size: 2.8rem;
  text-align: left;
  padding-left: 2rem;
}
@media screen and (max-width: 767px), print {
  .p-contact .s-form__ttl {
    margin-bottom: 1rem;
  }
}
.p-contact .s-form__ttl::before {
  content: "";
  height: 1rem;
  width: 1rem;
  position: absolute;
  left: 0;
  top: 2.1rem;
  background: url(../images_add/wa-icon.png) no-repeat center center/contain;
}
.p-contact .s-form__txt {
  line-height: 2;
}
.p-contact .s-form__txt br {
  display: block !important;
}
.p-contact .s-form-inner {
  background: #FFFFFF;
  margin-top: 5rem;
  padding: 9.6rem 11.6rem;
}
@media screen and (max-width: 767px), print {
  .p-contact .s-form-inner {
    margin-top: 3rem;
    padding: 3rem 2rem;
  }
}
@media screen and (min-width: 768px), print {
  .p-contact .s-form-inner dl {
    display: flex;
    justify-content: space-between;
  }
}
.p-contact .s-form-inner dl:nth-of-type(n + 2) {
  margin-top: 4rem;
}
@media screen and (max-width: 767px), print {
  .p-contact .s-form-inner dl:nth-of-type(n + 2) {
    margin-top: 3rem;
  }
}
.p-contact .s-form-inner dl dt {
  font-size: 1.8rem;
  width: calc(100% - 60rem);
  color: #66728D;
  padding-top: 1.4rem;
}
@media screen and (max-width: 767px), print {
  .p-contact .s-form-inner dl dt {
    padding-top: 0;
    padding-bottom: 0.8rem;
    width: 100%;
  }
}
.p-contact .s-form-inner dl dd {
  width: 60rem;
}
@media screen and (max-width: 767px), print {
  .p-contact .s-form-inner dl dd {
    width: 100%;
  }
}
.p-contact .s-form-inner dl dd input, .p-contact .s-form-inner dl dd textarea {
  width: 100%;
  display: block;
  border: 0.1rem solid #66728D;
  padding: 0 2rem;
}
@media screen and (max-width: 767px), print {
  .p-contact .s-form-inner dl dd input, .p-contact .s-form-inner dl dd textarea {
    padding: 0 1rem;
    line-height: 1.7;
  }
}
.p-contact .s-form-inner dl dd input::-moz-placeholder, .p-contact .s-form-inner dl dd textarea::-moz-placeholder {
  font-family: "Zen Kaku Gothic New", sans-serif !important;
  color: #BABCCE;
}
.p-contact .s-form-inner dl dd input::placeholder, .p-contact .s-form-inner dl dd textarea::placeholder {
  font-family: "Zen Kaku Gothic New", sans-serif !important;
  color: #BABCCE;
}
.p-contact .s-form-inner dl dd input {
  height: 6rem;
}
@media screen and (max-width: 767px), print {
  .p-contact .s-form-inner dl dd input {
    height: 5rem;
  }
}
.p-contact .s-form-inner dl dd.radio {
  padding-top: 1.9rem;
  padding-bottom: 1rem;
  line-height: 1.5 !important;
}
@media screen and (max-width: 767px), print {
  .p-contact .s-form-inner dl dd.radio {
    padding-top: 0;
  }
}
.p-contact .s-form-inner dl dd.radio .mwform-radio-field {
  margin: 0 !important;
}
.p-contact .s-form-inner dl dd.radio .mwform-radio-field label {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 2.5rem;
}
.p-contact .s-form-inner dl dd.radio .mwform-radio-field label input {
  width: auto;
  height: auto;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.p-contact .s-form-inner dl dd textarea {
  padding-top: 2rem;
  padding-bottom: 2rem;
  height: 20rem;
}
@media screen and (max-width: 767px), print {
  .p-contact .s-form-inner dl dd textarea {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
.p-contact .s-form-inner dl .error {
  margin-top: 0.5rem;
}
.p-contact .s-form-inner__right {
  margin-top: 4rem;
  padding-left: calc(100% - 60rem);
}
@media screen and (max-width: 767px), print {
  .p-contact .s-form-inner__right {
    padding-left: 0;
    margin-top: 2rem;
  }
}
.p-contact .s-form-inner__pp {
  position: relative;
  display: flex;
  color: #66728D;
}
.p-contact .s-form-inner__pp > label {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px), print {
  .p-contact .s-form-inner__pp > label {
    font-size: 1.6rem;
  }
}
.p-contact .s-form-inner__pp > label > span {
  margin-right: 1rem;
  white-space: nowrap;
}
.p-contact .s-form-inner__pp > label label input {
  position: relative;
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.p-contact .s-form-inner__pp > label label input::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  height: 100%;
  width: 100%;
  border: 0.1rem solid #66728D;
}
.p-contact .s-form-inner__pp > label label input::before {
  opacity: 0;
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: url(../images_add/contact/check-icon.svg) no-repeat center center/contain;
}
.p-contact .s-form-inner__pp > label label input:checked::before {
  opacity: 1;
}
.p-contact .s-form-inner__pp .mwform-checkbox-field-text {
  display: none;
}
.p-contact .s-form-inner__pp a {
  border-bottom: 0.1rem solid #66728D;
  transition: 0.3s;
}
.p-contact .s-form-inner__pp a:hover {
  opacity: 0.7;
}
.p-contact .s-form-inner__pp .error {
  position: absolute;
  bottom: 0;
  transform: translateY(100%) translateY(5px);
}
.p-contact .s-form-inner__btnWrap {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 5rem;
}
@media screen and (max-width: 767px), print {
  .p-contact .s-form-inner__btnWrap {
    overflow: hidden;
    margin-top: 2rem;
  }
}
.p-contact .s-form-inner__btnWrap button {
  cursor: pointer;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 25.8rem;
  height: 5.7rem;
  background: #fff;
  border: none;
  border-radius: 999.9rem;
  background: #66728D;
  color: #FFFFFF;
  font-weight: bold;
  transition: 0.5s;
  display: block;
  margin: 0 1rem;
}
@media screen and (max-width: 767px), print {
  .p-contact .s-form-inner__btnWrap button {
    width: 43%;
    margin: 0 0.5rem;
    height: 5rem;
    padding-right: 3rem;
  }
}
.p-contact .s-form-inner__btnWrap button:hover {
  opacity: 0.7;
}
.p-contact .s-form-inner__btnWrap button::after {
  content: "";
  width: 2.1rem;
  height: 2.1rem;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images_add/arrow_left02.svg);
}
@media screen and (max-width: 767px), print {
  .p-contact .s-form-inner__btnWrap button::after {
    right: 1.2rem;
  }
}
.p-contact .s-form-inner__btnWrap button[name=submitBack] {
  background: #bdbdbd;
}
.p-contact .s-form-inner__btnWrap button[name=submitBack]::after {
  background: url(../images_add/arrow_left02_grey.svg);
}
.p-contact .mw_wp_form_confirm .s-form-inner dl dt {
  padding-top: 0;
}
.p-contact .mw_wp_form_confirm .s-form-inner__pp span {
  display: none;
}
.p-contact .mw_wp_form_input .s-form-inner__btnWrap button {
  padding-right: 0;
  width: 80%;
}

.mw_wp_form_input .confirm,
.mw_wp_form_input .complete,
.mw_wp_form_input .err {
  display: none !important;
}
.mw_wp_form_input .input {
  display: block !important;
}

.mw_wp_form_error .confirm,
.mw_wp_form_error .complete,
.mw_wp_form_error .input {
  display: none !important;
}
.mw_wp_form_error .err {
  display: block !important;
}

.mw_wp_form_confirm .input,
.mw_wp_form_confirm .input_flex,
.mw_wp_form_confirm .complete,
.mw_wp_form_confirm .err {
  display: none !important;
}
.mw_wp_form_confirm .confirm {
  display: block !important;
}

.mw_wp_form_complete .input,
.mw_wp_form_complete .confirm,
.mw_wp_form_complete .input_flex,
.mw_wp_form_complete .err {
  display: none !important;
}
.mw_wp_form_complete .complete {
  display: block !important;
}

.c-introduction {
  margin-top: 8rem;
}
.c-introduction__ttl {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px), print {
  .c-introduction__ttl {
    display: block;
    text-align: center;
  }
  .c-introduction__ttl * {
    display: block;
  }
}
.c-introduction__ttl strong {
  font-size: 3.2rem;
  font-weight: 500;
}
@media screen and (max-width: 767px), print {
  .c-introduction__ttl strong {
    font-size: 2.6rem;
  }
}
.c-introduction__ttl small {
  font-size: 1.8rem;
  color: #C3AD84;
  font-family: "Outfit", sans-serif;
  margin-left: 2rem;
}
@media screen and (max-width: 767px), print {
  .c-introduction__ttl small {
    font-size: 1.6rem;
    margin-left: 0;
  }
}
.c-introduction__box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 4rem;
}
@media screen and (max-width: 767px), print {
  .c-introduction__box {
    display: block;
  }
}
.c-introduction__el {
  position: relative;
  width: calc(50% - 3rem);
  height: 24rem;
}
@media screen and (min-width: 768px), print {
  .c-introduction__el:nth-of-type(n + 3) {
    margin-top: 5.2rem;
  }
}
@media screen and (max-width: 767px), print {
  .c-introduction__el {
    display: block;
    width: 100%;
    height: 19rem;
  }
  .c-introduction__el:nth-of-type(n + 2) {
    margin-top: 3rem;
  }
}
.c-introduction__el h4 {
  position: absolute;
  left: -1px;
  top: -1px;
  background: #F5EEE8;
  border-radius: 0 0 1rem 0;
  z-index: 1;
  writing-mode: vertical-rl;
  margin: 0;
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 1rem 0.5rem 2rem;
}
.c-introduction__el h4 span {
  position: relative;
  display: inline-block;
  padding-top: 2.2rem;
}
@media screen and (max-width: 767px), print {
  .c-introduction__el h4 span {
    font-size: 1.4rem;
    padding-top: 1.5rem;
  }
}
.c-introduction__el h4 span::after {
  content: "";
  position: absolute;
  height: 1.2rem;
  width: 1.2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  background: url(../images_add/wa-icon.png) no-repeat center center/contain;
}
.c-introduction__el figure {
  border-radius: 1rem;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.c-introduction__el figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
.c-introduction__el svg {
  position: absolute;
  z-index: 1;
  width: 5.6rem;
  height: 5.6rem;
  right: 1.4rem;
  bottom: 1.4rem;
}
.c-introduction__el svg * {
  transition: 0.5s;
}
@media screen and (min-width: 768px), print {
  .c-introduction__el:hover img {
    transform: scale(1.1);
  }
  .c-introduction__el:hover circle {
    fill: #4a5264 !important;
  }
  .c-introduction__el:hover path, .c-introduction__el:hover line {
    stroke: #fff !important;
  }
}

.p-therapist img {
  max-width: 100%;
}
.p-therapist .s-top__img {
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px), print {
  .p-therapist .s-top__img {
    margin-bottom: 4rem;
  }
}
.p-therapist .s-top__img img {
  width: 100%;
  height: 52.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px), print {
  .p-therapist .s-top__img img {
    height: 18rem;
  }
}
.p-therapist .s-about__ttl {
  margin-bottom: 3rem;
}
.p-therapist .s-about__desc {
  font-size: 1.7rem;
  line-height: 2;
}
@media screen and (max-width: 767px), print {
  .p-therapist .s-about__desc {
    line-height: 1.8;
  }
}
.p-therapist .s-about__desc p + p {
  margin-top: 0;
}
.p-therapist .s-about__overview {
  border-radius: 1rem;
  padding: 3rem 3.3rem;
  margin-top: 5rem;
}
@media screen and (max-width: 767px), print {
  .p-therapist .s-about__overview {
    padding: 2rem;
    margin-top: 3rem;
  }
}
.p-therapist .s-about__overviewTtl {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 3.5rem;
  text-align: center;
}
@media screen and (max-width: 767px), print {
  .p-therapist .s-about__overviewTtl {
    font-size: 2rem;
    line-height: 3rem;
  }
}
.p-therapist .s-about__overviewTtl span {
  color: #B98F3F;
}
.p-therapist .s-about__overviewList .s-about__overviewItem {
  display: flex;
  align-items: flex-start;
  font-size: 1.7rem;
}
@media screen and (max-width: 767px), print {
  .p-therapist .s-about__overviewList .s-about__overviewItem {
    display: block;
  }
}
.p-therapist .s-about__overviewList .s-about__overviewItem dt {
  width: 11rem;
  flex-shrink: 0;
  font-weight: 500;
  padding-right: 1rem;
}
@media screen and (max-width: 767px), print {
  .p-therapist .s-about__overviewList .s-about__overviewItem dt {
    width: 100%;
    padding-right: 0;
    margin-bottom: 0;
  }
}
.p-therapist .s-about__overviewList .s-about__overviewItem dd {
  flex: 1;
  line-height: 2;
}
.p-therapist .s-greeting {
  margin-top: 6rem;
}
@media screen and (max-width: 767px), print {
  .p-therapist .s-greeting {
    margin-top: 5rem;
  }
}
.p-therapist .s-greeting__ttl {
  margin-bottom: 3rem;
}
.p-therapist .s-greeting__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.p-therapist .s-greeting__card {
  background: #fff;
  border-radius: 1rem;
  padding: 3rem;
  display: grid;
  grid-template-columns: 15rem 1fr;
  align-items: flex-start;
  gap: 2rem;
}
@media screen and (max-width: 767px), print {
  .p-therapist .s-greeting__card {
    grid-template-columns: 1fr;
    align-items: center;
    padding: 2rem;
    gap: 0;
  }
}
.p-therapist .s-greeting__cardImg {
  width: 100%;
  text-align: center;
}
.p-therapist .s-greeting__cardImg figure {
  height: auto;
  border-radius: 0.4rem;
  overflow: hidden;
}
@media screen and (max-width: 767px), print {
  .p-therapist .s-greeting__cardImg figure {
    width: 14rem;
    height: 17.7rem;
    margin: 0 auto;
  }
}
.p-therapist .s-greeting__cardImg figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-therapist .s-greeting__cardName {
  font-size: 2rem;
  font-weight: 500;
  margin-top: 1rem;
  line-height: 1.5;
  text-align: center;
}
.p-therapist .s-greeting__cardKana {
  display: block;
  font-size: 1.1rem;
  color: #66728D;
  letter-spacing: 0.04em;
}
.p-therapist .s-greeting__cardBody {
  position: relative;
  height: auto;
  overflow: hidden;
  box-sizing: content-box;
}
@media screen and (max-width: 767px), print {
  .p-therapist .s-greeting__cardBody {
    width: 100%;
    height: 22rem;
    margin-top: 2rem;
    padding-bottom: 5.6rem;
  }
}
.p-therapist .s-greeting__cardTxt p {
  font-size: 1.7rem;
  line-height: 2;
  line-height: 1.6;
}
.p-therapist .s-greeting__cardTxt p + p {
  margin-top: 1rem;
}
.p-therapist .s-greeting__cardMore {
  display: none;
}
@media screen and (max-width: 767px), print {
  .p-therapist .s-greeting__cardMore {
    display: block;
    position: absolute;
    left: 0;
    bottom: 1.2rem;
    width: 100%;
    text-align: center;
    z-index: 2;
  }
}
.p-therapist .s-greeting__cardMoreBtn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: transparent;
  font-family: "Zen Kaku Gothic New", sans-serif !important;
  font-weight: 500;
  font-size: 1.6rem;
  color: #4A5264;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  cursor: pointer;
  padding: 0.4rem 0.8rem;
}
.p-therapist .s-greeting__cardMoreLabel {
  display: inline-block;
  border-bottom: 1px solid #4A5264;
  line-height: 1.2;
}
.p-therapist .s-greeting__cardMoreIcon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 9999px;
  background: #4A5264;
  flex-shrink: 0;
}
.p-therapist .s-greeting__cardMoreIcon::before, .p-therapist .s-greeting__cardMoreIcon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.4rem;
  height: 2px;
  background: #fff;
  transform: translate(-50%, -50%);
}
.p-therapist .s-greeting__cardMoreIcon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
@media screen and (max-width: 767px), print {
  .p-therapist .s-greeting__cardBody::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 8.5rem;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 70%);
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .p-therapist .s-greeting__cardBody.is-open {
    height: auto;
    overflow: visible;
    padding-bottom: 6rem;
  }
  .p-therapist .s-greeting__cardBody.is-open::after {
    opacity: 0;
  }
  .p-therapist .s-greeting__cardBody.is-open .s-greeting__cardMoreIcon::after {
    opacity: 0;
  }
}
.p-therapist .s-about__overview {
  padding: 0;
}
.p-therapist .s-about__overviewTtl {
  text-align: start;
}
@media screen and (max-width: 767px), print {
  .p-therapist .s-about__overviewList {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
}
.p-therapist .s-about__overviewList .s-about__overviewItem {
  display: grid;
  grid-template-columns: 13rem 1fr;
  padding: 0;
}
@media screen and (max-width: 767px), print {
  .p-therapist .s-about__overviewList .s-about__overviewItem {
    grid-template-columns: 1fr;
  }
}
.p-therapist .s-about__overviewList .s-about__overviewItem dt {
  width: 100%;
}
.p-therapist .s-about__overviewList .s-about__overviewItem dd ul li {
  list-style: disc;
  list-style-position: outside;
  margin-left: 2rem;
}
.p-therapist .s-about__overviewList .s-about__overviewItem--tel {
  color: #4A5264;
}
@media screen and (max-width: 767px), print {
  .p-therapist .s-about__overviewList .s-about__overviewItem--tel {
    text-decoration: underline;
  }
}
.p-therapist .s-greeting {
  margin-top: 6rem;
}

@media screen and (min-width: 1440px) {
  html {
    font-size: 62.5% !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  html {
    font-size: 0.6944444444vw !important;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.5vw !important;
  }
}
html.is-dOpen {
  position: fixed;
  top: 0;
  left: 0;
}
html body {
  font-size: 1.7rem !important;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif !important;
  font-weight: 500;
  line-height: 1.7 !important;
  background: #F5EEE8;
  font-size: 14px;
}
body::after, body::before {
  content: "";
  position: fixed;
  width: 94rem;
  height: 94rem;
  top: 0;
  right: 0;
  transform: translate(50%, -50%) translate(0, -10rem);
  background: url(../images_add/fixed-icon01.svg) no-repeat center center/contain;
  opacity: 0.4;
  pointer-events: none;
  animation: rotate-pc01 80s linear 0s infinite forwards;
}
@media screen and (max-width: 767px), print {
  body::after, body::before {
    width: 44rem;
    height: 44rem;
    transform: translate(50%, -50%) translate(0, 4rem);
    animation: rotate-sp01 80s linear 0s infinite forwards;
  }
}
body::before {
  top: inherit;
  right: inherit;
  left: 0;
  bottom: 0;
  transform: translate(-50%, 50%) translate(0, 20rem);
  background: url(../images_add/fixed-icon02.svg) no-repeat center center/contain;
  animation: rotate-pc02 80s linear 0s infinite forwards;
}
@media screen and (max-width: 767px), print {
  body::before {
    transform: translate(-50%, 50%) translate(0, 0);
    animation: rotate-sp02 80s linear 0s infinite forwards;
  }
}
@keyframes rotate-pc01 {
  0% {
    transform: translate(50%, -50%) translate(0, -10rem) rotate(0);
  }
  100% {
    transform: translate(50%, -50%) translate(0, -10rem) rotate(360deg);
  }
}
@keyframes rotate-pc02 {
  0% {
    transform: translate(-50%, 50%) translate(0, 20rem) rotate(0);
  }
  100% {
    transform: translate(-50%, 50%) translate(0, 20rem) rotate(360deg);
  }
}
@keyframes rotate-sp01 {
  0% {
    transform: translate(50%, -50%) translate(0, 4rem) rotate(0);
  }
  100% {
    transform: translate(50%, -50%) translate(0, 4rem) rotate(360deg);
  }
}
@keyframes rotate-sp02 {
  0% {
    transform: translate(-50%, 50%) translate(0, 0) rotate(0);
  }
  100% {
    transform: translate(-50%, 50%) translate(0, 0) rotate(360deg);
  }
}

main {
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px), print {
  [href*="tel:"] {
    pointer-events: none;
  }
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px), print {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px), print {
  .c-s-inner {
    width: 96rem;
    margin-left: auto;
    margin-right: auto;
  }
  .c-m-inner {
    width: 109rem;
    margin-left: auto;
    margin-right: auto;
  }
  .c-i-inner {
    width: 110rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px), print {
  .c-s-inner, .c-m-inner, .c-i-inner {
    padding: 0 2rem;
  }
}
.c-breadcrumb {
  position: relative;
  z-index: 1;
  margin-top: 8rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px), print {
  .c-breadcrumb {
    margin-top: 3rem;
    white-space: nowrap;
    overflow-x: scroll;
  }
}
.c-breadcrumb a, .c-breadcrumb span {
  font-size: 1.3rem;
}
.c-breadcrumb .slash {
  display: inline-block;
  margin: 0 0.8rem;
}

.sec-ttl01 {
  margin-bottom: 5rem;
}
.sec-ttl01 small {
  position: relative;
  display: inline-block;
  font-size: 2rem;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  padding-left: 2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px), print {
  .sec-ttl01 small {
    font-size: 1.8rem;
  }
}
.sec-ttl01 small::after {
  content: "";
  height: 1.2rem;
  width: 1.2rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(../images_add/wa-icon.png) no-repeat center center/contain;
}
.sec-ttl01 strong {
  display: block;
  font-size: 4.2rem;
  font-weight: 500;
  line-height: 1;
  margin-top: 2rem;
}
@media screen and (max-width: 767px), print {
  .sec-ttl01 strong {
    font-size: 3.6rem;
    margin-top: 1.5rem;
  }
}
.sec-ttl01 span {
  font-size: 1.5rem;
  display: block;
  font-weight: 500;
  margin-top: 1.5rem;
}
.sec-ttl01 span.about {
  font-size: 2.2rem;
  font-weight: 500;
  margin-top: 2rem;
}
.sec-ttl01__vertical {
  display: flex;
}
@media screen and (max-width: 767px), print {
  .sec-ttl01__vertical {
    padding-left: 3rem;
    justify-content: center;
  }
}
.sec-ttl01__vertical strong, .sec-ttl01__vertical small {
  writing-mode: vertical-rl;
}
.sec-ttl01__vertical strong {
  margin-top: 0;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px), print {
  .sec-ttl01__vertical strong {
    font-size: 3.2rem;
  }
}
.sec-ttl01__vertical small {
  padding-left: 0;
  margin-left: 1.5rem;
  padding-top: 2rem;
}
@media screen and (max-width: 767px), print {
  .sec-ttl01__vertical small {
    font-size: 2rem;
  }
}
.sec-ttl01__vertical small::after {
  content: "";
  height: 1.2rem;
  width: 1.2rem;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background: url(../images_add/wa-icon.png) no-repeat center center/contain;
}

.sec-ttl02 span {
  font-size: 2.8rem;
  position: relative;
  display: inline-block;
  padding-left: 2.2rem;
}
@media screen and (max-width: 767px), print {
  .sec-ttl02 span {
    font-size: 2.4rem;
  }
}
.sec-ttl02 span::before {
  content: "";
  height: 1.2rem;
  width: 1.2rem;
  position: absolute;
  left: 0;
  top: 1.9rem;
  background: url(../images_add/wa-icon.png) no-repeat center center/contain;
}

.c-link01 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.c-link01 br {
  display: none;
}
.c-link01 a {
  font-size: 1.7rem;
  transition: 0.3s;
  display: flex;
  align-items: center;
}
.c-link01 a svg {
  width: 5.2rem;
  margin-right: 1rem;
  transition: 0.3s;
}
@media screen and (max-width: 767px), print {
  .c-link01 a svg {
    width: 3.8rem;
    height: 3.8rem;
    margin-right: 1.5rem;
  }
}
.c-link01 a svg * {
  transition: 0.3s;
}
@media screen and (min-width: 768px), print {
  .c-link01 a:hover {
    opacity: 0.7;
  }
  .c-link01 a:hover svg circle {
    fill: #fff;
  }
  .c-link01 a:hover svg path, .c-link01 a:hover svg line {
    stroke: #4a5264;
  }
}
@media screen and (min-width: 768px), print {
  .c-link01--reverse a:hover svg circle {
    fill: #4a5264 !important;
  }
  .c-link01--reverse a:hover svg path, .c-link01--reverse a:hover svg line {
    stroke: #fff !important;
  }
}

.c-link02 {
  text-align: right;
}
.c-link02 br {
  display: none;
}
.c-link02 a, .c-link02 button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #4A5264;
  background: #4A5264;
  color: #fff;
  border-radius: 9999px;
  padding: 0.6rem 1rem 0.6rem 1.5rem;
  font-size: 1.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif !important;
  font-weight: 500;
}
.c-link02 a svg, .c-link02 button svg {
  width: 2.1rem;
  margin-left: 1rem;
}
.c-link02 a, .c-link02 button {
  transition: 0.5s;
}
.c-link02 a:hover, .c-link02 button:hover {
  opacity: 0.7;
}

.js-more-txt {
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (min-width: 768px), print {
  .js-more-txt:hover {
    opacity: 0.7;
  }
}

.c-more-txt {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s opacity;
}
.c-more-txt.is-active {
  opacity: 1;
  pointer-events: inherit;
}
.c-more-txt__overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: #BCB0A5;
  width: 100%;
  height: 100%;
  opacity: 0.78;
}
.c-more-txt__close {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #4A5264;
  height: 19.2rem;
  width: 3.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  border-radius: 1rem 0 0 0;
  cursor: pointer;
  color: #fff;
  writing-mode: vertical-rl;
  font-size: 1.8rem;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 767px), print {
  .c-more-txt__close {
    top: 0;
    white-space: inherit;
    transform: inherit;
    width: auto;
    height: auto;
    writing-mode: inherit;
    letter-spacing: 0.1em;
    border-radius: 0 0 0 1rem;
    padding: 0.4rem 1.6rem;
  }
}
.c-more-txt__close span {
  position: relative;
  margin-bottom: 1rem;
  width: 1.8rem;
  height: 1.8rem;
}
@media screen and (max-width: 767px), print {
  .c-more-txt__close span {
    margin-bottom: 0;
    margin-right: 1rem;
  }
}
.c-more-txt__close span::after, .c-more-txt__close span::before {
  content: "";
  height: 100%;
  width: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-more-txt__close span::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.c-more-txt__inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: #F5EEE8;
  padding: 8rem 9rem;
  border-top: 3px solid #4A5264;
  overflow: auto;
}
@media screen and (max-width: 767px), print {
  .c-more-txt__inner {
    width: 90%;
    padding: 5rem 2rem 2rem;
  }
}
.c-more-txt__inner > figure {
  margin-top: 4rem;
  padding: 0 4rem;
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 767px), print {
  .c-more-txt__inner > figure {
    padding: 0;
  }
}
.c-more-txt__inner > figure img {
  width: 100%;
}
.c-more-txt__inner p {
  margin-top: 4rem;
  font-size: 1.7rem;
}
.c-more-txt__ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.8rem;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 767px), print {
  .c-more-txt__ttl {
    font-size: 2rem;
  }
}
.c-more-txt__ttl figure {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 9999px;
  width: 7.8rem;
  height: 7.8rem;
  margin-right: 1rem;
}
@media screen and (max-width: 767px), print {
  .c-more-txt__ttl figure {
    width: 6rem;
    height: 6rem;
  }
}
.c-more-txt__ttl figure img {
  width: 3.2rem;
}
.c-more-txt__ttl div span {
  color: #B98E47;
}

.c-main {
  margin-top: 24rem;
}
@media screen and (max-width: 767px), print {
  .c-main {
    margin-top: 15rem;
  }
}

.s-mv {
  height: 40rem;
  overflow: hidden;
  border-radius: 1rem;
  margin-top: 5rem;
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px), print {
  .s-mv {
    height: 20rem;
    margin-bottom: 5rem;
  }
}
.s-mv img {
  overflow: hidden;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.js-accordionArea dt, .js-accordionArea dd {
  padding: 2.6rem 3.4rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px), print {
  .js-accordionArea dt, .js-accordionArea dd {
    padding: 1.5rem 1.5rem;
  }
}
.js-accordionArea dd {
  margin-bottom: 0;
  background: #fff;
  display: none;
}
.js-accordionArea dt {
  position: relative;
  padding-top: 1rem;
  padding-bottom: 1rem;
  cursor: pointer;
  transition: 0.5s;
  border-bottom: 0.1rem solid #4A5264;
}
.js-accordionArea dt:nth-of-type(n + 2) {
  margin-top: -0.1rem;
}
.js-accordionArea dt:hover {
  opacity: 0.7;
}
.js-accordionArea dt div {
  position: relative;
  padding-left: 3rem;
  padding-right: 4rem;
}
@media screen and (max-width: 767px), print {
  .js-accordionArea dt div {
    padding-left: 2rem;
  }
}
.js-accordionArea dt div::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  height: 1.2rem;
  width: 1.2rem;
  background: url(../images_add/wa-icon.png) no-repeat center center/contain;
}
.js-accordionArea dt div::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  height: 1rem;
  width: 1rem;
  border-bottom: 2px solid #B98F3F;
  border-right: 2px solid #B98F3F;
}
.js-accordionArea dt.is-active div::after {
  content: "";
  transform: translateY(-25%) rotate(-135deg);
}

.s_num {
  position: relative;
}
.s_num::after {
  display: inline-block;
  transform: translateY(-0.4rem) scale(0.6);
  content: attr(data-num);
  font-size: 1.7rem;
}

.s_quote {
  padding-top: 3rem;
  border-top: 1px solid #707070;
  margin-top: 5rem;
  font-size: 1.3rem;
}
.s_quote span {
  position: relative;
  display: inline-block;
  padding-left: 0.8em;
}
.s_quote span:nth-of-type(n + 2) {
  margin-top: 0.5rem;
}
.s_quote span::before {
  content: attr(data-num);
  display: inline-block;
  transform: translateY(-0.8rem) scale(0.6);
  font-size: 1.7rem;
  margin-right: 0.5rem;
  position: absolute;
  left: 0;
  top: 0;
}