@charset "UTF-8";
/*                共通
======================================================= */
/*                reset
======================================================= */
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
  all: unset;
  display: revert;
}

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

html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

body {
  -webkit-text-size-adjust: 100%; /* 勝手に文字が拡大されるのを防ぐ */
  /* 以下、案件ごとに適宜変更 */
  color: #333333;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
body,
h1,
h2,
h3,
h4,
h5,
table,
th,
td,
ul,
li,
ol,
dl,
dt,
dd,
form,
p {
  margin: 0px;
  padding: 0px;
  font-weight: 500;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  list-style-type: none;
  line-height: 1.3;
  letter-spacing: normal;
}

input,
textArea,
select,
button {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none; /* iOS系のスタイルを外す */
}

button {
  cursor: pointer;
}

figure {
  margin: 0px;
}

img,
iframe {
  max-width: 100%;
  height: auto;
  vertical-align: top; /* 意図しない余白の削除 */
}

table {
  border-collapse: collapse;
}

a {
  text-decoration: none;
  /* 以下、案件ごとに適宜変更 */
  letter-spacing: 0.1em;
  color: #333333;
  cursor: pointer;
}

/*                leyout
======================================================= */
.content-wrap {
  margin: 0 auto;
}

.c-content-wrap {
  max-width: 1128px;
  padding: 0 24px;
  position: relative;
  margin: 0 auto;
}

.setImg-block {
  display: flex;
  justify-content: space-between;
}
.setImg-block .p-txtArea {
  width: 50.55%;
}
.setImg-block .p-imgArea {
  width: 46.11%;
}

.singleImg-block {
  display: flex;
  justify-content: space-between;
}
.singleImg-block .p-imgArea {
  width: 38.33%;
}
.singleImg-block .p-txtArea {
  width: 58.33%;
}

.panelWrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.panelWrap .panelItem {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 24px;
}
.panelWrap .panelItem .p-imgArea {
  margin-bottom: 24px;
}
.panelWrap .panelItem .blockTtl {
  font-size: 20px;
  margin-bottom: 15px;
}

.numPanel-wrap {
  background-color: #FFFFFF;
  padding: 24px 45px;
  border: solid 3px #4CBBE0;
  border-radius: 20px;
}
.numPanel-wrap .numTtl {
  color: #4CBBE0;
}
.numPanel-wrap .p-imgArea {
  margin-bottom: 20px;
}
.numPanel-wrap.column-2, .numPanel-wrap.column-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.numPanel-wrap.column-2 li:first-child, .numPanel-wrap.column-4 li:first-child {
  border-right: solid 1px #4CBBE0;
  padding-right: 48px;
}
.numPanel-wrap.column-2 li:last-child, .numPanel-wrap.column-4 li:last-child {
  padding-left: 48px;
}
.numPanel-wrap.column-4 {
  padding: 48px;
}
.numPanel-wrap.column-4 li:first-child {
  padding-bottom: 36px;
}
.numPanel-wrap.column-4 li:nth-of-type(2) {
  padding: 0 0 36px 48px;
}
.numPanel-wrap.column-4 li:nth-of-type(3) {
  border-top: solid 1px #4CBBE0;
  border-right: solid 1px #4CBBE0;
  padding: 36px 48px 0 0;
}
.numPanel-wrap.column-4 li:last-child {
  border-top: 1px solid #4CBBE0;
  padding: 36px 0 0 48px;
}

@media (max-width: 768px) {
  .setImg-block {
    flex-direction: column;
    gap: 40px;
  }
  .setImg-block .p-txtArea {
    width: 100%;
  }
  .setImg-block .p-imgArea {
    width: 100%;
  }
  .singleImg-block {
    flex-direction: column;
    gap: 24px;
  }
  .singleImg-block .p-txtArea {
    width: 100%;
  }
  .singleImg-block .p-imgArea {
    width: 100%;
  }
  .panelWrap {
    display: block;
  }
  .panelWrap .panelItem {
    margin-bottom: 16px;
  }
  .numPanel-wrap {
    padding: 20px 17px;
  }
  .numPanel-wrap.column-2, .numPanel-wrap.column-4 {
    display: block;
  }
  .numPanel-wrap.column-2 li:first-child, .numPanel-wrap.column-4 li:first-child {
    border-right: none;
    border-bottom: solid 1px #4CBBE0;
    padding-right: 0;
    padding-bottom: 20px;
  }
  .numPanel-wrap.column-2 li:last-child, .numPanel-wrap.column-4 li:last-child {
    padding-left: 0;
    padding-top: 20px;
  }
  .numPanel-wrap.column-4 {
    padding: 18px;
  }
  .numPanel-wrap.column-4 li:nth-of-type(2) {
    padding: 20px 0;
  }
  .numPanel-wrap.column-4 li:nth-of-type(3) {
    padding: 20px 0;
    border-right: none;
  }
}
/*                タイトル装飾
======================================================= */
.blockTtl {
  color: #01639E;
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 10px;
  margin-bottom: 25px;
}
.blockTtl.colorDot-txt {
  position: relative;
  padding-left: 35px;
}
.blockTtl.colorDot-txt::before {
  content: "";
  background: url(../images/common/teeth-icon_h.png) no-repeat center center/contain;
  width: 24px;
  height: 30px;
  position: absolute;
  top: 2px;
  left: 0;
}
.blockTtl.colorDot-txt::after {
  content: "";
  background: url(../images/common/colorDot.png) repeat-x center center/cover;
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.longTtl {
  line-height: 1.8;
}
.longTtl .br-pc {
  display: block !important;
}

@media (max-width: 768px) {
  .blockTtl {
    font-size: 20px;
  }
}
/*                テキスト装飾
======================================================= */
.txtBase p {
  margin-bottom: 1.2em;
}
.txtBase p:last-child {
  margin-bottom: 0;
}

.textRed {
  color: #E2515F;
}

.textSky {
  color: #4CBBE0;
}

.textBlue {
  color: #01639E;
}

.textWhite {
  color: #FFFFFF;
}

.textYellow {
  color: #F4C553;
}

.textBold {
  font-weight: bold;
}

.font-48 {
  font-size: 48px;
}

.font-36 {
  font-size: 36px;
}

.font-24 {
  font-size: 24px;
}

.font-14 {
  font-size: 14px;
}

.dotText {
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.2em;
  padding-top: 0.2em;
}
.dotText.textRed {
  background-image: radial-gradient(circle at center, #E2515F 20%, transparent 20%);
}
.dotText.textSky {
  background-image: radial-gradient(circle at center, #4CBBE0 20%, transparent 20%);
}
.dotText.textBlue {
  background-image: radial-gradient(circle at center, #01639E 20%, transparent 20%);
}
.dotText.textYellow {
  background-image: radial-gradient(circle at center, #F4C553 20%, transparent 20%);
}

.squareTxt {
  position: relative;
  padding-left: 20px;
}
.squareTxt::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 2px;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
}
.squareTxt.textRed::before {
  background-color: #E2515F;
}
.squareTxt.textSky::before {
  background-color: #4CBBE0;
}
.squareTxt.textBlue::before {
  background-color: #01639E;
}
.squareTxt.textYellow::before {
  background-color: #FFDC52;
}

@media (max-width: 480px) {
  .font-48 {
    font-size: 40px;
  }
  .font-36 {
    font-size: 32px;
  }
}
/*                見出し
======================================================= */
h2 {
  font-size: 36px;
  color: #01639E;
  text-align: center;
  font-weight: bold;
}

h3 {
  font-size: 24px;
  color: #01639E;
  font-weight: bold;
}

@media (max-width: 480px) {
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 20px;
  }
}
/*                本文テキスト
======================================================= */
p {
  line-height: 1.8;
  letter-spacing: normal;
}

.numTtl {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.numTtl .num {
  font-size: 14px;
  color: #FFFFFF;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  align-content: center;
  margin-right: 5px;
  transform: translateY(-2px);
}
.numTtl .num.num-y {
  background-color: #F4C553;
}
.numTtl .num.num-sky {
  background-color: #4CBBE0;
}
.numTtl .num.num-red {
  background-color: #E2515F;
}
.numTtl .num.num-b {
  background-color: #01639E;
}

/*                Utility
======================================================= */
.h-filter {
  transition: 0.3s all;
}
.h-filter:hover {
  filter: opacity(0.5);
}

.fixedBtn-wrap {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 99;
}
.fixedBtn-wrap a {
  display: block;
  position: relative;
}
.fixedBtn-wrap a:first-child {
  margin-bottom: 10px;
}
.fixedBtn-wrap a img {
  transition: 0.3s all;
}
.fixedBtn-wrap a img:last-child {
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
}
.fixedBtn-wrap a:hover img:first-child {
  opacity: 0;
}
.fixedBtn-wrap a:hover img:last-child {
  opacity: 1;
}

.randomImg {
  position: absolute;
}

.c-btn {
  display: block;
  text-align: center;
  width: 380px;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: bold;
  padding: 23px 10px;
  border-radius: 40px;
  transition: 0.3s all;
  position: relative;
}
.c-btn.btnType01 {
  background-color: #01639E;
  box-shadow: 0px 5px 0px 0px #4CBBE0;
}
.c-btn.btnType01::before {
  content: "";
  background: url(../images/common/arw-white.png) no-repeat center center/contain;
  width: 14px;
  height: 12px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  transition: 0.3s;
}
.c-btn.btnType01:hover {
  background-color: #004097;
  box-shadow: none;
}
.c-btn.btnType02 {
  background-color: #4CBBE0;
  box-shadow: 0px 5px 0px 0px #FFDC52;
}
.c-btn.btnType02::before {
  content: "";
  background: url(../images/common/arw-white.png) no-repeat center center/contain;
  width: 14px;
  height: 12px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  transition: 0.3s;
}
.c-btn.btnType02:hover {
  background-color: #FFFFFF;
  color: #4CBBE0;
  box-shadow: none;
}
.c-btn.btnType02:hover::before {
  background: url(../images/common/arw-sky.png) no-repeat center center/contain;
  width: 14px;
  height: 12px;
}
.c-btn:hover {
  transform: translateY(5px);
}

.c-navLink {
  position: relative;
  transition: 0.3s;
  color: #FFFFFF;
}
.c-navLink::before {
  transition: 0.3s;
}
.c-navLink:hover {
  color: #FFDC52;
}

.nav-telBtn {
  position: relative;
  background-color: #FFDC52;
  overflow: hidden;
}
.nav-telBtn::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #F4C553;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 30px;
  top: 0;
  left: 0;
  border-radius: 30px;
  transform: translate(-5px, 18px) rotate(13deg);
}

.telBtn {
  border-radius: 30px;
  text-align: center;
  align-content: center;
}
.telBtn .telNum {
  color: #01639E;
  position: relative;
  font-weight: bold;
  z-index: 3;
}
.telBtn .telNum::before {
  content: "";
  background: url(../images/common/call-icon-blue.png) no-repeat center center/contain;
  width: 20px;
  height: 20px;
  top: 0;
  left: -20px;
  bottom: 0;
  margin: auto;
  position: absolute;
}
.telBtn .telNum::after {
  content: "";
  background: url(../images/common/arw-blue.png) no-repeat center center/contain;
  width: 12px;
  height: 8px;
  top: 0;
  right: -30px;
  bottom: 0;
  margin: auto;
  position: absolute;
}

.c-telBtn {
  background: url(../images/common/telBtn01-bg.png) no-repeat center center/cover;
  width: 360px;
  height: 60px;
  display: block;
  position: relative;
  transition: 0.3s all;
  box-shadow: 0px 5px 0px 0px #4CBBE0;
}
.c-telBtn::after {
  content: "";
  background: url(../images/common/arw-blue.png) no-repeat center center/contain;
  width: 16px;
  height: 12px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
}
.c-telBtn .fukidashi {
  position: absolute;
  transition: 0.3s all;
  width: 80%;
  top: -21px;
  left: 0;
  right: 0;
  margin: auto;
  background: url(../images/common/frame-blue.png) no-repeat center center/100% 100%;
}
.c-telBtn .fukidashi span {
  color: #FFFFFF;
  font-weight: bold;
  text-align: center;
  padding: 5px 0 10px;
  display: inline-block;
}
.c-telBtn .telNum {
  font-size: 20px;
  padding-left: 10px;
}
.c-telBtn .telNum::after {
  content: none;
}
.c-telBtn:hover {
  transform: translateY(5px);
  box-shadow: none;
  background: url(../images/common/telBtn01-bg_h.png) no-repeat center center/cover;
}
.c-telBtn:hover::after {
  background: url(../images/common/arw-yellow.png) no-repeat center center/contain;
}
.c-telBtn:hover .telNum {
  color: #F4C553;
}
.c-telBtn:hover .telNum::before {
  background: url(../images/common/call-icon-blue.png) no-repeat center center/contain;
}
.c-telBtn:hover .fukidashi {
  background: url(../images/common/frame-yellow.png) no-repeat center center/100% 100%;
}
.c-telBtn:hover .fukidashi span {
  color: #01639E;
}

.c-telBtn.type02 .fukidashi {
  background: url(../images/common/frame-white.png) no-repeat center center/100% 100%;
}
.c-telBtn.type02 .fukidashi span {
  color: #01639E;
}
.c-telBtn.type02:hover {
  background: url(../images/common/telBtn02-bg.png) no-repeat center center/cover;
}
.c-telBtn.type02:hover::after {
  background: url(../images/common/arw-blue.png) no-repeat center center/contain;
}
.c-telBtn.type02:hover .telNum {
  color: #01639E;
}
.c-telBtn.type02:hover .fukidashi {
  background: url(../images/common/frame-yellow.png) no-repeat center center/100% 100%;
}

.accessBtn {
  width: 360px;
  height: 60px;
  border-radius: 30px;
  text-align: center;
  align-content: center;
  display: block;
  position: relative;
  background: url(../images/common/acsBtn-bg.png) no-repeat center center/cover;
  transition: 0.3s all;
  box-shadow: 0px 5px 0px 0px #F4C553;
}
.accessBtn::after {
  content: "";
  background: url(../images/common/arw-white.png) no-repeat center center/contain;
  width: 16px;
  height: 12px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
}
.accessBtn span {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: bold;
  padding-left: 10px;
  position: relative;
}
.accessBtn span::before {
  content: "";
  background: url(../images/common/car-icon.png) no-repeat center center/contain;
  width: 26px;
  height: 12.99px;
  top: 0;
  left: -25px;
  bottom: 0;
  margin: auto;
  position: absolute;
}
.accessBtn:hover {
  background: url(../images/common/acsBtn-bg_h.png) no-repeat center center/cover;
  transform: translateY(5px);
  box-shadow: none;
}
.accessBtn:hover::after {
  background: url(../images/common/arw-blue.png) no-repeat center center/contain;
}
.accessBtn:hover span {
  color: #01639E;
}
.accessBtn:hover span::before {
  background: url(../images/common/car-icon-blue02.png) no-repeat center center/contain;
}

.nav-info::before {
  background: url(../images/common/info-icon.png) no-repeat center center/contain;
}
.nav-info:hover::before {
  background: url(../images/common/info-icon_h.png) no-repeat center center/contain;
}

.nav-doctor::before {
  background: url(../images/common/teeth-icon.png) no-repeat center center/contain;
}
.nav-doctor:hover::before {
  background: url(../images/common/teeth-icon_h.png) no-repeat center center/contain;
}

.nav-treatment::before {
  background: url(../images/common/medical-icon.png) no-repeat center center/contain;
}
.nav-treatment:hover::before {
  background: url(../images/common/medical-icon_h.png) no-repeat center center/contain;
}

.nav-guide::before {
  background: url(../images/common/child-icon.png) no-repeat center center/contain;
}
.nav-guide:hover::before {
  background: url(../images/common/child-icon_h.png) no-repeat center center/contain;
}

.nav-protect::before {
  background: url(../images/common/parent-icon.png) no-repeat center center/contain;
}
.nav-protect:hover::before {
  background: url(../images/common/parent-icon_h.png) no-repeat center center/contain;
}

.calendar {
  width: 100%;
  margin-bottom: 15px;
}
.calendar th, .calendar td {
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
}
.calendar th {
  text-align: center;
  padding: 10px 10px;
}
.calendar td {
  padding: 10px 5px;
}
.calendar tr:first-child th, .calendar tr:first-child td {
  background-color: #4CBBE0;
  color: #FFFFFF;
}
.calendar tr:nth-of-type(2) th, .calendar tr:nth-of-type(2) td, .calendar tr:nth-of-type(3) th, .calendar tr:nth-of-type(3) td {
  background-color: #FFFFFF;
  color: #01639E;
}
.calendar tr:nth-of-type(2) th, .calendar tr:nth-of-type(2) td {
  padding-bottom: 0px;
}

@media (max-width: 480px) {
  .c-btn {
    width: 100%;
    font-size: 16px;
  }
  .c-telBtn {
    width: 100%;
  }
  .accessBtn {
    width: 100%;
  }
}
.c-accessBlock {
  background-color: #E6F5FF;
  position: relative;
  padding: 70px 0 100px;
}
.c-accessBlock::before {
  content: "";
  width: 100%;
  height: 25px;
  position: absolute;
  top: -10px;
  left: 0px;
  right: 0px;
  background: url(../images/common/fvWave.png) center center/100% 25px repeat-x;
}
.c-accessBlock .content-wrap {
  max-width: 1128px;
  padding: 0px 24px;
  margin: 0px auto;
}
.c-accessBlock .content-wrap .c-calendarWrap {
  max-width: 823px;
  margin: 0 auto 50px;
  display: flex;
  gap: 30px;
}
.c-accessBlock .content-wrap .c-calendarWrap .logoArea .mainLogo {
  width: 400px;
  display: block;
  margin-bottom: 60px;
}
.c-accessBlock .content-wrap .c-calendarWrap .logoArea .c-btnWrap {
  display: flex;
  justify-content: center;
}
.c-accessBlock .content-wrap .c-calendarWrap .calendarArea {
  width: calc(100% - 430px);
}
.c-accessBlock .content-wrap .c-calendarWrap .calendarArea .note {
  font-size: 14px;
}
.c-accessBlock .content-wrap .c-calendarWrap .calendarArea .note span {
  margin-right: 5px;
}
.c-accessBlock .content-wrap .c-mapWrap p {
  margin-bottom: 10px;
}
.c-accessBlock .content-wrap .c-mapWrap p span {
  position: relative;
}
.c-accessBlock .content-wrap .c-mapWrap p .mapTxt {
  padding-left: 20px;
  margin-right: 15px;
}
.c-accessBlock .content-wrap .c-mapWrap p .mapTxt::before {
  content: "";
  background: url(../images/common/map-icon.png) no-repeat center center/contain;
  width: 16px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
}
.c-accessBlock .content-wrap .c-mapWrap p .carTxt {
  padding-left: 30px;
}
.c-accessBlock .content-wrap .c-mapWrap p .carTxt::before {
  content: "";
  background: url(../images/common/car-icon-blue.png) no-repeat center center/contain;
  width: 24px;
  height: 18px;
  position: absolute;
  top: 0;
  left: 0;
}
.c-accessBlock .content-wrap .c-mapWrap .g-map iframe {
  width: 100%;
  height: 300px;
}

.c-navWrap {
  display: flex;
  justify-content: space-between;
}
.c-navWrap .container:first-child {
  width: 55.18%;
}
.c-navWrap .container:last-child {
  width: 41.48%;
}
.c-navWrap .container:last-child .c-navItem-wrap .c-navItem:first-child {
  grid-row: span 2/span 2;
}
.c-navWrap .container:last-child .c-navItem-wrap .c-navItem:last-child {
  grid-column-start: 2;
}
.c-navWrap .container .c-navItem-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 36px;
       column-gap: 36px;
}
.c-navWrap .c-navItem {
  margin-bottom: 20px;
}
.c-navWrap .c-navItem .hasChild-menu {
  color: #FFFFFF;
  font-weight: bold;
  font-size: 20px;
  padding-left: 36px;
  position: relative;
  cursor: pointer;
}
.c-navWrap .c-navItem .hasChild-menu a {
  color: #FFFFFF;
  transition: 0.3s all;
  position: relative;
}
.c-navWrap .c-navItem .hasChild-menu a:hover {
  color: #FFDC52;
}
.c-navWrap .c-navItem .hasChild-menu.c-home a::before {
  content: "";
  background: url(../images/common/home-icon.png) no-repeat center center/contain;
  width: 25px;
  height: 22.5px;
  position: absolute;
  top: 0;
  left: -36px;
  transition: 0.3s all;
}
.c-navWrap .c-navItem .hasChild-menu.c-home a:hover::before {
  background: url(../images/common/home-icon_h.png) no-repeat center center/contain;
}
.c-navWrap .c-navItem .hasChild-menu.c-doctor a::before {
  content: "";
  background: url(../images/common/teeth-icon.png) no-repeat center center/contain;
  width: 24px;
  height: 30.45px;
  position: absolute;
  top: 0;
  left: -36px;
  transition: 0.3s all;
}
.c-navWrap .c-navItem .hasChild-menu.c-doctor a:hover::before {
  background: url(../images/common/teeth-icon_h.png) no-repeat center center/contain;
}
.c-navWrap .c-navItem .hasChild-menu.c-kijyun a::before {
  content: "";
  background: url(../images/common/kijyun-icon.png) no-repeat center center/contain;
  width: 25px;
  height: 27.18px;
  position: absolute;
  top: 0;
  left: -36px;
  transition: 0.3s all;
}
.c-navWrap .c-navItem .hasChild-menu.c-kijyun a:hover::before {
  background: url(../images/common/kijyun-icon_h.png) no-repeat center center/contain;
}
.c-navWrap .c-navItem .hasChild-menu.c-hospital::before {
  content: "";
  background: url(../images/common/menuIcon_info.png) no-repeat center center/contain;
  width: 30px;
  height: 30px;
  position: absolute;
  top: -4px;
  left: 0;
}
.c-navWrap .c-navItem .hasChild-menu.c-treat::before {
  content: "";
  background: url(../images/common/medical-icon.png) no-repeat center center/contain;
  width: 25.64px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
}
.c-navWrap .c-navItem .hasChild-menu.c-guide::before {
  content: "";
  background: url(../images/common/child-icon.png) no-repeat center center/contain;
  width: 27px;
  height: 21.67px;
  position: absolute;
  top: 0;
  left: 0;
}
.c-navWrap .c-navItem .hasChild-menu.c-parent::before {
  content: "";
  background: url(../images/common/parent-icon.png) no-repeat center center/contain;
  width: 23.14px;
  height: 30px;
  position: absolute;
  top: -4px;
  left: 0;
}
.c-navWrap .c-navItem .hasChild-menu.bottm-wave {
  padding-bottom: 10px;
}
.c-navWrap .c-navItem .hasChild-menu.bottm-wave::after {
  content: "";
  background: url(../images/common/menuWave.png) repeat-x center center/contain;
  width: 100%;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.c-navWrap .c-childMenu {
  margin-top: 15px;
}
.c-navWrap .c-childMenu .inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 10px;
}
.c-navWrap .c-childMenu li {
  margin-bottom: 10px;
}
.c-navWrap .c-childMenu a {
  color: #FFFFFF;
  padding-left: 9px;
  position: relative;
  transition: 0.3s all;
  letter-spacing: normal;
}
.c-navWrap .c-childMenu a span {
  font-size: 12px;
}
.c-navWrap .c-childMenu a:hover {
  color: #FFDC52;
}
.c-navWrap .c-childMenu a::before {
  content: "";
  background: #FFDC52;
  width: 7.5px;
  height: 1px;
  top: 10px;
  left: 0;
  margin: auto;
  position: absolute;
}

/*                特定ページでのc-mapWrap非表示
======================================================= */
.nocMap-page .c-accessBlock {
  padding: 70px 0 70px;
}
.nocMap-page .c-accessBlock .c-mapWrap {
  display: none;
}

.noFixedBtn-page .fixedBtn-wrap {
  display: none;
}

h2 + .headingTxt {
  max-width: 700px;
  margin: 0 auto 40px;
}

.blueWave-bg {
  background-color: #E6F5FF;
  position: relative;
  padding: 20px 0;
  margin: 80px 0;
}
.blueWave-bg::before {
  content: "";
  background: url(../images/common/top-waveBlue.png) repeat-x center center/100% 80px;
  width: 100%;
  height: 80px;
  position: absolute;
  top: -80px;
  left: 0;
}
.blueWave-bg::after {
  content: "";
  background: url(../images/common/btm-waveBlue.png) repeat-x center center/100% 80px;
  width: 100%;
  height: 80px;
  position: absolute;
  bottom: -80px;
  left: 0;
}

.ywlWave-bg {
  background-color: #FFF9EF;
  position: relative;
  padding: 20px 0;
  margin: 80px 0;
}
.ywlWave-bg::before {
  content: "";
  background: url(../images/common/top-waveYlw.png) repeat-x center center/100% 80px;
  width: 100%;
  height: 80px;
  position: absolute;
  top: -80px;
  left: 0;
}
.ywlWave-bg::after {
  content: "";
  background: url(../images/common/btm-waveYlw.png) repeat-x center center/100% 80px;
  width: 100%;
  height: 80px;
  position: absolute;
  bottom: -80px;
  left: 0;
}

.c-closing .c-content-wrap {
  max-width: 1042px;
  position: relative;
}
.c-closing .c-content-wrap::before {
  content: "";
  background: url(../images/common/mascot01.png) no-repeat center center/contain;
  width: 145.71px;
  height: 161.66px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -20px;
}
.c-closing .c-content-wrap::after {
  content: "";
  background: url(../images/common/mascot02.png) no-repeat center center/contain;
  width: 120.85px;
  height: 167.61px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
}

.c-list-block {
  padding: 24px 43px;
  background-color: #FFFFFF;
  border-radius: 10px;
}
.c-list-block li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 1em;
}
.c-list-block li:last-child {
  margin-bottom: 0;
}
.c-list-block li::before {
  content: "";
  background: url(../images/common/yellow-ling.png) no-repeat center center/contain;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 2px;
  left: 0;
}
.c-list-block.bg-blue {
  background-color: #E6F5FF;
}

.iconBlock-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}
.iconBlock-wrap .iconBlock:last-child {
  margin-bottom: 0;
}

.iconBlock {
  padding: 33px 27px;
  border-radius: 10px;
  background-color: #FFFFFF;
  margin-bottom: 12px;
}
.iconBlock.bd-y {
  border: 3px solid #F4C553;
}
.iconBlock.bd-s {
  border: 3px solid #4CBBE0;
}
.iconBlock.bd-r {
  border: 3px solid #E2515F;
}
.iconBlock.bd-b {
  border: 3px solid #01639E;
}
.iconBlock .container {
  display: flex;
  align-items: center;
  gap: 18px;
}
.iconBlock .container .iconArea {
  width: 80px;
}
.iconBlock .container .txtArea {
  width: calc(100% - 98px);
}

@media (max-width: 768px) {
  .c-closing .c-content-wrap {
    padding-bottom: 150px;
  }
  .c-closing .c-content-wrap::before {
    top: auto;
    bottom: 0;
    margin: auto;
    left: 24px;
  }
  .c-closing .c-content-wrap::after {
    top: auto;
    bottom: 0;
    margin: auto;
    right: 24px;
  }
  .c-list-block {
    padding: 24px 20px;
  }
  .iconBlock {
    padding: 14px 17px;
  }
  .iconBlock .container {
    flex-direction: column;
    gap: 14px;
  }
  .iconBlock .container .iconArea {
    width: 100%;
  }
  .iconBlock .container .iconArea img {
    display: block;
    margin: auto;
  }
  .iconBlock .container .txtArea {
    width: 100%;
  }
  .blueWave-bg::before {
    background: url(../images/common/top-waveBlue_sp.png) repeat-x center center/100% 80px;
  }
  .blueWave-bg::after {
    background: url(../images/common/btm-waveBlue_sp.png) repeat-x center center/100% 80px;
  }
  .ywlWave-bg::before {
    background: url(../images/common/top-waveYlw_sp.png) repeat-x center center/100% 80px;
  }
  .ywlWave-bg::after {
    background: url(../images/common/btm-waveYlw_sp.png) repeat-x center center/100% 80px;
  }
}
/*                footer
======================================================= */
footer {
  background-color: #01639E;
  padding-top: 70px;
  position: relative;
  z-index: 1;
}
footer .footerInner {
  max-width: 1228px;
  padding: 0 34px;
  margin: 0 auto;
}
footer .footerCta-area {
  border-top: 1px solid #FFFFFF;
  padding: 50px 20px;
}
footer .footerCta-area .container {
  display: flex;
  justify-content: space-between;
}
footer .footerCta-area .container .accessArea {
  display: flex;
  gap: 36px;
}
footer .footerCta-area .container .accessArea .txtBase p {
  color: #FFFFFF;
  margin-bottom: 5px;
}
footer .footer-copyright {
  background-color: #004097;
  text-align: center;
  padding: 5px 0;
}
footer .footer-copyright small {
  font-size: 12px;
  color: #FFFFFF;
}

.pageTop-btn-wrap {
  position: absolute;
  top: -59px;
  right: 10vw;
  z-index: 3;
}
.pageTop-btn-wrap::after {
  content: "";
  background: url(../images/common/mascot-footer.png) no-repeat center center/contain;
  width: 74px;
  height: 60px;
  position: absolute;
  top: 0;
  right: -67px;
  z-index: 2;
  transition: 0.3s all;
}
.pageTop-btn-wrap:has(.pageTop-btn:hover)::after {
  background: url(../images/common/mascot-footer_h.png) no-repeat center center/contain;
}

.pageTop-btn {
  position: relative;
  z-index: 3;
  display: block;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #FFFFFF;
  box-shadow: 0px 5px 0px 0px #F4C553;
  text-align: center;
  align-content: center;
  transition: 0.3s all;
  cursor: pointer;
}
.pageTop-btn span {
  font-weight: bold;
  color: #F4C553;
  position: relative;
  transition: 0.3s all;
}
.pageTop-btn span::before {
  content: "";
  background: url(../images/common/arw-yellow.png) no-repeat center center/contain;
  transform: rotate(-90deg);
  width: 17px;
  height: 13px;
  position: absolute;
  top: -20px;
  right: 0;
  left: 0;
  margin: auto;
  transition: 0.3s all;
}
.pageTop-btn:hover {
  background-color: #F4C553;
  box-shadow: none;
  transform: translateY(5px);
}
.pageTop-btn:hover span {
  color: #FFFFFF;
}
.pageTop-btn:hover span::before {
  background: url(../images/common/arw-white.png) no-repeat center center/contain;
  transform: rotate(-90deg);
}

@media (max-width: 768px) {
  .fixedBtn-wrap {
    display: none;
  }
  .pageTop-btn-wrap {
    right: 75px;
  }
  .c-accessBlock {
    padding-bottom: 0px;
  }
  .c-accessBlock::before {
    background: url(../images/common/fvWave.png) center center/cover repeat-x;
  }
  .c-accessBlock .content-wrap .c-calendarWrap {
    display: block;
    position: relative;
    padding-bottom: 110px;
  }
  .c-accessBlock .content-wrap .c-calendarWrap .c-btnWrap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .c-accessBlock .content-wrap .c-calendarWrap .logoArea .mainLogo {
    margin: 0 auto 40px;
  }
  .c-accessBlock .content-wrap .c-calendarWrap .calendarArea {
    width: 100%;
  }
  .c-accessBlock .content-wrap .c-calendarWrap .calendarArea .note {
    padding-left: 1em;
  }
  .c-accessBlock .content-wrap .c-mapWrap .g-map {
    margin: 0em calc(50% - 50vw);
  }
  footer .footerCta-area {
    padding: 30px 20px;
  }
  footer .footerCta-area .container {
    flex-direction: column-reverse;
    align-items: center;
    gap: 30px;
  }
  footer .footerCta-area .container .accessArea {
    flex-direction: column;
    align-items: center;
  }
  .c-navWrap {
    flex-direction: column;
  }
  .c-navWrap .c-navItem {
    margin-bottom: 30px;
  }
  .c-navWrap .c-navItem .hasChild-menu {
    font-size: 18px;
  }
  .c-navWrap .c-navItem .hasChild-menu.bottm-wave {
    padding-bottom: 15px;
  }
  .c-navWrap .c-childMenu .inner {
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
  .c-navWrap .container:first-child {
    width: 100%;
  }
  .c-navWrap .container:first-child .c-navItem-wrap:last-child {
    display: block;
  }
  .c-navWrap .container:last-child {
    width: 100%;
  }
  .c-navWrap .container:last-child .c-navItem-wrap {
    display: block;
  }
}
@media (max-width: 480px) {
  .c-accessBlock .content-wrap .c-calendarWrap .logoArea .mainLogo {
    width: 100%;
  }
}
/*                iframeのレスポン化
======================================================= */
.frame_respon .fb_iframe_widget,
.frame_respon .fb_iframe_widget span,
.frame_respon .fb_iframe_widget iframe[style] {
  width: 100% important;
}

.gmap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.gmap iframe,
.gmap object,
.gmap embed {
  border: none !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*               電話番号リンクをspのみ有効
======================================================= */
@media only screen and (min-width: 1024px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/*                下層共通
======================================================= */
body {
  overflow-x: hidden;
}

section {
  padding: 100px 0;
}

h2 {
  margin-bottom: 57px;
}
h2 br {
  display: none;
}

/*                医院紹介
======================================================= */
.fv-clinic {
  background: url(../images/clinic/fv-clinic.png) no-repeat center center/cover;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .fv-clinic {
    background: url(../images/clinic/fv-clinic@2x.png) no-repeat center center/cover;
  }
}

.clinic-info .setImg-block {
  position: relative;
  padding-bottom: 50px;
}
.clinic-info .setImg-block::before {
  content: "";
  background: url(../images/clinic/mascot01.png) no-repeat center center/cover;
  width: 197px;
  height: 175px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.clinic-feature .c-list-block {
  margin-top: 20px;
}
.clinic-feature .yobou-content {
  background: url(../images/common/border-bg.png) no-repeat center center/cover;
  padding: 50px 60px;
  border-radius: 10px;
  margin-top: 72px;
}
.clinic-feature .yobou-content .ttl {
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}
.clinic-feature .yobou-content .ttl::after {
  content: "";
  background: url(../images/common/colorDot.png) repeat-x;
  background-size: contain;
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.clinic-feature .yobou-content .heading {
  max-width: 700px;
  margin: 30px auto;
}

.clinic-attempt .setImg-block .c-list-block {
  margin: 30px 0;
}

/*                医師紹介
======================================================= */
.fv-doctor {
  background: url(../images/doctor/fv-doctor.png) no-repeat center center/cover;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .fv-doctor {
    background: url(../images/doctor/fv-doctor@2x.png) no-repeat center center/cover;
  }
}

.doctor-info {
  background-color: #FFF9EF;
  position: relative;
  padding: 20px 0 100px;
  margin-top: 80px;
}
.doctor-info::before {
  content: "";
  background: url(../images/common/top-waveYlw.png) repeat-x center center/100% 80px;
  width: 100%;
  height: 80px;
  position: absolute;
  top: -80px;
  left: 0;
}

.doctor-info-block01 {
  margin-bottom: 80px;
}
.doctor-info-block01 .singleImg-block {
  flex-direction: row-reverse;
}
.doctor-info-block01 .doctor-career .career-block {
  align-items: center;
}

.doctor-info-block .singleImg-block {
  margin-bottom: 30px;
}
.doctor-info-block .singleImg-block .dc-name {
  position: relative;
  margin-left: 15px;
}
.doctor-info-block .singleImg-block .dc-name.dc-name01::before {
  content: "";
  background: url(../images/doctor/name-men.svg) no-repeat center center/contain;
  width: 94px;
  height: 14px;
  position: absolute;
  top: -12px;
  left: 7px;
}
.doctor-info-block .singleImg-block .dc-name.dc-name02::before {
  content: "";
  background: url(../images/doctor/name-women.svg) no-repeat center center/contain;
  width: 112px;
  height: 14px;
  position: absolute;
  top: -12px;
  left: 7px;
}
.doctor-info-block .doctor-career .ttl {
  position: relative;
  padding-left: 20px;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 20px;
}
.doctor-info-block .doctor-career .ttl::before {
  content: "";
  background: url(../images/common/yellow-ling.png) no-repeat center center/contain;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}
.doctor-info-block .doctor-career .career-block {
  background-color: #fff;
  border-radius: 10px;
  padding: 24px 36px;
  display: flex;
}
.doctor-info-block .doctor-career .career-block ul {
  width: 50%;
}
.doctor-info-block .doctor-career .career-block ul:first-child {
  border-right: 1px solid #4CBBE0;
}
.doctor-info-block .doctor-career .career-block ul:last-child {
  padding-left: 30px;
}
.doctor-info-block .doctor-career .career-block ul li {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.doctor-info-block .doctor-career .career-block ul li:last-child {
  margin-bottom: 0;
}

/*                初診の流れ
======================================================= */
.fv-flow {
  background: url(../images/flow/fv-flow.png) no-repeat center center/cover;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .fv-flow {
    background: url(../images/flow/fv-flow@2x.png) no-repeat center center/cover;
  }
}

section.flow h2 + p {
  text-align: center;
  margin-bottom: 50px;
}

.flow-content {
  background-color: #E6F5FF;
  border-radius: 20px;
  padding: 64px 72px;
}
.flow-content .flowItem {
  display: flex;
  gap: 24px;
  padding-bottom: 32px;
  position: relative;
  z-index: 2;
}
.flow-content .flowItem::before {
  content: "";
  background: #004097;
  width: 7px;
  height: 100%;
  top: 0;
  left: 60px;
  position: absolute;
  z-index: -1;
}
.flow-content .flowItem:last-child {
  padding-bottom: 0;
}
.flow-content .flowItem:last-child::before {
  display: none;
}
.flow-content .flowItem .p-txtArea {
  width: calc(100% - 144px);
}
.flow-content .flowItem .p-txtArea .blockTtl {
  position: relative;
  margin-bottom: 16px;
}
.flow-content .flowItem .p-txtArea .blockTtl::after {
  content: "";
  background: url(../images/flow/blue-dotLine01.png) center center/cover repeat-x;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.flow-content .flowItem .p-txtArea .blockTtl span {
  font-size: 16px;
  margin-right: 10px;
}
.flow-content .flowItem .p-txtArea .txtBase p {
  margin-bottom: 0.5em;
}
.flow-content .flowItem:nth-of-type(2n) .p-txtArea .blockTtl::after {
  content: "";
  background: url(../images/flow/blue-dotLine02.png) center center/cover repeat-x;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}

/*                麻酔・痛みへの配慮
======================================================= */
.pain-fv {
  background: url(../images/pain/fv-pain.png) no-repeat center center/cover;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .pain-fv {
    background: url(../images/pain/fv-pain@2x.png) no-repeat center center/cover;
  }
}

.pain-heading .setImg-block {
  position: relative;
}
.pain-heading .setImg-block::before {
  content: "";
  background: url(../images/pain/mascot01.png);
  background-size: contain;
  width: 162px;
  height: 115px;
  position: absolute;
  bottom: 0;
  right: 0;
}

section.pain-masui .singleImg-block .c-list-block,
section.pain-yobou .singleImg-block .c-list-block {
  margin-bottom: 40px;
}

section.pain-allergy .other-block {
  margin-top: 72px;
}
section.pain-allergy .other-block .blockTtl + p {
  text-align: center;
  margin-bottom: 40px;
}

/*                子どもの虫歯予防
======================================================= */
.fv-prevention {
  background: url(../images/prevention/fv-prevention.png) no-repeat center center/cover;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .fv-prevention {
    background: url(../images/prevention/fv-prevention@2x.png) no-repeat center center/cover;
  }
}
.fv-prevention h1 .subTtl {
  width: 378px;
  height: 45px;
  margin-top: 5px;
  display: block;
}

.pre-heading h2 p {
  font-size: 24px;
  font-weight: bold;
}

.pre-point .iconBlock-wrap {
  max-width: 960px;
  margin: 0 auto;
}

.pre-effect .headingTxt {
  text-align: center;
}
.pre-effect .pre-gridBlock div:nth-of-type(3) {
  position: relative;
  padding-bottom: 100px;
}
.pre-effect .pre-gridBlock div:nth-of-type(3)::before {
  content: "";
  background: url(../images/prevention/mascot01.png) no-repeat center center/contain;
  width: 151px;
  height: 86px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.pre-sealant .pre-gridBlock div:nth-of-type(2) {
  position: relative;
  padding-bottom: 100px;
  order: -1;
}
.pre-sealant .pre-gridBlock div:nth-of-type(2)::before {
  content: "";
  background: url(../images/prevention/mascot02.png) no-repeat center center/contain;
  width: 122.9px;
  height: 75px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.pre-closing {
  background-color: #FFF9EF;
  padding-top: 20px;
  margin-top: 80px;
  position: relative;
}
.pre-closing::before {
  content: "";
  background: url(../images/common/top-waveYlw.png) repeat-x center center/100% 80px;
  width: 100%;
  height: 80px;
  position: absolute;
  top: -80px;
  left: 0;
}
.pre-closing .singleImg-block {
  position: relative;
  padding-bottom: 60px;
}
.pre-closing .singleImg-block::before {
  content: "";
  background: url(../images/pain/mascot01.png) no-repeat center center/contain;
  width: 162px;
  height: 115px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.pre-gridBlock {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 36px;
       column-gap: 36px;
  row-gap: 48px;
}
.pre-gridBlock .c-list-block {
  margin-bottom: 20px;
}

/*                食育・口腔習癖習癖指導
======================================================= */
.fv-habit {
  background: url(../images/habit/fv-habit.png) no-repeat center center/cover;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .fv-habit {
    background: url(../images/habit/fv-habit@2x.png) no-repeat center center/cover;
  }
}

.habitBlock-wrap .habitBlock {
  margin-bottom: 72px;
}
.habitBlock-wrap .habitBlock:last-child {
  margin-bottom: 0;
}

.habitBlock .singleImg-block {
  align-items: center;
  margin-bottom: 24px;
}
.habitBlock .singleImg-block .iconBlock {
  margin-top: 16px;
  margin-bottom: 0;
}

.habit-yobou .blockTtl.colorDot-txt::before {
  content: "";
  width: 24px;
  height: 30px;
  position: absolute;
  top: 2px;
  left: 0px;
  background: url(../images/common/teeth-red.png) center center/contain no-repeat;
}

.habit-closing {
  background-color: #FFF9EF;
  padding-top: 20px;
  margin-top: 80px;
  position: relative;
}
.habit-closing::before {
  content: "";
  background: url(../images/common/top-waveYlw.png) repeat-x center center/100% 80px;
  width: 100%;
  height: 80px;
  position: absolute;
  top: -80px;
  left: 0;
}
.habit-closing .singleImg-block {
  position: relative;
}
.habit-closing .singleImg-block::before {
  content: "";
  background: url(../images/habit/mascot01.png) no-repeat center center/contain;
  width: 254px;
  height: 86px;
  position: absolute;
  bottom: 0;
  right: 0;
}

/*                子どもの虫歯治療
======================================================= */
.fv-treatment {
  background: url(../images/treatment/fv-treatment.png) no-repeat center center/cover;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .fv-treatment {
    background: url(../images/treatment/fv-treatment@2x.png) no-repeat center center/cover;
  }
}

.treatment-point .iconBlock-wrap {
  max-width: 960px;
  padding: 0 20px;
  margin: 0 auto;
}

/*                子どもの歯の外傷
======================================================= */
.fv-injury {
  background: url(../images/injury/fv-injury.png) no-repeat center center/cover;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .fv-injury {
    background: url(../images/injury/fv-injury@2x.png) no-repeat center center/cover;
  }
}

.injury-content .contentBlock {
  margin-bottom: 72px;
}
.injury-content .contentBlock .blockTtl + .headingTxt {
  text-align: center;
  margin-bottom: 25px;
}
.injury-content .contentBlock .panelWrap .panelItem:nth-of-type(1) .blockTtl {
  color: #4CBBE0;
}
.injury-content .contentBlock .panelWrap .panelItem:nth-of-type(1) .blockTtl::before {
  background: url(../images/common/teeth-sky.png) no-repeat center center/contain;
}
.injury-content .contentBlock .panelWrap .panelItem:nth-of-type(2) .blockTtl {
  color: #E2515F;
}
.injury-content .contentBlock .panelWrap .panelItem:nth-of-type(2) .blockTtl::before {
  background: url(../images/common/teeth-red.png) no-repeat center center/contain;
}
.injury-content .contentBlock .panelWrap .panelItem:nth-of-type(3) .blockTtl {
  color: #F4C553;
}

/*                小児矯正
    ======================================================= */
.fv-ortho {
  background: url(../images/ortho/fv-ortho.png) no-repeat center center/cover;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .fv-ortho {
    background: url(../images/ortho/fv-ortho@2x.png) no-repeat center center/cover;
  }
}

.ortho-heading .singleImg-block {
  position: relative;
}
.ortho-heading .singleImg-block::before {
  content: "";
  background: url(../images/pain/mascot01.png) no-repeat center center/contain;
  width: 162px;
  height: 115px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.ortho-bathabit .singleImg-block {
  flex-direction: row-reverse;
}

.ortho-detail h2 {
  line-height: 1.8;
}
.ortho-detail h2 br:first-child {
  display: block;
}
.ortho-detail .singleImg-block:nth-of-type(2) {
  flex-direction: row-reverse;
  margin-top: 72px;
}

.ortho-closing {
  background-color: #FFF9EF;
  padding-top: 20px;
  margin-top: 80px;
  position: relative;
}
.ortho-closing::before {
  content: "";
  background: url(../images/common/top-waveYlw.png) repeat-x center center/100% 80px;
  width: 100%;
  height: 80px;
  position: absolute;
  top: -80px;
  left: 0;
}

/*                年齢別ガイド 0~2歳
======================================================= */
.fv-age0-2 {
  background: url(../images/age0-2/fv-0-2.png) no-repeat center center/cover;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .fv-age0-2 {
    background: url(../images/age0-2/fv-0-2@2x.png) no-repeat center center/cover;
  }
}

section.age01-heading .c-content-wrap {
  position: relative;
}
section.age01-heading .c-content-wrap::before {
  content: "";
  background: url(../images/age0-2/mascot01.png) no-repeat center center/contain;
  width: 120.85px;
  height: 140px;
  position: absolute;
  bottom: 0;
  left: 0;
}
section.age01-heading .c-content-wrap::after {
  content: "";
  background: url(../images/age0-2/mascot02.png) no-repeat center center/contain;
  width: 113.69px;
  height: 126px;
  position: absolute;
  bottom: 0;
  right: 0;
}

section.age01-treatment .headingTxt {
  margin-bottom: 60px;
}

section.age01-closing {
  background-color: #FFF9EF;
  padding-top: 20px;
  margin-top: 80px;
  position: relative;
}
section.age01-closing::before {
  content: "";
  background: url(../images/common/top-waveYlw.png) repeat-x center center/100% 80px;
  width: 100%;
  height: 80px;
  position: absolute;
  top: -80px;
  left: 0;
}
section.age01-closing .singleImg-block {
  position: relative;
  padding-bottom: 80px;
}
section.age01-closing .singleImg-block::before {
  content: "";
  background: url(../images/age0-2/mascot03.png) no-repeat center center/contain;
  width: 195px;
  height: 160px;
  position: absolute;
  bottom: 0;
  right: 0;
}

/*                年齢別ガイド 3~5歳
======================================================= */
.fv-age3-5 {
  background: url(../images/age3-5/fv-3-5.png) no-repeat center center/cover;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .fv-age3-5 {
    background: url(../images/age3-5/fv-3-5@2x.png) no-repeat center center/cover;
  }
}

.age02-heading .c-content-wrap {
  position: relative;
}
.age02-heading .c-content-wrap::before {
  content: "";
  background: url(../images/age3-5/mascot01.png) no-repeat center center/contain;
  width: 140px;
  height: 140px;
  position: absolute;
  bottom: 0;
  left: 20px;
}
.age02-heading .c-content-wrap::after {
  content: "";
  background: url(../images/age3-5/mascot02.png) no-repeat center center/contain;
  width: 140px;
  height: 140px;
  position: absolute;
  bottom: 0;
  right: 20px;
}

.age02-care .container {
  padding: 30px;
  background-color: #fff;
  border-radius: 20px;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
}
.age02-care .container .p-imgArea {
  width: 21.15%;
}
.age02-care .container .p-txtArea {
  width: 75.96%;
}
.age02-care .container .p-txtArea .blockTtl {
  margin-bottom: 10px;
}

.age02-closing {
  position: relative;
}
.age02-closing::after {
  content: "";
  background: url(../images/age3-5/mascot04.png) no-repeat center center/contain;
  width: 132px;
  height: 120px;
  position: absolute;
  bottom: -35px;
  right: 10vw;
}
.age02-closing .c-content-wrap {
  position: relative;
}
.age02-closing .c-content-wrap::before {
  content: "";
  background: url(../images/common/fv-mascot04.png) no-repeat center center/contain;
  width: 80px;
  height: 71px;
  position: absolute;
  top: 0;
  left: 0;
}

/*                年齢別ガイド 6~12歳
======================================================= */
.fv-age6-12 {
  background: url(../images/age6-12/fv-6-12.png) no-repeat center center/cover;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .fv-age6-12 {
    background: url(../images/age6-12/fv-6-12@2x.png) no-repeat center center/cover;
  }
}

.age03-heading .c-content-wrap {
  position: relative;
}
.age03-heading .c-content-wrap::before {
  content: "";
  background: url(../images/age6-12/mascot01.png) no-repeat center center/contain;
  width: 120px;
  height: 182px;
  position: absolute;
  bottom: 0;
  left: 20px;
}
.age03-heading .c-content-wrap::after {
  content: "";
  background: url(../images/age6-12/mascot02.png) no-repeat center center/contain;
  width: 130px;
  height: 182px;
  position: absolute;
  bottom: 0;
  right: 20px;
}

.age03-sign .singleImg-block:nth-of-type(2) {
  flex-direction: row-reverse;
  margin-top: 48px;
}

.age03-habit .container-wrap {
  max-width: 884px;
  margin: 0 auto;
}
.age03-habit .container-wrap .container {
  display: flex;
  justify-content: space-between;
}
.age03-habit .container-wrap .container .p-imgArea {
  width: 25.11%;
}
.age03-habit .container-wrap .container .p-txtArea {
  width: 70.81%;
}
.age03-habit .container-wrap .container:first-child {
  margin-bottom: 48px;
}

.age03-closing {
  background-color: #FFF9EF;
  padding-top: 20px;
  margin-top: 80px;
  position: relative;
}
.age03-closing::before {
  content: "";
  background: url(../images/common/top-waveYlw.png) repeat-x center center/100% 80px;
  width: 100%;
  height: 80px;
  position: absolute;
  top: -80px;
  left: 0;
}
.age03-closing .randamImg01 {
  position: absolute;
  width: 50px;
  height: 146px;
  top: 100px;
  left: 0;
}
.age03-closing .randamImg02 {
  position: absolute;
  width: 155px;
  height: 133px;
  bottom: -40px;
  right: 10vw;
}

/*                年齢別ガイド 中高生
======================================================= */
.fv-ageTeen {
  background: url(../images/age-teen/fv-teen.png) no-repeat center center/cover;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .fv-ageTeen {
    background: url(../images/age-teen/fv-teen@2x.png) no-repeat center center/cover;
  }
}

.age04-heading .c-content-wrap {
  position: relative;
}
.age04-heading .c-content-wrap::before {
  content: "";
  background: url(../images/age-teen/mascot01.png) no-repeat center center/contain;
  width: 100px;
  height: 180px;
  position: absolute;
  bottom: 0;
  left: 20px;
}
.age04-heading .c-content-wrap::after {
  content: "";
  background: url(../images/age-teen/mascot02.png) no-repeat center center/contain;
  width: 110px;
  height: 174px;
  position: absolute;
  bottom: 0;
  right: 20px;
}

.age04-point .singleImg-block:nth-of-type(2) {
  flex-direction: row-reverse;
  margin-top: 48px;
}

.age04-yobou .headingTxt {
  text-align: center;
}

/*                親御さん向け よくある質問
======================================================= */
.fv-faq {
  background: url(../images/faq/fv-faq.png) no-repeat center center/cover;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .fv-faq {
    background: url(../images/faq/fv-faq@2x.png) no-repeat center center/cover;
  }
}

.faqItem {
  margin-bottom: 36px;
}
.faqItem dt {
  position: relative;
  padding-left: 45px;
  padding-right: 60px;
  padding-bottom: 10px;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: bold;
  color: #01639E;
}
.faqItem dt::before {
  content: "";
  background: url(../images/faq/Q-icon.png) no-repeat center center/contain;
  width: 39px;
  height: 44px;
  position: absolute;
  top: -6px;
  left: 0;
}
.faqItem dt::after {
  content: "";
  background: url(../images/common/colorDot.png) repeat-x center center/contain;
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.faqItem dt .arwIcon {
  position: absolute;
  top: 5px;
  right: 16px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.faqItem dt .arwIcon .arwIcon-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.faqItem dt .arwIcon .arwIcon-inner span {
  position: absolute;
  background-color: #01639E;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.faqItem dt .arwIcon .arwIcon-inner span:first-child {
  width: 100%;
  height: 3px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.faqItem dt .arwIcon .arwIcon-inner span:last-child {
  width: 3px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.faqItem dt .arwIcon.is-active .arwIcon-inner span:last-child {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.faqItem dd {
  display: none;
}
.faqItem dd .answerBlock {
  background-color: #E6F5FF;
  padding: 24px 35px;
  border-radius: 20px;
}
.faqItem dd .answerBlock .txtBase {
  position: relative;
  padding-left: 50px;
}
.faqItem dd .answerBlock .txtBase::before {
  content: "";
  background: url(../images/faq/A-icon.png) no-repeat center center/contain;
  width: 39px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 0;
}
.faqItem dd .answerBlock .txtBase p:not(:last-child) {
  margin-bottom: 0.7em;
}
.faqItem dd .treatBlock {
  padding: 0 36px;
  margin: 20px 0;
}
.faqItem dd .treatBlock .ttl {
  position: relative;
  padding-left: 15px;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}
.faqItem dd .treatBlock .ttl::before {
  content: "";
  background: #4CBBE0;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/*                親御さん向け 歯医者さんデビュー
======================================================= */
.fv-visit {
  background: url(../images/faq/fv-firstvisit.png) no-repeat center center/cover;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .fv-visit {
    background: url(../images/faq/fv-firstvisit@2x.png) no-repeat center center/cover;
  }
}

/*                親御さん向け 応急処置ガイド
======================================================= */
.fv-emergency {
  background: url(../images/faq/fv-emg.png) no-repeat center center/cover;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .fv-emergency {
    background: url(../images/faq/fv-emg@2x.png) no-repeat center center/cover;
  }
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }
  .fv-clinic {
    background: url(../images/clinic/fv-clinic_sp.png) no-repeat center center/cover;
  }
  /*                食育・口腔習癖習癖指導
  ======================================================= */
  /*                子どもの虫歯治療
  ======================================================= */
  /*                子どもの歯の外傷
  ======================================================= */
  /*                小児矯正
  ======================================================= */
  /*                年齢別ガイド 0~2歳
  ======================================================= */
  /*                年齢別ガイド 3~5歳
  ======================================================= */
  /*                年齢別ガイド 6~12歳
  ======================================================= */
  /*                年齢別ガイド 中高生
  ======================================================= */
  /*                親御さん向け よくある質問
  ======================================================= */
  /*                親御さん向け 歯医者さんデビュー
  ======================================================= */
  /*                親御さん向け 応急処置ガイド
  ======================================================= */
}
@media (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (max-width: 768px) and (min-resolution: 2dppx) {
  .fv-clinic {
    background: url(../images/clinic/fv-clinic_sp@2x.png) no-repeat center center/cover;
  }
}
@media (max-width: 768px) {
  .clinic-info {
    padding-bottom: 186px;
  }
  .clinic-info .setImg-block {
    padding-bottom: 0;
  }
  .clinic-info .setImg-block::before {
    width: 120px;
    height: 106px;
    bottom: -106px;
  }
  .clinic-feature .yobou-content {
    margin-top: 36px;
    padding: 25px 20px;
  }
  .fv-doctor {
    background: url(../images/doctor/fv-doctor_sp.png) no-repeat center center/cover;
  }
}
@media (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (max-width: 768px) and (min-resolution: 2dppx) {
  .fv-doctor {
    background: url(../images/doctor/fv-doctor_sp@2x.png) no-repeat center center/cover;
  }
}
@media (max-width: 768px) {
  .doctor-heading .setImg-block {
    flex-direction: column-reverse;
  }
  .doctor-info {
    padding: 20px 0 80px;
  }
  .doctor-info::before {
    background: url(../images/common/top-waveYlw_sp.png) repeat-x center center/100% 80px;
  }
  .doctor-info-block .singleImg-block .dc-name.dc-name01::before {
    width: 78px;
  }
  .doctor-info-block .singleImg-block .dc-name.dc-name02::before {
    width: 92px;
  }
  .doctor-info-block .doctor-career .career-block {
    flex-direction: column;
    padding: 20px 20px;
  }
  .doctor-info-block .doctor-career .career-block ul {
    width: 100%;
  }
  .doctor-info-block .doctor-career .career-block ul:first-child {
    border-right: none;
    border-bottom: 1px solid #4CBBE0;
    padding-bottom: 20px;
  }
  .doctor-info-block .doctor-career .career-block ul:last-child {
    padding-left: 0;
    padding-top: 20px;
  }
  .doctor-info-block .doctor-career .career-block ul li {
    display: block;
  }
  .doctor-info-block01 {
    margin-bottom: 40px;
  }
  .doctor-info-block01 .singleImg-block {
    flex-direction: column;
  }
  section.flow h2 + p {
    margin-bottom: 20px;
  }
  .fv-flow {
    background: url(../images/flow/fv-flow_sp.png) no-repeat center center/cover;
  }
}
@media (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (max-width: 768px) and (min-resolution: 2dppx) {
  .fv-flow {
    background: url(../images/flow/fv-flow_sp@2x.png) no-repeat center center/cover;
  }
}
@media (max-width: 768px) {
  .flow-content {
    padding: 20px;
  }
  .flow-content .flowItem {
    gap: 5px;
  }
  .flow-content .flowItem::before {
    left: 38px;
    width: 4px;
  }
  .flow-content .flowItem .p-txtArea {
    width: calc(100% - 85px);
  }
  .flow-content .flowItem .p-txtArea .blockTtl span {
    font-size: 14px;
  }
  .pain-free h2 {
    line-height: 1.6;
  }
  .pain-free h2 br {
    display: block;
  }
  .pain-fv {
    background: url(../images/pain/fv-pain_sp.png) no-repeat center center/cover;
  }
}
@media (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (max-width: 768px) and (min-resolution: 2dppx) {
  .pain-fv {
    background: url(../images/pain/fv-pain_sp@2x.png) no-repeat center center/cover;
  }
}
@media (max-width: 768px) {
  .pain-heading .setImg-block {
    flex-direction: column-reverse;
    padding-bottom: 115px;
  }
  .pain-heading .setImg-block::before {
    left: 0;
  }
  section.pain-masui .singleImg-block .c-list-block,
  section.pain-yobou .singleImg-block .c-list-block {
    margin-bottom: 30px;
  }
  section.pain-Ingenuity h2 .s-txt {
    font-size: 26px;
  }
  section.pain-allergy .other-block {
    margin-top: 44px;
  }
  section.pain-allergy .other-block .blockTtl + p {
    margin-bottom: 20px;
    text-align: left;
  }
  section.pain-closing .setImg-block {
    flex-direction: column-reverse;
  }
  .fv-prevention {
    background: url(../images/prevention/fv-prevention_sp.png) no-repeat center center/cover;
  }
}
@media (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (max-width: 768px) and (min-resolution: 2dppx) {
  .fv-prevention {
    background: url(../images/prevention/fv-prevention_sp@2x.png) no-repeat center center/cover;
  }
}
@media (max-width: 768px) {
  .fv-prevention h1 .subTtl {
    font-size: 25px;
  }
  .pre-heading h2 p {
    font-size: 20px;
  }
  .pre-effect .headingTxt {
    text-align: left;
  }
  .pre-gridBlock {
    display: block;
  }
  .pre-gridBlock div {
    margin-bottom: 48px;
  }
  .pre-gridBlock div:last-child {
    margin-bottom: 0;
  }
  .pre-point .iconBlock-wrap {
    padding: 0 20px;
  }
  .pre-closing::before {
    background: url(../images/common/top-waveYlw_sp.png) repeat-x center center/100% 80px;
  }
  .pre-closing .singleImg-block {
    padding-bottom: 130px;
  }
  .fv-habit {
    background: url(../images/habit/fv-habit_sp.png) no-repeat center center/cover;
  }
}
@media (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (max-width: 768px) and (min-resolution: 2dppx) {
  .fv-habit {
    background: url(../images/habit/fv-habit_sp@2x.png) no-repeat center center/cover;
  }
}
@media (max-width: 768px) {
  .habitBlock-wrap .habitBlock {
    margin-bottom: 36px;
  }
  .habitBlock .singleImg-block .iconBlock {
    margin-top: 32px;
  }
  .habit-closing .singleImg-block {
    padding-bottom: 120px;
  }
  .fv-treatment {
    background: url(../images/treatment/fv-treatment_sp.png) no-repeat center center/cover;
  }
}
@media (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (max-width: 768px) and (min-resolution: 2dppx) {
  .fv-treatment {
    background: url(../images/treatment/fv-treatment_sp@2x.png) no-repeat center center/cover;
  }
}
@media (max-width: 768px) {
  .fv-injury {
    background: url(../images/injury/fv-injury_sp.png) no-repeat center center/cover;
  }
}
@media (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (max-width: 768px) and (min-resolution: 2dppx) {
  .fv-injury {
    background: url(../images/injury/fv-injury_sp@2x.png) no-repeat center center/cover;
  }
}
@media (max-width: 768px) {
  .injury-content .contentBlock {
    margin-bottom: 36px;
  }
  .injury-content .contentBlock .blockTtl + .headingTxt {
    margin-bottom: 25px;
    text-align: left;
  }
  .fv-ortho {
    background: url(../images/ortho/fv-ortho_sp.png) no-repeat center center/cover;
  }
}
@media (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (max-width: 768px) and (min-resolution: 2dppx) {
  .fv-ortho {
    background: url(../images/ortho/fv-ortho_sp@2x.png) no-repeat center center/cover;
  }
}
@media (max-width: 768px) {
  .ortho-heading .singleImg-block {
    padding-bottom: 130px;
  }
  .ortho-bathabit .singleImg-block {
    flex-direction: column;
  }
  .ortho-detail .singleImg-block:nth-of-type(2) {
    margin-top: 36px;
    flex-direction: column;
  }
  .fv-age0-2 {
    background: url(../images/age0-2/fv-0-2_sp.png) no-repeat center center/cover;
  }
}
@media (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (max-width: 768px) and (min-resolution: 2dppx) {
  .fv-age0-2 {
    background: url(../images/age0-2/fv-0-2_sp@2x.png) no-repeat center center/cover;
  }
}
@media (max-width: 768px) {
  section.age01-heading .c-content-wrap {
    padding-bottom: 130px;
  }
  section.age01-heading .c-content-wrap::before {
    left: 40px;
  }
  section.age01-heading .c-content-wrap::after {
    right: 40px;
  }
  section.age01-treatment .singleImg-block {
    flex-direction: column-reverse;
  }
  section.age01-closing .singleImg-block {
    padding-bottom: 170px;
  }
  .fv-age3-5 {
    background: url(../images/age3-5/fv-3-5_sp.png) no-repeat center center/cover;
  }
}
@media (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (max-width: 768px) and (min-resolution: 2dppx) {
  .fv-age3-5 {
    background: url(../images/age3-5/fv-3-5_sp@2x.png) no-repeat center center/cover;
  }
}
@media (max-width: 768px) {
  .age02-heading .c-content-wrap {
    padding-bottom: 150px;
  }
  .age02-care .container {
    flex-direction: column;
    gap: 30px;
  }
  .age02-care .container .p-imgArea {
    width: 100%;
  }
  .age02-care .container .p-txtArea {
    width: 100%;
  }
  .age02-closing {
    padding-bottom: 100px;
  }
  .age02-closing::after {
    right: 0;
  }
  .age02-closing .c-content-wrap {
    padding-top: 75px;
  }
  .age02-closing .c-content-wrap::before {
    left: 24px;
    top: -40px;
  }
  .fv-age6-12 {
    background: url(../images/age6-12/fv-6-12_sp.png) no-repeat center center/cover;
  }
}
@media (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (max-width: 768px) and (min-resolution: 2dppx) {
  .fv-age6-12 {
    background: url(../images/age6-12/fv-6-12_sp@2x.png) no-repeat center center/cover;
  }
}
@media (max-width: 768px) {
  .age03-heading .c-content-wrap {
    padding-bottom: 200px;
  }
  .age03-sign .singleImg-block:nth-of-type(2) {
    flex-direction: column;
  }
  .age03-habit .container-wrap .container {
    flex-direction: column;
  }
  .age03-habit .container-wrap .container .p-imgArea {
    width: 100%;
    margin-bottom: 25px;
  }
  .age03-habit .container-wrap .container .p-txtArea {
    width: 100%;
  }
  .age03-closing::before {
    background: url(../images/common/top-waveYlw_sp.png) repeat-x center center/100% 80px;
  }
  .age03-closing .randamImg01 {
    top: 0;
    width: 35px;
    height: 87px;
  }
  .age03-closing .randamImg02 {
    width: 95px;
    height: 82px;
    bottom: -25px;
    right: 24px;
  }
  .fv-ageTeen {
    background: url(../images/age-teen/fv-teen_sp.png) no-repeat center center/cover;
  }
}
@media (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (max-width: 768px) and (min-resolution: 2dppx) {
  .fv-ageTeen {
    background: url(../images/age-teen/fv-teen_sp@2x.png) no-repeat center center/cover;
  }
}
@media (max-width: 768px) {
  .age04-heading .c-content-wrap {
    padding-bottom: 200px;
  }
  .age04-point .singleImg-block:nth-of-type(2) {
    flex-direction: column;
  }
  .age04-yobou .headingTxt {
    text-align: left;
  }
  .fv-faq {
    background: url(../images/faq/fv-faq_sp.png) no-repeat center center/cover;
  }
}
@media (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (max-width: 768px) and (min-resolution: 2dppx) {
  .fv-faq {
    background: url(../images/faq/fv-faq_sp@2x.png) no-repeat center center/cover;
  }
}
@media (max-width: 768px) {
  .faqItem dt {
    font-size: 20px;
  }
  .faqItem dt::before {
    top: -12px;
  }
  .faqItem dt .arwIcon {
    top: 2px;
    right: 10px;
  }
  .faqItem dd .answerBlock {
    padding: 20px;
  }
  .faqItem dd .treatBlock {
    padding: 0;
    margin: 15px 0;
  }
  .fv-visit {
    background: url(../images/faq/fv-firstvisit_sp.png) no-repeat center center/cover;
  }
}
@media (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (max-width: 768px) and (min-resolution: 2dppx) {
  .fv-visit {
    background: url(../images/faq/fv-firstvisit_sp@2x.png) no-repeat center center/cover;
  }
}
@media (max-width: 768px) {
  .fv-emergency {
    background: url(../images/faq/fv-emg_sp.png) no-repeat center center/cover;
  }
}
@media (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2), (max-width: 768px) and (min-resolution: 2dppx) {
  .fv-emergency {
    background: url(../images/faq/fv-emg_sp@2x.png) no-repeat center center/cover;
  }
}
@media (max-width: 480px) {
  h2 {
    margin-bottom: 35px;
    line-height: 1.6;
  }
  h2 br {
    display: block;
  }
  .fv-prevention h1 .subTtl {
    width: 100%;
  }
  .faqItem dt::before {
    top: 0;
  }
  .faqItem.noWrap dt::before {
    top: -12px;
  }
}/*# sourceMappingURL=page.css.map */