@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.loading {
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  background: #fdfdfd;
}
.loading.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms;
}
.loading .loading_img {
  width: 79.4vw;
  max-width: 320px;
  text-align: center;
  margin: 20vh auto 32px;
  position: relative;
}
.loading .loading_img img {
  width: 100%;
}
.loading .loading_bar_list {
  position: absolute;
  left: 140px;
  bottom: -60px;
}
.loading .loading_bar {
  display: inline-block;
  width: 4px;
  height: 18px;
  border-radius: 4px;
  -webkit-animation: loading 1s ease-in-out infinite;
          animation: loading 1s ease-in-out infinite;
}
.loading .loading_bar:nth-child(1) {
  background-color: #EA688C;
  -webkit-animation-delay: 0;
          animation-delay: 0;
}
.loading .loading_bar:nth-child(2) {
  background-color: #EA688C;
  -webkit-animation-delay: 0.09s;
          animation-delay: 0.09s;
}
.loading .loading_bar:nth-child(3) {
  background-color: #EA688C;
  -webkit-animation-delay: 0.18s;
          animation-delay: 0.18s;
}
@-webkit-keyframes loading {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1, 2.2);
  }
  40% {
    transform: scale(1);
  }
}
@keyframes loading {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1, 2.2);
  }
  40% {
    transform: scale(1);
  }
}

