@charset "UTF-8";

/* -----------------
基本的な設定（spのみ）
------------------- */
.pc {
  display: none !important;
}

.BodyInner {
  overflow: hidden;
}

.SectionTitle {
		margin-top: 42px;
}

.SectionTitle h2 {
  font-size: 2.4rem;
  display: inline-block;
  margin: 0 15px;
}

.SectionTitleInner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.SectionTitle p {
  margin: 5px auto;
  width: 90%;
}

.Brown {
  color: #8A690F;
}

h3 {
  margin: 10px auto;
   font-size: 2.2rem;
}

/* ----------------------------------


トップページの設定


------------------------------------ */

/* -----------------
headerの設定
------------------- */

.TopHeader {
  position: relative;
  width: 100%;
	height: 90vh;
}

.Hand1 {
  position: absolute;
  top: -50px;
  left: -60px;
  width: 50%;
  z-index: 100;
}

.PhotoBlock1 {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.PhotoBlock1 img {
  margin: 8px 8px 0 0;
}

.Photo01 {
  width: 170px;
}

.Photo02, .Photo03, .Photo04 {
  width: 150px;
}

.ConceptTitle {
  width: 70%;
  margin: 42px auto;
  max-width: 400px;
}

.ConceptTitle img {
  width: 100%;
}

.Concept h3 {
  text-align: center;
}

.MainLogo {
  width: 60%;
  margin: 24px auto;
  max-width: 400px;
}

.LogoArea p {
	width: 80%;
  margin: 10px auto;
}

/* 写真部分の動きの設定 */
.animation {
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 2.5s;
}

.a6 {
  animation-duration: 3.0s;
}

.a7 {
  animation-duration: 3.5s;
}

.keyframe6 {
  animation-name: poyopoyo;
}

@keyframes poyopoyo {
  0%, 20%, 40%, 60% {
    transform: scale(1.0);
  }

  50%, 70% {
    transform: scale(0.98);
  }
}

/* ナビの設定 */
.nav-item i {
  display: block;
  font-size: 24px;
}

.nav-item {
  position: relative;
}

.nav-item a span {
  display: block;
  color: #ffffff;
  font-size: 1.4rem;
}

.nav-list {
  display: table;
  padding: 0;
  list-style: none;
  text-align: center;
}

.NavCenter {
  position: relative;
}

.NavCenter a::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 50px;
  background-color: #ffffff;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
}

.NavCenter a::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 50px;
  background-color: #ffffff;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
}

.nav-item {
  display: table-cell;
  padding: 4px 0px;
  vertical-align: middle;
}


.nav-list {
  table-layout: fixed;
  width: 100%;
}

.nav-list {
  width: 90%;
  border-collapse: collapse;
  margin: 0 auto;
  background-color: #8A690F;
  background-repeat: no-repeat;
  border-radius: 1.5rem;
  height: 80px;
}

.global-nav {
  z-index: 100000;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 100000;
  width: 100%;
}

/* ハンバーガーメニュー */
/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: absolute;
  z-index: 10000;
  top: 50%;
  width: 42px;
  height: 42px;
  cursor: pointer;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #ffffff;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
  transform: rotate(315deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(-315deg);
  -moz-transform: rotate(-315deg);
  transform: rotate(-315deg);
}

/* ナビの中身の設定 */
nav.globalMenuSp {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  color: #000;
  text-align: center;
  transform: translateX(100%);
  transition: all 0.6s;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 105;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #fff;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

nav.globalMenuSp ul li:hover {
  background: #ddd;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #8A690F;
  padding: 1em 0;
  text-decoration: none;
}

.Glogo {
  width: 100px;
  margin: 32px auto;
}

.GnavSNS {
  display: flex;
  justify-content: center;
  align-items: center;
}

.GInsta {
  margin-right: 32px;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateX(0%);
}

.footer {
  margin-bottom: 48px;
}

.Block1 {
  display: inline-block;
}

/* ページトップボタン */
#page-top {
  display: none;
}

/* -----------------
newsの設定
------------------- */
.News {
  padding-bottom: 30px;
	    background-color: rgba(138, 105, 15, 0.1);
    background-repeat: no-repeat;
    overflow: hidden;
    padding-bottom: 30px;
}

/* インスタ設定 */
#sb_instagram.sbi_fixed_height {
	height: 100%!important;
	margin-top: 24px;
}
#sbi_load{
	margin-top: 32px!important;
}

/* お知らせ */
.NewsBlock {
  margin-top: 64px;
}

.Notice ul {
  font-size: 1.4rem;
  margin: 16px auto;
}

.Notice ul li {
  padding: 5px 0;
   width: 90%;
  height: 60px;
  background-color: #fff;
  background-repeat: no-repeat;
  border-radius: 3.6rem;
  margin: 8px auto;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .1);
  display: flex;
  justify-content: center;
  align-items: center;
}
.NewsListDay{
  margin-top: 5px;
  color: #8A690F;
}
.Notice ul li img {
  width: 12px;
  display: inline-block;
  margin-left: 10px;
}

.Notice ul span {
  color: #8A690F;
}

.NoticeMore {
  margin-top: 32px;
}

.NoticeMore a {
  border-bottom: 1px solid #B0CF01;
  padding-bottom: 2px;
  font-size: 1.4rem;
}

.Insta {
  margin-top: 42px;
}

.slick-slider {
  margin-top: 42px;
}

/* -----------------
conceptの設定
------------------- */
.ConceptUpInner {
  padding-bottom: 30px;
}

.ConceptBox {
  overflow: hidden;
	width: 80%;
	margin: 0 auto;
}
.ConceptBox h3{
font-size: 1.8rem;
}

.ConceptBgBox h3 {
  text-align: center;
}
.ConceptBox p {
  margin: 15px auto;
  text-align: left;
}

/* -----------------
安心ポイントの設定
------------------- */

