@charset "UTF-8";
/* ====================================================
Color
==================================================== */
/* ====================================================
Font
==================================================== */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,400,500,700&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=Quicksand:300,400,500,700&subset=latin-ext,vietnamese");
/* ====================================================
Position & transform
==================================================== */
/* ====================================================
Sizing
==================================================== */
/* ====================================================
Media Quary
==================================================== */
/* ====================================================
Transiton
==================================================== */
/* ====================================================
opacity
==================================================== */
/* ====================================================
flexbox
==================================================== */
/* ====================================================
Base style & container
==================================================== */
/*html{
	font-size: 10px;
}
body {
	color: black;
	font-family: $font-gothic;
	font-size: 100%;
	-webkit-font-smoothing: antialiased;
	line-height: 1.4;
}*/
img {
  max-width: 100%;
}

.container {
  display: block;
  margin: 0 auto;
}

.container.container-sm {
  max-width: 1030px;
  padding: 0 15px;
}

.container.container-md {
  max-width: 1230px;
  padding: 0 20px;
}

.container.container-lg {
  max-width: 1530px;
  padding: 0 25px;
}

.size12 {
	font-size: 12px;
}

@media screen and (max-width: 759px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 760px) {
  .sp {
    display: none !important;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
}

.img100 {
  width: 100%;
}

.rollover {
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.rollover:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

.flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-box.content-fs {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex-box.content-fe {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex-box.content-bw {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-box.content-c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-box.align-fs {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex-box.align-fe {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flex-box.align-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-box.align-st {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

/* ====================================================
Float & clear
==================================================== */
.clearfix {
  *zoom: 1;
}

.clearfix:before {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
  content: "";
  display: table;
}

.main-visual {
  position: relative;
}

.main-visual > img {
  max-height: 500px;
  height: 36vw;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 767px) {
  .main-visual > img {
    height: auto;
  }
}

.main-visual .content {
  position: absolute;
  top: 51%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  font-weight: 500;
}

.main-visual .image {
  display: inline-block;
  width: 124px;
  height: 124px;
  background-color: #50c1af;
  border-radius: 50%;
  margin-bottom: 20px;
  text-align: center;
}

@media screen and (max-width: 1000px) {
  .main-visual .image {
    width: 100px;
    height: 100px;
  }
}

@media screen and (max-width: 767px) {
  .main-visual .image {
    width: 80px;
    height: 80px;
  }
}

.main-visual .image:before {
  content: "";
  display: block;
  height: 50%;
}

.main-visual .image img {
  width: 72px !important;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 1000px) {
  .main-visual .image img {
    width: 50px !important;
  }
}

@media screen and (max-width: 767px) {
  .main-visual .image img {
    width: 40px !important;
  }
}

.main-visual .title {
  font-size: 30px;
  font-size: 1.875rem;
  color: #595554;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .main-visual .title {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.main-visual .text-main {
  font-size: 20px;
  font-size: 1.25rem;
  color: #b98a7a;
}

@media screen and (max-width: 767px) {
  .main-visual .text-main {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.main-visual .bg-main {
  display: none;
}

@media screen and (max-width: 767px) {
  .main-visual .bg-main {
    display: block;
  }
}

.mb40 {
  margin-bottom: 40px !important;
}

.pd-0 {
  padding: 0 !important;
}

.bg-brown {
  background-color: #f4e9db;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.flex.col-03 {
  margin-left: -35px;
  margin-right: -35px;
}

@media screen and (max-width: 767px) {
  .flex.col-03 {
    margin-left: 0;
    margin-right: 0;
  }
}

.flex.col-03 > * {
  width: calc((100% / 3) - 70px);
  margin: 0 35px;
}

@media screen and (max-width: 767px) {
  .flex.col-03 > * {
    margin: 0;
    width: 100%;
  }
}

.flex.col-02 > * {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .flex.col-02 > * {
    width: 100%;
  }
}

.flex.col-04 {
  margin-left: -30px;
  margin-right: -30px;
  margin-top: 35px;
}

@media screen and (max-width: 1000px) {
  .flex.col-04 {
    margin-left: -15px;
    margin-right: -15px;
  }
}

@media screen and (max-width: 767px) {
  .flex.col-04 {
    margin-right: 0;
    margin-left: 0;
  }
}

.flex.col-04 > * {
  width: calc(100% / 4);
  padding: 0 30px;
}

@media screen and (max-width: 1000px) {
  .flex.col-04 > * {
    padding: 0 15px;
  }
}

@media screen and (max-width: 767px) {
  .flex.col-04 > * {
    width: 100%;
  }
}

/* ====================================================
MODULE
==================================================== */
/*パンくずMODULE*/
/*見出しMODULE*/
#wrap.index .ttlCom01 {
  margin-bottom: 40px;
  padding-bottom: 25px;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 600;
  text-align: left;
  border-bottom: 3px solid #d8a695;
}

@media screen and (max-width: 759px) {
  #wrap.index .ttlCom01 {
    margin-bottom: 30px;
    padding-bottom: 15px;
    font-size: 28px;
    font-size: 1.75rem;
  }
}

#wrap.index .ttlCom02 {
  margin-bottom: 30px;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 600;
  text-align: left;
  line-height: 1.3;
}

@media screen and (max-width: 759px) {
  #wrap.index .ttlCom02 {
    margin-bottom: 10px;
    font-size: 28px;
    font-size: 1.75rem;
  }
}

.title-01 {
  background-color: #fcf9f8;
  padding-top: 70px;
  padding-bottom: 30px;
  text-align: center;
  margin-bottom: 0 !important;
  font-size: 36px;
  font-size: 2.25rem;
  color: #b98a7a;
}

@media screen and (max-width: 767px) {
  .title-01 {
    font-size: 30px;
    font-size: 1.875rem;
    padding-top: 25px;
    padding-bottom: 25px;
  }
}

.title-01 span {
  font-size: 20px;
  font-size: 1.25rem;
}

@media screen and (max-width: 767px) {
  .title-01 span {
    font-size: 30px;
    font-size: 1.875rem;
  }
}

.title-02 {
  color: #554a44;
  margin-bottom: 15px;
  font-size: 36px;
  font-size: 2.25rem;
}

@media screen and (max-width: 767px) {
  .title-02 {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

.title-02 span {
  font-size: 22px;
  font-size: 1.375rem;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .title-02 span {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.title-03 {
  display: inline;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 500;
  color: #554a44;
  border-bottom: 10px solid rgba(255, 246, 0, 0.3);
  position: relative;
  top: -15px;
}

@media screen and (max-width: 767px) {
  .title-03 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

.title-03 > * {
  display: inline;
  position: relative;
  top: 15px;
  line-height: 1.4;
}

/*テキストMODULE*/
.bold {
  font-weight: bold;
}

.al-c {
  text-align: center;
}

.al-r {
  text-align: right;
}

.al-l {
  text-align: left;
}

.align-t {
  vertical-align: top;
}

.tx-cav {
  font-family: 'Caveat', cursive;
}

/*リンクMODULE*/
.link-arrow {
  position: relative;
  padding-left: 15px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.link-arrow:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
}

.link-arrow:before {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 4px;
  height: 4px;
  margin-top: -2px;
  border-top: 1px solid #1c1c1c;
  border-right: 1px solid #1c1c1c;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
}

/*ボタンMODULE*/
.bg-pk {
  background: #f2e0d7;
}

/* ====================================================
FAMILY
==================================================== */
#wrap.page-family .inner {
  margin: 0 auto;
  padding: 0 5%;
  max-width: calc(1252px + 10%);
}

#wrap.page-family .page_cover {
  display: block;
  width: 100%;
  margin-top: 60px;
  padding: 110px 0 1px;
  z-index: 1000;
  text-align: center;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .page_cover {
    margin-top: 50px;
    padding: 25px 0 1px;
  }
}

#wrap.page-family .page_cover h3 {
  margin: 0 0 65px 0;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .page_cover h3 {
    margin: 0 0 20px 0;
  }
}

#wrap.page-family .ttl-sec {
  color: #554a44;
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.3;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .ttl-sec {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

#wrap.page-family .sec-stage {
  padding: 100px 0 110px;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-stage {
    padding: 60px 0 30px;
  }
}

#wrap.page-family .sec-stage .cap {
  margin: 50px 0 70px;
  color: #b98a7a;
  font-weight: 500;
  line-height: 1.3;
  font-size: 24px;
  font-size: 1.5rem;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-stage .cap {
    margin: 30px 0 35px;
    font-size: 18px;
    font-size: 1.125rem;
  }
}

#wrap.page-family .sec-stage .cap span {
  display: inline-block;
  padding: 20px 0;
  border-top: 1px solid #b98a7a;
  border-bottom: 1px solid #b98a7a;
}

#wrap.page-family .sec-stage .step-list .step-list-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 50px 1.6% 45px;
  width: 27.955%;
  border: 5px solid #fff;
  border-radius: 5px;
  background: #f2e0d7;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-stage .step-list .step-list-item {
    padding: 30px 3%;
    width: 100%;
  }
}

#wrap.page-family .sec-stage .step-list .step-list-item .ttl-box {
  margin-bottom: 20px;
}

#wrap.page-family .sec-stage .step-list .step-list-item .ttl-box img {
  max-width: 162px;
}

#wrap.page-family .sec-stage .step-list .step-list-item .ttl-box .ttl {
  margin-bottom: 20px;
  font-size: 26px;
  font-size: 1.625rem;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-stage .step-list .step-list-item .ttl-box .ttl {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

#wrap.page-family .sec-stage .step-list .step-list-item .txt-box {
  margin-bottom: 20px;
  font-size: 16px;
  font-size: 1rem;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-stage .step-list .step-list-item .txt-box {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

#wrap.page-family .sec-stage .step-list .step-list-item .txt-box .ttl {
  margin-bottom: 10px;
  color: #d8a695;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
}

#wrap.page-family .sec-stage .step-list .step-list-item .btn-arrow-down {
  margin-top: auto;
}

#wrap.page-family .sec-stage .step-list .txt-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 8.0675%;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-stage .step-list .txt-step {
    width: 100%;
  }
  #wrap.page-family .sec-stage .step-list .txt-step .sp {
    width: 100%;
  }
  #wrap.page-family .sec-stage .step-list .txt-step img {
    max-width: 185px;
  }
}