main {
  padding: 0;
  overflow: hidden;
  margin: -60px auto 0;
}
main #mv {
  width: 100%;
  position: relative;
  padding: 0 0 100px;
}
main #mv .copy {
  writing-mode: vertical-rl;
  position: absolute;
  left: 22vw;
  top: 7vw;
  z-index: 20;
}
main #mv .copy p {
  background: #F45675;
  color: #fff;
  letter-spacing: 0.1em;
  font-size: clamp(20px, 2.4vw, 30px);
  padding: 4px;
  border-radius: 10px;
}
main #mv .copy p span.pc {
  display: inline;
}
main #mv .copy p .c_yellow {
  color: #FFFF00;
  opacity: 0;
  transition: 1.2s 0.2s;
}
main #mv .copy p + p {
  position: relative;
  top: 5vw;
  left: -1.5vw;
}
main #mv .copy p + p span {
  transition: 1.2s 1s;
}
main #mv .copy.is-show p span {
  opacity: 1;
}
main #mv .mv_slide .swiper-slide img {
  width: 100%;
}
main #mv .mv_slide:before, main #mv .mv_slide:after {
  content: "";
  position: absolute;
  width: 198px;
  height: 126px;
  display: block;
  bottom: -50px;
  z-index: 3;
}
main #mv .mv_slide:before {
  background: url(../img/mv_leaf_small_left.svg) no-repeat;
  background-size: 100%;
  left: -400px;
  transition: left 1s ease-out;
}
main #mv .mv_slide:after {
  background: url(../img/mv_leaf_small_right.svg) no-repeat;
  background-size: 100%;
  right: -400px;
  transition: right 1s ease-out;
}
main #mv .mv_slide.is-show:before {
  left: -70px;
}
main #mv .mv_slide.is-show:after {
  right: -70px;
}
main #mv:before, main #mv:after {
  content: "";
  position: absolute;
  width: 244px;
  height: 155px;
  display: block;
  bottom: 0;
  z-index: 2;
}
main #mv:before {
  background: url(../img/mv_leaf_large_left.svg) no-repeat;
  background-size: 100%;
  left: -300px;
  transition: left 0.6s ease-out;
}
main #mv:after {
  background: url(../img/mv_leaf_large_right.svg) no-repeat;
  background-size: 100%;
  right: -300px;
  transition: right 0.6s ease-out;
}
main #mv.is-show:before {
  left: 0;
}
main #mv.is-show:after {
  right: 0;
}
main .inner {
  width: 54.6875vw;
  max-width: 1200px;
  min-width: 700px;
  margin: 0 auto;
}
main #banner_area {
  margin: 0 auto 85px;
}
main #banner_area .sec_title {
    width: 33.3125vw;
    position: relative;
    margin: 0 auto 20px;
}
main #banner_area ul {
  display: flex;
  justify-content: space-between;
}
main #banner_area ul li .event_title{
  font-size: clamp(16px, 1.2vw, 20px);
  color: #513209;
  text-align: center;
  padding: 0 0 6px;
}
main #banner_area ul li {
  width: 48%;
}
main #info_area {
  position: relative;
  padding: 0 0 50px;
}
main #info_area .info_list {
  display: flex;
  justify-content: space-between;
  position: relative;
}
main #info_area .info_list .info_box {
  width: 48%;
  background: #fff;
  border-radius: 15px;
  padding: 20px 30px;
  position: relative;
  z-index: 1;
}
main #info_area .info_list .info_box .info_title {
  font-size: clamp(16px, 1.2vw, 20px);
  color: #513209;
  text-align: center;
  padding: 0 0 6px;
}
main #info_area .info_list .info_box ul {
  padding: 30px 0 0;
}
main #info_area .info_list .info_box ul li {
  position: relative;
  padding: 0 0 0 65px;
}
main #info_area .info_list .info_box ul li:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
main #info_area .info_list .info_box ul li a {
  color: #774D19;
  font-weight: 600;
}
main #info_area .info_list .info_box ul li a .date {
  font-size: clamp(12px, 0.8vw, 14px);
}
main #info_area .info_list .info_box ul li a .title {
  font-size: clamp(14px, 1vw, 18px);
}
main #info_area .info_list .info_box ul li + li {
  margin-top: 20px;
}
main #info_area .info_list .info_box.news {
  border: 2px solid #7ACE0D;
}
main #info_area .info_list .info_box.news .info_title {
  border-bottom: 2px solid #7ACE0D;
}
main #info_area .info_list .info_box.news ul li:before {
  background: url(../img/icon_news_title.svg) no-repeat;
  background-size: 100%;
  width: 53px;
  height: 38px;
}
main #info_area .info_list .info_box.column {
  border: 2px solid #43A1FF;
}
main #info_area .info_list .info_box.column .info_title {
  border-bottom: 2px solid #43A1FF;
}
main #info_area .info_list .info_box.column ul li:before {
  background: url(../img/icon_column_title.svg) no-repeat;
  background-size: 100%;
  width: 48px;
  height: 42px;
}
main #info_area .info_list:before {
  content: "";
  background: url(../img/bg_info_tooth.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 5.546875vw;
  height: 5.234375vw;
  position: absolute;
  top: 1vw;
  right: 15vw;
  z-index: 1;
  transition: top 0.6s ease-out;
}
main #info_area .info_list.is-show:before {
  top: -2vw;
}
main #info_area:before {
  content: "";
  background: url(../img/common/bg_cloud_bl.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 17.890625vw;
  height: 12.890625vw;
  position: absolute;
  bottom: 80px;
  left: -50px;
  -webkit-animation: floatCloud2 16s ease-in-out infinite;
          animation: floatCloud2 16s ease-in-out infinite;
}
main #info_area:after {
  content: "";
  background: url(../img/common/bg_cloud_bl.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 12.96875vw;
  height: 9.375vw;
  position: absolute;
  bottom: 0px;
  right: -30px;
  -webkit-animation: floatCloud1 12s ease-in-out infinite;
          animation: floatCloud1 12s ease-in-out infinite;
}
.links_list {
  position: relative;
  background: #fff;
  border: 2px solid #513209;
  border-radius: 15px;
  padding: 30px 40px;
  overflow: hidden;
}
.links_list ul li {
  text-align: center;
}
.links_list ul li a {
  font-size: clamp(14px, 4vw, 18px);
  color: #513209;
  text-decoration: underline;
}
main #contents .sec_title {
    width: 9.3125vw;
    position: relative;
    margin: 0 auto 20px;
}
main #feature_area {
  margin: 15vw auto 0;
  padding: 5vw 0 23.4375vw;
  background: #CFF5FF;
  position: relative;
}
main #feature_area .sec_title {
  width: 40.3125vw;
  position: relative;
  margin: 0 auto 80px;
}
main #feature_area .sec_title:before {
  content: "";
  background: url(../img/bg_feature_tree_left.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 30vw;
  height: 15vw;
  position: absolute;
  top: 0;
  left: -70vw;
  transition: left 0.6s ease-out;
}
main #feature_area .sec_title:after {
  content: "";
  background: url(../img/bg_feature_tree_right.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 30vw;
  height: 15vw;
  position: absolute;
  top: 40vw;
  right: -70vw;
  transition: right 0.6s ease-out;
}
main #feature_area .sec_title.is-show:before {
  left: -43vw;
}
main #feature_area .sec_title.is-show:after {
  right: -43vw;
}
main #feature_area .feature_box {
  position: relative;
  z-index: 1;
}
main #feature_area .feature_box .box {
  display: flex;
  justify-content: space-between;
  border: 2px solid #513209;
  border-radius: 30px;
  background: #fff;
  padding: 50px 40px 30px;
  position: relative;
}
main #feature_area .feature_box .box .text {
  width: 58%;
}
main #feature_area .feature_box .box .text .title {
  position: absolute;
  font-size: clamp(18px, 1.2vw, 20px);
  width: 50%;
  text-align: center;
  font-weight: 600;
  border: 2px solid #513209;
  border-radius: 40px;
  color: #fff;
  background: #7ACE0D;
  padding: 8px 12px;
  top: -20px;
}
main #feature_area .feature_box .box .text p {
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.8;
}
main #feature_area .feature_box .box .text p .c_pink {
  color: #F45675;
}
main #feature_area .feature_box .box .img {
  width: 39%;
  margin: -70px 0 0;
}
main #feature_area .feature_box .box:nth-of-type(1):before {
  content: "";
  background: url(../img/bg_feature_bird_left.gif) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 12vw;
  height: 14vw;
  position: absolute;
  top: -16vw;
  left: -4vw;
}
main #feature_area .feature_box .box:nth-of-type(1):after {
  content: "";
  background: url(../img/bg_feature_baloon.gif) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 12vw;
  height: 22vw;
  position: absolute;
  top: 3vw;
  right: -16vw;
  z-index: 1;
}
main #feature_area .feature_box .box:nth-of-type(2) {
  flex-direction: row-reverse;
  margin: 80px auto 0;
}
main #feature_area .feature_box .box:nth-of-type(2) .text .title {
  background: #F45675;
}
main #feature_area .feature_box .box:nth-of-type(2) .img img + img {
  width: 70%;
  margin: 10px 0 0 auto;
  display: block;
}
main #feature_area .feature_box .box:nth-of-type(3) {
  margin: 80px auto 0;
}
main #feature_area .feature_box .box:nth-of-type(3) .text .title {
  background: #43A1FF;
}
main #feature_area .feature_box:before {
  content: "";
  background: url(../img/bg_feature_butterfly.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 4.84375vw;
  height: 4.453125vw;
  position: absolute;
  top: 40vw;
  left: -26vw;
  -webkit-animation: flyButterfly 10s ease-in-out infinite;
          animation: flyButterfly 10s ease-in-out infinite;
  z-index: 1;
}
main #feature_area .feature_box:after {
  content: "";
  background: url(../img/bg_feature_bee.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 2.96875vw;
  height: 2.65625vw;
  position: absolute;
  bottom: 1vw;
  right: -2vw;
  -webkit-animation: flyBee 6s linear infinite;
          animation: flyBee 6s linear infinite;
  z-index: 1;
}
main #feature_area:before {
  content: "";
  background: url(../img/bg_feature_cloud_top.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 100%;
  height: 43vw;
  position: absolute;
  top: -15vw;
}
main #feature_area:after {
  content: "";
  background: url(../img/bg_feature_green.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 104%;
  height: 100vw;
  position: absolute;
  bottom: 0px;
  left: 0;
}
main #examination_area {
  position: relative;
  z-index: 2;
}
main #examination_area .sec_title {
  width: 11.71875vw;
  position: relative;
  margin: 0 auto 7.8125vw;
}
main #examination_area .examination_box {
  position: relative;
  display: flex;
  justify-content: space-between;
}
main #examination_area .examination_box .box {
  width: 48%;
  border-radius: 15px;
  padding: 1.875vw 1.5625vw;
  position: relative;
  background: #fff;
}
main #examination_area .examination_box .box .title {
  width: 11.5625vw;
  position: absolute;
  top: -3vw;
  left: 0;
  right: 0;
  margin: auto;
}
main #examination_area .examination_box .box p {
  margin: 1.5625vw 0 0;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.8;
}
main #examination_area .examination_box .box .img img {
  display: block;
}
main #examination_area .examination_box .box.green {
  border: 2px solid #7ACE0D;
}
main #examination_area .examination_box .box.blue {
  border: 2px solid #43A1FF;
}
main #examination_area .examination_box:before {
  content: "";
  background: url(../img/bg_examination_bubble_left.gif) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 4.84375vw;
  height: 14.296875vw;
  position: absolute;
  top: -12vw;
  left: -10vw;
}
main #examination_area .examination_box:after {
  content: "";
  background: url(../img/bg_examination_bubble_right.gif) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 5.859375vw;
  height: 14.921875vw;
  position: absolute;
  top: 8vw;
  right: -10vw;
}
main #examination_area:before {
  content: "";
  background: url(../img/bg_examination.svg) no-repeat;
  background-size: 105%;
  background-position: center;
  width: 100%;
  height: 22vw;
  position: absolute;
  top: -16vw;
}
main #examination_area:after {
  content: "";
  background: url(../img/bg_examination_tooth.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 19.6875vw;
  height: 14.6875vw;
  position: absolute;
  bottom: 6vw;
  right: -2vw;
}
main #examination_area .banner {
  width: 33.59375vw;
  min-width: 300px;
  margin: 1.875vw auto 0;
}
main #six_area {
  position: relative;
  margin: 13.125vw 0 0;
  padding: 0 0 19.375vw;
  background: #FFFFB3;
}
main #six_area .sec_title {
  width: 27.34375vw;
  margin: 0 auto;
  position: relative;
}
main #six_area .sec_title:before {
  content: "";
  background: url(../img/bg_six_tree_01.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 29.921875vw;
  height: 17.109375vw;
  position: absolute;
  top: 0;
  left: -70vw;
  transition: left 0.6s ease-out;
}
main #six_area .sec_title.is-show:before {
  left: -37vw;
}
main #six_area .sec_title:after {
  content: "";
  background: url(../img/bg_six_bird_01.gif) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 6.796875vw;
  height: 6.796875vw;
  position: absolute;
  top: 1vw;
  right: -21vw;
}
main #six_area .six_box {
  position: relative;
  border: 2px solid #513209;
  border-radius: 30px;
  background: #fff;
  padding: 70px 50px;
  margin: 2.34375vw 0 3.90625vw;
}
main #six_area .six_box .box {
  position: relative;
}
main #six_area .six_box .box .title {
  font-size: clamp(20px, 1.2vw, 22px);
  color: #513209;
  font-weight: bold;
  padding: 0 3vw;
  position: relative;
}
main #six_area .six_box .box .title:before {
  position: absolute;
  left: 0;
  top: -0.3em;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(30px, 2.8vw, 34px);
}
main #six_area .six_box .box .six_inner_flex {
  display: flex;
  justify-content: space-between;
  position: relative;
}
main #six_area .six_box .box .six_inner_flex .text {
  width: 48%;
  padding: 0 0 0 40px;
}
main #six_area .six_box .box .six_inner_flex .text p {
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.8;
  margin: 1.015625vw 0 0;
}
main #six_area .six_box .box .six_inner_flex .text p .c_pink {
  color: #F45675;
}
main #six_area .six_box .box .six_inner_flex .text .btn {
  width: 80%;
  margin: 30px 0 0;
  border-radius: 20px;
  overflow: hidden;
}
main #six_area .six_box .box .six_inner_flex .text .btn a {
  display: block;
  width: 100%;
  color: #fff;
  text-align: center;
  padding: 8px 25px 8px 0;
  position: relative;
}
main #six_area .six_box .box .six_inner_flex .text .btn a:before {
  content: "";
  background: url(../img/icon_six_more.svg) no-repeat;
  background-size: 100%;
  width: 10px;
  height: 15px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
}
main #six_area .six_box .box .six_inner_flex .img {
  width: 48%;
  margin: -4vw 0 0;
  position: relative;
}
main #six_area .six_box .box + .box {
  margin: 6.640625vw 0 0;
}
main #six_area .six_box .box:nth-of-type(1) .title:before {
  content: "1.";
  color: #F45675;
}
main #six_area .six_box .box:nth-of-type(1) .img {
  margin: -2vw 0 0;
}
main #six_area .six_box .box:nth-of-type(1) .img:before {
  content: "";
  position: absolute;
  background: url(../img/six_img_01_icon.svg) no-repeat;
  background-size: 100%;
  width: 8.359375vw;
  height: 7.5vw;
  bottom: -1vw;
  left: 1vw;
}
main #six_area .six_box .box:nth-of-type(1) .btn a {
  background: #F45675;
}
main #six_area .six_box .box:nth-of-type(1):before {
  content: "";
  background: url(../img/bg_six_tree_02.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 29.921875vw;
  height: 17.109375vw;
  position: absolute;
  top: 0;
  right: -70vw;
  transition: right 0.6s ease-out;
  z-index: 1;
}
main #six_area .six_box .box:nth-of-type(1).is-show:before {
  right: -29vw;
}
main #six_area .six_box .box:nth-of-type(2) .title:before {
  content: "2.";
  color: #FFAA00;
}
main #six_area .six_box .box:nth-of-type(2) .img:before {
  content: "";
  position: absolute;
  background: url(../img/six_img_02_icon.svg) no-repeat;
  background-size: 100%;
  width: 5.78125vw;
  height: 9.140625vw;
  bottom: -1vw;
  right: -1vw;
}
main #six_area .six_box .box:nth-of-type(2) .btn a {
  background: #FFAA00;
}
main #six_area .six_box .box:nth-of-type(2):before {
  content: "";
  background: url(../img/bg_six_tree_03.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 29.921875vw;
  height: 13.125vw;
  position: absolute;
  top: 0;
  left: -70vw;
  transition: left 0.6s ease-out;
}
main #six_area .six_box .box:nth-of-type(2).is-show:before {
  left: -39vw;
}
main #six_area .six_box .box:nth-of-type(3) .title:before {
  content: "3.";
  color: #21B502;
}
main #six_area .six_box .box:nth-of-type(3) .img:before {
  content: "";
  position: absolute;
  background: url(../img/six_img_03_icon.svg) no-repeat;
  background-size: 100%;
  width: 8.984375vw;
  height: 7.890625vw;
  bottom: -1vw;
  right: -2vw;
}
main #six_area .six_box .box:nth-of-type(3) .btn a {
  background: #21B502;
}
main #six_area .six_box .box:nth-of-type(3):before {
  content: "";
  background: url(../img/bg_six_tree_04.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 29.921875vw;
  height: 17.734375vw;
  position: absolute;
  top: 0;
  right: -70vw;
  transition: right 0.6s ease-out;
}
main #six_area .six_box .box:nth-of-type(3).is-show:before {
  right: -35vw;
}
main #six_area .six_box .box:nth-of-type(4) .title:before {
  content: "4.";
  color: #43A1FF;
}
main #six_area .six_box .box:nth-of-type(4) .img:before {
  content: "";
  position: absolute;
  background: url(../img/six_img_04_icon.svg) no-repeat;
  background-size: 100%;
  width: 16.09375vw;
  height: 23.28125vw;
  bottom: -1vw;
  right: 4vw;
}
main #six_area .six_box .box:nth-of-type(4) .btn a {
  background: #43A1FF;
}
main #six_area .six_box .box:nth-of-type(4):before {
  content: "";
  background: url(../img/bg_six_tree_05.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 29.921875vw;
  height: 19.53125vw;
  position: absolute;
  top: 11vw;
  left: -70vw;
  transition: left 0.6s ease-out;
}
main #six_area .six_box .box:nth-of-type(4).is-show:before {
  left: -36vw;
}
main #six_area .six_box .box:nth-of-type(4):after {
  content: "";
  background: url(../img/bg_six_butterfly.gif) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 6.796875vw;
  height: 6.796875vw;
  position: absolute;
  top: -2vw;
  left: -16vw;
}
main #six_area .six_box .box:nth-of-type(5) .title:before {
  content: "5.";
  color: #FF717B;
}
main #six_area .six_box .box:nth-of-type(5) .img:before {
  content: "";
  position: absolute;
  background: url(../img/six_img_05_icon.svg) no-repeat;
  background-size: 100%;
  width: 6.875vw;
  height: 4.609375vw;
  top: -1vw;
  right: -2vw;
}
main #six_area .six_box .box:nth-of-type(5) .btn a {
  background: #FF717B;
}
main #six_area .six_box .box:nth-of-type(5):before {
  content: "";
  background: url(../img/bg_six_tree_06.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 29.921875vw;
  height: 13.125vw;
  position: absolute;
  top: 18vw;
  right: -70vw;
  transition: right 0.6s ease-out;
}
main #six_area .six_box .box:nth-of-type(5).is-show:before {
  right: -35vw;
}
main #six_area .six_box .box:nth-of-type(6) .title:before {
  content: "6.";
  color: #FFAA00;
}
main #six_area .six_box .box:nth-of-type(6) .img:before {
  content: "";
  position: absolute;
  background: url(../img/six_img_06_icon.svg) no-repeat;
  background-size: 100%;
  width: 22.03125vw;
  height: 20.15625vw;
  bottom: 3vw;
  right: 0vw;
}
main #six_area .six_box .box:nth-of-type(6) .btn a {
  background: #FFAA00;
}
main #six_area:before {
  content: "";
  background: url(../img/bg_six.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 100%;
  height: 234.375vw;
  position: absolute;
  top: -20vw;
}
main #six_area .point_list {
  width: 72.65625vw;
  min-width: 700px;
  margin: 50px auto 0;
  position: relative;
}
main #six_area .point_list ul {
  display: flex;
  justify-content: space-between;
}
main #six_area .point_list ul li {
  width: 23%;
  height: 16.40625vw;
  min-height: 210px;
  border: 2px solid #513209;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