.PointSlider {
  background-image: url(../images/top/point/sp/PointSpBg.png);
  background-repeat: no-repeat;
  width: 100%;
  height: 800px;
  position: relative;
  background-size: cover;
  padding-top: 32px;
}

@media screen and (min-width:481px) {
  .PointBoxInner {
    width: 350px;
  }

  .PointimgNo {
    position: absolute;
    bottom: 20px;
    right: 20px;
  }

  .PointBoxText {
    width: 80%;
  }
}

@media screen and (max-width:480px) {
  .PointBoxInner {
    width: 75%;
  }

  .PointimgNo {
    position: absolute;
    bottom: 20px;
    right: 20px;
  }

  .PointBoxText {
    width: 80%;
  }
}

.PointTitle {
 width: 70%;
    margin: 14px auto 0 auto;
    padding: 3% 5%;
    background-color: #ffffff;
    border-radius: 3.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.PointTitle img {
  width: 100%;
  margin: 0 auto;
}

.PointBox {
  position: relative;
}

.PointBox {
  height: 500px;
  margin-top: 90px;
}

.PointBoxInner {
  position: relative;
  background-color: #F7F3EC;
  background-repeat: no-repeat;
  height: 350px;
  border-radius: 3.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto;
}

.PointImg1 {
  width: 45%;
  position: absolute;
  top: -35%;
  right: -8%;
}
.only01{
	right:0;
}
.only02 {
width: 50%;
  right: 0;
}
.only04 {
width: 55%;
  top: -30%;
}
.only05 {
  width: 50%;
  right: -10px;
}

.only06 {
  width: 50%;
}

.PointImg2 {
  width: 80%;
  position: absolute;
  top: -30%;
  left: -20%;
}

.bxslider img {
  margin: 0 auto;
  display: block;
}

.slick-dots {
  bottom: 32px;
}


/* -----------------
お悩みの設定
------------------- */
/* リスト部分 */
.WorriesListSp {
  width: 90%;
  margin: 30px auto;
}

.WorriesListSp li .WorriesInner {
  width: 100%;
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 0;
  background-color: #fff;
  background-repeat: no-repeat;
  border-radius: 3.6rem;
  margin-top: 13%;
  box-shadow: 0 2px 2px 0 rgb(0 0 0 / 10%);
  position: relative;
  max-width: 400px;
  margin: 40px auto 0 auto;
}

.Worries h2 {
  font-size: 2.2rem;
}

.Worries .SectionTitle p {
  text-align: left;
}

.WorriesListSpImg {
  position: absolute;
  width: 13%;
  bottom: 0;
  left: 5%;
}

.WorriesListSpArrow {
  position: absolute;
  width: 8%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  right: 5%;
}

.WorriesListSpTitle {
  font-size: 2.0rem;
  font-weight: bold;
}


/* 詳細部分 */
.WorriesList {
  margin-top: 72px;
}

.WorriesListBoxWrapper {
  background-color: rgba(176, 207, 1, 0.1);
  background-repeat: no-repeat;
  padding: 32px 0;
  width: 100%;
  margin-top: 24px;
}

.WorriesListBoxBlownWrapper {
  padding: 32px 0;
  width: 100%;
}

.WorriesListBox {
  width: 95%;
  margin: 0 auto;
  text-align: center;
}

.WorriestListImage {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.WorriestListText {
  background-color: #ffffff;
  background-repeat: no-repeat;
  width: 90%;
  border-radius: 3.6rem;
  padding: 8%;
  font-size: 1.6rem;
  margin: 10px auto 0 auto;
}
/* 一時的に消している */

	/* 一時的に消している */
.WorriestListText p {
  margin-top: 10px;
  text-align: left;
}

.SubTitle {
  margin: 24px auto 0 auto;
  border-bottom: 1px solid #B0CF01;
  padding-bottom: 2px;
}

.Bodymake {
  width: 70%;
}

.Kega {
  width: 70%;
}

.MenuListWrapper {
  width: 90%;
  margin: 0 auto;
}

.ListBlock {
  width: 90%;
  margin: 16px auto 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 250px;
}

.ListBlock:first-child {
  margin-top: 0px;
}

.ListBlock li {
  margin-top: 24px;
  font-weight: 600;
  text-align: left;
  display: inline-block;
}

.ListBlockR {
  margin-left: 20px;
}

.ListBlock li p, .ListBlock li div {
  display: inline-block;
}

.ListBlock li img {
  padding-left: 6px;
}

.ListBlock li a {
  color: #8A690F;
}

.ListBlockSpArrow {
  width: 20px;
}

/* -----------------
ご相談くださいの設定
------------------- */
.Consultation {
  text-align: center;
  margin-top: 54px;
}
.Consultation .SectionTitle h2{
	margin: 0px 3px;
	width: 55%;
}
.Inline {
  display: inline-block;
}

.ConsultationBox1 {
  display: inline-block;
  max-width: 400px;
  margin: 42px auto;
}

.InchoPhoto1, .InchoPhoto2 {
  width: 250px;
  height: 150px;
  object-fit: cover;
  border-radius: 3.6rem;
  object-position: center;
}

.InchoPhoto2 {
  margin-left: auto;
  margin-right: 0;
  margin-top: 10px;
}

.ConsultationBox2Inner {
  width: 80%;
  margin: 0 auto;
}

.ConsultationBox2Inner li {
  margin-top: 10px;
  display: inline-block;
}

.ConsultationBtn {
  margin-top: 40px;
}

/* -----------------
footerの設定
------------------- */
footer {
  margin-top: 64px;
}

.FooterInnerWrapper {
  background-color: rgba(138, 105, 15, 0.1);
  background-repeat: no-repeat;
	padding: 42px 5%;
}

.FooterLogo {
  width: 60%;
	margin: 0 auto;
}
.FooterCalender {
  width: 90%;
  margin: 0 auto;
}
.FooterCalender iframe{
  width: 100%;
  height: 350px;
  border: none!important;
}
.FooterightP {
  width: 90%;
  margin: 32px auto 0 auto;
  text-align: left;
}

.FooterLower {
  width: 100%;
  background-color: #fff;
  background-repeat: no-repeat;
  padding: 32px 0;
}

.FooterLowerInnner {
  width: 100%;
  display: flex;
  justify-content: space-around;
  margin: 0 auto;
}

.FooterLowerInnner hr {
  margin-top: 12px;
}

.ReceptionTime {
  width: 95%;
  margin: 0 auto;
}

.BizHourLi {
  display: inline-block;
  width: 100%;
  margin: 0 auto;
}

.ResepitonTitle {
  font-weight: 600;
  text-align: center;
  color: #8A690F;
}

.telephone {
  font-size: 2.4rem;
}

.AdressUnder {
  margin-top: 12px;
}


.ReserveButton {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 600px;
    margin: 12px auto;
}

.FooterInquiry {
  margin-top: 64px;
}

.ReceptionTime ul {
  margin: 0 auto;
}

.WebReserve {
  background-color: #ED6C00;
  background-repeat: no-repeat;
  width: 45%;
  height: 32px;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.WebReserve a p{
  color: #ffffff;
  font-weight: bold;
}
.LineReserve {
  background-color: #00B900;
  background-repeat: no-repeat;
}
.LineButton {
  background-color: #00B900;
  background-repeat: no-repeat;
   width: 45%;
  height: 32px;
  color: #FFF;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.WebReserve a, .LineButton a{
  color: #FFF;
}
.FooterAdress {
  margin-top: 10px;
  text-align: left;
  font-size: 1.4rem;
}

/* 受付時間の設定 */
.BizHour {
  border-collapse: collapse;
  margin-top: 5px;
  width: 100%;
}

.HourDayofweek {
  color: #FFF;
  height: 20px;
}

.Mark {
  color: #707070;
}


.BizHour th, .BizHour td {
  padding: 8px;
  text-align: center;
  border: 1px solid #707070;
  border-right: none;
  border-left: none;
}

.BizHour th {
  background: #707070;
  background-repeat: no-repeat;
  font-weight: normal;
}

.LastReception {
  margin-top: 5px;
  font-size: 14px;
  margin-bottom: 20px;
}

.AdressUnder a {
  color: #8A690F;
}

/* コピーライトの設定 */
.Copyright {
  display: flex;
  justify-content: center;
  align-items: center;
}

.Copyright {
  width: 100%;
  height: 164px;
  background-color: #B0CF01;
  background-repeat: no-repeat;
  color: #FFF;
  text-align: center;
  padding: 25px 0;
  font-size: 1.4rem;
  padding-bottom: 64px;
}


/* ----------------------------------


初めての方へページの設定


------------------------------------ */

/* -----------------
headerの設定
------------------- */
.UnderlayerHeader {
  position: relative;
}

.UnderlayerHeader .Hand1 {
  position: absolute;
  width: 200px;
  transform: rotate(-45deg);
  top: -80px;
  left: -40px;
}

.UnderlayerHeader .Hand2 {
  position: absolute;
  width: 200px;
  transform: rotate(-140deg);
  top: -110px;
  right: -80px;
}

/* -----------------
メインビジュアルの設定
------------------- */
.UnderlayerMainVisual {
  padding-top: 100px;
}

.UnderlayerMainVisualInner {
  text-align: center;
}

.UnderlayerMainvisualTitle {
  background-color: #ffffff;
  background-repeat: no-repeat;
  border-radius: 3.6rem;
  padding: 30px;
  width: 90%;
  position: relative;
  display: inline-block;
  max-width: 400px;
}

.UnderlayerMainvisualTitleImage {
  width: 80%;
  margin: 0 auto;
}

.UnderlayerMainvisualTitleImage img {
  margin: 0 auto;
}

.UnderlayerMainvisualTitleLine hr {
  width: 20%;
  margin: 12px auto 0 auto;
  border: 1px solid #B0CF01;
}

.UnderlayerMainvisualP {
  margin-top: 12px;
  text-align: left;
}

.TitleLine {
  position: absolute;
  top: -42px;
  left: -10px;
}

.PListUnderline {
  width: 40%;
}

/* パンくずリストここから */
.PList {
  text-align: right;
  margin-top: 10px;
  font-size: 1.4rem;
  color: #8A690F;
}

.PListItem {
  border-bottom: 1px solid;
  padding-bottom: 3px;
}

.ListItem {
  display: inline;
  font-size: 14px;
}

.ListItem::after {
  content: '＞';
  padding: 0 16px;
}

.ListItem:last-child::after {
  content: '';
}

.ListItemLink {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

.PListUnderline {
  margin-top: 20px;
  border: 1px dashed #8A690F;
  width: 50%;
  margin-left: auto;
}

/* パンくずリストここまで */

/* -----------------
３つの強みの設定
------------------- */
.threePoint{
	padding-top: 42px;
}
.ThreeStrengthsTitle {
  text-align: center;
}

.ThreeStrengthsTitle h2 {
  width: 70%;
  margin: 0 auto;
  max-width: 300px;
}


.ThreeStrengthsWrapper {
  width: 90%;
  margin: 0 auto;
}

.ThreeStrengthPhoto img {
  width: 250px;
  height: 200px;
  object-fit: cover;
  object-position: center;
  margin: 0 auto;
  border-radius: 3.6rem;
}

.ThreeStrengthPhoto2 img {
  width: 300px;
  margin: 0 auto;
  border-radius: 3.6rem;
}

.ThreeStrengthBoxTitle h3, .ThreeStrengthBoxTitle02 h3 {
  color: #8A690F;
  background-color: rgba(138, 105, 15, 0.1);
  background-repeat: no-repeat;
  padding: 10px;
  margin-top: -20px;
}
.ThreeStrengthBoxTitle h3{
	font-size: 2.0rem;
}
.ThreeStrengthBox1No {
  width: 20%;
  margin: -20px 0 10px 0;
  max-width: 80px;
}

.ThreeStrengthBox1No img {
  width: 100%;
}

.ThreeStrengthBoxText {
  width: 90%;
  margin: 10px auto 0 auto;
}

.ThreeStrengthBoxLink {
  text-align: center;
}

.ThreeStrengthBoxLink a {
  margin-top: 16px;
  display: inline-block;
  border-bottom: 1px solid #B0CF01;
}

.ThreeStrengthsHr {
  margin-top: 20px;
}

.ThreeStrengthPhoto3 img {
  width: 300px;
  margin: 0 auto;
}

/* -----------------
院の様子の設定
------------------- */
.StateBGUp {
  border-style: solid;
border-width: 50px 0 0 95vw;
  border-color: transparent transparent transparent rgba(138, 105, 15, 0.1);
  margin-top: 42px;
}
.TopBg01{
	margin-top: 0;
}
.StageInner {
  background-color: rgba(138, 105, 15, 0.1);
  background-repeat: no-repeat;
  padding-bottom: 64px;
  padding-bottom: 24px;
}

.ListBoxA, .ListBoxB, .ListBoxC {
  position: relative;
  margin-top: 32px;
  text-align: center;
}

.ListBoxPhotoSP img {
  width: 90%;
  height: 200px;
  object-fit: cover;
  margin: 0 auto;
}

.ListBoxAText p {
  box-shadow: 0 0 2px #ffffff;
}

.ListBoxAText, .ListBoxBText, .ListBoxCText {
  margin-top: 10px;
}

.ListBoxATitle h3 {
  position: absolute;
  top: -20px;
  left: 0;
}

.ListBoxBText p, .ListBoxCText p {
  display: inline-block;
  text-align: left;
  margin: 0 auto;
}

.StateBGUnder {
  border-style: solid;
  border-width: 0 0 50px 95vw;
  border-color: transparent transparent transparent rgba(138, 105, 15, 0.1);
}

/* -----------------
院長挨拶の設定
------------------- */
.DirectorSign {
     width: 250px;
    margin: 24px auto;
}

.DirectorBlock {
  width: 90%;
  margin: 0 auto;
}

.DirectorPhotoSp {
  position: relative;
  width: 60%;
  margin: 24px auto 0 auto;
}

.DirectorPhotoSp:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.DirectorPhotoSp img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 3.6rem;
}

.DirectorNames {
  width: 90%;
  margin: 10px auto;
  text-align: center;
  position: relative;
}

.DirectorName, .DirectorNameEnglish {
  width: 300px;
  height: 64px;
  background-image: url(../images/BeginerPage/Director/DirectorNameBg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  display: flex;
  justify-content: center;
  align-items: center;
    margin: 0 auto;
	position: relative;
}

.DirectorNameEnglish {
  background-image: url(../images/BeginerPage/Director/DirectorNameEnglishBg.svg);
  color: #ffffff;
  height: 72px;
  z-index: -10;
	padding: 10px 0;
   margin-top: -20px;
}

.DirectorNameEnglish, .DirectoIntroduction {
  font-size: 1.4rem;
  font-weight: 500;
}

.DirectoIntroduction {
    margin-top: 10px;
    text-align: left;
}

.DIrectorBoxLeftInner h3 {
  text-align: left;
	font-size: 1.6rem;
}

.DIrectorBoxLeftInner {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 3.6rem;
}

.DirectorBoxLeftText p {
  width: 95%;
  font-size: 1.4rem;
  margin: 8px auto 0 auto;
}

/* -----------------
Q&Aの設定
------------------- */
.QandA {
  width: 90%;
  margin: 0 auto;
}

.QandA h3 {
  font-size: 2.0rem;
}

#Accordion {
  margin-top: 16px;
}

.AccordionTitle, .AccordionContentInner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.AccordionTitle p, .AccordionContentInner p {
  padding-left: 10px;
}

.AccordionContentInner {
  padding-left: 32px;
  font-size: 1.4rem;
}
.Answer{
	margin: 12px 0;
}
/* -----------------
施術までの流れの設定
------------------- */
.Flow {
  background-color: rgba(138, 105, 15, 0.1);
  background-repeat: no-repeat;
  margin-top: 42px;
  padding-bottom: 64px;
}

.Flow h2 {
  margin-top: 42px;
}

/* 施術までの流れここから */

/* リストの設定 */
.Flow .SectionTitle {
  margin-top: 60px;
}

.FlowInner li {
  margin: 64px auto;
}

.FlowBox {
  width: 80%;
  height: 440px;
  background-color: #F7F2E9;
  background-repeat: no-repeat;
  border-radius: 3.6rem;
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 32px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .1);
  max-width: 350px;
  ;
}

.FlowBoxImg {
  position: absolute;
 top: 83px;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.Img1 {
  width: 180px;
}

.Img2 {
  width: 256px;
}

.Img3 {
  width: 230px;
top: 69px;
}

.Img4 {
  width: 140px;
}

.Img5 {
  width: 220px;
 top: 76px;
}

.Image6 {
  width: 180px;
top: 70px;
}

.FlowBoxText h4 {
  font-size: 2.2rem;
}

.FlowBoxText {
 margin-top: 130px;
}

.FlowBoxText hr {
  margin-top: 10px;
  border: 1px solid #B0CF01;
}

.FlowBoxText .FlowBoxTextP {
  margin-top: 10px;
  text-align: left;
}

.FlowBoxTextP2 {
  margin-top: 10px;
  text-align: center;
}

.Phone {
  font-size: 2rem;
}

.FlowInReserved {
  display: flex;
}

.FlowInReserved li {
  width: 40%;
  height: 26px;
  margin: 10px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.FlowInReserved li p {
  font-size: 1.4rem;
  color: #ffffff;
}

.FlowInReservedLeft {
  background-color: #ED6C00;
  background-repeat: no-repeat;
}

.FlowInReservedRight {
  background-color: #00B900;
  background-repeat: no-repeat;
}

.Arow {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 0 11px 19.1px;
  border-color: transparent transparent transparent #070707;
}

.Flow6 {
  font-size: 1.4rem;
}

/* ----------------------------------


メニューページの設定


------------------------------------ */
/* -----------------
自由診療の設定
------------------- */
.FreeMedicalCareInner {
  background-color: rgba(138, 105, 15, 0.1);
  background-repeat: no-repeat;
  padding-bottom: 24px;
}

.FreeMedicalCare .SectionDescription, .FreeMedicalCare .FreeMedicalCareCaution {
  text-align: left;
}

/* リスト部分の設定 */
.StageInner {
  padding-top: 32px;
  width: 100%;
  margin: 0 auto;
}
.FreeMedicalCare .SectionTitle{
	margin-top: 0px;
}
.FreeMedicalCareListBoxLeft {
  text-align: center;
}

.FreeMedicalCareListTitle {
  display: inline-block;
  background-color: #B0CF01;
  background-repeat: no-repeat;
  width: 70%;
  height: 84px;
  border-radius: 1.3rem;
  text-align: center;
}


.FreeMedicalCareListTitle h3 {
  margin: 10px auto 0 auto;
  font-size: 2.0rem;
  color: #ffffff;
  text-shadow: 0px 0px 0.5px #F2F2F2;
}

.FreeMedicalCareListTitle hr {
  width: 50%;
  margin: 2px auto 0 auto;
  border: 0.5px solid #ffffff;
}

.FreeMedicalCareListTitle p {
  margin: 6px auto 0 auto;
  font-size: 1.4rem;
  color: #ffffff;
  text-shadow: 0px 0px 20px #F2F2F2;
}

.FreeMedicalCareList2inner .FreeMedicalCareListTitle p {
  text-shadow: 0px 0px 20px #F2F2F2;
  font-weight: bold;
}

.FreeMedicalCareListBoxImage img {
  width: 70%;
  height: 250px;
  object-fit: cover;
  object-position: 50% 60%;
  margin: 16px auto;
  max-width: 400px;
}

.FreeMedicalCareListBoxImage img {
  border-radius: 3.6rem;
}

.FreeMedicalCareListWrapper {
  width: 80%;
  margin: 0 auto;
}

.FreeMedicalCareListH4SP {
  text-align: center;
  width: 90%;
  margin: 0 auto;
}

.FreeMedicalCareListH4SP h4 {
  display: inline-block;
  text-align: left;
  color: #8A690F;
 font-size: 1.8rem;
		text-align: center;
}

.BoxText1 {
margin: 12px auto 20px;
  text-align: left;
}
.mata{
	font-size: 
}
.BoxLeft {
  font-weight: 600;
  font-size: 1.4rem;
  text-align: center;
  margin-top: 10px;
}

.BoxRight {
  width: 95%;
  margin: 10px auto 0 auto;
}

.BoxSymptoms {
  background-color: rgba(255, 255, 255, 0.5);
  background-repeat: no-repeat;
  width: 90%;
  padding: 10px 3px ;
 margin: 0px auto;
}

.SymptomsList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 400px;
}

.SymptomsList p {
  width: 30%;
  font-size: 1.3rem;
  background-color: #8A690F;
  background-repeat: no-repeat;
  color: #ffffff;
  text-align: center;
  padding: 3px;
  margin-top: 5px;
}

.TreatmentFee {
  background-color: rgba(255, 255, 255, 0.5);
  background-repeat: no-repeat;
  text-align: center;
  padding-bottom: 32px;
	width: 90%;
    margin: 0 auto;
}
.TreatmentFee h5{
	font-size: 1.5rem;
}
.FeeLeft {
  text-align: left;
  display: inline-block;
}

.FeeRightInner {
  margin-top: 10px;
	text-align: center;
}

.small {
  font-size: 1.4rem;
}

.brown {
  color: #8A690F;
}

.none {
  background-color: #F7F3EC !important;
}

/* 姿勢矯正ここから */
.StageInnerReverse {
  padding-top: 24px;
}

/* -----------------
自由診療その他の設定
------------------- */
.FreeMedicalCareList2inner {
  background-color: #fff;
  width: 90%;
  margin: 0 auto;
  border-radius: 3.6rem;
  padding: 20px 15px;
  text-align: center;
  margin-top: 20px;
  box-shadow: 7px 7px 0px 0 rgb(138 105 15 / 20%);
}

.FreeMedicalCareList2 .FreeMedicalCareListTitle {
  width: 90%;
  background-color: #fff;
}

.FreeMedicalCareList2 .FreeMedicalCareListTitle h3 {
  color: #8A690F;
}

.FreeMedicalCareList2 .FreeMedicalCareListTitle p {
  color: #B0CF01;
}

.FreeMedicalCareList2 .FreeMedicalCareList2TextBoxLeft {
  text-align: left;
}

.FeeLeft {
  margin-top: 20px;
  text-align: center;
}

#Josei .FreeMedicalCareList2TextBox, #Habit1 .FreeMedicalCareList2TextBox {
  margin-top: 10px;
}

.HabitBtn {
  width: 80%;
  margin: 15px auto;
  background-color: #B0CF01;
  border-radius: 3.6rem;
  height: 42px;
  border: 0px;
  max-width: 400px;
}

/* ハビットコントロールのページ */
.Habitlist .SectionTitle{
	margin: 42px auto 64px;
}
.HabitlistNo{
	width: 60%;
   margin: 0 auto;
}
.HabitlistNo img{
	width: 100%;
}
.RecommendList {
  width: 95%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
}
.HabitList h3{
	color:#8A690F;
}
.RecommendList li{
  width: 48%;
  height: 280px;
  max-width: 250px;
}
.RecommendInner {
  width: 100%;
  background-color: rgba(138, 105, 15, 0.1);
  background-repeat: no-repeat;
  padding: 20px 0;
}
.RecommendListBox {
  background-color: #ffffff;
  background-repeat: no-repeat;
  border-radius: 3.6rem;
  position: relative;
    margin: 42px auto;
}

.RecommendListBox p {
  font-size: 1.4rem;
  text-align: left;
  display: inline-block;
  margin: 0 auto;
}

.RecommendListBoxInner {
  width: 90%;
  display: inline-block;
  margin: 15px auto;
}
.RecommendListBoxInner h3{
	color: #333333;
	    font-size: 2.0rem;
}
.RecommendListBoxInner p{
  display: inline-block;
    margin: 12px auto 0px;
}
.RecommendListBoxInner img {
  margin: 5px auto 0 auto;
	    height: 120px;
}
.Sweat {
  position: absolute;
  top: -72px;
  left: 8px;
}
.Recommend .Etc{
  font-size: 3.2rem;
}
.ComingSoon .HabitDescription{
text-align: left;
}
.HabitDescription p{
	margin-top: 24px;
}
.TabefasImage{
  width: 95%;
  margin: 24px auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.TabefasImage img{
  width: 100%;
}
.TabefasImage02{
  margin-top: 24px;
}
.TabefasImage04{
 margin-top: 10px;
}
.ComingSoon{
  margin-top: 64px;
}
.WhatHabit{
  width: 95%;
  margin: 0 auto;
}
.HabitList{
	margin-top: 24px;
}
.HabitlistP{
  font-size: 2.4rem;
  font-weight: bold;
  color: #ffffff;
}
.HabitlistUP{
   background: #B0CF01 no-repeat;
   display: inline-block;
   padding: 10px 24px;
   border-radius: 3.6rem;
	margin-top: 24px;
}
.HabitlistPhoto{
	width: 100%;
	margin-top: 24px;
}
.HabitlistPhoto img{
  height: 250px;
   width: 100%;
   object-fit: cover;
   object-position: center;
	border-radius: 3.6rem;
}
.HabitlistBoxBlown .HabitlistUP{
	background: #8A690F;
}
/* -----------------
保険内診療の設定
------------------- */
.Hoken {
  width: 80%;
  margin: 32px auto;
}

.Hoken p {
  margin-top: 16px;
}

/* ----------------------------------


ご予約・アクセスページの設定


------------------------------------ */
/* ご予約の設定 */
.ReserveBox {
  background-color: #ffffff;
  width: 90%;
  margin: 24px auto;
  padding: 32px 24px;
  border-radius: 3.6rem;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .1);
  max-width: 400px;
}

.ReserveBox h3 {
  display: inline-block;
  border-bottom: 2px solid #B0CF01;
  padding-bottom: 5px;
}

.ReserveBox address {
  margin-top: 12px;
  font-size: 24px;
}

.ReserveBox p {
  margin-top: 10px;
}

.ReserveBox p span {
  font-size: 1.2rem;
}

.ReserveBtn {
  width: 95%;
  max-width: 255px;
  height: 64px;
  background-color: #ED6C00;
  border-radius: 3.6rem;
  margin: 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ReserveP1 {
  font-size: 1.4rem;
  text-align: left;
}

.ReserveP2 {
  display: inline-block;
  text-align: left;
}

.ReserveLINEQR {
  width: 30%;
}

.ReserveBoxInner {
  display: flex;
  justify-content: space-around;
}

/* Lineでのご予約の設定 */
.LINEimgwrapper {
  width: 50%;
  margin: 20px auto 0 auto;
  max-width: 200px;
}

.LINEimgwrapper img {
  width: 100%;
}

.LINEbtnwrapper {
  margin-top: 20px;
}

/* アクセスの設定 */
.Access {
  margin-top: 42px;
}

.Access .SectionTitle p {
  text-align: center;
}

.AccessDirection {
  padding: 0 10px;
}

.DirectionBox {
  text-align: center;
}

.DirectionBox .DirectionBoxPhoto {
  margin: 32px auto 0 auto;
  max-width: 400px;
}

.DirectionBoxPhoto {
  position: relative;
}

.DirectionBoxPhoto img {
  width: 100%;
  border-radius: 3.6rem;
  height: 240px;
}

.DirectionBox p {
  margin: 10px auto 0 auto;
  display: inline-block;
  text-align: left;
  max-width: 80%;
}

.DirectionNo {
  width: 64px;
  position: absolute;
  top: -84px;
  left: 5px;
}

.Gmap {
  width: 250px;
  background-color: #B0CF01;
  padding: 10px 20px;
  border-radius: 3.6rem;
  text-align: center;
  margin: 20px auto;
}

.Gmap a {
  color: #ffffff;
}

/* ----------------------------------


交通事故専門治療の設定


------------------------------------ */
.ForThoseInNeed .SectionDescription {
  margin-top: 20px;
  text-align: left;
}

/* 三つのポイント */

.TrafficAccidentThreePoints .TraficH2Title {
  margin-top: 20px;
}

.TrafficAccidentThreePoints .SectionTitle {
  margin-top: 0px;
}

.TrafficAccidentThreePointsListBox {
  position: relative;
  margin-top: 80px;
}

.PointsListNo {
  position: absolute;
  top: -56px;
  left: 10px;
  width: 30%;
}

.PointsListPhoto {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
}
.PointsListPhoto img{
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
}

.PointsListP {
  width: 90%;
  margin: 20px auto;
}

.PointsListPTitle {
  color: #8A690F;
}

.PointsListP p {
  text-align: left;
  margin-top: 10px;
}

.SuchaPerson h3 {
  display: inline-block;
  margin: 24px auto 0 auto;
}

.SuchaPerson h3 img {
  width: 100%;
}

/* すぐご相談ください */
.SuchaPersonInner {
  width: 95%;
  background-color: #F7F3EC;
  margin: 0 auto;
  padding-bottom: 24px;
  text-align: center;
}

.SuchaPersonCheck {
  display: inline-block;
  margin: 24px auto;
  text-align: left;
}

.SuchaPersonCheckList {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.CheckBox {
  width: 24px;
  margin-right: 5px;
}

.SuchaPersonCheckList {
  margin-top: 16px;
}

/* 交通事故専門治療の特徴 */
.Feature03List {
  margin: 20px auto 0 auto;
  background-color: #ffffff;
  width: 90%;
  border-radius: 3.6rem;
  height: 480px;
  padding: 24px auto;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .1);
}

.List03Title {
  padding-top: 20px;
  text-align: center;
  color: #B0CF01;
}

.SmallText01 {
  font-size: 1.4rem;
  margin-top: 20px;
}

.List03Title p {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .2);
}

.Feature03ListInner {
  width: 80%;
  margin: 0 auto;
  text-align: left;
padding-bottom: 32px;
}

.Feature03List img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  margin: 10px auto;
}
.PhotoDiscription p{
	margin-bottom:24px;
}
.ListWrpper002{
	text-align: center;
}
/* よくある質問ここから */
.TrafficQA {
  background-color: rgba(138, 105, 15, 0.1);
  background-repeat: no-repeat;
  padding-bottom: 32px;
  text-align: center;
}

.TrafficQA .SectionTitle {
  margin-top: 0px;
}

.DtBalloon {
  position: relative;
  display: inline-block;
  margin: 25px 15px 5px 15px;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  font-size: 15px;
  background: #ffffff;
  padding: 20px;
  width: 90%;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .2);
  text-align: left;
}

