@charset "UTF-8";

/*============================================================================

  予防歯科専門サイト

============================================================================*/
/*----------TOPページ----------*/
.preventive-card {
  display: flex;
  max-width: 1012px;
  margin: 0 auto 50px;
  transition: .4s;
}

@media screen and (max-width: 768px) {
  .preventive-card {
    flex-direction: column;
    margin: 0 0.5rem 1.5rem;
  }
}

.preventive-card:hover {
  text-decoration: none;
  opacity: .8;
}

.preventive-card .img {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .preventive-card .img {
    width: 100%;
  }
}

.preventive-card .img img {
  width: 100%;
}


.preventive-card .txt-wrap {
  width: 50%;
  background: url(/images/preventive-bg.jpg);
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  position: relative;
}

@media screen and (max-width: 768px) {
  .preventive-card .txt-wrap {
    width: 100%;
  }
}

.preventive-card .txt-wrap::before {
  content: "";
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: 24px;
  height: 24px;
  background-color: #B49E60;
  position: absolute;
  bottom: 10px;
  right: 10px;
}


.preventive-card .txt-wrap .message {
  font-size: 22px;
  color: #B49E60;
  font-weight: 500;
  position: relative;
}

@media screen and (max-width: 768px) {
  .preventive-card .txt-wrap .message {
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 20px;
  }
}

.preventive-card .txt-wrap .message:before,
.preventive-card .txt-wrap .message:after {
  position: relative;
  display: inline-block;
  content: "";
  background: #B49E60;
  width: 2px;
  height: 20px;
  margin: 0 1em;
  margin-top: -.2em;
  vertical-align: middle;
}

.preventive-card .txt-wrap .message:before {
  transform: rotate(-35deg);
}

.preventive-card .txt-wrap .message:after {
  transform: rotate(35deg);
}

.preventive-card .txt-wrap h4 {
  font-size: 37px;
  letter-spacing: 4px;
  color: #3598C8;
  margin-bottom: 28px;
}

@media screen and (max-width: 768px) {
  .preventive-card .txt-wrap h4 {
    font-size: 26px;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
}

.preventive-card .txt-wrap .txt {
  text-align: center;
  font-size: 17px;
  margin-bottom: 24px;
}

@media screen and (max-width: 768px) {
  .preventive-card .txt-wrap .txt {
    font-size: 15px;
    margin-bottom: 15px;
  }
}

.preventive-card .txt-wrap img {
  width: 230px;
}

@media screen and (max-width: 768px) {
  .preventive-card .txt-wrap img {
    width: 170px;
  }
}

/*----------元のヘッダー・アクセスボタンを非表示----------*/
.preventive-body .header-container {
  display: none !important;
}

.preventive-body .side-contact-btn {
  display: none;
}

/*----------共通----------*/
#lp-preventive {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #352F2F;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  #lp-preventive {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  #lp-preventive p {
    font-size: 14px;
  }
}

#lp-preventive .wrapper-sm {
  max-width: 1120px;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

#lp-preventive .wrapper-md {
  max-width: 1200px;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

#lp-preventive .wrapper-lg {
  max-width: 1280px;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

#lp-preventive .sky {
  color: #5ACED6;
}

#lp-preventive .gold {
  color: #C9B373;
}

#lp-preventive .ttl01 {
  text-align: center;
  line-height: 1.4;
  font-size: 49px;
  letter-spacing: 3px;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  #lp-preventive .ttl01 {
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 25px;
  }
}

#lp-preventive .ttl01 .ja {
  position: relative;
  display: inline-block;
}

#lp-preventive .ttl01 .en {
  padding-top: 40px;
  font-size: 33px;
  font-family: "gautreaux", sans-serif;
  text-transform: none;
  color: #C9B373;
  display: block;
  line-height: 0;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  #lp-preventive .ttl01 .en {
    font-size: 20px;
    padding-top: 30px;
  }
}