main #six_area .point_list ul li .img {
  width: 100%;
  height: 100%;
}
main #six_area .point_list ul li .img img {
  width: 120%;
  height: 120%;
  -o-object-fit: cover;
     object-fit: cover;
}
main #six_area .point_list ul li .text {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #513209;
  color: #fff;
  text-align: center;
  font-size: clamp(14px, 1.2vw, 18px);
  padding: 8px 0;
}
main #six_area .point_list:before {
  content: "";
  background: url(../img/bg_six_bird_02.gif) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 6.796875vw;
  height: 6.796875vw;
  position: absolute;
  top: -11vw;
  left: -4vw;
}
main #message_area {
  position: relative;
}
main #message_area .sec_title {
  width: 28.125vw;
  min-width: 360px;
  margin: 0 25px 2.34375vw;
  position: relative;
}
main #message_area .sec_title:before {
  content: "";
  background: url(../img/bg_feature_baloon.gif) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 8.75vw;
  height: 14.53125vw;
  position: absolute;
  top: 3vw;
  left: -16vw;
}
main #message_area .sec_title:after {
  content: "";
  background: url(../img/bg_message_bird.gif) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 5.46875vw;
  height: 5.46875vw;
  position: absolute;
  top: 0vw;
  right: -34vw;
}
main #message_area .message_box {
  display: flex;
  justify-content: space-between;
  margin: 0 25px;
  position: relative;
}
main #message_area .message_box .text {
  width: 59%;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.8;
}
main #message_area .message_box .img {
  width: 34%;
  margin: -80px 0 0;
  position: relative;
}
main #message_area .message_box .img img {
  display: block;
}
main #message_area .message_box .img .name {
  margin: 1.171875vw 0 0;
  letter-spacing: 0.08em;
  font-size: clamp(18px, 1.2vw, 20px);
}
main #message_area .message_box .img .name .en {
  font-size: 13px;
  letter-spacing: normal;
}
main #message_area .message_box:before {
  content: "";
  background: url(../img/common/bg_cloud_bl.svg) no-repeat;
  background-size: 100%;
  width: 9.6875vw;
  height: 7.03125vw;
  position: absolute;
  right: -14vw;
  top: 0vw;
  margin: auto;
  -webkit-animation: floatCloud1 12s ease-in-out infinite;
          animation: floatCloud1 12s ease-in-out infinite;
}
main #message_area .message_box:after {
  content: "";
  background: url(../img/common/bg_cloud_bl.svg) no-repeat;
  background-size: 100%;
  width: 15.15625vw;
  height: 10.9375vw;
  position: absolute;
  right: -18vw;
  top: 12vw;
  margin: auto;
  -webkit-animation: floatCloud3 20s ease-in-out infinite;
          animation: floatCloud3 20s ease-in-out infinite;
}
main #message_area .banner {
  margin: 3.515625vw auto 0;
}
main #message_area:before {
  content: "";
  background: url(../img/bg_examination.svg) no-repeat;
  background-size: 105%;
  background-position: center;
  width: 100%;
  height: 22vw;
  position: absolute;
  top: -16vw;
}
main #message_area:after {
  content: "";
  background: url(../img/common/bg_cloud_bl.svg) no-repeat;
  background-size: 100%;
  width: 17.890625vw;
  height: 12.890625vw;
  position: absolute;
  left: 0vw;
  top: 29vw;
  margin: auto;
  -webkit-animation: floatCloud2 16s ease-in-out infinite;
          animation: floatCloud2 16s ease-in-out infinite;
}
main #movie_area {
  margin: 15vw auto 0;
  padding: 0 0 23.4375vw;
  background: #CFF5FF;
  position: relative;
}
main #movie_area .sec_title {
  width: 42.1875vw;
  margin: 0 auto;
  position: relative;
}
main #movie_area .sec_title:before {
  content: "";
  background: url(../img/bg_movie_baloon.gif) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 12vw;
  height: 22vw;
  position: absolute;
  top: -15vw;
  right: -16vw;
}
main #movie_area .sec_title:after {
  content: "";
  background: url(../img/bg_cloud_wh.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 10vw;
  height: 8vw;
  position: absolute;
  top: 1vw;
  left: -19vw;
  -webkit-animation: floatCloud1 12s ease-in-out infinite;
          animation: floatCloud1 12s ease-in-out infinite;
}
main #movie_area .youtube {
  width: 37.5vw;
  margin: 3.90625vw auto;
  aspect-ratio: 16/9;
  position: relative;
}
main #movie_area .youtube iframe {
  width: 100%;
  height: 100%;
  border: 2px solid #513209;
  border-radius: 15px;
  overflow: hidden;
}
main #movie_area .youtube:before {
  content: "";
  background: url(../img/bg_feature_tree_left.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 30vw;
  height: 15vw;
  position: absolute;
  top: 0;
  left: -70vw;
  transition: left 0.6s ease-out;
}
main #movie_area .youtube:after {
  content: "";
  background: url(../img/bg_feature_tree_right.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 30vw;
  height: 15vw;
  position: absolute;
  top: 15vw;
  right: -70vw;
  transition: right 0.6s ease-out;
}
main #movie_area .youtube.is-show:before {
  left: -43vw;
}
main #movie_area .youtube.is-show:after {
  right: -43vw;
}
main #movie_area #movie_slide {
  position: relative;
  /* 前へ次への矢印カスタマイズ */
}
main #movie_area #movie_slide .movie_slide {
  overflow: hidden;
}
main #movie_area #movie_slide .movie_slide .swiper-slide {
  border: 2px solid #513209;
  border-radius: 15px;
  overflow: hidden;
}
main #movie_area #movie_slide .movie_slide .swiper-slide img {
  display: block;
}
main #movie_area #movie_slide .swiper-button-prev {
  left: -60px;
}
main #movie_area #movie_slide .swiper-button-next {
  right: -60px;
}
main #movie_area #movie_slide .swiper-button-prev,
main #movie_area #movie_slide .swiper-button-next {
  height: 32px;
  width: 32px;
}
main #movie_area #movie_slide .swiper-button-prev::after,
main #movie_area #movie_slide .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 32px;
  margin: auto;
  width: 32px;
}
main #movie_area #movie_slide .swiper-button-prev::after {
  background-image: url(../img/movie_slider_prev.svg);
}
main #movie_area #movie_slide .swiper-button-next::after {
  background-image: url(../img/movie_slider_next.svg);
}
main #movie_area #movie_slide:before {
  content: "";
  background: url(../img/bg_cloud_wh.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 18vw;
  height: 17vw;
  position: absolute;
  top: -11vw;
  left: -13vw;
  -webkit-animation: floatCloud2 16s ease-in-out infinite;
          animation: floatCloud2 16s ease-in-out infinite;
}
main #movie_area #movie_slide:after {
  content: "";
  background: url(../img/bg_cloud_wh.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 14vw;
  height: 12vw;
  position: absolute;
  top: -23vw;
  right: -5vw;
  -webkit-animation: floatCloud3 20s ease-in-out infinite;
          animation: floatCloud3 20s ease-in-out infinite;
}
main #movie_area:before {
  content: "";
  background: url(../img/bg_movie_top.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 100%;
  height: 15vw;
  position: absolute;
  top: -12vw;
}
main #our_area {
  position: relative;
  padding: 0 0 13vw;
  background: #7ACE0D;
}
main #our_area .sec_title {
  width: 18.515625vw;
  position: relative;
  margin: 0 auto 1.5625vw;
}
main #our_area .sec_title.instagram {
  width: 12.1875vw;
  min-width: 156px;
}
main #our_area .sec_title.instagram:before {
  content: "";
  background: url(../img/icon_instagram.svg) no-repeat;
  background-size: 100%;
  width: 4.296875vw;
  height: 4.296875vw;
  position: absolute;
  left: -6vw;
  top: 0;
  bottom: 0;
  margin: auto;
}
main #our_area .sec_title.links {
  width: 12.1875vw;
  min-width: 156px;
}
main #our_area .sec_title.links:before {
  content: "";
  background: url(../img/icon_links.svg) no-repeat;
  background-size: 100%;
  width: 4.140625vw;
  height: 4.140625vw;
  position: absolute;
  right: -6vw;
  top: 0;
  bottom: 0;
  margin: auto;
}
main #our_area .clinic_list {
  position: relative;
  background: #fff;
  border: 2px solid #513209;
  border-radius: 15px;
  padding: 30px 40px;
  margin: 0 auto 7.265625vw;
  overflow: hidden;
}
main #our_area .clinic_list .clinic_txt {
  text-align: center;
  margin: 0 0 10px;
}
main #our_area .clinic_list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
main #our_area .clinic_list ul li {
  width: 32%;
  margin: 20px 0 0;
}
main #our_area .clinic_list ul li .access {
  background: #FF717B;
  color: #fff;
  width: 100%;
  padding: 6px 0;
  margin: 0 0 10px;
  font-size: clamp(10px, 1vw, 14px);
  text-align: center;
  position: relative;
  border-radius: 50px;
}
main #our_area .clinic_list ul li .access:before {
  content: "";
  background: url(../img/icon_clinic_fukidashi.svg) no-repeat;
  background-size: 100%;
  position: absolute;
  width: 7px;
  height: 7px;
  left: 35px;
  bottom: -5px;
}
main #our_area .clinic_list ul li a .title {
  color: #513209;
  text-align: center;
  position: relative;
  margin: 0 0 8px;
  font-size: 16px;
}
main #our_area .clinic_list ul li a .title:after {
  content: "";
  background: url(../img/icon_clinic_arrow.svg) no-repeat;
  background-size: 100%;
  width: 8px;
  height: 11px;
  margin: auto auto auto 10px;
  display: inline-block;
}
main #our_area .insta_list {
  position: relative;
  background: #fff;
  border: 2px solid #513209;
  border-radius: 15px;
  padding: 30px 40px;
  margin: 0 auto 7.265625vw;
  overflow: hidden;
}
main #our_area .insta_list .feed-powered-by-es-feed-img {
  display: none !important;
}
main #our_area .insta_list iframe {
  height: 52vw;
  min-height: 650px;
}
main #our_area .insta_list .btn {
  width: 180px;
  margin: 0 auto;
}
main #our_area .insta_list .btn a {
  display: block;
  width: 100%;
  border: 2px solid #513209;
  color: #513209;
  text-align: center;
  border-radius: 20px;
  padding: 4px 25px 4px 0;
  position: relative;
}
main #our_area .insta_list .btn a:before {
  content: "";
  background: url(../img/icon_insta_btn_arrow.svg) no-repeat;
  background-size: 100%;
  width: 9px;
  height: 12px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
}
.insta-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0;
  margin: 0 0 2rem 0;
}
.insta-container p {
  margin: 0;
}
.insta-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
main #our_area .links_list {
  position: relative;
  background: #fff;
  border: 2px solid #513209;
  border-radius: 15px;
  padding: 30px 40px;
  overflow: hidden;
}
main #our_area .links_list ul li {
  text-align: center;
}
main #our_area .links_list ul li a {
  font-size: clamp(14px, 4vw, 18px);
  color: #513209;
  text-decoration: underline;
}
main #our_area:before {
  content: "";
  background: url(../img/bg_our.svg) no-repeat;
  background-size: 110%;
  background-position: top;
  width: 110%;
  height: 190vw;
  position: absolute;
  top: -30vw;
  left: -10vw;
}
main #our_area:after {
  content: "";
  background: url(../img/bg_feature_butterfly.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 4.84375vw;
  height: 4.453125vw;
  position: absolute;
  top: 40vw;
  left: -8vw;
  -webkit-animation: flyButterfly 10s ease-in-out infinite;
          animation: flyButterfly 10s ease-in-out infinite;
  z-index: 1;
}