#wrap.page-family .sec-gairai {
  margin-bottom: 130px;
  padding: 100px 0 130px;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-gairai {
    margin-bottom: 60px;
    padding: 60px 0;
  }
}

#wrap.page-family .sec-gairai .ttlCom01 {
  margin-bottom: 0;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-gairai .ttlCom01 {
    text-align: center;
  }
}

#wrap.page-family .sec-gairai .flex-box .img,
#wrap.page-family .sec-gairai .flex-box .txt-box {
  width: 47%;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-gairai .flex-box .img,
  #wrap.page-family .sec-gairai .flex-box .txt-box {
    width: 100%;
  }
  #wrap.page-family .sec-gairai .flex-box .img .ttl-box,
  #wrap.page-family .sec-gairai .flex-box .txt-box .ttl-box {
    text-align: center;
  }
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-gairai .flex-box .img {
    margin-bottom: 40px;
    text-align: center;
  }
}

#wrap.page-family .sec-gairai .flex-box .img img {
  max-width: 568px;
}

#wrap.page-family .sec-gairai .item {
  padding: 40px 0;
  border-top: 2px dashed #e6c3b1;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-gairai .item {
    padding: 20px 0;
  }
}

#wrap.page-family .sec-gairai .item .note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-gairai .item .note {
    display: block;
  }
}

#wrap.page-family .sec-gairai .item .note .icn-arrow-right {
  position: relative;
  display: inline-block;
  padding: 2px 15px;
  width: 150px;
  background: #e6c3b1;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  border-radius: 20px;
}

@media screen and (max-width: 1100px) {
  #wrap.page-family .sec-gairai .item .note .icn-arrow-right {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

#wrap.page-family .sec-gairai .item .note .icn-arrow-right:before {
  content: '';
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 15px;
  width: 9px;
  height: 15px;
  background: url(../menu/family/img/icn_angle_right.png) no-repeat center center;
  background-size: contain;
}

@media screen and (max-width: 1100px) {
  #wrap.page-family .sec-gairai .item .note .icn-arrow-right:before {
    right: 10px;
  }
}

#wrap.page-family .sec-gairai .item .note p {
  margin-left: .5em;
  color: #d69c89;
  font-size: 20px;
  font-size: 1.25rem;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-gairai .item .note p {
    margin-top: 10px;
    width: 100%;
    font-size: 16px;
    font-size: 1rem;
  }
}

#wrap.page-family .sec-gairai .top-box .txt-box .ttl-box + .item {
  border-top: 0;
  padding-bottom: 50px;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-gairai .top-box .txt-box .ttl-box + .item {
    padding-bottom: 20px;
  }
}

#wrap.page-family .sec-gairai .top-box .txt-box:last-of-type {
  padding-bottom: 10px;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-gairai .top-box .txt-box:last-of-type {
    padding-bottom: 20px;
  }
}

@media screen and (min-width: 760px) {
  #wrap.page-family .sec-gairai .btm-box {
    margin-top: 30px;
  }
}

#wrap.page-family .sec-gairai .btm-box .txt-box .item {
  border-bottom: 2px dashed #e6c3b1;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-gairai .btm-box .txt-box:last-child .item {
    border-top: 0;
  }
}

#wrap.page-family .shoulder {
  display: inline-block;
  margin-bottom: 30px;
  padding: 0 20px;
  color: #d8a695;
  font-weight: 500;
  background: #fff;
  border-radius: 20px;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .shoulder {
    margin-bottom: 20px;
  }
}

#wrap.page-family .shoulder02 {
  display: inline-block;
  margin-bottom: 30px;
  padding: 0 20px;
  color: #fff;
  font-weight: 500;
  background: #e6c3b1;
  border-radius: 20px;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .shoulder02 {
    margin-bottom: 20px;
  }
}

#wrap.page-family .lead-txt .ttl {
  margin-bottom: 25px;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .lead-txt .ttl {
    margin-bottom: 10px;
    font-size: 18px;
    font-size: 1.125rem;
  }
}

#wrap.page-family .lead-txt .ttl small {
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .lead-txt .ttl small {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

#wrap.page-family .lead-txt .desc {
  min-height: 4.1em;
  font-size: 16px;
  font-size: 1rem;
  line-height: 2.25;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .lead-txt .desc {
    min-height: 1px;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

#wrap.page-family .sec-care {
  margin-bottom: 120px;
  padding: 100px 0 160px;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-care {
    margin-bottom: 60px;
    padding: 60px 0;
  }
}

#wrap.page-family .sec-care .lead-box {
  margin: 0 auto 75px;
  max-width: 585px;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-care .lead-box {
    margin: 0 auto 40px;
    max-width: 100%;
  }
}

#wrap.page-family .sec-care .lead-box .ttlCom01 {
  text-align: center;
}

#wrap.page-family .sec-care .careHistory {
  padding: 55px 5.4% 50px;
  background: #fff;
  border-radius: 6px;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-care .careHistory {
    margin: 0 auto;
    padding: 40px 4%;
    text-align: center;
  }
}

#wrap.page-family .sec-care .list-history-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 40px;
  width: 12.5%;
  text-align: center;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-care .list-history-item {
    width: 25%;
  }
}

@media screen and (max-width: 420px) {
  #wrap.page-family .sec-care .list-history-item {
    width: 33.33%;
  }
}

#wrap.page-family .sec-care .list-history-item img {
  width: 93.5%;
}

#wrap.page-family .sec-care .list-history-item .age {
  margin-bottom: 15px;
}

@media screen and (min-width: 760px) {
  #wrap.page-family .sec-care .list-history-item .age {
    margin: 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media screen and (min-width: 760px) {
  #wrap.page-family .sec-care .list-history-item .illust {
    margin-bottom: 15px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

#wrap.page-family .sec-care .list-history-item:before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100%;
  height: 5px;
  background: #e4e4e4;
}

#wrap.page-family .sec-care .list-history-item:first-child:before {
  border-radius: 4px 0 0 4px;
}