.DtBalloon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid #ffffff;
}

.Accordion02Title, .Accordion02ContentInner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.Accordion02Title img, .Accordion02ContentInner img {
  margin-right: 12px;
}

.DdBalloon {
  position: relative;
  display: inline-block;
  margin: 5px 15px;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  font-size: 15px;
  background: #ffffff;
  width: 80%;
  padding: 20px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .2);
  text-align: left;
}

.DdBalloon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -15px;
  border: 15px solid transparent;
  border-left: 15px solid #ffffff;
}

/* ----------------------------------


産前・産後治療のページ


------------------------------------ */
.MatanityDescription {
  text-align: left;
}

.cautioncolor {
  color: #ED6C00;
}

.Caution001 {
  margin-top: 12px !important;
  text-align: left;
  font-size: 1.4rem;
}

/* 産前ケアの設定 */
.SanzenCareInner {
  background-color: rgba(138, 105, 15, 0.1);
  background-repeat: no-repeat;
  padding-bottom: 42px;
}

.CareWrapper {
  width: 90%;
  margin: 0 auto;
}

.CareBoxTitle {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.CareBoxTitle .imageR {
  margin-right: 0;
  margin-left: 20px;
}

.CareBoxTitle img {
  margin-right: 20px;
}

.CareBoxTitle h3 {
  font-size: 2.4rem;
  margin: 0;
}

.CareBoxSubTitle, .List001RightboxText, .Title001 {
  margin-top: 16px;
  font-weight: bold;
}

.Title001 {
font-size: 1.8rem;
}

.PGreen {
  color: #B0CF01;
  margin-top: 10px;
}

.P001 {
  margin-top: 10px;
}

.CareWrapper p {
  margin-top: 16px;
}

.CareBoxRight {
  width: 90%;
  margin: 20px auto;
  text-align: center;
}

.CareBoxRight img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  object-position: center;
  border-radius: 3.6rem;
  display: inline-block;
}