@media screen and (max-width: 769px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  main {
    padding: 0;
    overflow: hidden;
    margin: 0 auto;
  }
  main #mv {
    width: 100%;
    position: relative;
    padding: 0 0 13.3333333333vw;
    margin: 0 auto 13.3333333333vw;
  }
  main #mv .copy {
    writing-mode: vertical-rl;
    text-orientation: upright;
    position: absolute;
    left: 13vw;
    top: 7vw;
    z-index: 20;
  }
  main #mv .copy p {
    font-size: clamp(16px, 4.5vw, 20px);
  }
  main #mv .copy p span.sp {
    display: inline !important;
  }
  main #mv .copy p span.pc {
    display: none;
  }
  main #mv .copy p span.ten {
    font-family: "Yu Mincho", "Hiragino Mincho Pro", "MS PMincho", serif;
  }
  main #mv .mv_slide:before, main #mv .mv_slide:after {
    width: 26.4vw;
    height: 16.8vw;
    bottom: -6vw;
    z-index: 3;
  }
  main #mv .mv_slide:before {
    background: url(../img/mv_leaf_small_left.svg) no-repeat;
    background-size: 100%;
    left: -20vw;
    transition: left 1s ease-out;
  }
  main #mv .mv_slide:after {
    background: url(../img/mv_leaf_small_right.svg) no-repeat;
    background-size: 100%;
    right: -20vw;
    transition: right 1s ease-out;
  }
  main #mv .mv_slide.is-show:before {
    left: -11vw;
  }
  main #mv .mv_slide.is-show:after {
    right: -11vw;
  }
  main #mv:before, main #mv:after {
    width: 32.5333333333vw;
    height: 20.6666666667vw;
  }
  main #mv:before {
    background: url(../img/mv_leaf_large_left.svg) no-repeat;
    background-size: 100%;
    left: -20vw;
    transition: left 0.6s ease-out;
  }
  main #mv:after {
    background: url(../img/mv_leaf_large_right.svg) no-repeat;
    background-size: 100%;
    right: -20vw;
    transition: right 0.6s ease-out;
  }
  main #mv.is-show:before {
    left: 0;
  }
  main #mv.is-show:after {
    right: 0;
  }
  main .inner {
    width: 90.6666666667vw;
    min-width: unset;
    margin: 0 auto;
  }
  main #banner_area {
    margin: 0 auto 5.3333333333vw;
    position: relative;
  }
  main #banner_area .sec_title {
    width: 90.6666666667vw;
    position: relative;
    margin: 0 auto 10px;
  }
  main #banner_area ul {
    display: block;
  }
  main #banner_area ul li {
    width: 100%;
    margin: 0 auto 2vw;
  }
  main #banner_area:before {
    content: "";
    background: url(../img/bg_info_tooth.svg) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 18.8vw;
    height: 18.6666666667vw;
    position: absolute;
    bottom: -30vw;
    right: 12vw;
    z-index: 1;
    transition: top 0.6s ease-out;
  }
  main #banner_area.is-show:before {
    bottom: -23vw;
  }
  main #banner_area ul li .event_title{
  font-size: clamp(16px, 4.5vw, 20px);
  padding: 0 0 0.8vw;
  }
  main #info_area {
    position: relative;
    padding: 6.6666666667vw 0;
  }
  main #info_area .info_list {
    display: block;
    justify-content: space-between;
    position: relative;
  }
  main #info_area .info_list .info_box {
    width: 92%;
    padding: 2.6666666667vw 4vw;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  main #info_area .info_list .info_box .info_title {
    font-size: clamp(16px, 4.5vw, 20px);
    padding: 0 0 0.8vw;
  }
  main #info_area .info_list .info_box ul {
    padding: 4vw 0 0;
  }
  main #info_area .info_list .info_box ul li {
    position: relative;
    padding: 0 0 0 8.6666666667vw;
  }
  main #info_area .info_list .info_box ul li:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
  main #info_area .info_list .info_box ul li a {
    color: #774D19;
    font-weight: 600;
  }
  main #info_area .info_list .info_box ul li a .date {
    font-size: clamp(12px, 3.8vw, 14px);
  }
  main #info_area .info_list .info_box ul li a .title {
    font-size: clamp(14px, 4vw, 18px);
  }
  main #info_area .info_list .info_box ul li + li {
    margin-top: 2.6666666667vw;
  }
  main #info_area .info_list .info_box.news ul li:before {
    background: url(../img/icon_news_title.svg) no-repeat;
    background-size: 100%;
    width: 7.0666666667vw;
    height: 5.0666666667vw;
  }
  main #info_area .info_list .info_box.column {
    margin: 6.6666666667vw auto 0;
  }
  main #info_area .info_list .info_box.column ul li:before {
    background: url(../img/icon_column_title.svg) no-repeat;
    background-size: 100%;
    width: 6.4vw;
    height: 5.6vw;
  }
  main #info_area .info_list:before {
    display: none;
  }
  main #info_area:before {
    content: "";
    background: url(../img/common/bg_cloud_bl.svg) no-repeat;
    background-size: 100%;
    width: 30.5333333333vw;
    height: 22vw;
    bottom: 30vw;
    left: 4vw;
    -webkit-animation: floatCloud2 16s ease-in-out infinite;
            animation: floatCloud2 16s ease-in-out infinite;
  }
  main #info_area:after {
    content: "";
    background: url(../img/common/bg_cloud_bl.svg) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 22.1333333333vw;
    height: 16vw;
    bottom: 5vw;
    right: 6vw;
    -webkit-animation: floatCloud1 12s ease-in-out infinite;
            animation: floatCloud1 12s ease-in-out infinite;
  }
  .links_list {
    position: relative;
    background: #fff;
    border: 2px solid #513209;
    border-radius: 15px;
    padding: 30px 40px;
    overflow: hidden;
  }
  main #contents .sec_title{
    width: 20.6666666667vw;
    position: relative;
    margin: 0 auto 10px;
  }
  main #feature_area {
    margin: 15vw auto 0;
    padding: 5vw 0 40vw;
    background: #CFF5FF;
    position: relative;
  }
  main #feature_area .sec_title {
    width: 90.6666666667vw;
    position: relative;
    margin: 0 auto 50px;
  }
  main #feature_area .sec_title:before {
    content: "";
    background: url(../img/bg_feature_tree_left.svg) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 40vw;
    height: 25vw;
    position: absolute;
    top: -14vw;
    left: -70vw;
    transition: left 0.6s ease-out;
  }
  main #feature_area .sec_title:after {
    content: "";
    background: url(../img/bg_feature_tree_right.svg) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 40vw;
    height: 25vw;
    position: absolute;
    top: 9vw;
    right: -70vw;
    transition: right 0.6s ease-out;
  }
  main #feature_area .sec_title.is-show:before {
    left: -18vw;
  }
  main #feature_area .sec_title.is-show:after {
    right: -18vw;
  }
  main #feature_area .feature_box {
    position: relative;
    z-index: 1;
  }
  main #feature_area .feature_box .box {
    display: block;
    padding: 6.6666666667vw;
    position: relative;
  }
  main #feature_area .feature_box .box .text {
    width: 100%;
  }
  main #feature_area .feature_box .box .text .title {
    position: absolute;
    font-size: clamp(16px, 4.5vw, 20px);
    width: 85%;
    text-align: center;
    border: 2px solid #513209;
    border-radius: 40px;
    color: #fff;
    background: #7ACE0D;
    padding: 1.0666666667vw 1.6vw;
    top: -6.6666666667vw;
  }
  main #feature_area .feature_box .box .text p {
    font-size: clamp(14px, 4vw, 18px);
    line-height: 1.8;
  }
  main #feature_area .feature_box .box .text p .c_pink {
    color: #F45675;
  }
  main #feature_area .feature_box .box .img {
    width: 60%;
    margin: 4vw auto 0;
  }
  main #feature_area .feature_box .box:nth-of-type(1):before {
    content: "";
    background: url(../img/bg_feature_bird_left.gif) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 24vw;
    height: 28vw;
    position: absolute;
    top: -57vw;
    left: -4vw;
  }
  main #feature_area .feature_box .box:nth-of-type(1):after {
    content: "";
    background: url(../img/bg_feature_baloon.gif) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 24vw;
    height: 44vw;
    position: absolute;
    top: 117vw;
    right: -4vw;
  }
  main #feature_area .feature_box .box:nth-of-type(2) {
    flex-direction: row-reverse;
    margin: 10.6666666667vw auto 0;
  }
  main #feature_area .feature_box .box:nth-of-type(2) .text .title {
    background: #F45675;
  }
  main #feature_area .feature_box .box:nth-of-type(2) .img {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  main #feature_area .feature_box .box:nth-of-type(2) .img img {
    width: 48%;
  }
  main #feature_area .feature_box .box:nth-of-type(2) .img img + img {
    width: 48%;
    margin: 0;
    display: block;
  }
  main #feature_area .feature_box .box:nth-of-type(3) {
    margin: 10.6666666667vw auto 0;
  }
  main #feature_area .feature_box .box:nth-of-type(3) .text .title {
    background: #43A1FF;
  }
  main #feature_area .feature_box:before {
    display: none;
    content: "";
    background: url(../img/bg_feature_butterfly.svg) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 16.5333333333vw;
    height: 15.2vw;
    position: absolute;
    top: 105vw;
    left: -26vw;
    -webkit-animation: flyButterfly 10s ease-in-out infinite;
            animation: flyButterfly 10s ease-in-out infinite;
    z-index: 1;
  }
  main #feature_area .feature_box:after {
    content: "";
    background: url(../img/bg_feature_bee.svg) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 10.1333333333vw;
    height: 9.0666666667vw;
    position: absolute;
    bottom: -12vw;
    right: 44vw;
    -webkit-animation: flyBee 6s linear infinite;
            animation: flyBee 6s linear infinite;
    z-index: 1;
  }
  main #feature_area:before {
    content: "";
    background: url(../img/bg_feature_cloud_top.svg) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 100%;
    height: 43vw;
    position: absolute;
    top: -15vw;
  }
  main #feature_area:after {
    content: "";
    background: url(../img/bg_feature_green.svg) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 184%;
    height: 168vw;
    position: absolute;
    bottom: 0px;
    left: -5vw;
  }
  main #examination_area {
    padding: 0 0 32vw;
  }
  main #examination_area .sec_title {
    width: 24.6666666667vw;
    position: relative;
    margin: 0 auto 13.3333333333vw;
  }
  main #examination_area .examination_box {
    position: relative;
    display: block;
    width: 86%;
    margin: 0 auto;
  }
  main #examination_area .examination_box .box {
    width: 100%;
    padding: 3.2vw 2.6666666667vw;
  }
  main #examination_area .examination_box .box .title {
    width: 34.1333333333vw;
    position: absolute;
    top: -7vw;
    left: 0;
    right: 0;
    margin: auto;
  }
  main #examination_area .examination_box .box p {
    margin: 2.6666666667vw 0 0;
    font-size: clamp(12px, 3.8vw, 18px);
    line-height: 1.8;
  }
  main #examination_area .examination_box .box .img img {
    display: block;
  }
  main #examination_area .examination_box .box.green {
    border: 2px solid #7ACE0D;
  }
  main #examination_area .examination_box .box.blue {
    border: 2px solid #43A1FF;
    margin: 16vw auto 0;
  }
  main #examination_area .examination_box:before {
    content: "";
    background: url(../img/bg_examination_bubble_left.gif) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 8.2666666667vw;
    height: 24.4vw;
    position: absolute;
    top: -12vw;
    left: -10vw;
  }
  main #examination_area .examination_box:after {
    content: "";
    background: url(../img/bg_examination_bubble_right.gif) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 10vw;
    height: 25.4666666667vw;
    position: absolute;
    top: unset;
    bottom: -35vw;
    right: -2vw;
  }
  main #examination_area:before {
    content: "";
    background: url(../img/bg_examination.svg) no-repeat;
    background-size: 105%;
    background-position: center;
    width: 100%;
    height: 22vw;
    position: absolute;
    top: -16vw;
  }
  main #examination_area:after {
    content: "";
    background: url(../img/bg_examination_tooth.svg) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 33.6vw;
    height: 26.4vw;
    position: absolute;
    bottom: -4vw;
    right: -11vw;
  }
  main #examination_area .banner {
    width: 57.3333333333vw;
    min-width: 300px;
    margin: 3.2vw auto 0;
  }
  main #six_area {
    margin: 22.4vw 0 0;
    padding: 0 0 33.0666666667vw;
  }
  main #six_area .sec_title {
    width: 80vw;
    margin: 0 auto;
  }
  main #six_area .sec_title:before {
    content: "";
    background: url(../img/bg_six_tree_01.svg) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 51.0666666667vw;
    height: 29.2vw;
    position: absolute;
    top: -30vw;
    left: -70vw;
    transition: left 0.6s ease-out;
  }
  main #six_area .sec_title.is-show:before {
    left: -32vw;
  }
  main #six_area .sec_title:after {
    content: "";
    background: url(../img/bg_six_bird_01.gif) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 11.6vw;
    height: 11.6vw;
    position: absolute;
    top: -16vw;
    right: 0vw;
  }
  main #six_area .six_box {
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
  }
  main #six_area .six_box .box {
    display: block;
    position: relative;
    border: 2px solid #513209;
    border-radius: 30px;
    background: #fff;
    padding: 9.3333333333vw 6.6666666667vw;
    margin: 4vw 0 6.6666666667vw;
  }
  main #six_area .six_box .box .title {
    font-size: clamp(16px, 4.5vw, 20px);
    color: #513209;
    font-weight: bold;
    padding: 0 0 0 10.6666666667vw;
  }
  main #six_area .six_box .box .title:before {
    position: absolute;
    left: 1vw;
    top: -0.5em;
    font-weight: bold;
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(26px, 2.8vw, 34px);
  }
  main #six_area .six_box .box .six_inner_flex {
    flex-direction: column-reverse;
  }
  main #six_area .six_box .box .six_inner_flex .text {
    width: 100%;
    padding: 0;
  }
  main #six_area .six_box .box .six_inner_flex .text p {
    font-size: clamp(14px, 4vw, 18px);
    line-height: 1.8;
    margin: 1.7333333333vw 0 0;
  }
  main #six_area .six_box .box .six_inner_flex .text p .c_pink {
    color: #F45675;
  }
  main #six_area .six_box .box .six_inner_flex .text .btn {
    width: 80%;
    margin: 4vw auto 0;
  }
  main #six_area .six_box .box .six_inner_flex .text .btn a {
    display: block;
    width: 100%;
    color: #fff;
    text-align: center;
    padding: 8px 5px 8px 0;
    position: relative;
    font-size: 12px;
    font-size: clamp(14px, 4vw, 18px);
  }
  main #six_area .six_box .box .six_inner_flex .text .btn a:before {
    content: "";
    background: url(../img/icon_six_more.svg) no-repeat;
    background-size: 100%;
    width: 1.3333333333vw;
    height: 2vw;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
  }
  main #six_area .six_box .box .six_inner_flex .img {
    width: 80%;
    margin: 4vw auto;
    position: relative;
  }
  main #six_area .six_box .box + .box {
    margin: 6.640625vw 0 0;
  }
  main #six_area .six_box .box:nth-of-type(1) .title:before {
    content: "1.";
    color: #F45675;
  }
  main #six_area .six_box .box:nth-of-type(1) .img {
    margin: 4vw auto;
  }
  main #six_area .six_box .box:nth-of-type(1) .img:before {
    content: "";
    position: absolute;
    background: url(../img/six_img_01_icon.svg) no-repeat;
    background-size: 100%;
    width: 28.5333333333vw;
    height: 28.5333333333vw;
    bottom: -2vw;
    left: 1vw;
  }
  main #six_area .six_box .box:nth-of-type(1) .btn a {
    background: #F45675;
  }
  main #six_area .six_box .box:nth-of-type(1):before {
    content: "";
    background: url(../img/bg_six_tree_02.svg) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 51.0666666667vw;
    height: 29.2vw;
    position: absolute;
    top: 0;
    right: -70vw;
    transition: right 0.6s ease-out;
  }
  main #six_area .six_box .box:nth-of-type(1).is-show:before {
    right: -34vw;
  }
  main #six_area .six_box .box:nth-of-type(2) .title:before {
    content: "2.";
    color: #FFAA00;
  }
  main #six_area .six_box .box:nth-of-type(2) .img:before {
    content: "";
    position: absolute;
    background: url(../img/six_img_02_icon.svg) no-repeat;
    background-size: 100%;
    width: 19.7333333333vw;
    height: 31.2vw;
    bottom: -1vw;
    right: -1vw;
  }
  main #six_area .six_box .box:nth-of-type(2) .btn a {
    background: #FFAA00;
  }
  main #six_area .six_box .box:nth-of-type(2):before {
    content: "";
    background: url(../img/bg_six_tree_03.svg) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 51.0666666667vw;
    height: 22.4vw;
    position: absolute;
    top: -17vw;
    left: -70vw;
    transition: left 0.6s ease-out;
  }
  main #six_area .six_box .box:nth-of-type(2).is-show:before {
    left: -34vw;
  }
  main #six_area .six_box .box:nth-of-type(3) .title:before {
    content: "3.";
    color: #21B502;
  }
  main #six_area .six_box .box:nth-of-type(3) .img:before {
    content: "";
    position: absolute;
    background: url(../img/six_img_03_icon.svg) no-repeat;
    background-size: 100%;
    width: 30.6666666667vw;
    height: 26.9333333333vw;
    bottom: -1vw;
    right: -2vw;
  }
  main #six_area .six_box .box:nth-of-type(3) .btn a {
    background: #21B502;
  }
  main #six_area .six_box .box:nth-of-type(3):before {
    content: "";
    background: url(../img/bg_six_tree_04.svg) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 51.0666666667vw;
    height: 30.2666666667vw;
    position: absolute;
    top: -13vw;
    right: -70vw;
    transition: right 0.6s ease-out;
  }
  main #six_area .six_box .box:nth-of-type(3).is-show:before {
    right: -21vw;
  }
  main #six_area .six_box .box:nth-of-type(4) .title:before {
    content: "4.";
    color: #43A1FF;
  }
  main #six_area .six_box .box:nth-of-type(4) .img:before {
    content: "";
    position: absolute;
    background: url(../img/six_img_04_icon.svg) no-repeat;
    background-size: 100%;
    width: 40.933333vw;
    height: 60.466667vw;
    bottom: -1vw;
    right: 4vw;
  }
  main #six_area .six_box .box:nth-of-type(4) .btn a {
    background: #43A1FF;
  }
  main #six_area .six_box .box:nth-of-type(4):before {
    content: "";
    background: url(../img/bg_six_tree_05.svg) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 51.0666666667vw;
    height: 33.3333333333vw;
    position: absolute;
    top: 51vw;
    left: -70vw;
    transition: left 0.6s ease-out;
    z-index: 1;
  }
  main #six_area .six_box .box:nth-of-type(4).is-show:before {
    left: -28vw;
  }
  main #six_area .six_box .box:nth-of-type(4):after {
    content: "";
    background: url(../img/bg_six_butterfly.gif) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 11.6vw;
    height: 11.6vw;
    position: absolute;
    top: -10vw;
    left: 0vw;
  }
  main #six_area .six_box .box:nth-of-type(5) .title:before {
    content: "5.";
    color: #FF717B;
  }
  main #six_area .six_box .box:nth-of-type(5) .img:before {
    content: "";
    position: absolute;
    background: url(../img/six_img_05_icon.svg) no-repeat;
    background-size: 100%;
    width: 23.4666666667vw;
    height: 17.0666666667vw;
    top: -1vw;
    right: -2vw;
  }
  main #six_area .six_box .box:nth-of-type(5) .btn a {
    background: #FF717B;
  }
  main #six_area .six_box .box:nth-of-type(5):before {
    content: "";
    background: url(../img/bg_six_tree_06.svg) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 51.0666666667vw;
    height: 22.4vw;
    position: absolute;
    top: -12vw;
    right: -70vw;
    transition: right 0.6s ease-out;
  }
  main #six_area .six_box .box:nth-of-type(5).is-show:before {
    right: -27vw;
  }
  main #six_area .six_box .box:nth-of-type(6) .title:before {
    content: "6.";
    color: #FFAA00;
  }
  main #six_area .six_box .box:nth-of-type(6) .img:before {
    content: "";
    position: absolute;
    background: url(../img/six_img_06_icon.svg) no-repeat;
    background-size: 100%;
    width: 55.2vw;
    height: 50.8vw;
    bottom: 3vw;
    right: 6vw;
  }
  main #six_area .six_box .box:nth-of-type(6) .btn a {
    background: #FFAA00;
  }
  main #six_area:before {
    content: "";
    background: url(../img/bg_six.svg) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 100%;
    height: 400vw;
    position: absolute;
    top: -120vw;
  }
  main #six_area .point_list {
    width: 90.6666666667vw;
    min-width: unset;
    margin: 6.6666666667vw auto 0;
  }
  main #six_area .point_list ul {
    flex-wrap: wrap;
  }
  main #six_area .point_list ul li {
    width: 48%;
    height: 28vw;
    min-height: 150px;
    margin: 6.6666666667vw 0 0;
  }
  main #six_area .point_list ul li .text {
    font-size: clamp(12px, 1.2vw, 18px);
  }
  main #six_area .point_list:before {
    content: "";
    background: url(../img/bg_six_bird_02.gif) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 11.6vw;
    height: 11.6vw;
    position: absolute;
    top: -15vw;
    left: -4vw;
  }
  main #message_area {
    padding: 7vw 0 0;
  }
  main #message_area .sec_title {
    width: 74vw;
    min-width: unset;
    margin: 0 25px 4vw;
    position: relative;
  }
  main #message_area .sec_title:before {
    content: "";
    background: url(../img/bg_feature_baloon.gif) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 29.8666666667vw;
    height: 49.6vw;
    position: absolute;
    top: -33vw;
    left: 57vw;
  }
  main #message_area .sec_title:after {
    content: "";
    background: url(../img/bg_message_bird.gif) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 9.3333333333vw;
    height: 9.3333333333vw;
    position: absolute;
    top: 0vw;
    right: -34vw;
  }
  main #message_area .message_box {
    display: block;
    justify-content: space-between;
    margin: 0 25px;
    position: relative;
  }
  main #message_area .message_box .text {
    width: 100%;
    font-size: clamp(14px, 4vw, 18px);
    line-height: 1.8;
    position: relative;
    z-index: 1;
  }
  main #message_area .message_box .img {
    width: 60%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  main #message_area .message_box .img img {
    display: block;
  }
  main #message_area .message_box .img .name {
    margin: 2vw 0 0;
    letter-spacing: 0.08em;
    font-size: clamp(12px, 1.2vw, 20px);
  }
  main #message_area .message_box .img .name .en {
    font-size: 12px;
    letter-spacing: normal;
  }
  main #message_area .message_box:before {
    content: "";
    background: url(../img/common/bg_cloud_bl.svg) no-repeat;
    background-size: 100%;
    width: 16.5333333333vw;
    height: 12vw;
    position: absolute;
    right: 14vw;
    top: 0vw;
    margin: auto;
    -webkit-animation: floatCloud1 12s ease-in-out infinite;
            animation: floatCloud1 12s ease-in-out infinite;
  }
  main #message_area .message_box:after {
    content: "";
    background: url(../img/common/bg_cloud_bl.svg) no-repeat;
    background-size: 100%;
    width: 25.8666666667vw;
    height: 18.6666666667vw;
    position: absolute;
    left: 10vw;
    top: 119vw;
    margin: auto;
    -webkit-animation: floatCloud3 20s ease-in-out infinite;
            animation: floatCloud3 20s ease-in-out infinite;
  }
  main #message_area .banner {
    margin: 3.515625vw auto 0;
  }
  main #message_area:before {
    content: "";
    background: url(../img/bg_examination.svg) no-repeat;
    background-size: 105%;
    background-position: center;
    width: 100%;
    height: 22vw;
    position: absolute;
    top: -16vw;
  }
  main #message_area:after {
    content: "";
    background: url(../img/common/bg_cloud_bl.svg) no-repeat;
    background-size: 100%;
    width: 30.5333333333vw;
    height: 22vw;
    position: absolute;
    left: 10vw;
    top: 79vw;
    margin: auto;
    -webkit-animation: floatCloud2 16s ease-in-out infinite;
            animation: floatCloud2 16s ease-in-out infinite;
  }
  main #movie_area {
    margin: 15vw auto 0;
    padding: 0 0 40vw;
  }
  main #movie_area .sec_title {
    width: 90.6666666667vw;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  main #movie_area .sec_title:before {
    content: "";
    background: url(../img/bg_movie_baloon.gif) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 12vw;
    height: 22vw;
    position: absolute;
    top: -15vw;
    right: -16vw;
  }
  main #movie_area .sec_title:after {
    content: "";
    background: url(../img/bg_cloud_wh.svg) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 10vw;
    height: 8vw;
    position: absolute;
    top: 1vw;
    left: -19vw;
    -webkit-animation: floatCloud1 12s ease-in-out infinite;
            animation: floatCloud1 12s ease-in-out infinite;
  }
  main #movie_area .youtube {
    width: 80vw;
    margin: 6.6666666667vw auto;
    aspect-ratio: 16/9;
    position: relative;
  }
  main #movie_area .youtube:before {
    content: "";
    background: url(../img/bg_feature_tree_left.svg) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 30vw;
    height: 15vw;
    position: absolute;
    top: 0;
    left: -70vw;
    transition: left 0.6s ease-out;
  }
  main #movie_area .youtube:after {
    content: "";
    background: url(../img/bg_feature_tree_right.svg) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 30vw;
    height: 15vw;
    position: absolute;
    top: 15vw;
    right: -70vw;
    transition: right 0.6s ease-out;
  }
  main #movie_area .youtube.is-show:before {
    left: -28vw;
  }
  main #movie_area .youtube.is-show:after {
    right: -30vw;
  }
  main #movie_area #movie_slide {
    width: 80%;
    margin: auto;
    /* 前へ次への矢印カスタマイズ */
  }
  main #movie_area #movie_slide .movie_slide {
    overflow: hidden;
  }
  main #movie_area #movie_slide .movie_slide .swiper-slide {
    border: 2px solid #513209;
    border-radius: 10px;
    overflow: hidden;
  }
  main #movie_area #movie_slide .movie_slide .swiper-slide img {
    display: block;
  }
  main #movie_area #movie_slide .swiper-button-prev {
    left: -11vw;
  }
  main #movie_area #movie_slide .swiper-button-next {
    right: -11vw;
  }
  main #movie_area #movie_slide .swiper-button-prev,