#wrap.page-family .sec-care .list-history-item:last-child:before {
  border-radius: 0 4px 4px 0;
}

#wrap.page-family .sec-care .list-history-item:after {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

#wrap.page-family .sec-care .list-history-item.item01:after {
  background: #e79ec3;
}

#wrap.page-family .sec-care .list-history-item.item02:after {
  background: #fff699;
}

#wrap.page-family .sec-care .list-history-item.item03:after {
  background: #a6cdee;
}

#wrap.page-family .sec-care .list-history-item.item04:after {
  background: #93d6a2;
}

#wrap.page-family .sec-care .steps-item {
  padding: 20px 2.79% 30px;
  width: 50%;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-care .steps-item {
    padding: 15px 2.79% 20px;
    width: 100%;
  }
}

#wrap.page-family .sec-care .steps-item .ttl {
  margin-bottom: 15px;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: bold;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-care .steps-item .ttl {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

#wrap.page-family .sec-care .steps-item .ttl span {
  margin-right: 30px;
  font-size: 42px;
  font-size: 2.625rem;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-care .steps-item .ttl span {
    margin-right: 15px;
    font-size: 30px;
    font-size: 1.875rem;
  }
}

#wrap.page-family .sec-care .steps-item .txt-box {
  padding: 25px 15px 10px;
  background: #fff;
  border-radius: 6px;
  font-size: 16px;
  font-size: 1rem;
  text-align: left;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-care .steps-item .txt-box {
    padding: 15px 10px;
    font-size: 14px;
    font-size: 0.875rem;
  }
}

#wrap.page-family .sec-care .steps-item .solution {
  margin-top: 10px;
  color: #504774;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-care .steps-item .solution {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

#wrap.page-family .sec-care .steps-item .solution span {
  display: inline-block;
  padding: 5px 0 5px 45px;
  background: url(../menu/family/img/icn_care.png) no-repeat left center;
  background-size: 35px auto;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-care .steps-item .solution span {
    padding: 3px 0 3px 35px;
    background-size: 25px auto;
  }
}

#wrap.page-family .sec-care .steps .item01 {
  background: #f2e8f1;
}

#wrap.page-family .sec-care .steps .item01 .ttl {
  color: #e79ec3;
}

#wrap.page-family .sec-care .steps .item02 {
  background: #fffad0;
}

@media screen and (min-width: 760px) {
  #wrap.page-family .sec-care .steps .item02 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

#wrap.page-family .sec-care .steps .item02 .ttl {
  color: #eeb033;
}

#wrap.page-family .sec-care .steps .item03 {
  background: #e4f1fa;
}

@media screen and (min-width: 760px) {
  #wrap.page-family .sec-care .steps .item03 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

#wrap.page-family .sec-care .steps .item03 .ttl {
  color: #8bd2f5;
}

#wrap.page-family .sec-care .steps .item04 {
  background: #def3e4;
}

@media screen and (min-width: 760px) {
  #wrap.page-family .sec-care .steps .item04 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}

#wrap.page-family .sec-care .steps .item04 .ttl {
  color: #93d6a2;
}

#wrap.page-family .sec-care .newCare {
  padding: 70px 0 0;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-care .newCare {
    padding: 40px 0 0;
  }
}

#wrap.page-family .sec-care .newCare .lead-box {
  max-width: 100%;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-care .newCare .lead-box {
    margin: 0 auto 30px;
  }
}

#wrap.page-family .sec-care .newCare .img,
#wrap.page-family .sec-care .newCare .txt-box {
  width: 47%;
}

@media screen and (max-width: 960px) {
  #wrap.page-family .sec-care .newCare .img,
  #wrap.page-family .sec-care .newCare .txt-box {
    width: 100%;
  }
}

@media screen and (max-width: 960px) {
  #wrap.page-family .sec-care .newCare .img {
    margin-top: 40px;
    text-align: center;
  }
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-care .newCare .img {
    margin-top: 20px;
  }
}

#wrap.page-family .sec-care .newCare .img img {
  max-width: 540px;
}

#wrap.page-family .sec-care .newCare .treatment-list {
  border-top: 2px dashed #e6c3b1;
}

#wrap.page-family .sec-care .newCare .treatment-list-item {
  padding: 15px 0 25px;
  border-bottom: 2px dashed #e6c3b1;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-care .newCare .treatment-list-item {
    padding: 15px 0;
  }
}

#wrap.page-family .sec-care .newCare .treatment-list-item .ttl {
  margin-bottom: 15px;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-care .newCare .treatment-list-item .ttl {
    margin-bottom: 10px;
    font-size: 18px;
    font-size: 1.125rem;
  }
}

#wrap.page-family .sec-care .newCare .treatment-list-item img {
  width: 150px;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-care .newCare .treatment-list-item img {
    width: 120px;
  }
}

#wrap.page-family .sec-care .newCare .treatment-list-item p {
  padding-left: 7.65%;
  width: calc(100% - 150px);
  font-size: 16px;
  font-size: 1rem;
  line-height: 2.25;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-care .newCare .treatment-list-item p {
    padding-left: 3%;
    width: calc(100% - 120px);
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

#wrap.page-family .sec-consulting {
  margin-bottom: 100px;
  padding: 120px 0 160px;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-consulting {
    margin-bottom: 50px;
    padding: 60px 0;
  }
}

#wrap.page-family .sec-consulting .img,
#wrap.page-family .sec-consulting .lead-box {
  width: 47%;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-consulting .img,
  #wrap.page-family .sec-consulting .lead-box {
    width: 100%;
  }
  #wrap.page-family .sec-consulting .img .ttl-box,
  #wrap.page-family .sec-consulting .lead-box .ttl-box {
    text-align: center;
  }
}

#wrap.page-family .sec-consulting .lead-box .ttlCom01 {
  margin-bottom: 30px;
}

#wrap.page-family .sec-consulting .lead-box .ttl {
  margin-bottom: 10px;
  line-height: 1.58;
}

#wrap.page-family .sec-consulting .img {
  text-align: center;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-consulting .img {
    margin-bottom: 30px;
  }
  #wrap.page-family .sec-consulting .img img {
    width: 40%;
  }
}

#wrap.page-family .sec-consulting .img img {
  max-width: 246px;
}

#wrap.page-family .sec-consulting .consulting-list {
  margin: 70px 0 0;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-consulting .consulting-list {
    margin: 35px 0 0;
  }
}

#wrap.page-family .sec-consulting .consulting-list-item {
  border-top: 2px dashed #e6c3b1;
  padding: 30px 0 25px;
  width: 29.153%;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-consulting .consulting-list-item {
    width: 47%;
  }
}

@media screen and (max-width: 640px) {
  #wrap.page-family .sec-consulting .consulting-list-item {
    padding: 20px 0;
    width: 100%;
  }
}

#wrap.page-family .sec-consulting .consulting-list-item .head {
  background: #ededed;
  /*color: #;*/
  border: solid 3px #fff;
  margin-bottom: 5px;/*10px*/
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.75;
  padding: 5px;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-consulting .consulting-list-item .head {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.5;
  }
}

#wrap.page-family .sec-consulting .consulting-list-item .head .tx-pk {
  color: #d69c89;
}

#wrap.page-family .sec-consulting .consulting-list-item .desc {
  background: #fff;
  font-size: 16px;
  font-size: 1rem;
  line-height: 2.25;
  padding: 8px;
}

@media screen and (max-width: 759px) {
  #wrap.page-family .sec-consulting .consulting-list-item .desc {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

@media screen and (min-width: 760px) {
  #wrap.page-family .sec-consulting .consulting-list-item:nth-last-of-type(-n+3) {
    border-bottom: 2px dashed #e6c3b1;
  }
}

@media screen and (min-width: 641px) {
  #wrap.page-family .sec-consulting .consulting-list-item:nth-last-of-type(-n+2) {
    border-bottom: 2px dashed #e6c3b1;
  }
}