.CareBoxRightPhoto1 {
  margin: 0 auto;
  margin-right:20%;
}

.CareBoxRightPhoto2 {
  margin-top: 10px;
  margin-left:20%;
}

/* 妊娠中に起こりやすい症状 */
.List001Rightbox {
  width: 90%;
  margin: 0 auto;
}

.List001RightboxText {
  width: 80%;
  margin: 0 auto;
  max-width: 300px;
}

.List001RightboxText img {
  width: 100%;
}

.List001 {
  display: flex;
  justify-content: space-around;
  align-items: end;
  width: 90%;
  margin: 20px auto;
  background-color: rgba(255, 255, 255, 0.4);
  background-repeat: no-repeat;
  padding: 12px;
}

.List001Leftbox {
  width: 30%;
}

.List001Rightbox {
  width: 70%;
}

.ListInner001 li {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-top: 5px;
}

.CircleGreen {
  background-color: #B0CF01;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-right: 16px;
}

.Womanimage {
  width: 84px;
}

.Womanimage img {
  width: 100%;
}

.List001Discription {
  width: 90%;
  margin: 0 auto;
}

.SanzenDiscrictionBox {
  margin-top: 24px;
  width: 90%;
  margin: 0 auto;
}

/* 産前ケアの説明部分 */
.SanzenDiscrictionBox {
  margin-top: 24px;
}

