@charset "utf-8";

/*
Theme Name: MJE整骨院
Author: hironori hashimoto
Author URI: https://seikotsuin.mje-create.com/
Description: MJE整骨院のオリジナルテンプレート
*/

html {
  font-size: 55%;
  scroll-behavior: smooth;
}

@media screen and (min-width: 960px) {
  html {
    font-size: 62.5%;
  }
}

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

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-size: 1.6rem;
  text-rendering: auto;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  line-height: 2.1254;
  letter-spacing: 0.22rem;
  color: #222;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ",
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  animation: fadeIn;
  animation-duration: 0.6s;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
img {
  max-width: 100%;
  height: auto;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}
main {
  flex: 1;
  overflow-x: hidden;
  position: relative;
}
main::before {
  -webkit-transition: 0.5s;
  background-color: #fffdf6;
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  transition: 0.5s;
  width: calc((100% / 12) * 3);
  z-index: -1;
}
ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  display: block;
  position: relative;
}

h2,
h3,
h4,
h5 {
  line-height: 1.5;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.ps-br {
  display: none;
}

.sp-br {
  display: block;
}

@media screen and (min-width: 560px) {
  .ps-br {
    display: block;
  }

  .sp-br {
    display: none;
  }
}
@keyframes my-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade {
  opacity: 0;
  transition: opacity 1.4s, transform 0.8s;
}

.fade.scrollin {
  opacity: 1;
}

.fadein {
  opacity: 0;
  transform: translate(0, 40px);
  transition: opacity 1.4s, transform 0.8s;
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.fadein-right {
  opacity: 0;
  -webkit-transform: translateX(80px);
  -ms-transform: translateX(80px);
  transform: translateX(80px);
}

.fadein-right.scrollin {
  opacity: 1;
  -webkit-transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1),
    -webkit-transform 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1),
    -webkit-transform 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1),
    transform 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1),
    transform 1s cubic-bezier(0.23, 1, 0.32, 1),
    -webkit-transform 1s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
@keyframes top-fade {
  0% {
    opacity: 0;
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
  }
}
/*********************************
ヘッダー
*********************************/
#head_wrap {
  position: fixed;
  top: 0px;
  z-index: 5;
  width: 100%;
  transition: .2s;
}
.fixed{
  transition: .2s;
  background: rgba(255,255,255,0.25);
    backdrop-filter: saturate(180%) blur(20px);
}
.l-header {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  padding: 10px 0px 10px 0px;
  color:#fff;
}
@media only screen and (min-width: 560px) {
  .l-header {
    padding: 0px 0px 0px 15px;
  }
}
.l-header::after{
  content:'';
  max-width: 100%;
  width:100%;
  background-color: rgba(255,255,255,0.4);
  height:1px;
  position: absolute;
  bottom:0px;
  left:0px;
}
.l-header__logo {
  flex: 0 0 60%;
  max-width: 60%;
  padding-top: 6px;
  padding-left: 16px;
}
.l-header__logo img{
  transition:.3s;
}
.l-header__logo img:first-child,
.fixed .l-header__logo img:nth-child(2){
  display: none;
}
.fixed .l-header__logo img:first-child{
  display: block;
}
@media only screen and (min-width: 560px) {
  .l-header__logo {
    flex: 0 0 23%;
    max-width: 23%;
    padding-left: 0px;
  }
}
@media only screen and (min-width: 960px) {
  .l-header__logo {
    flex: 0 0 16%;
    max-width: 16%;
  }
}

@media only screen and (min-width: 560px) {
  .l-header__list {
    display: flex;
    align-items: center;
    gap:20px;
  }

  .l-header__logo a:hover {
    opacity: 0.6;
  }
}
@media only screen and (max-width: 559px) {
  .l-header__list {
    display: flex;
    justify-content: center;
    flex-direction: column;
    /* align-items: center; */
    height: 90%;
    max-width: 90%;
    margin: 0 auto;
    text-align: left;
    width: 100%;
  }
}
.l-header__link {
  padding: 15px 10px;
  font-weight: 500;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
}
@media only screen and (min-width: 560px) {
  .fixed .l-header__link {
    color:#333;
  }
  .l-header__link {
    position: relative;
    font-size: 1.5rem;
    padding: 30px 10px;
  }
  .l-header__link:hover {
    color: #F0D14F;
  }
  .l-header__link::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    width: 100%;
    height: 4px;
    background-color: #F0D14F;
    transform: scale(0, 1);
    transform-origin: center;
    transition: transform 0.2s;
  }

  .l-header__link:hover::before {
    transform: scale(1);
  }
}
.l-conversion__button {
  background: rgb(222, 0, 41);
  background: radial-gradient(
    circle,
    rgba(222, 0, 41, 1) 0%,
    rgba(249, 221, 0, 1) 100%
  );
  animation: bggradient 20s ease infinite;
  padding: 2px;
  border-radius: 8px;
  transition: 0.3s;
}
.l-conversion__button a {
  padding: 8px 14px;
  background: #fff;
  font-size: 1.5rem;
  text-align: center;
  border-radius: 8px;
  color: #de0029;
}
@keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@media only screen and (min-width: 560px) {
  .l-conversion__button a {
    font-size: 1.3rem;
  }
}

.l-conversion__button a:hover {
  background: rgb(222, 0, 41);
  background: radial-gradient(
    circle,
    rgba(222, 0, 41, 1) 0%,
    rgba(249, 221, 0, 1) 100%
  );
  color: #fff;
}

.l-conversion__button a i {
  font-size: 3.2rem;
  text-align: center;
}