#lp-preventive .sp {
  display: none !important;
}

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

  #lp-preventive .sp {
    display: block !important;
  }
}

/*----------メインビジュアル----------*/
#lp-preventive .mv {
  position: relative;
  background: url(/images/preventive/mv.jpg) no-repeat 50% 50%;
  background-size: cover;
  height: 100vh;
}

@media screen and (max-width: 1200px) {
  #lp-preventive .mv {
    height: 700px;
  }
}

@media screen and (max-width: 768px) {
  #lp-preventive .mv {
    background: url(/images/preventive/mv-sp.png);
    background-size: cover;
    background-position: top;
    height: calc(100svh - 70px);
  }
}

#lp-preventive .mv .logo {
  position: absolute;
  left: 30px;
  top: 10px;
}

@media screen and (max-width: 768px) {
  #lp-preventive .mv .logo {
    left: 15px;
    top: 0;
  }
}

#lp-preventive .mv .logo img {
  width: 437px;
}

@media screen and (max-width: 768px) {
  #lp-preventive .mv .logo img {
    width: 270px;
  }
}

#lp-preventive .mv .txt {
  position: absolute;
  top: 54%;
  left: 25%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff;
}

@media screen and (max-width: 768px) {
  #lp-preventive .mv .txt {
    left: 50%;
    top: 36%;
    white-space: nowrap;
  }
}

#lp-preventive .mv .txt h2 {
  font-weight: bold;
  font-size: 45px;
  line-height: 1.4;
  letter-spacing: 6px;
  margin-bottom: 20px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #lp-preventive .mv .txt h2 {
    font-size: 30px;
    margin-bottom: 10px;
    letter-spacing: 3px;
  }
}

#lp-preventive .mv .txt h2::before {
  content: "";
  background: url(/images/preventive/mv-catch-deco.png);
  width: 72px;
  height: 60px;
  background-size: cover;
  position: absolute;
  left: -50px;
  top: -35px;
}

@media screen and (max-width: 768px) {
  #lp-preventive .mv .txt h2::before {
    left: -20px;
    width: 35px;
    height: 30px;
    top: -17px;
  }
}

#lp-preventive .mv .txt h2 span {
  font-size: 62px;
}

@media screen and (max-width: 768px) {
  #lp-preventive .mv .txt h2 span {
    font-size: 34px;
  }
}

#lp-preventive .mv .txt p {
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 3px;
}

@media screen and (max-width: 768px) {
  #lp-preventive .mv .txt p {
    font-size: 14px;
    letter-spacing: 2px;
  }
}

#lp-preventive .mv .en {
  font-size: 70px;
  font-family: "gautreaux", sans-serif;
  color: #5ACED6;
  opacity: 0.3;
  line-height: 1.4;
  position: absolute;
  bottom: -59px;
  left: 0;
}

@media screen and (max-width: 768px) {
  #lp-preventive .mv .en {
    font-size: 32px;
    bottom: -38px;
    opacity: 0.5;
  }
}

/*----------このようなお悩みありませんか？----------*/
#lp-preventive .preventive-worries {
  padding: 80px 0 110px;
  background: url(/images/preventive/worries-bg.jpg);
  background-size: cover;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-worries {
    padding: 40px 0 50px;
  }
}

#lp-preventive .preventive-worries .ttl01 .ja::before {
  content: "";
  background: url(/images/preventive/worries-ttl-deco1.png);
  width: 35px;
  height: 30px;
  background-size: cover;
  position: absolute;
  left: -40px;
  top: -10px;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-worries .ttl01 .ja::before {
    left: -29px;
    top: -5px;
    width: 26px;
    height: 22px;
  }
}

#lp-preventive .preventive-worries .ttl01 .ja::after {
  content: "";
  background: url(/images/preventive/worries-ttl-deco2.png);
  width: 39px;
  height: 45px;
  background-size: cover;
  position: absolute;
  right: -40px;
  top: -10px;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-worries .ttl01 .ja::after {
    right: -33px;
    top: -10px;
    width: 30px;
    height: 37px;
  }
}