main #movie_area #movie_slide .swiper-button-next {
    height: 11vw;
    width: 10vw;
  }
  main #movie_area #movie_slide .swiper-button-prev::after,
main #movie_area #movie_slide .swiper-button-next::after {
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 16px;
    margin: auto;
    width: 16px;
  }
  main #movie_area #movie_slide .swiper-button-prev::after {
    background-image: url(../img/movie_slider_prev.svg);
  }
  main #movie_area #movie_slide .swiper-button-next::after {
    background-image: url(../img/movie_slider_next.svg);
  }
  main #movie_area #movie_slide:before {
    content: "";
    background: url(../img/bg_cloud_wh.svg) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 18vw;
    height: 17vw;
    position: absolute;
    top: -11vw;
    left: -13vw;
    -webkit-animation: floatCloud2 16s ease-in-out infinite;
            animation: floatCloud2 16s ease-in-out infinite;
  }
  main #movie_area #movie_slide:after {
    content: "";
    background: url(../img/bg_cloud_wh.svg) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 14vw;
    height: 12vw;
    position: absolute;
    top: -23vw;
    right: -5vw;
    -webkit-animation: floatCloud3 20s ease-in-out infinite;
            animation: floatCloud3 20s ease-in-out infinite;
  }
  main #movie_area:before {
    content: "";
    background: url(../img/bg_movie_top.svg) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 100%;
    height: 15vw;
    position: absolute;
    top: -12vw;
  }
  main #our_area {
    position: relative;
    padding: 0 0 13vw;
  }
  main #our_area .sec_title {
    position: relative;
    width: 40vw;
    margin: 0 auto 2.6666666667vw;
  }
  main #our_area .sec_title.instagram {
    width: 40vw;
    min-width: unset;
  }
  main #our_area .sec_title.instagram:before {
    content: "";
    background: url(../img/icon_instagram.svg) no-repeat;
    background-size: 100%;
    width: 7.3333333333vw;
    height: 7.3333333333vw;
    position: absolute;
    left: -9vw;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  main #our_area .sec_title.links {
    width: 40vw;
    min-width: unset;
  }
  main #our_area .sec_title.links:before {
    content: "";
    background: url(../img/icon_links.svg) no-repeat;
    background-size: 100%;
    width: 7.0666666667vw;
    height: 7.0666666667vw;
    position: absolute;
    right: -9vw;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  main #our_area .clinic_list {
    position: relative;
    background: #fff;
    border: 2px solid #513209;
    border-radius: 15px;
    padding: 4vw;
    margin: 0 auto 12.4vw;
    overflow: hidden;
  }
  main #our_area .clinic_list .clinic_txt {
    text-align: center;
    margin: 0 0 10px;
    font-size: clamp(14px, 4vw, 18px);
  }
  main #our_area .clinic_list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  main #our_area .clinic_list ul li {
    width: 48%;
    margin: 2.6666666667vw 0 0;
  }
  main #our_area .clinic_list ul li .access {
    background: #FF717B;
    color: #fff;
    width: 100%;
    padding: 6px 0;
    margin: 0 0 10px;
    font-size: clamp(8px, 1vw, 14px);
    text-align: center;
    position: relative;
    border-radius: 50px;
  }
  main #our_area .clinic_list ul li .access:before {
    content: "";
    background: url(../img/icon_clinic_fukidashi.svg) no-repeat;
    background-size: 100%;
    position: absolute;
    width: 7px;
    height: 7px;
    left: 35px;
    bottom: -5px;
  }
  main #our_area .clinic_list ul li a .title {
    color: #513209;
    text-align: center;
    position: relative;
    margin: 0 0 8px;
    font-size: clamp(12px, 3.8vw, 14px);
  }
  main #our_area .clinic_list ul li a .title:after {
    content: "";
    background: url(../img/icon_clinic_arrow.svg) no-repeat;
    background-size: 100%;
    width: 8px;
    height: 11px;
    margin: auto auto auto 10px;
    display: inline-block;
  }
  main #our_area .insta_list {
    position: relative;
    background: #fff;
    border: 2px solid #513209;
    border-radius: 15px;
    padding: 30px 40px;
    margin: 0 auto 7.265625vw;
    overflow: hidden;
  }
  main #our_area .insta_list iframe {
    height: 70vw;
    min-height: unset;
  }
  main #our_area .insta_list .btn {
    width: 180px;
    margin: 30px auto 0;
  }
  main #our_area .insta_list .btn a {
    display: block;
    width: 100%;
    border: 2px solid #513209;
    color: #513209;
    text-align: center;
    border-radius: 20px;
    padding: 4px 25px 4px 0;
    position: relative;
  }
  main #our_area .insta_list .btn a:before {
    content: "";
    background: url(../img/icon_insta_btn_arrow.svg) no-repeat;
    background-size: 100%;
    width: 9px;
    height: 12px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
  }
  main #our_area .links_list {
    position: relative;
    background: #fff;
    border: 2px solid #513209;
    border-radius: 15px;
    padding: 30px 40px;
    overflow: hidden;
  }
  main #our_area:before {
    content: "";
    background: url(../img/bg_our.svg) no-repeat;
    background-size: 110%;
    background-position: top;
    width: 110%;
    height: 190vw;
    position: absolute;
    top: -30vw;
    left: -10vw;
  }
  main #our_area:after {
    content: "";
    display: none;
  }
  .page-top {
    position: fixed;
    bottom: 120px;
    right: 3vw;
    width: 60px;
    height: 60px;
    z-index: 999;

    /* 最初は非表示 */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  /* スクロールして300pxを超えたら表示される */
  .page-top.active {
    opacity: 1;
    pointer-events: auto;
  }
  /* ボタンの中身（画像）中央寄せ） */
  .page-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    transition: 0.3s;
  }
}
/*# sourceMappingURL=top.css.map */