.SanzenImagePhoto {
  width: 100%;
  max-width: 400px;
  margin: 20px auto;
}

.SanzenImagePhoto img {
  width: 100%;
    height: 232px;
    object-fit: cover;
    object-position: center;
}

.SanzenImageText {
  margin-top: 24px;
  background-color: rgba(255, 255, 255, 0.4);
  background-repeat: no-repeat;
  padding: 8%;
}

.SanzenPriceList {
  width: 100%;
  border: 1px solid #8A690F;
  padding: 24px;
  margin: 32px auto;
}

.PriceListcaution {
  font-size: 1.4rem;
  margin-top: 10px;
}

/* 逆子治療の設定 */
.Sakago {
  width: 90%;
  margin: 0 auto;
}

.SakagoInner .CareBoxTitle {
  justify-content: center;
  margin-top: 12px;
}

.SakagoInner .CareBoxTitle h3 {
  display: inline-block;
}

.Sakago .CareBoxSubTitle {
  text-align: center;
}

.Sakago .SectionDescription {
  margin-top: 8px;
}

.Sakago .SanzenDiscrictionBox {
  width: 100%;
}

.ListInner002 {
  margin-top: 12px;
}

.ListInner002 li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.ListInner002 .Small {
  font-size: 1.4rem;
}