@media screen and (max-width: 559px) {
  .menu .bar {
    width: 30px;
    height: 2px;
    background: #333;
    border-radius: 5px;
    opacity: 1;
    visibility: visible;
    transition: 0.3s ease;
    transform-origin: left;
  }

  .menu .bar1 {
    margin-bottom: 8px;
  }

  .menu .bar3 {
    margin-top: 8px;
  }

  .menu.toggle .bar1 {
    transform-origin: left;
    transform: rotate(45deg);
  }

  .menu.toggle .bar2 {
    opacity: 0;
    visibility: hidden;
  }

  .menu.toggle .bar3 {
    transform-origin: left;
    transform: rotate(-45deg);
  }

  .l-header__navigation {
    flex-direction: column;
    position: fixed;
    top: -100vh;
    left: 0%;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    /* margin-top: 72px; */
    transition: 0.3s ease-out;
    display: flex;
    background-position: center;
    background-repeat: repeat;
    color: #fff;
    z-index: 2;
    background: #d2c5a6;
  }

  .l-header__navigation li {
    height: var(--nav-height);
    line-height: var(--nav-height);
    text-align: center;
    width: 100%;
    display: block;
  }

  .menu {
    display: block;
    margin-left: auto;
    padding-right: 15px;
    z-index: 11;
  }

  .menu.toggle + .l-header__navigation {
    top:0px;
  }
  .fixed #head_wrap {
    position: sticky;
  }
  .fixed .menu.toggle + .l-header__navigation{
    top: 0px;
    height: 100vh;
  }

}
/*********************************
スライダー
*********************************/
.swiper-wrap {
  margin: 0 calc(50% - 50vw);
  max-width: 100vw;
  position: relative;
  overflow: hidden;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
  height: 100%;
}
.swiper-wrapper {
  transition-timing-function: linear;
}

.infinite-slider .swiper-wrapper {
  transition-timing-function: linear;
}

.infinite-slider .swiper-slide {
  width: auto !important;
}
.infinite-slider .swiper-slide img {
  width: auto;
  height: 100%;
  vertical-align: bottom;
}

@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.slide-img{
  position: relative;
}
.slide-img::after{
  content:'';
  position: absolute;
  left:0px;
  top:0px;
  right:0px;
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
}
.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  animation: zoom-in 10s linear 0s 1 normal both;
}

.slide-text {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 3vw;
  font-family: serif;
  font-weight: bold;
  text-shadow: 2px 2px 8px #000;
  color: #fff;
  transform: translate(-50%, -50%);
}

.slide-img img {
  object-fit: cover;
  height: 80vh;
  width: 100vw;
}
@media only screen and (min-width: 560px) {
	.slide-img img {
		height: 100vh;
	}
}
/*********************************
タイトル
*********************************/
.p-common__headline{
  font-size:2.4rem;
  margin-bottom: 4rem;
  position: relative;
  text-align: center;
  color:#F0D14F;
}
.p-common__headline::after{
  content:'';
  background-color: #F0D14F;
  width:40px;
  height:2px;
  text-align: center;
  margin:0 auto;
  position: absolute;
  left:0px;
  right:0px;
  bottom:-20px;
}
.p-common__lead{
  margin-bottom: 3rem;
  font-size: 2rem;
  line-height: 1.8;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}
.p-description__body{
  color:#dfaf7b;
  text-align: center;
  font-size:2rem;
  margin:1rem 0px 2rem;
}
.p-common__lower-headline{
  position: relative;
  font-size:3rem;
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  color: #dfaf7b;
}
.p-common__lower-headline::after{
  content:'';
  width:40px;
  position: absolute;
  left:0px;
  right:0px;
  text-align: center;
  margin:0 auto;
  height:2px;
  background-color: #dfaf7b;
  bottom:0px;
}
/*********************************
パーツ
*********************************/
.p-common__inner {
  margin-bottom: 4rem;
}
@media only screen and (min-width: 560px) {
  .p-common__inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 0px;
  }