#lp-preventive .preventive-worries .items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 46px;
  margin-top: -20px;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-worries .items {
    margin-top: 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

#lp-preventive .preventive-worries .items .item img {
  width: 100%;
  margin-bottom: 17px;
}

#lp-preventive .preventive-worries .items .item:nth-of-type(odd) img {
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-worries .items .item:nth-of-type(odd) img {
    margin-top: 0;
  }
}

#lp-preventive .preventive-worries .items .item p {
  text-align: center;
  font-size: 20px;
  line-height: 1.7;
  white-space: nowrap;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-worries .items .item p {
    white-space: wrap;
    font-size: 14px;
  }
}

/*----------予防歯科で目指す3つのゴール----------*/
#lp-preventive .preventive-goal {
  padding: 80px 0 40px;
  background: #fff;
  position: relative;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-goal {
    padding: 40px 0 15px;
  }
}

#lp-preventive .preventive-goal .wave {
  width: 100%;
  height: 38px;
  background: url(/images/preventive/wave.png);
  background-size: cover;
  background-position: top center;
  position: absolute;
  top: -37px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 0;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-goal .wave {
    height: 10px;
    top: -9px;
  }
}

#lp-preventive .preventive-goal .ttl {
  text-align: center;
  font-size: 54px;
  line-height: 1.4;
  letter-spacing: 3px;
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-goal .ttl {
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 40px;
  }
}

#lp-preventive .preventive-goal .ttl .ttl-inner {
  display: inline-block;
  position: relative;
}

#lp-preventive .preventive-goal .ttl .ttl-inner::before {
  content: "";
  background: url(/images/preventive/goal-ttl-deco1.png);
  width: 197px;
  height: 186px;
  background-size: cover;
  position: absolute;
  left: -230px;
  top: -33px;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-goal .ttl .ttl-inner::before {
    left: -52px;
    top: 26px;
    width: 69px;
    height: 65px;
  }
}

#lp-preventive .preventive-goal .ttl .ttl-inner::after {
  content: "";
  background: url(/images/preventive/goal-ttl-deco2.png);
  width: 173px;
  height: 160px;
  background-size: cover;
  position: absolute;
  right: -210px;
  top: -13px;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-goal .ttl .ttl-inner::after {
    right: -52px;
    top: 35px;
    width: 64px;
    height: 59px;
  }
}

#lp-preventive .preventive-goal .items .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 80px;
}

@media screen and (max-width: 1200px) {
  #lp-preventive .preventive-goal .items .item {
    gap: 50px;
  }
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-goal .items .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 20px;
  }
}

#lp-preventive .preventive-goal .items .item:not(:last-of-type) {
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-goal .items .item:not(:last-of-type) {
    margin-bottom: 20px;
  }
}

#lp-preventive .preventive-goal .items .item .txt-wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 8.5%;
  max-width: 570px;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-goal .items .item .txt-wrap {
    margin: 0;
    padding: 0 20px;
  }
}

#lp-preventive .preventive-goal .items .item .txt-wrap .num {
  font-family: "gautreaux", sans-serif;
  color: #5ACED6;
  font-size: 30px;
  line-height: 0;
  margin-top: 60px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-goal .items .item .txt-wrap .num {
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 40px;
  }
}

#lp-preventive .preventive-goal .items .item .txt-wrap .num span {
  font-size: 120px;
  padding-left: 10px;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-goal .items .item .txt-wrap .num span {
    font-size: 70px;
    padding-left: 5px;
  }
}

#lp-preventive .preventive-goal .items .item .txt-wrap h4 {
  font-size: 37px;
  line-height: 1.4;
  letter-spacing: 3px;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-goal .items .item .txt-wrap h4 {
    font-size: 24px;
    margin-bottom: 15px;
  }
}