/* 産後ケアの設定 */
.List001Rightbox {
  width: 100%;
}

.ListInner001 li p {
  width: 90%;
}

.SanzenDiscrictionBoxInnerRight .SangoPhoto img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
}
.SanzenDiscrictionBoxInnerLeft2{
	    background-color: rgba(255, 255, 255, 0.4);
    background-repeat: no-repeat;
    padding: 8%;
}
/* ----------------------------------


投稿ページ


------------------------------------ */

.NewsInner{
  margin: 32px auto;
  width: 90%;
  text-align: center;
}

.news_box{
  display: inline-block;
  width: 80%;
    text-align: left;
  }
  .news_box img{
  margin: 32px auto;
      width: 100%;
  }
  .news_box h3{
    font-weight: bold;
    font-size: 1.8rem;
  }
  .NewsTitle{
    font-size: 1.8rem;
    font-weight: bold;
  }
  .NewsDays{
    font-size: 1.4rem;
  }
  .News1{
    text-align: left;
    width: 280px;
    margin: 24px auto;
  }
 .News1 img{
width: 100%;
  }
  .News1 p{
 margin-top: 24px;
      }
  /* ----------------------------------


一覧ページ


------------------------------------ */

.news_boxA{
  width: 95%;
  margin: 64px auto;
  text-align: center;
  border-bottom: 1px rgba;
  border-bottom: 1px solid #C4C4C4;
  padding-bottom: 20px;
}
.NewsDetailsUnder{
  text-align: center;
  margin: 42px auto;
}
.NewsDetailsUnder .HabitBtn a{
 color: #ffffff;
 font-weight: bold;
}
.imgA{
  width: 250px;
  margin: 0 auto;
}
.imgA img{
width: 100%
}
.SNS
.dateA{
margin-top: 5px;
}
.news_txtA {
  width: 80%;
  margin: 0 auto;
}
.news_txtA h3{
font-weight:bold;
font-size: 1.8rem;
}
.excerptA{
margin: 20px auto 0 auto;
text-align: left;
display: inline-block;
}
.linkto {
display: inline-block;
border-bottom: #4699ca solid 1px;
margin-top: 32px;
}