.u-center{
  align-items: center;
}
  .u-reverse {
    flex-direction: row-reverse;
    align-items: center;
  }
}
.wrap {
  max-width: 1316px;
  margin: 0 auto;
  padding: 0 16px;
}
.wrapper{
  max-width: 832px;
  margin: 0 auto;
  padding: 0 16px;
}
@keyframes gradientEffect {
  from {
    background-position: left;
  }
  to {
    background-position: right;
  }
}
.c-common__link {
  position: relative;
  margin-top: 20px;
  border: 2px solid #000;
  background: #fff;
  transition: 0.3s;
  height: 60px;
  line-height: 60px;
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.c-common__link i {
  font-size: 16px;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  right: 0px;
}
.c-common__link:hover {
  background-color: #d86f7c;
  color: #fff;
}
/*********************************
メインビジュアル
*********************************/
.p-top__hero {
  position: relative;
  display: flex;
  overflow: hidden;
  height: 80vh;
}
@media only screen and (min-width: 560px) {
	.p-top__hero {
		height: 100vh;
	}
}
.slideshow {
  display: flex;
  animation: loop-slide 20s infinite linear 1s both;
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.content {
  width: 100vw;
  /* height: 100vh; */
  animation-name: my-fade-in;
  animation-duration: 1.2s;
  animation-delay: 0.2s;
  animation-fill-mode: both;
}
@media only screen and (min-width: 560px) {
  .content {
    width: 50vw;
  }
}
.p-top__block {
  position: absolute;
  left: 20px;
  top: 30%;
  animation-name: top-fade;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  animation-delay: 1.5s;
  color: #fff;
  line-height: 1.3;
}
@media only screen and (min-width: 560px) {
  .p-top__block {
    left: 20%;
	   top: 50%;
  }
}
.p-top__headline {
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
}
@media only screen and (min-width: 560px) {
  .p-top__headline {
    font-size: 40px;
  }
}
.p-top__block p {
font-size:1.685rem;
	padding-right:20px;
	line-height:2;
}
.smooth {
  transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
  animation: catch 1.4s forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

@media only screen and (min-width: 560px) {
  .smooth {
    animation-delay: 1s;
  }
}

@keyframes catch {
  0% {
    transition-property: clip-path;
    clip-path: inset(0 100% 0 0);
  }

  100% {
    clip-path: inset(0);
    opacity: 1;
  }
}

@media only screen and (min-width: 560px) {
  .p-top__body {
    font-size: 2rem;
  }
}
.p-items__headline {
  border-bottom: 1px solid #000;
  display: inline-block;
  font-size: calc(2.225rem + 3.1125vw);
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  letter-spacing: 0px;
  margin-bottom: 4rem;
}
/*********************************
メッセージ
*********************************/
section {
  padding: 0rem 0px 6rem;
}
@media only screen and (min-width: 560px) {
  section {
    padding: 0rem 0px 10rem;
  }
}
#message {
  position: relative;
}
.p-message__body {
  margin-top: 2rem;
}
.material-icons {
  display: inline-flex;
  vertical-align: middle;
}
/*********************************
プロフィール
*********************************/
.p-about__image {
  position: relative;
}
.p-about__block {
  padding:0px 20px;
  margin:4rem 0px 0rem;
}
@media only screen and (min-width: 560px) {
  .p-about__image {
    flex: 0 0 50%;
    max-width: 45%;
  }
  .p-about__block {
    flex: 0 0 50%;
    max-width: 490px;
    margin: 0 auto;
    padding:0px;
  }
}
@media only screen and (min-width: 560px) {
  .p-common__list{
    display: flex;
    justify-content: space-between;
  }
.col-3{
  width: calc(100% / 3);
}
}
.p-about__body {
  margin-top: 2rem;
  font-size: 1.6rem;
}
.p-about__list{
  background-color: #fffdf6;
  padding: 20px;
  display: inline-block;
  text-align: left;
  max-width: 530px;
  width: 100%;
  margin-bottom: 4rem;
  font-weight: bold;
  border-radius: 16px
}
.p-about__list i{
  color:#F0D14F;
  margin-right: 5px;
  font-weight: bold;
}
.p-about__name{
  font-weight: bold;
  margin-top:3rem;
  margin-bottom: 2rem;
  font-size:1.8rem;
}
.p-about__headline {
  color: #dfaf7b;
  font-size: 2.8rem;
  margin-bottom: 1rem;
}
.marquee-anim{
  position: relative;
  z-index: -1;
  width: 100%;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  font-family: 'Poppins', sans-serif;
}
.marquee-inline{
  animation: animate-banner 20s linear infinite;
  color: #efefef;
  font-size: 18rem;
  font-weight: bold;
  white-space: nowrap;
  display: inline-block;
  padding: 0px 0px;
  line-height: 1;
}
@keyframes animate-banner {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/*********************************
強み
*********************************/
.about{
  background-color:#f9f8f4;
  padding:80px 0px;
  position: relative;
  text-align: center;
}
.about::before{
  content:'';
  position: absolute;
  left:0px;
  height: 100px;
  top: -30px;
  background-color:#f9f8f4;
  width:100%;
}
.p-about__lead{
  font-size:2rem;
  font-weight: bold;
  margin-bottom: 20px;
}
/*********************************
事業内容
*********************************/
@media screen and (min-width: 960px) {
  #slider {
    padding: 0 10rem;
  }
}
.slick-slider {
  margin: 10rem 0 0;
}
.slick-slide .place-badge img {
  border-radius: 8px 0 0 0;
}
#thumbnail-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (min-width: 960px) {
  #thumbnail-list {
    padding: 0 10rem;
  }
}
.thumbnail-item {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}
@media screen and (min-width: 960px) {
  .thumbnail-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 10%;
    flex: 0 0 10%;
    max-width: 10%;
  }
}
.thumbnail-item:after {
  content: "";
  background-color: rgba(255, 255, 255, 0.6);
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: 0.3s opacity linear;
}
.thumbnail-item.thumbnail-current:after {
  opacity: 0;
}
.thumbnail-item img {
  width: 100%;
  margin: 0 auto;
  vertical-align: top;
}
.scrolldown2{
  /*描画位置※位置は適宜調整してください*/
position:absolute;
bottom:50px;
left:50%;
}