#lp-preventive .preventive-goal .items .item .img {
  width: 690px;
}

@media screen and (max-width: 1200px) {
  #lp-preventive .preventive-goal .items .item .img {
    width: 540px;
  }
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-goal .items .item .img {
    width: 100%;
    margin-left: 20px;
  }
}

#lp-preventive .preventive-goal .items .item .img img {
  width: 100%;
}

#lp-preventive .preventive-goal .items .item.item2 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  position: relative;
  margin-bottom: 140px;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-goal .items .item.item2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    margin-bottom: 55px;
  }
}

#lp-preventive .preventive-goal .items .item.item2::before {
  position: absolute;
  display: block;
  content: "";
  background: #f3f3f3;
  width: 91%;
  height: 100%;
  top: 40px;
  margin: auto;
  left: 63px;
  z-index: 0;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-goal .items .item.item2::before {
    width: 100%;
    left: 0;
    top: 80px;
    height: calc(100% - 70px);
  }
}

#lp-preventive .preventive-goal .items .item.item2 .txt-wrap {
  margin-left: 0;
  margin-right: 8.5%;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-goal .items .item.item2 .txt-wrap {
    margin-right: 0;
  }
}

#lp-preventive .preventive-goal .items .item.item2 .img {
  z-index: 1;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-goal .items .item.item2 .img {
    margin-left: 0;
    padding-right: 20px;
  }
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-goal .items .item.item3 .img {
    margin-bottom: -45px;
  }
}

/*----------ゴール下のメッセージ----------*/
#lp-preventive .preventive-message {
  background: url(/images/preventive/message-bg.jpg);
  background-size: cover;
  position: relative;
  padding: 130px 0 55px;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-message {
    padding: 50px 0 15px;
  }
}

#lp-preventive .preventive-message .triangular {
  width: 100%;
  height: 60px;
  background: url(/images/preventive/triangular.png);
  background-size: cover;
  background-position: top center;
  position: absolute;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 0;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-message .triangular {
    height: 15px;
  }
}

#lp-preventive .preventive-message .txt {
  font-size: 28px;
  letter-spacing: 2px;
  color: #fff;
  text-align: center;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-message .txt {
    font-size: 17px;
    padding: 0 20px;
    line-height: 1.8;
  }
}

#lp-preventive .preventive-message .num {
  position: absolute;
  font-size: 53px;
  font-family: "gautreaux", sans-serif;
  color: #fff;
  opacity: 0.3;
  -webkit-transform: rotate(10deg);
  transform: rotate(10deg);
  right: 28px;
  top: 110px;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-message .num {
    display: none;
  }
}

/*----------当院で行う予防歯科の内容----------*/
#lp-preventive .preventive-treatment {
  padding: 80px 0 120px;
  background: #E0FEFF;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-treatment {
    padding: 40px 0 50px;
  }
}

#lp-preventive .preventive-treatment .ttl01 .ja::before {
  content: "";
  background: url(/images/preventive/treatment-ttl-deco1.png);
  width: 93px;
  height: 47px;
  background-size: cover;
  position: absolute;
  left: -120px;
  top: -10px;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-treatment .ttl01 .ja::before {
    left: -54px;
    top: 9px;
    width: 55px;
    height: 28px;
  }
}

#lp-preventive .preventive-treatment .ttl01 .ja::after {
  content: "";
  background: url(/images/preventive/treatment-ttl-deco2.png);
  width: 93px;
  height: 47px;
  background-size: cover;
  position: absolute;
  right: -120px;
  top: -10px;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-treatment .ttl01 .ja::after {
    right: -54px;
    top: 9px;
    width: 55px;
    height: 28px;
  }
}

#lp-preventive .preventive-treatment .items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-treatment .items {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}

#lp-preventive .preventive-treatment .items .item {
  background: #fff;
}

#lp-preventive .preventive-treatment .items .item img {
  width: 100%;
}