#caption-attachment-75 {
display: none;
}
.sns-single{
margin-bottom: 20px;
}
.SNS_item{
  width: 150px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 24px auto;
}
.NewsArchive{
  text-align: center;
  margin-top: 32px;
}
.latest_news dl{
  margin-top: 10px;
}
.latest_news dt{
 margin-top: 16px;
}
.backnumbers{
  margin-top: 16px;
}
/* ----------------------------------


すくすくケアページの設定


------------------------------------ */
.PointsListBox002{
	margin-top: 24px;
}
.PointsListPhoto002 img{
	margin: 0 auto;
}
.PointsListP .ListTitle002{
	text-align:center;
}
.SectionTitle002{
	margin-top: 0;
}
.ToDoList{
	margin-bottom: 24px;
}
.ToDoListText{
	  text-align: left;
    width: 90%;
    margin: 16px auto;
}
.Price0001{
	margin-top: 16px;
}
.Feature03List002{
	margin: 20px auto 0 auto;
    background-color: #ffffff;
    width: 90%;
    border-radius: 3.6rem;
    height: auto;
    padding: 24px auto;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 10%);
}
.Feature03List002 img{
width: 20%;
}
.LIst002Only{
	height: auto;
}
.Feature03List002 .List03Title{
padding-top:0px;
    text-align: center;
    color: #B0CF01;
}