/*Scrollテキストの描写*/
.scrolldown2 span{
  /*描画位置*/
position: absolute;
left:10px;
bottom:20px;
  /*テキストの形状*/
color: #fff;
font-size: 0.7rem;
letter-spacing: 0.05em;
/*縦書き設定*/
-ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown2:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom:0;
  left:-4px;
  /*丸の形状*/
width:10px;
height:10px;
border-radius: 50%;
background:#eee;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
animation:
  circlemove 1.6s ease-in-out infinite,
  cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove{
    0%{bottom:45px;}
   100%{bottom:-5px;}
}

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide{
    0%{opacity:0}
   50%{opacity:1;}
  80%{opacity:0.9;}
100%{opacity:0;}
}

/* 線の描写 */
.scrolldown2:after{
content:"";
  /*描画位置*/
position: absolute;
bottom:0;
left:0;
  /*線の形状*/
width:2px;
height: 50px;
background:#eee;
}
.p-top__icons{
  position: absolute;
  text-align: center;
  right:16px;
  bottom:20px;
}
@media screen and (min-width: 560px) {
  .p-top__icons{
    right:30px;
  bottom:30px;
  }
}
.p-top__icons a{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #49b24f;
  width:108px;
  height:108px;
  border-radius: 50%;
  color:#fff;
  font-size:1.4rem;
}
@media screen and (min-width: 560px) {
  .p-top__icons a{
    width:127px;
  height:127px;
  font-size:1.5rem;
  }
}
.p-line__image{
  font-size: 4rem;
  line-height: 1;
}
.p-line__text{
  font-size:11px;
  font-weight: bold;
}
@media screen and (min-width: 560px) {
  .p-line__text{
    font-size:13px;
  }
}
.motion-txt {
  display: inline-block;
  position: relative;
  /* overflow: hidden; */
  padding: 10px 10px 10px 0px;
}

.motion-txt::after {
  content: "";
  position: absolute;
  opacity: 1;
  left: 100vw;
  top: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  transform: translate3d(-101%, 0, 0);
}

.js-scroll.show .motion-txt::after {
  transition-property: transform, opacity;
  transition-duration: 0.8s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate3d(0, 0, 0);
}

.js-scroll.done .motion-txt::after {
  transition-property: transform;
  transition-duration: 0.8s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate3d(103%, 0, 0);
}

.motion-txt .motion-inner {
  clip-path: inset(0 100% 0 0);
  transition: 1s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
  display: block;
}

.js-scroll.done .motion-txt .motion-inner {
  clip-path: inset(0);
}

.u-curriculum__inner {
  display: flex;
  justify-content: space-between;
}
/*********************************
施術内容
*********************************/
.plan-content{
  padding-top:10rem;
}
.col-2 {
  margin-bottom: 6rem;
}
@media only screen and (min-width: 560px) {
  .col-2 {
    flex: 0 0 48%;
    max-width: 48%;
  }
}
.p-plan__body{
  text-align: center;
  margin-bottom: 4rem;
}
/*********************************
会社概要
*********************************/
.p-access__block {
  margin-bottom: 20px;
}
.p-company__block {
	margin-bottom:40px;
}
@media only screen and (min-width: 560px) {
  .p-company__block {
    flex: 0 0 40%;
    margin-bottom: 0px;
  }

  .p-access__map {
    flex: 0 0 50%;
  }
}

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

.p-access__table tr {
  display: flex;
  margin-bottom: 14px;
  border-bottom: 1px solid hsl(0deg 0% 56%);
  padding-bottom: 14px;
}

.p-access__table tr th {
  flex: 0 0 25%;
  max-width: 25%;
}

.p-access__table tr td {
  flex: 0 0 70%;
  max-width: 70%;
}
.p-access__table a {
  color: #e4b0c4;
  font-weight: bold;
}
.p-access__table a i {
  vertical-align: bottom;
}
.p-company__body {
  margin: 0rem 0px 4rem;
}

.p-about__button {
  background-color: #e4b0c4;
  padding: 50px 15px;
  color: #fff;
  text-align: center;
  font-size: 2.4rem;
}
.p-about__button:hover {
  opacity: 0.7;
}
/*********************************
お知らせ
*********************************/
.u-news__bg{
  background-image: url("/wp-content/themes/seikotsu/images/news-bg.jpg");
}
.p-works__list{
  margin-bottom: 4rem;
}
@media only screen and (min-width: 560px) {
  .p-works__list{
    flex:0 0 31.25%;
    max-width: 31.25%;
    margin-bottom: 5rem;
  }
  .p-title__block {
    flex: 0 0 35%;
    max-width: 35%;
  }
}
@media only screen and (min-width: 560px) {
  .p-block__content {
    position: relative;
  }
}
.p-blog__inner{
  padding:0px;
}
.p-blog__inner .p-common__inner {
  position: relative;
  z-index: 1;
  margin-bottom: 4.5rem;
}
@media only screen and (min-width: 560px) {
  .blog-content .p-common__inner::after,
  .p-blog__inner .p-common__inner::after {
    content: "";
    flex: 0 0 31.25%;
    max-width: 31.25%;
    display: block;
  }
}
.p-blog__image img {
  object-fit: cover;
  height: 288px;
  border-radius: 12px;
  width: 100%;
}

@media only screen and (min-width: 560px) {
  .p-blog__image img {
    height: 247px;
  }
}

.p-blog__button {
  margin-top: 2.4rem;
}

.p-link__block {
  display: inline-block;
}
.p-blog__date {
  color: #999;
  font-size: 1.2rem;
}
.p-blog__link {
  display: block;
  border-bottom: 1px solid #eee;
  position: relative;
}
.blog-image img {
  object-fit: cover;
  height: 200px;
  width: 100%;
  border-radius: 14px;
}
@media only screen and (min-width: 960px) {
  .blog-image img {
    height: 260px;
  }
}
@media only screen and (min-width: 560px) {
  .p-blog__link::before {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    bottom: 0;
    height: 2px;
    margin: 0px 0;
    left: 0;
    background-color: #F0D14F;
    transition: all 0.4s ease-in 0s;
  }
  .p-blog__link:hover::before {
    width: 100%;
  }
}
.p-news__body {
  font-size: 1.6rem;
  margin-bottom: 3rem;
}
.p-cms__area{
  margin-bottom: 3.5rem;
}
.p-blog__block {
  padding: 10px 0px 10px;
}
.works-content {
  padding: 4em 0px 8rem;
}
.works-content .wrap {
  max-width: 800px;
  margin: 0 auto 8rem;
}
.blog-common-ttl {
  font-size: 2.4rem;
  border-bottom: 4px solid #dfaf7b;
  margin-bottom: 2rem;
  color:#dfaf7b;
  padding-bottom: 1rem;
}
.blog-date {
  color: #999;
  font-size: 1.3rem;
  text-align: right;
  margin-bottom: 4rem;
}
.common-btn {
  background-color: #F0D14F;
  max-width: 500px;
  color: #fff;
  margin: 0 auto;
  height: 64px;
  line-height: 64px;
  border-radius: 4px;
  text-align: center;
  margin: 4rem auto 8rem;
}
.common-btn:hover {
  opacity: 0.8;
}
.p-justify__center{
  margin:0 auto;
  text-align: center;
}
/****************************************
パンくずリスト
*****************************************/
#breadcrumb {
  margin-left: auto;
  padding-left: 0;
  margin-right: auto;
  margin-bottom: 6rem;
}