#lp-preventive .preventive-treatment .items .item h4 {
  background: #5ACED6;
  height: 73px;
  color: #fff;
  text-align: center;
  font-size: 27px;
  letter-spacing: 1px;
  margin-bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-treatment .items .item h4 {
    height: auto;
    padding: 10px 0;
    font-size: 20px;
  }
}

#lp-preventive .preventive-treatment .items .item h4 span {
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-treatment .items .item h4 span {
    font-size: 16px;
  }
}

#lp-preventive .preventive-treatment .items .item p {
  padding: 25px 30px;
  margin: 0;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-treatment .items .item p {
    padding: 15px 20px;
  }
}

#lp-preventive .preventive-treatment .items .item:nth-of-type(1) h4,
#lp-preventive .preventive-treatment .items .item:nth-of-type(4) h4,
#lp-preventive .preventive-treatment .items .item:nth-of-type(5) h4,
#lp-preventive .preventive-treatment .items .item:nth-of-type(8) h4 {
  background: #5AD6A2;
}

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

  #lp-preventive .preventive-treatment .items .item:nth-of-type(1) h4,
  #lp-preventive .preventive-treatment .items .item:nth-of-type(4) h4,
  #lp-preventive .preventive-treatment .items .item:nth-of-type(5) h4,
  #lp-preventive .preventive-treatment .items .item:nth-of-type(8) h4 {
    background: #5ACED6;
  }
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-treatment .items .item:nth-of-type(odd) h4 {
    background: #5AD6A2;
  }
}

/*----------歯科医師紹介&メッセージ----------*/
#lp-preventive .preventive-doctor {
  padding: 60px 0 0;
  background: #fff;
  position: relative;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-doctor {
    padding: 30px 0 0;
  }
}

#lp-preventive .preventive-doctor .wave {
  width: 100%;
  height: 38px;
  background: url(/images/preventive/wave.png);
  background-size: cover;
  background-position: top center;
  position: absolute;
  top: -37px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 0;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-doctor .wave {
    height: 10px;
    top: -9px;
  }
}

#lp-preventive .preventive-doctor .ttl01 .ja::before {
  content: "";
  background: url(/images/preventive/doctor-tt-deco1.png);
  width: 29px;
  height: 43px;
  background-size: cover;
  position: absolute;
  left: -60px;
  top: 17px;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-doctor .ttl01 .ja::before {
    left: -34px;
    top: 33px;
    width: 24px;
    height: 35px;
  }
}

#lp-preventive .preventive-doctor .ttl01 .ja::after {
  content: "";
  background: url(/images/preventive/doctor-tt-deco2.png);
  width: 29px;
  height: 43px;
  background-size: cover;
  position: absolute;
  right: -60px;
  top: 17px;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-doctor .ttl01 .ja::after {
    right: -34px;
    top: 33px;
    width: 24px;
    height: 35px;
  }
}

#lp-preventive .preventive-doctor .contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-doctor .contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 20px;
  }
}

#lp-preventive .preventive-doctor .contents .img {
  width: 530px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-doctor .contents .img {
    width: 100%;
  }
}

#lp-preventive .preventive-doctor .contents .img::before {
  content: "";
  background: url(/images/preventive/doctor-img-deco.png);
  width: 184px;
  height: 214px;
  background-size: cover;
  position: absolute;
  left: -73px;
  bottom: -100px;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-doctor .contents .img::before {
    left: -12px;
    bottom: -27px;
    width: 95px;
    height: 111px;
  }
}

#lp-preventive .preventive-doctor .contents .img img {
  width: 100%;
}

#lp-preventive .preventive-doctor .contents .img .name {
  background: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 22px 35px;
  font-size: 30px;
  text-align: center;
  line-height: 1.6;
  margin: 0;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-doctor .contents .img .name {
    padding: 12px 17px;
    font-size: 22px;
  }
}

#lp-preventive .preventive-doctor .contents .img .name span {
  font-size: 22px;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-doctor .contents .img .name span {
    font-size: 16px;
  }
}