@media screen and (max-width: 640px) {
  #wrap.page-family .sec-consulting .consulting-list-item:last-of-type {
    border-bottom: 2px dashed #e6c3b1;
  }
}

.btn-arrow-down {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 16px 20px;
  background: #d8a695;
  color: #fff;
  text-align: center;
  font-weight: 800;
  border-radius: 40px;
  cursor: pointer;
  width: 100%;
  font-size: 18px;
  font-size: 1.125rem;
}

@media screen and (max-width: 1000px) {
  .btn-arrow-down {
    padding: 16px 30px 16px 10px;
    font-size: 15px;
    font-size: 0.9375rem;
  }
}

@media screen and (max-width: 759px) {
  .btn-arrow-down {
    margin: 0 auto;
    padding: 10px 30px 10px 10px;
    width: 80%;
  }
}

.btn-arrow-down:before {
  content: '';
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 12px;
  background: url(../menu/family/img/icn_arrow_down.png) no-repeat center center;
  background-size: contain;
}

@media screen and (max-width: 1000px) {
  .btn-arrow-down:before {
    right: 15px;
    width: 15px;
    height: 10px;
  }
}

.equipment-index .inner {
  max-width: calc(1100px + 10%);
  padding: 0px 5%;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .equipment-index .inner {
    max-width: calc(1100px + 10%);
    padding: 0px 5%;
    margin: auto;
  }
  .equipment-index img {
    display: block;
    margin: auto;
  }
}

.equipment-index .preventive {
  padding: 85px 0px 74px;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 767px) {
  .equipment-index .preventive {
    padding: 30px 0px;
  }
  .equipment-index .preventive img {
    margin-top: 20px;
    width: 100%;
    max-width: unset;
  }
}

.equipment-index .preventive .preventive-inner .ttl-style00 {
  text-align: left;
}

.equipment-index .preventive .preventive-inner .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .equipment-index .preventive .preventive-inner .row .col:nth-child(1) {
    padding-top: 15px;
  }
}

.equipment-index .programs {
  background: #f2e0d7;
  padding: 90px 0px 20px;
}

@media screen and (max-width: 767px) {
  .equipment-index .programs {
    padding: 50px 0px 50px;
  }
}

.equipment-index .programs .program-inner .listProgram {
  margin-top: 110px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .equipment-index .programs .program-inner .listProgram {
    margin-top: 50px;
  }
}

.equipment-index .programs .program-inner .listProgram .item {
  margin-bottom: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .equipment-index .programs .program-inner .listProgram .item:last-child {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .equipment-index .programs .program-inner .listProgram .item {
    margin-bottom: 30px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.equipment-index .programs .program-inner .listProgram .item:last-child .item-l:after {
  content: '';
  position: absolute;
  width: 5px;
  height: 1000px;
  background: #f2e0d7;
  left: calc(50% + 2px);
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 3;
}

@media screen and (max-width: 1180px) {
  .equipment-index .programs .program-inner .listProgram .item:last-child .item-l:after {
    left: calc(10.8vw + 2px);
  }
}

@media screen and (max-width: 767px) {
  .equipment-index .programs .program-inner .listProgram .item:last-child .item-l:after {
    display: none;
  }
}

.equipment-index .programs .program-inner .listProgram .item > * {
  margin-right: 4.8%;
}

@media screen and (max-width: 767px) {
  .equipment-index .programs .program-inner .listProgram .item > * {
    margin-right: 0;
  }
}

.equipment-index .programs .program-inner .listProgram .item .item-l {
  width: 22%;
  position: relative;
}

@media screen and (max-width: 767px) {
  .equipment-index .programs .program-inner .listProgram .item .item-l {
    width: 100%;
  }
}

.equipment-index .programs .program-inner .listProgram .item .item-l:before {
  content: '';
  position: absolute;
  width: 5px;
  height: 1000px;
  background: #dfd5d0;
  left: calc(50% + 2px);
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 1180px) {
  .equipment-index .programs .program-inner .listProgram .item .item-l:before {
    left: calc(10.8vw + 2px);
  }
}

@media screen and (max-width: 767px) {
  .equipment-index .programs .program-inner .listProgram .item .item-l:before {
    display: none;
  }
}

.equipment-index .programs .program-inner .listProgram .item .item-m {
  width: 40%;
  font-family: "Noto Sans JP", sans-serif;
  padding-top: 17px;
}

.equipment-index .programs .program-inner .listProgram .item .item-m .txt-01 {
  text-align: right;
  font-size: 12px;
  font-size: 0.75rem;
  margin-bottom: 15px;
  margin-top: -35px;
}

@media screen and (max-width: 767px) {
  .equipment-index .programs .program-inner .listProgram .item .item-m .txt-01 {
    margin-top: -25px;
  }
}

@media screen and (max-width: 767px) {
  .equipment-index .programs .program-inner .listProgram .item .item-m {
    width: 100%;
    padding-top: 10px;
  }
}

.equipment-index .programs .program-inner .listProgram .item .item-r {
  margin-right: 0;
  width: 32%;
  padding-top: 10px;
}

@media screen and (max-width: 767px) {
  .equipment-index .programs .program-inner .listProgram .item .item-r {
    width: 100%;
  }
  .equipment-index .programs .program-inner .listProgram .item .item-r img {
    width: 100%;
    max-width: unset;
    margin: auto;
  }
}

.equipment-index .medial {
  padding: 90px 0px 150px;
}

@media screen and (max-width: 767px) {
  .equipment-index .medial {
    padding: 50px 0px;
  }
}

.equipment-index .medial .ttl-style01 {
  color: #b98a7a;
  font-size: 36px !important;
  margin-bottom: 75px !important;
}

.equipment-index .medial .ttl-style01 span {
  font-size: 30px !important;
}

@media screen and (max-width: 767px) {
  .equipment-index .medial .ttl-style01 {
    font-size: 24px !important;
    margin-bottom: 30px !important;
  }
  .equipment-index .medial .ttl-style01 span {
    font-size: 18px !important;
  }
}

.equipment-index .medial .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .equipment-index .medial .row {
    margin-bottom: 0px;
  }
}

.equipment-index .medial .row .col-content {
  margin-bottom: 60px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .equipment-index .medial .row .col-content {
    margin-bottom: 30px;
  }
  .equipment-index .medial .row .col-content img {
    width: 100%;
    max-width: unset;
    display: block;
  }
}

.equipment-index .medial .row .col-content .txt-dec {
  position: absolute;
  background: #50c1af;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  padding: 14px 10px;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.4;
  text-align: center;
  color: #ffffff;
  bottom: 4px;
  left: 4px;
  right: 4px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

@media screen and (max-width: 1100px) {
  .equipment-index .medial .row .col-content .txt-dec {
    bottom: 0.3vw;
    left: 0.2vw;
    right: 0.3vw;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
  }
}

@media screen and (max-width: 767px) {
  .equipment-index .medial .row .col-content .txt-dec {
    font-size: 16px;
    font-size: 1rem;
    left: 0.5vw;
    right: 0.5vw;
    bottom: 0.5vw;
  }
}

.equipment-index .medial .ttl-style04 {
  font-size: 36px;
  font-size: 2.25rem;
}

@media screen and (max-width: 767px) {
  .equipment-index .medial .ttl-style04 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

.page-banner {
  display: block;
  width: 100%;
  margin-top: 60px;
  /*padding: 110px 0 1px;*/
  padding: 45px 0 1px;
  z-index: 1000;
  text-align: center;
}

.page-banner > img {
  height: 36vw;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 500px;
}

@media screen and (max-width: 767px) {
  .page-banner > img {
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .page-banner {
    margin-top: 50px;
    padding-top: 50px;
  }
}

.listTreatment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0px 50px;
  margin-top: 70px;
}

@media screen and (max-width: 990px) {
  .listTreatment {
    padding: 0px 10px;
  }
}

@media screen and (max-width: 767px) {
  .listTreatment {
    padding: 0px 25px;
    margin-top: 35px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.listTreatment .item {
  width: calc((100% - 4%)/3);
  margin-right: 2%;
  text-align: center;
  position: relative;
}

.listTreatment .item:last-child {
  margin-right: 0;
}

.listTreatment .item:nth-child(1) {
  width: 26%;
}

.listTreatment .item:nth-child(2) {
  width: 32%;
}

.listTreatment .item:nth-child(2) img {
  text-align: left;
  margin-left: -20px;
  margin-top: -20px;
}

.listTreatment .item:nth-child(3) {
  width: 23%;
}

@media screen and (max-width: 990px) {
  .listTreatment .item:nth-child(3) {
    width: 25%;
  }
}

@media screen and (max-width: 767px) {
  .listTreatment .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .listTreatment .item:nth-child(1), .listTreatment .item:nth-child(2), .listTreatment .item:nth-child(3) {
    width: 100%;
  }
  .listTreatment .item:nth-child(1) img, .listTreatment .item:nth-child(2) img, .listTreatment .item:nth-child(3) img {
    text-align: center;
    margin: auto;
  }
}

.listTreatment .item .item-content {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  color: #b98a7a;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: -34px;
}

@media screen and (max-width: 990px) {
  .listTreatment .item .item-content {
    margin-top: -20px;
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.listTreatment .item .item-content span {
  display: block;
  font-weight: bold;
  font-size: 24px;
  font-size: 1.5rem;
}

@media screen and (max-width: 990px) {
  .listTreatment .item .item-content span {
    font-size: 16px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .listTreatment .item .item-content {
    font-size: 16px;
    font-size: 1rem;
    margin-top: -30px;
  }
  .listTreatment .item .item-content span {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.listTreatment .item:last-child {
  margin-right: 0;
}

.listProduct {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-top: 155px;
}

.listProduct .item {
  width: 25%;
  padding: 0px 4px;
}

@media screen and (max-width: 767px) {
  .listProduct {
    margin-top: 80px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .listProduct .item {
    width: 50%;
    margin-bottom: 8px;
  }
  .listProduct .item img {
    width: 100%;
    max-width: unset;
    display: block;
  }
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0px -30px;
}

@media screen and (max-width: 767px) {
  .row {
    margin: 0;
  }
}

.row.col2 .col {
  width: calc(100% / 2);
}

@media screen and (max-width: 767px) {
  .row.col2 .col {
    width: 100%;
  }
}

.row.col3 .col {
  width: calc(100% / 3);
}

@media screen and (max-width: 767px) {
  .row.col3 .col {
    width: 100%;
  }
}

.row .col {
  padding: 0px 30px;
}

@media screen and (max-width: 767px) {
  .row .col {
    padding: 0;
  }
}

.ttl-style00 {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 27px;
  color: #554a44;
  padding: 0px 25px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .ttl-style00 {
    font-size: 26px;
    font-size: 1.625rem;
    padding: 0px;
  }
}

.ttl-style01 {
  margin: 0 0 65px 0 !important;
  font-size: 30px !important;
  color: #595554;
  font-weight: 500 !important;
  text-align: center;
  line-height: 1;
}

.ttl-style01 span {
  margin: 10px 0 0 0;
  font-size: 24px !important;
  font-family: 'Caveat', cursive;
  color: #d8a695;
  font-weight: normal;
  display: block;
}

@media screen and (max-width: 767px) {
  .ttl-style01 {
    font-size: 24px !important;
    margin-bottom: 30px !important;
  }
  .ttl-style01 span {
    font-size: 20px !important;
  }
}

.ttl-style02 {
  color: #b98a7a;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.5;
  border-top: 1px solid;
  border-bottom: 1px solid;
  margin-bottom: 30px;
  text-align: center;
  padding: 16px 0px;
}

@media screen and (max-width: 767px) {
  .ttl-style02 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.ttl-style03 {
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  text-align: center;
  font-size: 48px;
  font-size: 3rem;
  line-height: 1.2;
  color: #ffffff;
}

.ttl-style03 span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  color: #b98a7a;
}

@media screen and (max-width: 767px) {
  .ttl-style03 {
    font-size: 40px;
    font-size: 2.5rem;
  }
  .ttl-style03 span {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.ttl-style04 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.6;
  border-bottom: 1px solid #b98a7a;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  padding-bottom: 23px;
  margin-bottom: 35px;
  color: #554a44;
}

@media screen and (max-width: 767px) {
  .ttl-style04 {
    font-size: 18px;
    font-size: 1.125rem;
    padding-bottom: 15px;
    margin-bottom: 25px;
  }
}

.ttl-style04 .txt-small {
  font-size: 12px;
  font-size: 0.75rem;
  vertical-align: text-top;
  display: inline-block;
  padding-top: 6px;
}

.btn-style01 {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 17px 20px 18px;
  background: #d8a695;
  color: #fff;
  text-align: center;
  font-weight: bold;
  border-radius: 40px;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  max-width: 575px;
  margin-top: 115px;
  font-size: 18px;
  font-size: 1.125rem;
}

@media screen and (max-width: 767px) {
  .btn-style01 {
    font-size: 16px;
    font-size: 1rem;
    margin-top: 60px;
  }
}

.fz16, .equipment-index .preventive, .equipment-index .programs .program-inner .listProgram .item .item-m, .equipment-index .medial, .box-01, .box-02 .box-body p, .page-prevent .sec-service p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2.2;
}

@media screen and (max-width: 767px) {
  .fz16, .equipment-index .preventive, .equipment-index .programs .program-inner .listProgram .item .item-m, .equipment-index .medial, .box-01, .box-02 .box-body p, .page-prevent .sec-service p {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

.circle {
  max-width: 238px;
  max-height: 238px;
  width: 21.6vw;
  height: 21.6vw;
  background: #50c1af;
  color: #ffffff;
  border-radius: 50%;
  position: relative;
}

@media screen and (max-width: 767px) {
  .circle {
    width: 150px;
    height: 150px;
    display: block;
    margin: auto;
  }
}

.circle .txt {
  font-size: 22px;
  font-size: 1.375rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  text-align: center;
  position: absolute;
  top: 43%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  padding: 0px 20px;
}

.circle .txt span {
  font-family: 'Caveat', cursive;
  display: block;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: normal;
  margin-bottom: 2vw;
  color: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 767px) {
  .circle .txt {
    font-size: 16px;
    font-size: 1rem;
    top: 50%;
  }
  .circle .txt span {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

footer {
  font-size: 12px;
  font-weight: bold;
}

.item-img-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #f5ece3;
  z-index: -1;
  margin: auto;
}

@media screen and (max-width: 990px) {
  .item-img-circle {
    width: 180px;
    height: 180px;
  }
}

.item-img-circle > img {
  position: absolute;
  top: 42%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 100%;
  width: auto;
}

@media screen and (max-width: 990px) {
  .item-img-circle > img {
    top: 37%;
    max-height: 125px;
  }
}

.page-prevent .inner {
  max-width: calc(1100px + 10%);
  padding: 0px 5%;
  margin: auto;
}

.page-prevent .box-03.style2 .box-body .title {
  line-height: 1.5;
  padding-bottom: 17px;
}

@media screen and (max-width: 767px) {
  .page-prevent .inner {
    max-width: calc(1100px + 10%);
    padding: 0px 5%;
    margin: auto;
  }
  .page-prevent img {
    display: block;
    margin: auto;
  }
}

.page-prevent .preventive-01 {
  color: #000;
}

.page-prevent .preventive-01 .row {
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .page-prevent .preventive-01 .row {
    margin-bottom: 0px;
  }
  .page-prevent .preventive-01 .row.row-direct {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.page-prevent .preventive-01 .ttl-style00 {
  margin-bottom: 80px !important;
}

@media screen and (max-width: 767px) {
  .page-prevent .preventive-01 .ttl-style00 {
    margin-bottom: 40px !important;
  }
}

@media screen and (max-width: 767px) {
  .box-01 {
    padding-top: 0;
  }
}

.box-01 .ttl-style04 {
  color: #000000;
  padding-bottom: 17px;
  margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
  .box-01 .ttl-style04 {
    padding-bottom: 15px;
    margin-bottom: 25px;
  }
}

.box-02 {
  background-color: #f2e0d7;
  padding: 77px 8.2vw 100px;
}

@media screen and (max-width: 1300px) {
  .box-02 {
    padding: 50px 2vw 50px;
  }
}

.box-02.box-02-other .box-header .right {
  padding-left: 20px;
}

@media screen and (max-width: 767px) {
  .box-02 {
    padding: 25px 5% 50px;
  }
}

.box-02 .box-header {
  padding-bottom: 20px;
  border-bottom: 2px solid #d8a695;
  margin-bottom: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.box-02 .box-header .left {
  color: #fff;
  background-color: #4fc2ae;
  text-align: center;
  width: 150px;
  height: 150px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .box-02 .box-header .left {
    width: 120px;
    height: 120px;
  }
}

.box-02 .box-header .left:before {
  content: "";
  display: block;
  height: 50%;
}

.box-02 .box-header .left .wrap {
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.box-02 .box-header .left p {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .box-02 .box-header .left p {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.box-02 .box-header .left .txt-extra {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .box-02 .box-header .left .txt-extra {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.box-02 .box-header .left span {
  font-family: 'Caveat', cursive;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .box-02 .box-header .left span {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.box-02 .box-header .left .number {
  font-size: 42px !important;
  margin-bottom: 16px !important;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .box-02 .box-header .left .number {
    font-size: 30px !important;
    margin-bottom: 5px !important;
  }
}

.box-02 .box-header .right {
  width: calc(100% - 150px);
  padding-left: 27px;
  color: #554a44;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .box-02 .box-header .right {
    width: calc(100% - 100px);
    padding-left: 10px;
  }
}

.box-02 .box-header .right p {
  font-size: 22px;
  font-size: 1.375rem;
  margin-bottom: 22px;
}

@media screen and (max-width: 1300px) {
  .box-02 .box-header .right p {
    font-size: 18px;
    font-size: 1.125rem;
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 767px) {
  .box-02 .box-header .right p {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.box-02 .box-header .right span {
  font-size: 36px;
  font-size: 2.25rem;
}

@media screen and (max-width: 1300px) {
  .box-02 .box-header .right span {
    font-size: 2.5vw;
  }
}

@media screen and (max-width: 767px) {
  .box-02 .box-header .right span {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

.box-02 .box-body {
  color: #000;
}

.box-02 .box-body .title {
  font-weight: 500;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .box-02 .box-body .title {
    font-size: 20px;
    font-size: 1.25rem;
    margin-bottom: 15px;
  }
}

.box-03 {
  background-color: #fff;
  border-radius: 10px;
}

.box-03 .box-header {
  color: #b98a7a;
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  padding: 23px 2px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .box-03 .box-header {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.box-03 .box-body {
  padding: 20px 30px 25px;
}

@media screen and (max-width: 767px) {
  .box-03 .box-body {
    padding: 15px 20px;
  }
}

.box-03 .box-body .title {
  color: #554a44;
  font-size: 22px;
  font-size: 1.375rem;
  margin-bottom: 14px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .box-03 .box-body .title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.box-03 .box-body p {
  color: #3c3c3c;
  font-size: 15px;
  font-size: 0.9375rem;
}

@media screen and (max-width: 767px) {
  .box-03 .box-body p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.box-03.style2 {
  text-align: left;
}

.box-03.style2 .box-body {
  padding: 20px 0 25px;
}

.box-03.style2 .box-body .title {
  color: #b98a7a;
  font-weight: bold;
  border-bottom: 1px solid #b98a7a;
  font-size: 20px;
  font-size: 1.25rem;
}

@media screen and (max-width: 767px) {
  .box-03.style2 .box-body .title {
    font-size: 16px;
    font-size: 1rem;
  }
}

.box-04 {
  position: relative;
}

.box-04 .label {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 80%;
  height: 34px;
  line-height: 34px;
  max-width: 210px;
  background-color: #4fc2ae;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 22px;
  font-size: 1.375rem;
}

.box-04 .box-body {
  padding-top: 20px;
  text-align: center;
}

.box-04 .box-body .title {
  color: #b98a7a;
  font-size: 24px;
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.box-04 .box-body .title span {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: normal;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .box-04 .box-body .title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.box-04 .box-body p {
  color: #3c3c3c;
  font-size: 15px;
  font-size: 0.9375rem;
}

@media screen and (max-width: 767px) {
  .box-04 .box-body p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.box-05 {
  background-color: #f2e0d7;
  color: #000;
  padding: 50px 8.2vw 50px;
  position: relative;
}

.box-05::before {
  content: "";
  display: block;
  height: 50%;
}

.box-05 .wrap {
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 1300px) {
  .box-05 {
    padding: 30px 2vw 30px;
  }
}

.box-05 .box-header {
  font-weight: 500;
  color: #554a44;
  border-bottom: 1px solid #b98a7a;
  padding-bottom: 27px;
  margin-bottom: 40px;
}

@media screen and (max-width: 1300px) {
  .box-05 .box-header {
    padding-bottom: 17px;
    margin-bottom: 20px;
  }
}

.box-05 .box-header span {
  font-size: 22px;
  font-size: 1.375rem;
  display: block;
  line-height: 1.5;
}

@media screen and (max-width: 1300px) {
  .box-05 .box-header span {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.box-05 .box-header span:nth-child(2) {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 500;
}

@media screen and (max-width: 1300px) {
  .box-05 .box-header span:nth-child(2) {
    font-size: 26px;
    font-size: 1.625rem;
    line-height: 1.8;
  }
}

.box-05 .box-body .title {
  font-weight: 500;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.75;
  margin-bottom: 34px;
}

@media screen and (max-width: 1300px) {
  .box-05 .box-body .title {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.box-05 p {
  line-height: 2.2;
}

.box-06 .box-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 22px;
  margin-bottom: 17px;
  border-bottom: 1px solid #b98a7a;
}

.box-06 .box-header .number {
  width: 100px;
  text-align: center;
  line-height: 0.8;
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  color: #4fc2ae;
  font-size: 109px;
  font-size: 6.8125rem;
}

@media screen and (max-width: 1300px) {
  .box-06 .box-header .number {
    font-size: 50px;
    font-size: 3.125rem;
    width: 50px;
  }
}

.box-06 .box-header .content {
  width: calc(100% - 100px);
}

@media screen and (max-width: 1300px) {
  .box-06 .box-header .content {
    width: calc(100% - 50px);
  }
}

.box-06 .box-header .content p {
  line-height: 1;
  font-weight: 500;
}

.box-06 .box-header .content p:first-child {
  color: #4fc2ae;
  margin-bottom: 25px;
  font-size: 36px;
  font-size: 2.25rem;
}

@media screen and (max-width: 1300px) {
  .box-06 .box-header .content p:first-child {
    font-size: 22px;
    font-size: 1.375rem;
    margin-bottom: 15px;
  }
}

.box-06 .box-header .content p:last-child {
  color: #554a44;
  font-size: 22px;
  font-size: 1.375rem;
}

@media screen and (max-width: 1300px) {
  .box-06 .box-header .content p:last-child {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.box-06 .box-header .content p:last-child span {
  color: #b98a7a;
}

.box-06 .box-body > p {
  line-height: 2;
  margin-bottom: 30px;
  color: #3c3c3c;
}

.time-box {
  position: relative;
  display: inline-block;
}

.time-box img {
  width: auto !important;
}

.time-box .content {
  position: absolute;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
}

.time-box .content .title {
  margin-bottom: 20px;
}

.time-box .content .title span {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
}

@media screen and (max-width: 1040px) {
  .time-box .content .title span {
    font-size: 16px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 400px) {
  .time-box .content .title span {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.time-box .content .title span:first-child {
  margin-right: 10px;
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
}

@media screen and (max-width: 767px) {
  .time-box .content .title span:first-child {
    -webkit-transform: translateY(-3px);
        -ms-transform: translateY(-3px);
            transform: translateY(-3px);
    margin-right: 0;
  }
}

@media screen and (max-width: 1040px) {
  .time-box .content .title span:first-child img {
    width: 50% !important;
  }
}

@media screen and (max-width: 1000px) {
  .time-box .content .title {
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 400px) {
  .time-box .content .title {
    margin-bottom: 4px;
  }
}

.time-box .content .list-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 15px;
}

@media screen and (max-width: 1040px) {
  .time-box .content .list-btn {
    padding: 0 10px;
  }
}

@media screen and (max-width: 480px) {
  .time-box .content .list-btn {
    padding: 0 0;
  }
}

.time-box .content .list-btn li {
  width: 190px;
  margin-right: 5px;
  margin-left: 5px;
}

@media screen and (max-width: 1100px) {
  .time-box .content .list-btn li {
    width: 120px;
  }
}

@media screen and (max-width: 400px) {
  .time-box .content .list-btn li {
    width: 100px;
  }
}

.time-box .content .list-btn li a {
  border-radius: 20px;
  display: block;
  background-color: #d8a695;
  margin-bottom: 15px;
  height: 33px;
  line-height: 33px;
  text-align: center;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  font-size: 1.125rem;
}

@media screen and (max-width: 767px) {
  .time-box .content .list-btn li a {
    font-size: 12px;
    font-size: 0.75rem;
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 400px) {
  .time-box .content .list-btn li:nth-child(3) a, .time-box .content .list-btn li:nth-child(4) a {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 1000px) {
  .time-box.style2 .title {
    margin-bottom: 0;
  }
}

.time-box.style2 .list-check {
  text-align: left;
  padding: 0 40px;
}

@media screen and (max-width: 1000px) {
  .time-box.style2 .list-check {
    padding: 0 10px;
  }
}

.time-box.style2 .list-check li {
  padding-left: 35px;
  background-image: url("../menu/img/orthodontic/icon-06.png");
  background-repeat: no-repeat;
  background-position: center left;
}

@media screen and (max-width: 1000px) {
  .time-box.style2 .list-check li {
    padding-left: 30px;
  }
}

.time-box.style2 .list-check li p {
  display: inline;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  color: #3c3c3c;
  border-bottom: 5px solid rgba(255, 246, 0, 0.3);
  position: relative;
  top: -8px;
}

@media screen and (max-width: 1000px) {
  .time-box.style2 .list-check li p {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

.time-box.style2 .list-check li p > * {
  display: inline;
  position: relative;
  top: 8px;
  line-height: 1.4;
}

.border-box {
  margin-bottom: 75px;
  border: 3px solid #e9e9e9;
  padding: 25px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .border-box {
    margin-bottom: 30px;
  }
}

.border-box > * {
  padding: 0 20px;
  width: 50%;
}

@media screen and (max-width: 767px) {
  .border-box > * {
    padding: 0 20px;
    width: 100%;
  }
  .border-box > *:first-child {
    margin-bottom: 20px;
  }
}

.border-box ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .border-box ul li {
    margin-bottom: 5px;
  }
}

.border-box ul li span {
  background-color: #e8952f;
  display: inline-block;
  width: 25px;
  height: 25px;
  line-height: 25px;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
}

@media screen and (max-width: 1000px) {
  .border-box ul li span {
    font-size: 12px;
    font-size: 0.75rem;
    width: 20px;
    height: 20px;
    line-height: 20px;
  }
}

.border-box ul li p {
  width: calc(100% - 29px);
  padding-left: 3px;
  color: #000;
  font-size: 18px;
  font-size: 1.125rem;
}

@media screen and (max-width: 1000px) {
  .border-box ul li p {
    width: calc(100% - 20px);
  }
}

@media screen and (max-width: 767px) {
  .border-box ul li p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.program {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.program img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;';
}

.program > * {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .program > * {
    width: 100%;
  }
}

.program .box-02 {
  background: #eee0cf;
}

.ss-program {
  padding: 78px 0px 0px;
}

@media screen and (max-width: 767px) {
  .ss-program {
    padding: 50px 0px 0px;
  }
}

.ss-program .ttl-style01 {
  color: #b98a7a;
  font-size: 36px !important;
  margin-bottom: 26px !important;
}

.ss-program .ttl-style01 span {
  font-size: 30px !important;
}

@media screen and (max-width: 767px) {
  .ss-program .ttl-style01 {
    font-size: 24px !important;
    margin-bottom: 20px !important;
  }
  .ss-program .ttl-style01 span {
    font-size: 18px !important;
  }
}

.page-prevent .preventive {
  padding: 90px 0 50px;
}

@media screen and (max-width: 767px) {
  .page-prevent .preventive {
    padding: 50px 0 5px;
  }
}

.page-prevent .preventive .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-prevent .sec-grid {
  padding: 54px 0 86px;
}

@media screen and (max-width: 767px) {
  .page-prevent .sec-grid {
    padding: 50px 0 50px;
  }
}

.page-prevent .sec-service {
  text-align: center;
  padding-top: 45px;
  padding-bottom: 100px;
}

.page-prevent .sec-service .ttl {
  margin: 0 0 30px 0;
  font-size: 30px;
  color: #554a44;
  font-weight: 500;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-size: 2.25rem;
}

.page-prevent .sec-service .ttl span {
  font-size: 22px;
  font-size: 1.375rem;
  display: block;
  margin: 10px 0 20px 0;
}

@media screen and (max-width: 767px) {
  .page-prevent .sec-service .ttl {
    font-size: 24px;
    font-size: 1.5rem;
    margin-bottom: 18px;
  }
  .page-prevent .sec-service .ttl span {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 767px) {
  .page-prevent .sec-service {
    padding-top: 30px;
    padding-bottom: 50px;
  }
}

.page-prevent .sec-service p {
  margin-bottom: 37px;
  color: #000000;
}

.page-prevent .sec-service .wrap-service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .page-prevent .sec-service .wrap-service {
    display: block;
  }
}

.page-prevent .sec-service .wrap-service .col {
  margin-right: 13%;
  width: calc((100% - 26%) / 3);
}

@media screen and (max-width: 900px) {
  .page-prevent .sec-service .wrap-service .col {
    margin-right: 3%;
    width: calc((100% - 6%)/3);
  }
}

.page-prevent .sec-service .wrap-service .col:last-child {
  margin-right: 0 !important;
}

@media screen and (max-width: 767px) {
  .page-prevent .sec-service .wrap-service .col {
    width: 100%;
    margin-bottom: 20px;
  }
  .page-prevent .sec-service .wrap-service .col:last-child {
    margin-bottom: 0;
  }
}

.page-prevent .sec-fix {
	padding: 75px 0;
  /*padding-top: 75px;
  padding-bottom: 150px;*/
}

@media screen and (max-width: 767px) {
  .page-prevent .sec-fix {
    padding-top: 42px;
    padding-bottom: 70px;
  }
}

.page-prevent .sec-fix .img-01 {
  max-width: 100% !important;
  width: auto !important;
  display: block;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .page-prevent .sec-fix .img-01 {
    margin-bottom: 40px;
    max-width: 150px !important;
  }
}

.page-prevent .sec-fix .fix-wrap-bg {
  background-image: url("../menu/img/prevent/bg-05.png");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  padding: 44px 40px 76px;
  margin-top: 45px;
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  .page-prevent .sec-fix .fix-wrap-bg {
    padding: 20px 15px 30px;
    margin-top: 25px;
  }
}

.page-prevent .sec-fix .fix-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: -18px;
}

@media screen and (max-width: 767px) {
  .page-prevent .sec-fix .fix-wrap {
    margin-top: 20px;
  }
}

.page-prevent .sec-fix .fix-wrap p {
  text-align: left;
}

.page-prevent .sec-fix .fix-wrap .col {
  margin-right: 30px;
  width: calc((100% - 60px) / 3);
}

.page-prevent .sec-fix .fix-wrap .col:last-child {
  margin-right: 0;
}

.page-prevent .sec-fix .fix-wrap .col:nth-child(2) {
  margin-top: 70px;
}

@media screen and (max-width: 767px) {
  .page-prevent .sec-fix .fix-wrap .col:nth-child(2) {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .page-prevent .sec-fix .fix-wrap .col {
    width: 100%;
    margin: 0;
    margin-bottom: 53px;
  }
  .page-prevent .sec-fix .fix-wrap .col:last-child {
    margin-bottom: 0;
  }
}

.page-prevent .sec-fix .fix-wrap .img-fix {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 55px;
}

@media screen and (max-width: 767px) {
  .page-prevent .row.col2 .col {
    margin-bottom: 30px;
  }
}

.service-item {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background-color: #d3a778;
  color: #fff;
  position: relative;
  max-width: 220px;
  max-height: 220px;
}

@media screen and (max-width: 900px) {
  .service-item {
    margin: auto;
  }
}

@media screen and (max-width: 767px) {
  .service-item {
    margin: 0 auto;
  }
}

.service-item .content {
  position: absolute;
  top: 56%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}

.service-item .content img {
  width: auto !important;
  margin-bottom: 20px;
}

.service-item .content p {
  font-size: 24px;
  font-size: 1.5rem;
  margin-bottom: 0;
  line-height: 1.4;
  font-weight: bold;
  color: #ffffff;
}


@media screen and (max-width: 767px) {
  .service-item .content p {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.page-orthodontic {
  font-family: "Noto Sans JP", sans-serif;
}

.page-orthodontic .page-banner {
  /*padding: 110px 0 0;
	padding: 60px 0 0;*/
}

.page-orthodontic .btn-style01 {
  line-height: 2.2;
}

@media screen and (max-width: 767px) {
  .page-orthodontic .btn-style01 {
    line-height: 1.8;
  }
}

.page-orthodontic .bg-fix {
  padding-bottom: 0;
}

.page-orthodontic .bg-fix .row {
  margin-left: -15px;
  margin-right: -15px;
}

.page-orthodontic .bg-fix .row .col {
  padding: 0px 15px;
}

.page-orthodontic .bg-fix .row .col:last-child {
  margin-top: -5%;
}

@media screen and (max-width: 1300px) {
  .page-orthodontic .bg-fix .row .col:last-child {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .page-orthodontic .bg-fix .row {
    margin-left: 0;
    margin-right: 0;
  }
}

.page-orthodontic .bg-fix .box-01 {
  padding: 20px 0;
}

.page-orthodontic .bg-fix img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-orthodontic .sec-service {
  padding-top: 75px;
  padding-bottom: 45px;
}

@media screen and (max-width: 767px) {
  .page-orthodontic .sec-service {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.page-orthodontic .service-item {
  background-color: #d8a695;
  display: block;
}

.page-orthodontic .service-item:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1px solid transparent;
  border-bottom-color: #fff;
  border-right-color: #fff;
  left: 50%;
  bottom: 15px;
  -webkit-transform: translate(-50%, 0) rotate(45deg);
      -ms-transform: translate(-50%, 0) rotate(45deg);
          transform: translate(-50%, 0) rotate(45deg);
}

.page-orthodontic .service-item .content p {
  font-size: 20px;
  font-size: 1.25rem;
}

@media screen and (max-width: 767px) {
  .page-orthodontic .service-item .content p {
    font-size: 16px;
    font-size: 1rem;
  }
}

.page-orthodontic .ortho-list .row {
  background-color: #fff;
  position: relative;
  padding: 70px 45px 60px;
}

@media screen and (max-width: 1200px) {
  .page-orthodontic .ortho-list .row {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .page-orthodontic .ortho-list .row {
    padding: 60px 30px 0;
    padding-left: 3%;
    padding-right: 3%;
  }
}

@media screen and (max-width: 320px) {
  .page-orthodontic .ortho-list .row {
    padding-left: 0;
    padding-right: 0;
  }
}

.page-orthodontic .ortho-list .row .col {
  padding: 0px 15px;
}

@media screen and (max-width: 767px) {
  .page-orthodontic .ortho-list .row .col {
    padding: 0;
  }
}

@media screen and (max-width: 320px) {
  .page-orthodontic .ortho-list .row .col:nth-child(2) {
    margin-bottom: 0;
  }
}

.page-orthodontic .ortho-list .label {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-75%);
      -ms-transform: translateY(-75%);
          transform: translateY(-75%);
}

.page-orthodontic .sec-grid {
  text-align: center;
  padding-bottom: 150px;
  padding-top: 78px;
}

@media screen and (max-width: 767px) {
  .page-orthodontic .sec-grid {
    padding-bottom: 50px;
    padding-top: 50px;
  }
}

.page-orthodontic .sec-grid .btn-style01 {
  margin-top: 75px;
}

@media screen and (max-width: 767px) {
  .page-orthodontic .sec-grid .btn-style01 {
    margin-top: 30px;
  }
}

.page-orthodontic .sec-grid .inner {
  padding-top: 50px;
  padding-bottom: 0;
}

.page-orthodontic .sec-grid .inner.inner-1100 {
  max-width: 1100px;
}

@media screen and (max-width: 767px) {
  .page-orthodontic .pd-percent {
    padding: 0 5%;
  }
}

.page-orthodontic .preventive-01 .row {
  margin-bottom: 130px;
}

@media screen and (max-width: 767px) {
  .page-orthodontic .preventive-01 .row {
    margin-bottom: 90px;
  }
}

.page-orthodontic .preventive-01 .row:last-child {
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .page-orthodontic .preventive-01 .row:last-child {
    margin-bottom: 50px;
  }
}

.page-orthodontic .preventive-01 .preventive-inner .row {
  margin-right: 0;
  margin-left: 0;
}

.page-orthodontic .bg-white {
  background-color: #fff;
}

.page-orthodontic .bg-01 {
  background-color: #eee0cf !important;
}

.page-orthodontic .sec-struct {
  padding-top: 50px;
  padding-bottom: 110px;
}

@media screen and (max-width: 767px) {
  .page-orthodontic .sec-struct {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.page-orthodontic .sec-struct .inner {
  max-width: 1100px;
  padding-top: 45px;
  padding-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .page-orthodontic .sec-struct .inner {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.page-orthodontic .sec-struct .btn-style01 {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .page-orthodontic .sec-struct .btn-style01 {
    margin-top: 30px;
  }
}

.page-orthodontic .text-wrap {
  text-align: center;
}

.page-orthodontic .text-wrap .title {
  display: inline-block;
  border-bottom: 1px solid #554a44;
  margin-bottom: 30px;
  padding: 0 4% 10px;
  color: #554a44;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .page-orthodontic .text-wrap .title {
    margin-bottom: 18px;
    font-size: 22px;
    font-size: 1.375rem;
  }
}

@media screen and (max-width: 420px) {
  .page-orthodontic .text-wrap .title {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.page-orthodontic .text-wrap .title span {
  font-size: 24px;
  font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
  .page-orthodontic .text-wrap .title span {
    font-size: 16px;
    font-size: 1rem;
  }
}

.page-orthodontic .text-wrap p {
  text-align: left;
  max-width: 780px;
  margin: 0 auto;
  margin-bottom: 65px;
  color: #000;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .page-orthodontic .text-wrap p {
    font-size: 14px;
    font-size: 0.875rem;
    margin-bottom: 30px;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .page-orthodontic .page-banner > img {
    height: auto;
    max-height: 100%;
  }
}

.step {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .step {
    margin-bottom: 15px;
  }
}

.step .step-header {
  border-bottom: 1px solid #b98a7a;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.step .step-header span {
  font-family: 'Caveat', cursive;
  color: #d8a695;
  margin-bottom: 5px;
  font-size: 24px;
  font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
  .step .step-header span {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.step .step-header p {
  font-weight: bold;
  color: #b98a7a;
  font-size: 20px;
  font-size: 1.25rem;
}

@media screen and (max-width: 767px) {
  .step .step-header p {
    font-size: 16px;
    font-size: 1rem;
  }
}

.step .step-body {
  font-size: 15px;
  font-size: 0.9375rem;
  color: #3c3c3c;
}

@media screen and (max-width: 767px) {
  .step .step-body {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.esthetic .pageTitle {
    margin-top: -100px;
}

/*# sourceMappingURL=maps/styles.css.map */