#breadcrumb li {
  display: inline;
  list-style: none;
}

#breadcrumb li:after {
  content: ">";
  padding: 0 10px;
}

#breadcrumb li:last-child:after {
  content: "";
}

#breadcrumb li a {
  text-decoration: none;
  display: inline-block;
}

#breadcrumb li:first-child a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f015";
  -webkit-font-smoothing: antialiased;
  font-weight: bold;
  font-size: 1.3rem;
  color: #333;
  padding-right: 5px;
}

#breadcrumb li a:hover {
  opacity: 0.5;
}
/*********************************
ブログ
*********************************/
.p-common__title {
  margin-bottom: 1rem;
  font-size: 2rem;
color:#dfaf7b;
}
.wp-pagenavi {
  margin-top:10rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wp-pagenavi span.current {
  border: 1px #BFBFBF solid;
  background: #F0D14F;
}
.pages {
  width: 100px !important;
}
.wp-pagenavi a,
.wp-pagenavi span {
  border-radius: 8px;
  background: #fff;
  border: 1px #BFBFBF dashed;
  padding: 10px 14px;
  margin: 0 5px !important;
  font-size:1.2rem;
  transition: all 0.3s;
  width: 40px;
  height: 40px;
  justify-content: center;
  display: flex;
  align-items: center;
}
/*********************************
お問い合わせ
*********************************/
.u-contact__bg{
  background-image: url("/wp-content/themes/seikotsu/images/u-contact__bg.jpg");
}
.p-contact__inner {
  position: relative;
}
.p-contact__tel {
  background: #fff;
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  max-width: 500px;
  margin: 1.5rem auto 8rem;
  padding: 20px;
  border: 4px solid #96da83;
  color: #96da83;
}
.p-contact__link {
  font-size: 3.2rem;
  font-family: "Oswald", sans-serif;
  line-height: 1.1;
}
.swiper-pagination-bullet {
  width: 30px !important;
  height: 4px !important;
  background: #fff !important;
  border-radius: 0px !important;
  margin: 0 6px !important;
}
.swiper-pagination-bullet-active {
  background: #de0029;
}
.contact-table{
  width: 100%;
  margin: 0 auto 6.8rem;
}
.contact-form__01{
  display: block;
}
@media screen and (min-width: 560px) {
  .contact-form__01{
    display: flex;
    justify-content: space-between;
  }
}
.contact-form__01 th {
  display: block;
  margin-bottom: 1rem;
  text-align: left;
}

@media screen and (min-width: 560px) {
  .contact-form__01 th {
    margin-bottom: 0;
    margin-right: 1rem;
    max-width: 20rem;
    width: 100%;
    align-self: flex-start;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    display: flex;
    justify-content: space-between;
  }
}

@media screen and (min-width: 560px) {
  .contact-form__01 td {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    width: 100%;
    display: block;
  }
}
.mw_wp_form {
  margin: 4rem auto 0;
  width: 100%;
  table-layout: fixed;
  word-break: break-all;
  word-wrap: break-all;
}
@media screen and (min-width: 560px) {
  .mw_wp_form {
    max-width: 960px;
  }
}
.contact-table input, .contact-table textarea{
  width: 100%;
  background-color: #F1F2F3;
  border: none;
  padding: 14px 10px;
  border-radius: 4px;
}
.mw_wp_form table {
  width: 100%;
  text-align: left;
}
.mw_wp_form table tr {
  margin-bottom: 20px;
}

.mw_wp_form textarea {
  min-height: 300px;
}

.required-srt {
  display: inline-block;
  background-color: #F0D14F;
  color: #fff;
  padding: 2px 1em;
  font-size: 1.1rem;
  margin-left: 1rem;
  line-height: 1;
}

@media screen and (min-width: 560px) {
  .required-srt {
    margin-left: 0;
    display: flex;
    align-items: center;
    padding: 0 0.2em;
    height: 28px;
  }
}

.mw_wp_form .common-link,
.mw_wp_form .back-btn{
  cursor: pointer;
  pointer-events: auto;
  color: #fff;
  border-radius: 40px;
  border: none;
  position: relative;
  background: #deba29;
  background: linear-gradient(270deg,#deba29,#deba29,rgba(222,186,41,.8),rgba(222,186,41,.35));
  background-position: 100% 50%;
  background-size: 300% 300%;
  transition: background .6s ease-out;
  padding: 18px 40px;
  line-height: 1;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto;
  max-width: 300px;
  width: 100%;
  display: block;
}
.mw_wp_form .back-btn{
  background: #6C737E;
  background: linear-gradient(270deg,#cfcfcf,#cfcfcf,rgb(177 177 177 / 80%),rgba(224, 220, 203, 0.35));
}
.mw_wp_form .common-link:hover,
.mw_wp_form .back-btn:hover{
  background-position: 0 50%;
}

.submit-btn input:hover {
  background: #fff;
  color: #00142c;
}

.form-btn__inner {
  margin-top: 4rem;
}

.p-contact__body {
  text-align: center;
  font-weight: bold;
}

select {
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}

select::-ms-expand {
  display: block;
}

.submit-btn {
  cursor: pointer;
  max-width: 280px;
  background-color: #ed6d00;
  padding: 24px 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  color: #fff;
  display: block;
  letter-spacing: 0.25rem;
  position: relative;
  transition: 0.3s;
  font-weight: 600;
  border: none;
}

.submit-btn::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-image: linear-gradient(
    130deg,
    rgba(255, 255, 255, 0) 25%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 75%
  );
  -webkit-animation: shine 2s infinite;
  animation: shine 2s infinite;
}
#wpcf7-modify {
  cursor: pointer;
  max-width: 280px;
  background-color: #fff;
  padding: 24px 32px;
  color: #ff9103 !important;
  border: 1px solid #ff9103 !important;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  color: #fff;
  display: block;
  letter-spacing: 0.25rem;
  position: relative;
  transition: 0.3s;
  font-weight: 600;
  border: none;
}

.submit-btn:hover {
  opacity: 0.6;
}

.thanks-block {
  margin-bottom: 16rem;
  text-align: left;
}

.thanks-block h3 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
}

@media screen and (min-width: 560px) {
  .thanks-block {
    text-align: center;
  }
}

.thanks-text {
  line-height: 2.4;
  max-width: 960px;
  margin: 0 auto;
}

.caption {
  color: #999;
  margin-top: 2rem;
  display: block;
}

.contact-agreement__body {
  text-align: center;
  margin: 2rem 0;
}

.contact-agreement__body a {
  display: inline-block;
  text-decoration: underline;
}

@media screen and (min-width: 560px) {
  .contact-agreement__body a {
    margin-bottom: 4rem;
  }
}

.privacy-policy__wrap {
  max-width: 960px;
  margin: 0 auto 14rem;
}

.privacy-policy__block {
  margin-bottom: 4rem;
}

div.wpcf7-mail-sent-ok {
  border: 2px solid #ffffff !important;
  background: #fff;
}

.wpcf7 form.sent .wpcf7-response-output {
  border: 2px solid #ffffff !important;
  background: #fff;
}

.contact-headline {
  font-size: 2rem;
  margin-bottom: 4rem;
}

.wpcf7-mail-sent-ok {
  display: none !important;
}
.contact-conversion__btn {
  margin: 0 auto;
  max-width: 800px;
}
@media screen and (min-width: 560px) {
  .contact-conversion__btn {
    display: flex;
  }
}
/*********************************
footer
*********************************/
.c-line__content{
  background-color: #45b345;
  padding:50px 0px 20px;
  color:#fff;
}
.p-strong__text{
  display: inline-block;
  background-color: #deba29;
  color: #fff;
  font-weight: bold;
  padding: 0px 16px;
  margin-bottom: 2.5rem;
}
.p-line__images{
  text-align: center;
}
@media screen and (min-width: 560px) {
.p-line__block{
  flex: 0 0 62%;
  max-width: 62%;
}
.p-line__images{
  flex: 0 0 20%;
  max-width: 20%;
}
}
.p-line__qr{
  max-width: 120px;
    margin: 0 auto;
}
.p-line__headline{
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}
.p-line__headline i{
  font-size: 2.4rem;
  margin-bottom: 2rem;
}
.p-line__headline span{
  color:#F0D14F;
}
.p-line__lead{
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  margin-bottom: 1rem;
}
.p-line__id{
  font-weight: bold;
  text-align: center;
}
footer {
  background: #f9f8f4;
  padding: 60px 0px 0px;
  text-align: center;
}
@media screen and (min-width: 560px) {
  footer {
    padding: 0px 0px 0px;
  }
}
footer h2 {
  font-size: 4rem;
  margin: 0 auto 1.5rem;
}
footer p {
  font-size: 1.4rem;
}
.p-footer__tel a{
  font-size:2rem;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  color: #deba29;
}
copyright {
  background-color: #deba29;
  color: #fff;
  text-align: center;
  display: block;
  font-size: 1.1rem;
  padding: 20px 10px;
  font-family: 'Poppins', sans-serif;
}

.p-footer__logo {
  text-align: center;
  max-width: 150px;
  margin: 0 auto 3rem;
}

.p-footer__block{
  max-width: 500px;
  margin:0 auto 4rem;
}
@media screen and (min-width: 560px) {
  .p-footer__block{
    flex:0 0 45%;
    margin:0 auto;
  }
}
@media screen and (min-width: 560px) {
.p-footer__map{
  flex:0 0 50%;
  max-width: 50%;
}
}
.btn__container {
  max-width: 220px;
  margin: 4rem auto;
}
.btn {
  min-width: 110px;
  background-color: #fff;
  padding: 1rem 2rem;
  text-decoration: none;
  color: #c71e7e;
  display: flex;
  transition: all 0.2s ease-in-out;
  margin-right: 10px;
}
.btn i {
  color: #df3796;
  font-size: 20px;
  padding-right: 10px;
  transition: all 0.3s ease-in-out;
  padding-top: 5px;
}
.btn span {
  font-family: "Roboto", sans-serif;
  align-self: center;
  transform: translateX(0px);
  transition: all 0.1s ease-in-out;
  opacity: 1;
}
.c-pagetop {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 10;
}

.c-pagetop__button {
  background-color: #F0D14F;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  width: 40px;
  height: 140px;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

@media only screen and (min-width: 560px) {
  .c-pagetop__button {
    width: 60px;
    height: 150px;
  }
}

.c-pagetop__button:hover {
  opacity: 0.7;
}

.p-footer__link {
  text-align: center;
  font-size: 1.4rem;
  color: #999;
  margin-bottom: 30px;
}

.p-footer__link a:hover {
  color: #ed6d00;
}
.p-common__link{
  color: #fff;
  display: inline-block;
  border-radius: 40px;
  position: relative;
  background: #deba29;
  background: linear-gradient(270deg,#deba29,#deba29,rgba(222,186,41,.8),rgba(222,186,41,.35));
  background-position: 100% 50%;
  background-size: 300% 300%;
  transition: background .6s ease-out;
  padding: 18px 40px;
  line-height: 1;
  font-size: 1.5rem;
  font-weight: 700;
}
.p-common__link:hover{
  background-position: 0 50%;
}
.insta_btn2 {
  /*ボタンの下地*/
  color: #fff; /*文字・アイコン色*/
  border-radius: 7px; /*角丸に*/
  position: relative;
  display: inline-block;
  margin: 0 auto 10rem;
  height: 50px; /*高さ*/
  width: 190px; /*幅*/
  text-align: center; /*中身を中央寄せ*/
  font-size: 18px; /*文字のサイズ*/
  line-height: 50px; /*高さと合わせる*/
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat; /*グラデーション①*/
  overflow: hidden; /*はみ出た部分を隠す*/
  text-decoration: none; /*下線は消す*/
  display: flex;
  justify-content: center;
  align-items: center;
}

.insta_btn2:before {
  /*グラデーション②*/
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /*全体を覆う*/
  height: 100%; /*全体を覆う*/
  background: -webkit-linear-gradient(
      15deg,
      #ffdb2c,
      rgb(249, 118, 76) 25%,
      rgba(255, 77, 64, 0) 50%
    )
    no-repeat;
  background: linear-gradient(
      15deg,
      #ffdb2c,
      rgb(249, 118, 76) 25%,
      rgba(255, 77, 64, 0) 50%
    )
    no-repeat;
}

.insta_btn2 .fa-instagram {
  /*アイコン*/
  font-size: 35px; /*アイコンサイズ*/
  position: relative;
}

.insta_btn2 span {
  /*テキスト*/
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.insta_btn2:hover span {
  /*ホバーで一周回転*/
  -webkit-transform: rotateX(360deg);
  -ms-transform: rotateX(360deg);
  transform: rotateX(360deg);
}
.mwform-radio-field-text {
  vertical-align: sub;
}
/*========= ローディング画面のためのCSS ===============*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  background: #f9f8f4;
  z-index: 9999999;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
#splash_logo {
  max-width: 220px;
  margin:0 auto;
}
@media only screen and (min-width: 560px) {
  #splash_logo {
    max-width: 100%;
  }
}
/*========= 画面遷移のためのCSS ===============*/

/*画面遷移アニメーション*/
.splashbg1,
.splashbg2 {
  display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg1,
body.appear .splashbg2 {
  display: block;
}

/*上に消えるエリア*/
body.appear .splashbg1 {
  animation-name: PageAnime;
  animation-duration: 1.4s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  bottom: 50%;
  left: 0;
  transform: scaleY(1);
  background-color: #f9f8f4;
}

@keyframes PageAnime {
  0% {
    transform-origin: top;
    transform: scaleY(1);
  }

  100% {
    transform-origin: top;
    transform: scaleY(0);
  }
}

/*下に消えるエリア*/
body.appear .splashbg2 {
  animation-name: PageAnime2;
  animation-duration: 1.4s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 50%;
  left: 0;
  transform: scaleY(1);
  background-color: #f9f8f4;
  /*伸びる背景色の設定*/
}

@keyframes PageAnime2 {
  0% {
    transform-origin: bottom;
    transform: scaleY(1);
  }

  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}

/*画面遷移の後現れるコンテンツ設定*/
#container {
  opacity: 0;
  /*はじめは透過0に*/
  position: relative;
  z-index: 1;
}

/*bodyにappearクラスがついたら出現*/
body.appear #container {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* fadeUpをするアイコンの動き */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*********************************
下層ページのパーツ
*********************************/
.p-common__hero{
  padding:12rem 0px;
  text-align: center;
  position: relative;
  color:#fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10rem;
  background-position: center;
}
@media only screen and (min-width: 560px) {
  .p-common__hero{
    padding:20rem 0px;
  }
}
.p-common__hero::after{
  content:'';
  z-index: 1;
  background-color: rgba(0,0,0,0.3);
  position: absolute;
  left:0px;
  top:0px;
  width:100%;
  height:100%;
}
.p-common__hero-headline{
  font-size: 4rem;
  z-index: 2;
  letter-spacing: 0.6rem;
}
/*********************************
当院について
*********************************/
.u-about__bg{
  background-image: url("/wp-content/themes/seikotsu/images/about-bg.jpg");
}
.p-about__intro{
  text-align: center;
  position: relative;
  padding:10rem 0px
}
.p-about__icons{
  z-index: 0;
}
.p-about__icons:first-child{
  position: absolute;
  top:0px;
  max-width: 220px;
  right:0px;
  opacity: 0.5;
}
.p-about__icons:nth-child(2){
  left:0px;
  position: absolute;
  bottom:130px;
  opacity: 0.5;
  max-width:170px;
}
.p-about__icons:nth-child(3){
  right:60px;
  position: absolute;
  bottom:0px;
  max-width: 160px;
  opacity: 0.5;
}
.p-about__icons:nth-child(4){
  left: 100px;
  background-color: #F0D14F;
  opacity: .2;
  position: absolute;
  top: 60px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
}
@media only screen and (max-width: 559px) {
  .p-about__icons:first-child,
  .p-about__icons:nth-child(2),
  .p-about__icons:nth-child(3),
  .p-about__icons:nth-child(4){
    opacity: 0.1;
  }
  .p-about__icons:first-child{
    max-width: 150px;
  }
  .p-about__icons:nth-child(2){
    max-width: 130px;
  }
  .p-about__icons:nth-child(3){
    max-width: 100px;
  }
  .p-about__icons:nth-child(4){
    left:0px;
    width:60px;
    height:60px;
  }
}
.p-about__description{
  text-align: center;
  font-size: 2.8rem;
  color: #dfaf7b;
  position: relative;
  margin-bottom: 3rem;
}

.p-about__body{
  margin-bottom: 1.5rem;
}
.p-staff__image{
  position: relative;
  padding-left: 30px;
  padding-top:30px;
  z-index: 2;
}
.p-staff__image::before{
  content:'';
  position: absolute;
  left:0px;
  top:0px;
  background-image:
		radial-gradient(rgba(240,209,79,0.3) 30%, rgba(0,0,0,0) 31%),
		radial-gradient(rgba(240,209,79,0.3) 30%, rgba(0,0,0,0) 31%);
	background-size: 16px 16px;
	background-position: 0 0, 8px 8px;
  max-width: 280px;
  width:100%;
  height:200px;
  z-index: -1;
}
@media only screen and (min-width: 560px) {
  .p-staff__image::before{
    max-width: 400px;
    width:100%;
    height:300px;
  }
}
@media only screen and (min-width: 560px) {
  .p-staff__block{
    flex:0 0 50%;
  max-width: 50%;
  }
.p-staff__image{
  flex:0 0 45%;
  max-width: 45%;
}
}
.p-staff__lead{
  font-size:2rem;
  margin-bottom: 2rem;
}
.incho-description{
  background-color: #fffcf1;
  padding:12rem 0px;
}
@media only screen and (min-width: 560px) {
.p-staff__inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
}
.p-staff__incho-jp{
  font-weight: bold;
  font-size:1.8rem;
}
.p-staff__incho-name{
  font-size:4rem;
  font-family: 'Poppins', sans-serif;
  color: #dfaf7b;
    line-height: 1.1;
    margin: 15px 0px;
}
.p-staff__history{
  border-bottom:2px solid #f0d14f;
  padding-bottom:10px;
  margin-bottom: 10px;
  margin-top:6rem;
  font-size: 2rem;
}
.p-staff__body{
  margin-top: 2rem;
}
.p-staff__table{
  width: 100%;
  text-align: left;
  display: table-cell;
  border-collapse: collapse;
}
@media only screen and (min-width: 560px) {
.p-staff__table{
    display: block;
  }
}
.p-staff__table tr{
  display: flex;
  padding:1.5rem 0px;
  border-bottom: 1px solid #eee;
  font-size:1.5rem;
}
.p-staff__table tbody{
  display: block;
    width: 100%;
}
.p-staff__table tr th{
    width: 20%;
    display: inline;
    margin-bottom: 0px;
    font-family: 'Poppins', sans-serif;
    color: #dfaf7b;
    padding-left: 15px;
}
@media only screen and (min-width: 560px) {
  .p-staff__table tr th{
    width: 15%;
  }
}
.p-staff__table tr td{
  width: 70%;
}
.p-staff__profile{
  font-weight: bold;
  opacity: 0.4;
  font-family: 'Poppins', sans-serif;
}
.p-staff__image02{
  position: relative;
  padding-top:20px;
  padding-left: 20px;
}
.p-staff__image02::after{
  content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    background-image: radial-gradient(rgba(240,209,79,0.3) 30%, rgba(0,0,0,0) 31%), radial-gradient(rgba(240,209,79,0.3) 30%, rgba(0,0,0,0) 31%);
    background-size: 16px 16px;
    background-position: 0 0, 8px 8px;
    width: 280px;
    height: 200px;
    z-index: -1;
}
@media only screen and (min-width: 560px) {
  .p-staff__image02::after{
    width: 100%;
    max-width: 400px;
    height: 300px;
  }
}
@media only screen and (min-width: 560px) {
.p-staff__image02{
  flex:0 0 40%;
  max-width: 40%;
}
.p-staff__block02{
  flex:0 0 50%;
  max-width: 50%;
}
}
.staff{
  padding:10rem 0px;
}
.u-staff__inner{
  margin-top:4rem;
}
.p-staff__name{
  margin-top:2rem;
  font-size:2rem;
  margin-bottom: 2rem;
  font-weight: bold;
  color: #dfaf7b;
}
.p-staff__name span{
  font-family: 'Poppins', sans-serif;
  font-size:3.2rem;
  opacity: 0.2;
  color:#F0D14F;
  display: block;line-height: 1;
}
/*********************************
施術メニュー
*********************************/
.u-menu__bg{
  background-image: url("/wp-content/themes/seikotsu/images/menu-bg.jpg");
}
.p-menu__image{
  margin-bottom: 3rem;
}
@media only screen and (min-width: 560px) {
.p-menu__image{
  flex:0 0 40%;
  max-width: 40%;
  margin-bottom: 0rem;
}
.p-menu__intro--block{
  flex:0 0 50%;
  max-width: 50%;
}
}
.p-common__caption{
  margin-top:2rem;
  font-size: 1.3rem;
  color:#999;
}
.p-menu__intro--body{
  margin-top: 1rem;
}
.p-price__content{
  margin-bottom: 6rem;
}
.p-price__inner{
  padding:10rem 0px;
  background-repeat: no-repeat;
  color:#fff;
  position: relative;
  background-position: center;
    background-size: cover;
}
@media only screen and (min-width: 560px) {
  .p-price__inner{
    padding:15rem 0px;
  }
}
.p-price__inner::after{
  content: '';
  background-color: rgb(120 113 85 / 85%);
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}
.u-shinkyu__bg{
  background-image: url("/wp-content/themes/seikotsu/images/u-shinkyu__bg.jpg");
}
.p-price__headline{
  color:#fff;
  font-size:3.2rem;
  text-align: center;
  z-index: 2;
  position: relative;
  letter-spacing: 0.5rem;
}
.p-price__headline::after{
  background: #fff;
  position: absolute;
  content: '';
  bottom: -11px;
  left: 50%;
  width: 45px;
  height: 2px;
  transform: translateX(-50%);
}
.p-price__image{
  position: relative;
  z-index: 2;
  top:-40px;
}
@media only screen and (min-width: 560px) {
  .p-price__image{
    top:-80px;
  }
}
.p-price__table{
  width: 100%;
    text-align: left;
    /* display: table-cell; */
    border-collapse: collapse;
}
.p-price__table tr{
  display: flex;
  text-align: center;
}
@media only screen and (min-width: 560px) {
  .p-price__table{
    display: block;
  }
}
.p-price__table tbody{
  display: block;
    width: 100%;
}
.p-price__table th,
.p-price__table td{
  padding:10px;
  width: 100%;
}
.p-price__table th{
  background:  #fffdf6;
}
.p-price__body{
  text-align: center;
  margin-bottom: 5rem;
}