#lp-preventive .preventive-doctor .contents .img .name small {
  display: block;
  color: #5ACED6;
  letter-spacing: 3px;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-doctor .contents .img .name small {
    font-size: 14px;
  }
}

#lp-preventive .preventive-doctor .contents .txt {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

#lp-preventive .preventive-doctor .contents .txt h4 {
  color: #5ACED6;
  font-size: 34px;
  letter-spacing: 2px;
  line-height: 1.5;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-doctor .contents .txt h4 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

#lp-preventive .preventive-doctor .career {
  background: url(/images/preventive/career-bg.jpg);
  background-size: cover;
  padding: 60px 0;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-doctor .career {
    padding: 30px 0;
  }
}

#lp-preventive .preventive-doctor .career h5 {
  text-align: center;
  font-size: 30px;
  border-bottom: 1px solid #352F2F;
  line-height: 1.4;
  padding-bottom: 15px;
  margin-bottom: 10px;
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-doctor .career h5 {
    font-size: 22px;
    margin-bottom: 5px;
  }
}

#lp-preventive .preventive-doctor .career .items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-doctor .career .items {
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
  }
}

#lp-preventive .preventive-doctor .career .items ul {
  padding: 0;
  margin: 0;
}

#lp-preventive .preventive-doctor .career .items ul li {
  font-size: 16px;
  list-style-type: none;
  border-bottom: 1px solid #DBD4C1;
  line-height: 2.2;
  padding: 6px 0;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-doctor .career .items ul li {
    font-size: 14px;
  }
}

/*----------よくあるご質問----------*/
#lp-preventive .preventive-faq {
  padding: 80px 0;
  background: url(/images/preventive/faq-bg.jpg);
  background-size: cover;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-faq {
    padding: 40px 0;
  }
}

#lp-preventive .preventive-faq .ttl01 .ja::before {
  content: "";
  background: url(/images/preventive/faq-ttl-deco1.png);
  width: 64px;
  height: 58px;
  background-size: cover;
  position: absolute;
  left: -90px;
  top: 6px;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-faq .ttl01 .ja::before {
    left: -47px;
    top: 4px;
    width: 38px;
    height: 35px;
  }
}

#lp-preventive .preventive-faq .ttl01 .ja::after {
  content: "";
  background: url(/images/preventive/faq-ttl-deco2.png);
  width: 43px;
  height: 43px;
  background-size: cover;
  position: absolute;
  right: -80px;
  top: 17px;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-faq .ttl01 .ja::after {
    right: -47px;
    top: 9px;
    width: 27px;
    height: 26px;
  }
}

#lp-preventive .preventive-faq .qa-list dl {
  position: relative;
  margin: 20px 0 0;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 5px rgba(82, 82, 82, 0.1607843137);
  box-shadow: 0px 0px 5px rgba(82, 82, 82, 0.1607843137);
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-faq .qa-list dl {
    margin: 10px 0 0;
  }
}

#lp-preventive .preventive-faq .qa-list dl:first-child {
  margin-top: 0;
}

#lp-preventive .preventive-faq .qa-list dl dt {
  position: relative;
  margin: 0;
  padding: 20px 20px 20px 80px;
  font-weight: bold;
  background: #ffffff;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-faq .qa-list dl dt {
    padding: 14px 34px 14px 48px;
  }
}

#lp-preventive .preventive-faq .qa-list dl dt::before {
  font-size: 33px;
  line-height: 1;
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
  width: 66px;
  height: 66px;
  content: "Q";
  font-weight: normal;
  color: #fff;
  text-align: center;
  padding-top: 13px;
  background: #5ACED6;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-faq .qa-list dl dt::before {
    line-height: 1;
    font-size: 18px;
    width: 40px;
    height: 40px;
    padding-top: 8px;
  }
}