.BabypageList2{
	margin: 20px auto 0 auto;
    background-color: #ffffff;
    width: 90%;
    border-radius: 3.6rem;
   height: auto;
    padding: 24px auto;
    box-shadow: 0 2px 2px 0 rgb(0 0 0 / 10%);
}
ul .Title002{
	text-align: center;
}
.LongList{
	text-align: center;
}
.TextLeft{
	text-align: left;
}
.nonelist{
	display: none;
}
.BabyAfterPhotos{
	margin-top:90px;
}
.BabypageSectionTitle1{
	padding-top: 42px;
	margin-top:0;
}
/* 今までの治療の設定 */
.BabypageSuchaPersonInner{
padding-top: 42px;
	background-color: rgba(138, 105, 15, 0.1);
}
.Feature03ListInner h4{
	color: #8A690F;
	text-align: left;
	margin: 20px 0 5px;
}
.Feature03ListInner h4::before{
display: inline-block;
	content: "";
	 margin-top: 4px;
	margin-right: 7px;
	width: 15px;
	height: 15px;
	vertical-align: top;
	border-radius: 50%;
	background-color: #8A690F;
}
.TreatmentToDatePhotos{
	margin-top: 32px;
}
.BAPhotosimgWrapperSP{
	margin-top: 20px;
}
.BAPhotosimgSP{
	width: 100%;
	margin: 0 auto;
	margin-bottom: 20px;
}
.BAPhotosimgSP img{
    object-fit: contain;
     height: 500px;
    width: 100%;
	        max-width: 320px;
margin: 0 auto;
    object-position: center;
}
.ToAfter{
	 transform: rotate(90deg);
    display: inline-block;
}
.TreatmentToDatePhotosspLi{
    margin-bottom: 72px;
}
/* すくすくケアの内容 */
.sukusukuArea{
 width: 90%;
    margin: 0 auto 42px;
}
.sukusukuWrapper{
	display:flex;
	        flex-direction: column-reverse;
}
.sukusuku li{
        margin: 20px auto 0 auto;
        background-color: #ffffff;
        width: 70%;
        border-radius: 3.6rem;
        height: auto;
        padding: 16px 20px 32px;
        box-shadow: 0 2px 2px 0 rgb(0 0 0 / 10%);
}
.sukusuku h3{
	color: #B0CF01;
	        text-align: center;
        margin-bottom: 10px;
}
.babyPhoto{
        width: 100%;
        height: auto;
        background: url(../images/baby-head/babyPhoto.webp);
        border-radius: 3.6rem;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        height: 250px;
}