#lp-preventive .preventive-faq .qa-list dl dt::after {
  position: absolute;
  top: 40%;
  right: 30px;
  display: block;
  width: 9px;
  height: 9px;
  margin: auto;
  content: "";
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  border-top: 2px solid #333;
  border-right: 2px solid #333;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-faq .qa-list dl dt::after {
    right: 16px;
    width: 7px;
    height: 7px;
  }
}

#lp-preventive .preventive-faq .qa-list dl dd {
  position: relative;
  margin: 0;
  padding: 17px 20px 18px 80px;
  border-top: 1px solid #CACACA;
  background: #fff;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-faq .qa-list dl dd {
    padding: 14px 14px 14px 48px;
  }
}

#lp-preventive .preventive-faq .qa-list dl dd::before {
  font-size: 33px;
  line-height: 1;
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
  width: 66px;
  height: 66px;
  content: "A";
  font-weight: normal;
  color: #fff;
  text-align: center;
  padding-top: 13px;
  background: #5AD6A2;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-faq .qa-list dl dd::before {
    line-height: 1;
    font-size: 18px;
    width: 40px;
    height: 40px;
    padding-top: 8px;
  }
}

#lp-preventive .preventive-faq .qa-list dl dd p {
  margin: 30px 0 0;
}

#lp-preventive .preventive-faq .qa-list dl dd p:first-child {
  margin-top: 0;
}

#lp-preventive .preventive-faq .qa-list .open dt::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*----------お問い合わせ・ご予約はこちら----------*/
#lp-preventive .preventive-contact {
  padding: 80px 0;
  background: url(/images/preventive/contact-bg.jpg);
  background-size: cover;
  position: relative;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-contact {
    padding: 50px 0 40px;
  }
}

#lp-preventive .preventive-contact .ttl {
  text-align: center;
  color: #fff;
  font-size: 40px;
  line-height: 1.4;
  letter-spacing: 3px;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-contact .ttl {
    font-size: 21px;
    letter-spacing: 1px;
    margin-bottom: 40px;
  }
}

#lp-preventive .preventive-contact .ttl span {
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
  padding: 12px 0 18px;
}

#lp-preventive .preventive-contact .ttl+p {
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-contact .ttl+p {
    margin-bottom: 25px;
  }
}

#lp-preventive .preventive-contact .items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-contact .items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    padding: 0 20px;
  }
}

#lp-preventive .preventive-contact .items a {
  width: 360px;
  background: #FFFFFF;
  color: #000;
  text-align: center;
  padding: 14px;
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-contact .items a {
    width: 100%;
  }
}

#lp-preventive .preventive-contact .items a:hover {
  opacity: 0.7;
}

#lp-preventive .preventive-contact .items a p {
  font-size: 16px;
  margin: 0;
}

#lp-preventive .preventive-contact .items a h4 {
  font-size: 28px;
  font-weight: normal;
  line-height: 1;
  margin: 0 0 9px;
  letter-spacing: 1px;
}

#lp-preventive .preventive-contact .items a h4 span {
  padding-left: 34px;
  position: relative;
}

#lp-preventive .preventive-contact .items a h4 span::before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(/images/preventive/tel.png);
  position: absolute;
  background-size: cover;
  left: 0px;
  top: 10px;
}

#lp-preventive .preventive-contact .items a.line {
  background: #01B901;
}

#lp-preventive .preventive-contact .items a.line p {
  color: #fff;
}

#lp-preventive .preventive-contact .items a.line h4 {
  color: #fff;
}

#lp-preventive .preventive-contact .items a.line h4 span::before {
  background-image: url(/images/preventive/line.png);
  background-size: cover;
  width: 28px;
  height: 28px;
}

#lp-preventive .preventive-contact .en {
  font-size: 100px;
  font-family: "gautreaux", sans-serif;
  opacity: 0.3;
  color: #fff;
  position: absolute;
  right: 25px;
  bottom: -100px;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  #lp-preventive .preventive-contact .en {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */