@charset "UTF-8";

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: "Noto Serif JP", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #333;
  line-height: 2;
  height: 100%;
  letter-spacing: 1px;
  min-width: 1150px;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
    min-width: 0;
    width: 100%;
  }
}

a {
  text-decoration: none;
  cursor: pointer;
  color: blue;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  word-wrap: break-word;
}

a:hover {
  opacity: 0.7;
}

ul,
li {
  list-style: none;
}

img {
  vertical-align: bottom;
  max-width: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
  font-family: inherit;
}

textarea {
  font-family: inherit;
}

main {
  display: block;
  overflow: hidden;
}

small {
  font-size: 90%;
}

.scroll-space {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 300px;
  height: 1600px;
  color: #fff;
  overflow: hidden;
}

.fadein {
  opacity: 0;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}

.fadein.fadein-left {
  -webkit-transform: translate(-30px, 0);
  transform: translate(-30px, 0);
}

.fadein.fadein-right {
  -webkit-transform: translate(30px, 0);
  transform: translate(30px, 0);
}

.fadein.fadein-up {
  -webkit-transform: translate(0, -30px);
  transform: translate(0, -30px);
}

.fadein.fadein-bottom {
  -webkit-transform: translate(0, 30px);
  transform: translate(0, 30px);
}

.fadein.scrollin {
  opacity: 1 !important;
  -webkit-transform: translate(0, 0) !important;
  transform: translate(0, 0) !important;
}

.top-feature.fadein {
  -webkit-transform: none !important;
  transform: none !important;
}

@-webkit-keyframes fadeSlideUp {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -40%);
    transform: translate(-50%, -40%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -40%);
    transform: translate(-50%, -40%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

@-webkit-keyframes fadeInDelay {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDelay {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.low #mv .ttl {
  /* 既存のスタイルそのままに */
  -webkit-animation: fadeSlideUp 1.2s ease-out forwards;
  animation: fadeSlideUp 1.2s ease-out forwards;
  opacity: 0;
  /* 初期状態 */
}

.low #mv .ttl span {
  -webkit-animation: fadeInDelay 1.2s ease-out 0.6s forwards;
  animation: fadeInDelay 1.2s ease-out 0.6s forwards;
  opacity: 0;
  /* 初期状態 */
}

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

  共通

============================================================================*/
/*----------パディング----------*/
/* 上下 */
.u-py-xs {
  padding-top: 20px;
  padding-bottom: 20px;
}

.u-py-sm {
  padding-top: 40px;
  padding-bottom: 40px;
}

.u-py-md {
  padding-top: 60px;
  padding-bottom: 60px;
}

.u-py-lg {
  padding-top: 80px;
  padding-bottom: 80px;
}

.u-py-xl {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .u-py-xs {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 768px) {
  .u-py-sm {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .u-py-md {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  .u-py-lg {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  .u-py-xl {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

/* 上 */
.u-pt-none {
  padding-top: 0 !important;
}

.u-pt-xs {
  padding-top: 20px;
}

.u-pt-sm {
  padding-top: 40px;
}

.u-pt-md {
  padding-top: 60px;
}

.u-pt-lg {
  padding-top: 80px;
}

.u-pt-xl {
  padding-top: 100px;
}

@media screen and (max-width: 768px) {
  .u-pt-xs {
    padding-top: 10px;
  }
}

@media screen and (max-width: 768px) {
  .u-pt-sm {
    padding-top: 20px;
  }
}

@media screen and (max-width: 768px) {
  .u-pt-md {
    padding-top: 30px;
  }
}

@media screen and (max-width: 768px) {
  .u-pt-lg {
    padding-top: 40px;
  }
}

@media screen and (max-width: 768px) {
  .u-pt-xl {
    padding-top: 50px;
  }
}

/* 下 */
.u-pb-none {
  padding-bottom: 0 !important;
}

.u-pb-xs {
  padding-bottom: 20px;
}

.u-pb-sm {
  padding-bottom: 40px;
}

.u-pb-md {
  padding-bottom: 60px;
}

.u-pb-lg {
  padding-bottom: 80px;
}

.u-pb-xl {
  padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .u-pb-xs {
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .u-pb-sm {
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  .u-pb-md {
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  .u-pb-lg {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 768px) {
  .u-pb-xl {
    padding-bottom: 60px;
  }
}

/*----------マージン----------*/
/* 上下 */
.u-my-xs {
  margin-top: 20px;
  margin-bottom: 20px;
}

.u-my-sm {
  margin-top: 40px;
  margin-bottom: 40px;
}

.u-my-md {
  margin-top: 60px;
  margin-bottom: 60px;
}

.u-my-lg {
  margin-top: 80px;
  margin-bottom: 80px;
}

.u-my-xl {
  margin-top: 120px;
  margin-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .u-my-xs {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .u-my-sm {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  .u-my-md {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  .u-my-lg {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 768px) {
  .u-my-xl {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

/* 上 */
.u-mt-none {
  margin-top: 0 !important;
}

.u-mt-xs {
  margin-top: 20px;
}

.u-mt-sm {
  margin-top: 40px;
}

.u-mt-md {
  margin-top: 60px;
}

.u-mt-lg {
  margin-top: 80px;
}

.u-mt-xl {
  margin-top: 100px;
}

@media screen and (max-width: 768px) {
  .u-mt-xs {
    margin-top: 20px;
  }
}

@media screen and (max-width: 768px) {
  .u-mt-sm {
    margin-top: 30px;
  }
}

@media screen and (max-width: 768px) {
  .u-mt-md {
    margin-top: 40px;
  }
}

@media screen and (max-width: 768px) {
  .u-mt-lg {
    margin-top: 50px;
  }
}

@media screen and (max-width: 768px) {
  .u-mt-xl {
    margin-top: 60px;
  }
}

/* 下 */
.u-mb-none {
  margin-bottom: 0 !important;
}

.u-mb-xs {
  margin-bottom: 20px;
}

.u-mb-sm {
  margin-bottom: 40px;
}

.u-mb-md {
  margin-bottom: 60px;
}

.u-mb-lg {
  margin-bottom: 80px;
}

.u-mb-xl {
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .u-mb-xs {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .u-mb-sm {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  .u-mb-md {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  .u-mb-lg {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 768px) {
  .u-mb-xl {
    margin-bottom: 60px;
  }
}

/*----------カラー----------*/
.red {
  color: #ff0000;
}

.blue {
  color: #1e00ff;
}

.orange {
  color: #F7581E;
}

.gold {
  color: #8A7733;
}

.pink {
  color: #FF7298;
}

/*----------マーカー下線----------*/
.c-marker {
  display: inline;
  background-color: #333;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #333));
  background: -webkit-linear-gradient(transparent 60%, #333 60%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), to(#333));
  background: -webkit-linear-gradient(transparent 60%, #333);
  background: linear-gradient(transparent 60%, #333);
}

/*----------クリアフィックス----------*/
.u-clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.u-clearfix .img {
  max-width: 33%;
  width: 100%;
  float: right;
  margin-left: 40px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .u-clearfix .img {
    float: none;
    max-width: 100%;
    margin-left: 0;
  }
}

.u-clearfix .txt {
  text-align: left;
  margin-right: auto;
  margin-left: auto;
}

/*----------グリッド----------*/
.col2,
.col2-col2,
.col3,
.col3-col2,
.col4,
.col4-col2 {
  display: -ms-grid;
  display: grid;
}

/* 2つ並び */
.col2,
.col2-col2 {
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/*3つ並び */
.col3,
.col3-col2 {
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* 4つ並び */
.col4,
.col4-col2 {
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 20;
}

/*----------フレックス----------*/
/* 画像大きめ・画像左 */
.flex01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .flex01 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.flex01 .txt {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}

.flex01 .img {
  margin: 0 4% 0 0;
  width: 40%;
}

@media screen and (max-width: 767px) {
  .flex01 .img {
    width: 100%;
    margin: 20px 0 0 0;
  }
}

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

/* 画像大きめ・画像右 */
.flex02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .flex02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.flex02 .txt {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}

.flex02 .img {
  margin: 0 0 0 4%;
  width: 40%;
}

@media screen and (max-width: 767px) {
  .flex02 .img {
    margin: 20px 0 0 0;
    width: 100%;
  }
}

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

/* 画像小さめ・画像左 */
.flex03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .flex03 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.flex03 .txt {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}

.flex03 .img {
  margin: 0 3% 0 0;
  width: 30%;
}

@media screen and (max-width: 767px) {
  .flex03 .img {
    margin: 20px 0 0 0;
    width: 100%;
  }
}

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

/* 画像小さめ・画像右 */
.flex04 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .flex04 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.flex04 .txt {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}

.flex04 .img {
  margin: 0 0 0 3%;
  width: 30%;
}

@media screen and (max-width: 767px) {
  .flex04 .img {
    margin: 20px 0 0 0;
    width: 100%;
  }
}

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

/*----------ラッパー----------*/
/* 幅1000px */
.wrapper-xs {
  max-width: 960px;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

/* 幅1080px */
.wrapper-sm {
  max-width: 1120px;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

/* 幅1160px */
.wrapper-md {
  max-width: 1200px;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

/* 幅1240px */
.wrapper-lg {
  max-width: 1280px;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

/* 幅1320px */
.wrapper-xl {
  max-width: 1360px;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

/*----------リスト----------*/
/* 点のみ */
.list01 {
  list-style: none;
}

.list01 li {
  line-height: 2;
}

.list01 li::before {
  content: "●";
  color: #333;
  font-size: 0.5em;
  margin-right: 10px;
  vertical-align: middle;
  padding-bottom: 3px;
}

/*----------下線----------*/
.list02 {
  margin: 10px 0;
  border-width: 0 1px 1px;
}

.list02 li {
  margin: 0;
  border-bottom: 1px dotted #333;
  list-style-type: none;
}

.list02 p:last-of-type {
  margin-bottom: 0;
}

/*----------点と背景----------*/
.list03 {
  margin: 0 0 15px;
  margin-bottom: 27px;
  padding: 20px 20px 12px;
  background-color: #ccc;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.list03:after {
  display: block;
  clear: both;
  content: "";
}

.list03 li {
  position: relative;
  float: left;
  margin-bottom: 8px;
  padding-left: 0.9em;
  padding-right: 4%;
  list-style-type: none;
}

.list03 li:before {
  display: block;
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #333;
  border: 1px solid #333;
  border-radius: 50%;
}

.list03 p:last-of-type {
  margin-bottom: 0;
}

/*----------点と枠線----------*/
.list04 {
  margin: 0 0 15px;
  margin-bottom: 27px;
  padding: 20px 20px 12px;
  border: solid 4px #ccc;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.list04:after {
  display: block;
  clear: both;
  content: "";
}

.list04 li {
  position: relative;
  float: left;
  margin-bottom: 8px;
  padding-left: 0.9em;
  padding-right: 4%;
  list-style-type: none;
}

.list04 li:before {
  display: block;
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #333;
  border: 1px solid #333;
  border-radius: 50%;
}

.list04 p:last-of-type {
  margin-bottom: 0;
}

/*チェックと背景*/
.list05 {
  padding: 35px 10px 20px 45px;
  background-color: #fff;
  z-index: 1;
  position: inherit;
}

@media screen and (max-width: 768px) {
  .list05 {
    padding: 20px 20px 20px 25px;
  }
}

.list05:after {
  display: block;
  clear: both;
  content: "";
}

.list05 li {
  position: relative;
  float: left;
  margin-right: 5%;
  margin-bottom: 20px;
  margin-left: 22px;
  border-bottom: 1px dotted #cdcdcd;
}

@media screen and (max-width: 768px) {
  .list05 li {
    margin-bottom: 10px;
  }
}

.list05 li:before {
  display: block;
  position: absolute;
  top: 7px;
  left: -30px;
  width: 24px;
  height: 24px;
  background-image: url(../images/common/check.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  content: "";
}

@media screen and (max-width: 768px) {
  .list05 li:before {
    width: 14px;
    height: 14px;
    left: -20px;
  }
}

/*----------囲み枠----------*/
/*背景のみ*/
.well01 {
  padding: 40px;
  background: #ECECEC;
  word-wrap: break-word;
  position: relative;
}

.well01::before {
  content: "";
  background: rgba(247, 88, 30, 0.0901960784);
  width: 300px;
  height: 200px;
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

@media screen and (max-width: 768px) {
  .well01 {
    padding: 20px;
  }
}

.well01 h3 {
  text-align: center;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 15px;
  letter-spacing: 3px;
}

@media screen and (max-width: 768px) {
  .well01 h3 {
    font-size: 21px;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }
}

.well01 h3+p {
  text-align: center;
  margin-bottom: 20px;
}

/*枠線*/
.well02 {
  padding: 40px;
  border: 4px solid #ccc;
  background: #fff;
  word-wrap: break-word;
}

@media screen and (max-width: 768px) {
  .well02 {
    padding: 20px;
  }
}

/*----------テーブル----------*/
.table01 {
  width: 100%;
  border: 1px solid #ddd;
  border-spacing: 0;
  border-collapse: collapse;
  line-height: 1.8;
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .table01 {
    font-size: 0.875rem;
  }
}

.table01 thead tr th {
  background-color: #212630;
  border: 1px solid #ddd;
  color: #fff;
  padding: 12px 20px;
  text-align: center;
  vertical-align: middle;
  font-weight: 500;
}

.table01 tbody th,
.table01 tbody td {
  border: 1px solid #ddd;
  vertical-align: middle;
}

.table01 tbody th {
  background-color: #212630;
  color: #fff;
  font-weight: normal;
  padding: 12px 20px;
  text-align: center;
}

.table01 tbody td {
  text-align: left;
  padding: 15px 15px;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .table01 thead tr th {
    padding: 10px;
  }

  .table01 tbody th {
    padding: 8px 10px;
  }

  .table01 tbody td {
    padding: 8px 15px;
  }
}

/*----------流れ----------*/
.flow01 {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.flow01 h4 {
  color: #212630;
  font-size: 26px !important;
  margin-bottom: 10px;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .flow01 h4 {
    font-size: 20px !important;
    margin-bottom: 0;
  }
}

.flow01 {
  margin-top: 30px;
}

.flow01 .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-bottom: 50px;
  position: relative;
}

.flow01 .item::after {
  content: "";
  position: absolute;
  left: 43px;
  top: 0;
  height: 100%;
  width: 2px;
  z-index: 0;
  background: url(../images/common/dot.png) repeat-y left top;
  background-size: 100% auto;
}

@media screen and (max-width: 768px) {
  .flow01 .item::after {
    left: 28px;
  }
}

.flow01 .item.last::after {
  display: none;
}

.flow01 .item.last {
  padding-bottom: 0;
}

.flow01 .item .step {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  background: #212630;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 1;
  outline: 1px solid rgba(255, 255, 255, 0.2941176471);
  outline-offset: -5px;
}

.flow01 .item .step em {
  color: #fff;
  font-size: 2.8rem;
  padding-top: 16px;
  font-style: inherit;
  text-align: center;
  line-height: 1;
  font-weight: normal;
  font-family: "fairwater-script", sans-serif;
}

.flow01 .item .well {
  background: #ededed;
  padding: 10px 20px;
  display: block;
  border: none;
  margin: 10px 0 0;
}

.flow01 .item .text {
  padding: 0 30px 0 40px;
  margin-right: auto;
}

.flow01 .item figure {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-width: 300px;
}

.flow01 .item figure img {
  border-radius: 0px;
}

@media screen and (max-width: 768px) {
  .flow01 .item figure img {
    width: 100%;
  }
}

.flow01 .item:last-child:before {
  content: none;
}

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

  .flow01 .item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 25px;
  }

  .flow01 .item:before {
    left: 27px;
  }

  .flow01 .item .step {
    width: 56px;
    height: 56px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .flow01 .item .step em {
    color: #fff;
    font-size: 1.6rem;
    text-align: center;
    line-height: 1;
    font-weight: normal;
    padding-top: 7px;
  }

  .flow01 .item .text {
    width: calc(100% - 76px);
    padding: 0;
    margin-right: 0;
    margin-left: auto;
  }

  .flow01 .item figure {
    width: calc(100% - 76px);
    margin-left: 76px;
    margin-top: 20px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .flow01 .item:last-child:before {
    content: none;
  }
}

.flow02 .flow-contents {
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 50px 0;
  border-top: 1px solid #CACACA;
  border-bottom: 1px solid #CACACA;
}

@media screen and (max-width: 768px) {
  .flow02 .flow-contents {
    padding: 30px 0;
  }
}

.flow02 .flow-contents .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-bottom: 35px;
  padding-top: 35px;
  position: relative;
}

.flow02 .flow-contents .item:first-of-type {
  padding-top: 0;
}

.flow02 .flow-contents .item::before {
  content: "";
  width: calc(100% - 9.375vw);
  height: 1px;
  margin: auto;
  background: #CACACA;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .flow02 .flow-contents .item::before {
    width: calc(100% - 15.625vw);
  }
}

.flow02 .flow-contents .item.last {
  padding-bottom: 0;
}

.flow02 .flow-contents .item.last::before {
  display: none;
}

@media screen and (max-width: 768px) {
  .flow02 .flow-contents .item {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 30px;
    padding-top: 20px;
  }
}

.flow02 .flow-contents .item::after {
  content: "";
  position: absolute;
  left: 43px;
  top: 40px;
  height: 100%;
  width: 2px;
  z-index: -1;
  background: url(../images/whitening/dot.png) repeat-y left top;
  background-size: 100% auto;
}

@media screen and (max-width: 768px) {
  .flow02 .flow-contents .item::after {
    left: 28px;
  }
}

.flow02 .flow-contents .item.last {
  padding-bottom: 0;
}

.flow02 .flow-contents .item.last::after {
  display: none;
}

.flow02 .flow-contents .item .step {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #8A7733;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .flow02 .flow-contents .item .step {
    width: 56px;
    height: 56px;
  }
}

.flow02 .flow-contents .item .step em {
  color: #fff;
  font-size: 38px;
  font-style: inherit;
  text-align: center;
  line-height: 1;
  padding-top: 6px;
  font-family: "trajan-pro-3", serif;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .flow02 .flow-contents .item .step em {
    font-size: 24px;
  }
}

.flow02 .flow-contents .item .txt {
  padding: 0 50px 0 50px;
  margin-right: auto;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 768px) {
  .flow02 .flow-contents .item .txt {
    width: calc(100% - 76px);
    padding: 0;
    margin-right: 0;
    margin-left: auto;
  }
}

.flow02 .flow-contents .item .txt a {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.flow02 .flow-contents .item .txt a:hover {
  opacity: 0.6;
}

.flow02 .flow-contents .item figure {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-width: 300px;
}

@media screen and (max-width: 768px) {
  .flow02 .flow-contents .item figure {
    max-width: 400px;
    width: calc(100% - 76px);
    margin-left: 76px;
    margin-top: 20px;
  }
}

@media screen and (max-width: 768px) {
  .flow02 .flow-contents .item figure img {
    width: 100%;
  }
}

.flow02 .flow-contents .item h4 {
  font-weight: 500;
  font-size: 23px;
  margin-bottom: 5px;
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 768px) {
  .flow02 .flow-contents .item h4 {
    font-size: 19px;
  }
}

/*----------FAQ----------*/
.qa-list dl {
  position: relative;
  margin: 20px 0 0;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 5px rgba(82, 82, 82, 0.1607843137);
  box-shadow: 0px 0px 5px rgba(82, 82, 82, 0.1607843137);
}

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

.qa-list dl:first-child {
  margin-top: 0;
}

.qa-list dl dt {
  position: relative;
  margin: 0;
  padding: 20px 20px 20px 65px;
  font-weight: 500;
  background: #ffffff;
}

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

.qa-list dl dt::before {
  font-size: 30px;
  line-height: 1;
  position: absolute;
  top: 19px;
  left: 20px;
  display: block;
  content: "Q.";
  font-weight: normal;
  color: #FF7298;
}

@media screen and (max-width: 768px) {
  .qa-list dl dt::before {
    line-height: 1;
    font-size: 18px;
    top: 20px;
    left: 20px;
  }
}

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

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

.qa-list dl dd {
  position: relative;
  margin: 0;
  padding: 20px 20px 20px 60px;
  background: #E6ECF2;
}

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

.qa-list dl dd::before {
  font-size: 30px;
  line-height: 1;
  position: absolute;
  left: 20px;
  display: block;
  content: "A.";
  color: #2F3744;
}

@media screen and (max-width: 768px) {
  .qa-list dl dd::before {
    font-size: 18px;
    margin-top: 5px;
  }
}

.qa-list dl dd p {
  margin: 30px 0 0;
}

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

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

/*----------ボタン----------*/
.btn01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 300px;
  height: 63px;
  margin: 50px auto 0;
  border: 1px solid #212630;
  color: #fff;
  background: #212630;
  position: relative;
}

@media screen and (max-width: 768px) {
  .btn01 {
    margin: 30px auto 0;
    width: 280px;
  }
}

.btn01:before,
.btn01:after {
  position: absolute;
  top: 50%;
  right: 22px;
  height: 1px;
  background: #fff;
  content: "";
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.btn01:before {
  width: 18px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn01:after {
  width: 8px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

.btn01:hover {
  background: #fff;
  color: #212630;
  opacity: 1;
}

.btn01:hover:before,
.btn01:hover:after {
  background: #212630;
}

/*----------スマホで表示・非表示----------*/
.sp {
  display: none !important;
}

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

  .sp {
    display: block !important;
  }
}

/*----------パンくずリスト----------*/
.low #breadcrumbs {
  padding: 15px 0 50px;
}

.low #breadcrumbs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.low #breadcrumbs ul li {
  position: relative;
  margin-right: 0.5em;
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 3px;
}

.low #breadcrumbs ul li:before {
  content: "＞";
  display: inline-block;
  padding-right: 0.5em;
}

.low #breadcrumbs ul li:first-child::before {
  display: none;
}

.low #breadcrumbs ul li a {
  color: #0000a3;
}

.low #breadcrumbs ul li a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .low #breadcrumbs {
    padding: 10px 0 40px;
  }

  .low #breadcrumbs ul li {
    font-size: 10px;
  }
}

/*----------アンカーリンクリスト----------*/
.anchor-list {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .anchor-list {
    margin-bottom: 40px;
  }
}

.anchor-list ul {
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .anchor-list ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.anchor-list ul li {
  background: #212630;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.anchor-list ul li:hover {
  background: #101217;
}

.anchor-list ul li a {
  opacity: 1;
  padding: 10px;
  display: block;
  text-align: center;
  color: #fff;
  font-size: 17px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .anchor-list ul li a {
    font-size: 14px;
  }
}

.anchor-list ul li a::before {
  content: "";
  display: block;
  position: absolute;
  color: #fff;
  width: 8px;
  height: 8px;
  top: 48%;
  right: 10px;
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/*----------中ページレイアウト----------*/
@media screen and (max-width: 768px) {
  .layout01 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}

.layout01 .item {
  padding: 30px;
  border: 1px solid #333;
}

@media screen and (max-width: 768px) {
  .layout01 .item {
    padding: 20px;
  }
}

.layout01 .item h3 {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  border-bottom: 1px solid #333;
  padding-top: 10px;
  padding-bottom: 13px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.layout02 .item {
  padding: 40px;
  border: 1px solid #333;
  position: relative;
  -webkit-box-shadow: -15px 15px 0 #212630;
  box-shadow: -15px 15px 0 #212630;
}

@media screen and (max-width: 768px) {
  .layout02 .item {
    padding: 20px;
  }
}

.layout02 .item::before {
  content: "";
  background: #e5e7eb;
  width: 300px;
  height: 200px;
  position: absolute;
  right: 0;
  bottom: 0;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  z-index: -1;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.layout02 .item:not(:last-of-type) {
  margin-bottom: 75px;
}

@media screen and (max-width: 768px) {
  .layout02 .item:not(:last-of-type) {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  .layout02 .item {
    -webkit-box-shadow: -10px 10px 0 #212630;
    box-shadow: -10px 10px 0 #212630;
  }
}

.layout02 .item.rvs {
  -webkit-box-shadow: 15px 15px 0 #212630;
  box-shadow: 15px 15px 0 #212630;
}

@media screen and (max-width: 768px) {
  .layout02 .item.rvs {
    -webkit-box-shadow: 10px 10px 0 #212630;
    box-shadow: 10px 10px 0 #212630;
  }
}

.layout02 .item.rvs::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  right: auto !important;
  left: 0;
}

/*----------LPバナー----------*/
.lp-bnr {
  margin-top: 20px;
  text-align: center;
}

.lp-bnr a img {
  max-width: 1100px;
  width: 100%;
}

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

  ヘッダー

============================================================================*/
.header {
  display: block;
  height: auto;
  position: relative;
  z-index: 1111;
  height: 89px;
  background: #212630;
}

@media screen and (max-width: 768px) {
  .header {
    height: 60px;
  }
}

/*----------ロゴ----------*/
.header-logo {
  width: 410px;
  display: inline-block;
  line-height: 1;
  height: auto;
  z-index: 6;
  margin: 18px 30px;
  position: absolute;
}

@media screen and (max-width: 768px) {
  .header-logo {
    width: 260px;
    margin: 13px;
  }
}

.header-logo>a {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header-logo>a:hover,
.header-logo>a:focus {
  opacity: 0.7;
}

.header-logo>a>img {
  height: auto;
}

/*----------ヘッダー右側----------*/
.header-contact {
  position: absolute;
  right: 89px;
  top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

/* 電話番号 */
.header-tel {
  text-align: center;
  padding: 17px 20px 0;
}

@media screen and (max-width: 768px) {
  .header-tel {
    display: none;
  }
}

.header-tel a {
  color: #fff;
  display: block;
}

.header-tel a h3 {
  font-size: 15px;
  font-weight: normal;
  line-height: 1.6;
}

.header-tel a p {
  font-size: 26px;
  line-height: 0.8;
  margin-top: 5px;
  letter-spacing: 1px;
  position: relative;
  padding-left: 26px;
}

.header-tel a p:before {
  content: "";
  background: url(../images/common/tel.png) no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 2px;
  left: 8px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* LINE＆WEB予約 */
.header-line {
  background: #07CD00;
  width: 89px;
  height: 89px;
  text-align: center;
  padding-top: 14px;
}

@media screen and (max-width: 768px) {
  .header-line {
    display: none;
  }
}

.header-line a {
  display: block;
}

.header-line img {
  width: 36px;
}

.header-line p {
  font-weight: 600;
  color: #fff;
  margin-top: 2px;
  font-size: 14px;
}

.header-web {
  background: #F7581E;
  width: 89px;
  height: 89px;
  text-align: center;
  padding-top: 14px;
}

@media screen and (max-width: 768px) {
  .header-web {
    display: none;
  }
}

.header-web a {
  display: block;
}

.header-web img {
  width: 36px;
}

.header-web p {
  font-weight: 600;
  color: #fff;
  margin-top: 2px;
  font-size: 14px;
}

/* ハンバーガーメニュー */
.header-menu {
  position: relative;
}

.header-menu {
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: 100;
}

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

.menu-btn {
  background: #212630;
  height: 89px;
  width: 89px;
  padding: 28px 27px;
}

@media screen and (max-width: 768px) {
  .menu-btn {
    width: 60px;
    height: 60px;
    padding: 24px 15px;
  }
}

.menu-btn .hamburger {
  display: block;
  height: 1px;
  background-color: #fff;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
  .menu-btn .hamburger {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

.menu-btn .hamburger::before,
.menu-btn .hamburger::after {
  content: "";
  display: block;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.menu-btn .hamburger::before {
  top: -9px;
}

@media screen and (max-width: 768px) {
  .menu-btn .hamburger::before {
    top: -10px;
  }
}

.menu-btn .hamburger::after {
  bottom: -9px;
  width: 55%;
}

@media screen and (max-width: 768px) {
  .menu-btn .hamburger::after {
    bottom: -10px;
  }
}

.menu-btn p {
  font-family: "futura-pt", sans-serif;
  font-weight: 600;
  color: #fff;
  margin-top: 17px;
  letter-spacing: 2px;
}

@media screen and (max-width: 768px) {
  .menu-btn p {
    margin-top: 8px;
    font-size: 12px;
  }
}

.header-nav {
  width: 50%;
  height: 100vh;
  padding: 150px 50px 0;
  background-color: #C7CBD2;
  position: fixed;
  top: 0;
  right: -120%;
  z-index: 99;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

@media screen and (max-width: 768px) {
  .header-nav {
    width: 70%;
    padding: 90px 0px 0;
  }
}

.header-nav::-webkit-scrollbar {
  background: #C7CBD2;
  width: 6px;
}

.header-nav::-webkit-scrollbar-thumb {
  background-color: #212630;
  scrollbar-width: thin;
  border-radius: 100vw;
}

.header-nav__inner {
  width: 100%;
  height: 100%;
}

.header-nav__list {
  padding-bottom: 40px;
}

.header-nav__list>li {
  border-top: 1px solid #333;
}

@media screen and (max-width: 768px) {
  .header-nav__list>li {
    border-top: 1px solid #b7b7b7;
  }
}

.header-nav__list>li:last-child {
  border-bottom: 1px solid #333;
}

@media screen and (max-width: 768px) {
  .header-nav__list>li:last-child {
    border-bottom: 1px solid #b7b7b7;
  }
}

.header-nav__list>li>a {
  display: block;
  font-weight: normal;
  font-style: normal;
  font-size: 17px;
  line-height: 1.4;
  color: #333;
  text-align: left;
  padding: 16px 12px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 768px) {
  .header-nav__list>li>a {
    font-size: 14px;
    padding: 12px 12px;
  }
}

.header-nav__list>li>a:hover,
.header-nav__list>li>a:focus {
  opacity: 0.7;
}

.header-nav__toggle--open span.header-nav__toggle-btn::after {
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
}

.header-nav__toggle-btn {
  display: inline-block;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.4;
  color: #fff;
  margin-top: -58px;
  text-align: left;
  float: right;
  cursor: default;
  padding: 18px 30px 44px;
  position: absolute;
  right: 0;
  right: 45px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media screen and (max-width: 768px) {
  .header-nav__toggle-btn {
    right: 0;
    padding: 13px 30px 33px;
    margin-top: -45px;
  }
}

.header-nav__toggle-btn:hover,
.header-nav__toggle-btn:focus {
  opacity: 0.7;
}

.header-nav__toggle-btn::before,
.header-nav__toggle-btn::after {
  content: "";
  display: block;
  background-color: #333;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.header-nav__toggle-btn::before {
  width: 16px;
  height: 4px;
  right: 19px;
}

.header-nav__toggle-btn::after {
  right: 25px;
  width: 4px;
  height: 16px;
}

.header-nav__second-menu {
  display: none;
}

.header-nav__second-menu .flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: 1px solid #afafaf;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  .header-nav__second-menu .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    border-top: 0;
    margin-bottom: 0;
  }
}

.header-nav__second-menu li {
  width: 33%;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .header-nav__second-menu li {
    width: 100%;
    border-top: 1px solid #afafaf;
    margin-top: 0;
  }
}

.header-nav__second-menu li a {
  display: inline-block;
  font-size: 16px;
  line-height: 1.4;
  color: #333;
  text-align: left;
  padding-left: 16px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}

@media screen and (max-width: 768px) {
  .header-nav__second-menu li a {
    background: #bcc0c5;
    font-size: 14px;
    padding: 12px;
    display: block;
  }
}

.header-nav__second-menu li a::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  display: inline-block;
  border: 6px solid transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-left-color: #352F2F;
  top: 5px;
  left: 0;
}

@media screen and (max-width: 768px) {
  .header-nav__second-menu li a::before {
    display: none;
  }
}

.header-nav__second-menu li a:hover,
.header-nav__second-menu li a:focus {
  opacity: 0.7;
}

.header-nav .contact-btn {
  gap: 20px;
  padding-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .header-nav .contact-btn {
    display: none;
  }
}

.is_open-menu .header-nav {
  right: 0px;
}

.is_open-menu .menu-btn .hamburger {
  background: transparent !important;
}

.is_open-menu .menu-btn .hamburger::before {
  background-color: #fff;
  top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.is_open-menu .menu-btn .hamburger::after {
  background-color: #fff;
  top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 100%;
}

.is_open-menu .menu-btn .alph {
  display: none;
}

/*----------専門サイトヘッダー----------*/
.header-lp .header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

@media screen and (max-width: 768px) {
  .header-lp .header-fixed {
    -webkit-transform: none;
    transform: none;
    position: relative;
  }
}

.header-lp .header-fixed.is-visible {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media screen and (max-width: 768px) {
  .header-lp .header-fixed.is-visible {
    -webkit-transform: none;
    transform: none;
  }
}

@media screen and (max-width: 768px) {
  .header-lp .header {
    height: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

@media screen and (max-width: 768px) {
  .header-lp .header-logo {
    display: none;
  }
}

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

  タイトル

============================================================================*/
.top-ttl01 {
  margin-bottom: 10px;
}

.top-ttl01 .en {
  font-size: 56px;
  color: #fff;
  font-weight: 500;
  font-family: "noto-serif", serif;
  margin-right: 10px;
  letter-spacing: 8px;
}

@media screen and (max-width: 768px) {
  .top-ttl01 .en {
    font-size: 32px;
    letter-spacing: 3px;
  }
}

.top-ttl01 .ja {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .top-ttl01 .ja {
    font-size: 14px;
  }
}

.top-ttl02 {
  margin-bottom: 10px;
  text-align: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .top-ttl02 {
    margin-bottom: 30px;
    margin-top: -10px;
  }
}

.top-ttl02 .en {
  font-size: 56px;
  color: #212630;
  font-weight: 500;
  font-family: "noto-serif", serif;
  margin-right: 10px;
  letter-spacing: 8px;
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  .top-ttl02 .en {
    font-size: 32px;
    letter-spacing: 3px;
  }
}

.top-ttl02 .ja {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  color: #212630;
  display: block;
}

@media screen and (max-width: 768px) {
  .top-ttl02 .ja {
    font-size: 14px;
  }
}

.ttl01 {
  font-weight: 500;
  background: #C7CBD2;
  font-size: 36px;
  color: #212630;
  letter-spacing: 5px;
  padding: 18px 0;
  text-align: center;
  position: relative;
  width: 100vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .ttl01 {
    font-size: 26px;
    letter-spacing: 3px;
    padding: 20px 0;
    margin-bottom: 30px;
    line-height: 1.4;
  }
}

.ttl01::before {
  content: "";
  width: 2px;
  height: 40px;
  background: #212630;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .ttl01::before {
    height: 30px;
    bottom: -15px;
  }
}

.ttl02 {
  font-size: 26px;
  line-height: 1.4;
  font-weight: 600;
  padding: 13px 0;
  border-bottom: 3px solid #212630;
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: "Noto Serif JP", serif;
  position: relative;
  color: #212630;
}

.ttl02:before {
  content: "";
  width: 150px;
  height: 3px;
  background-color: #F7581E;
  display: block;
  position: absolute;
  left: 0;
  bottom: -3px;
}

@media screen and (max-width: 768px) {
  .ttl02 {
    font-size: 22px;
    padding: 6px 0;
    margin-bottom: 20px;
  }
}

.ttl03 {
  padding-bottom: 17px;
  line-height: 1.4;
  font-size: 26px;
  font-weight: 600;
  border-bottom: 1px solid #333;
  margin-bottom: 17px;
  color: #212630;
}

@media screen and (max-width: 768px) {
  .ttl03 {
    font-size: 22px;
    margin-bottom: 14px;
    padding-bottom: 10px;
  }
}

.ttl04 {
  font-size: 20px;
  line-height: 1.4;
  padding: 10px 15px;
  background-color: #ECECEC;
  margin-bottom: 10px;
  margin-top: 20px;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .ttl04 {
    font-size: 20px;
  }
}

.ttl05 {
  padding: 0 0.5em;
  padding-bottom: 3px;
  line-height: 1.4;
  font-size: 20px;
  font-weight: 600;
  border-left: solid 4px #212630;
  margin-bottom: 5px;
  color: #333;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .ttl05 {
    font-size: 20px;
  }
}

.ttl06 {
  background: #212630;
  color: #fff;
  font-size: 26px;
  text-align: center;
  padding: 10px;
  font-weight: 600;
  outline: 1px solid rgba(255, 255, 255, 0.2941176471);
  outline-offset: -5px;
  margin-top: 40px;
  margin-bottom: 30px;
  letter-spacing: 3px;
}

@media screen and (max-width: 768px) {
  .ttl06 {
    margin-top: 30px;
    font-size: 22px;
    margin-bottom: 20px;
  }
}

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

  トップページ

============================================================================*/
.navy-bg {
  background: #212630;
}

/*----------メインビジュアル----------*/
.top-mv {
  padding-left: 80px;
  width: 100%;
  height: 555px;
  position: relative;
}

@media screen and (max-width: 1200px) {
  .top-mv {
    height: 510px;
  }
}

@media screen and (max-width: 768px) {
  .top-mv {
    padding-left: 40px;
    height: calc(100svh - 118px);
  }
}

.top-mv__catch .txt {
  position: absolute;
  top: 51%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 160px;
  z-index: 5;
  color: #333;
  width: 100%;
  text-shadow: 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff, 0 0 8px #fff;
}

@media screen and (max-width: 768px) {
  .top-mv__catch .txt {
    left: 70px;
    top: 47%;
    width: calc(100% - 100px);
  }
}

.top-mv__catch h2 {
  font-size: 48px;
  font-weight: normal;
  line-height: 1.6;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .top-mv__catch h2 {
    font-size: 22px;
  }
}

.top-mv__catch h2 span {
  color: #F8F8BD;
  font-size: 40px;
}

@media screen and (max-width: 768px) {
  .top-mv__catch h2 span {
    font-size: 28px;
  }
}

.top-mv__catch .txt p {
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .top-mv__catch .txt p {
    font-size: 14px;
  }
}


/* TOP slide */
.top-mv-swiper {
  overflow: hidden;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
}

.top-mv-slide {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.top-mv-slide__01 {
  background-image: url(../images/top/mv1.jpg);
}

@media screen and (max-width: 768px) {
  .top-mv-slide__01 {
    background-image: url(../images/top/mv1-sp.jpg);
    background-position: 60%;
  }
}

.top-mv-slide__02 {
  background-image: url(../images/top/mv2.jpg);
}

@media screen and (max-width: 768px) {
  .top-mv-slide__02 {
    background-image: url(../images/top/mv2-sp.jpg);
    background-position: 80%;
  }
}

.top-mv-slide__03 {
  background-image: url(../images/top/mv3.jpg);
}

@media screen and (max-width: 768px) {
  .top-mv-slide__03 {
    background-image: url(../images/top/mv3-sp.jpg);
    background-position: 49%;
  }
}

/* スクロール */
.mv-scroll {
  position: absolute;
  left: 20px;
  bottom: 0;
}

@media screen and (max-width: 768px) {
  .mv-scroll {
    left: 2px;
  }
}

.scroll_down {
  position: relative;
  width: 100%;
  height: 100vh;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.scroll_down:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0)), color-stop(80%, rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.8)));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 0.8) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.8) 80%, rgba(0, 0, 0, 0.8) 100%);
}

.scroll_down a {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 32px;
  padding: 10px 10px 110px;
  color: #fff;
  font-size: 14px;
  font-family: "noto-serif", serif;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  overflow: hidden;
  margin: auto;
}

.scroll_down a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: #ddd;
}

.scroll_down a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: #5a5a5a;
}

.scroll_down a:hover {
  opacity: 0.5;
}

#type01 a:after {
  -webkit-animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
  animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@-webkit-keyframes sdl01 {
  0% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }

  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }

  50.1% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }

  100% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
}

@keyframes sdl01 {
  0% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }

  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }

  50.1% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }

  100% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }
}

/* お知らせ */
.top-mv-news {
  background: rgba(33, 38, 48, 0.8392156863);
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 530px;
  z-index: 2;
  height: 76px;
}

@media screen and (max-width: 520px) {
  .top-mv-news {
    padding: 20px 20px 20px;
    left: 70px;
    width: calc(100% - 70px);
    height: 100px;
  }
}

.mv-news-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 520px) {
  .mv-news-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: inherit;
    -webkit-align-items: inherit;
    -ms-flex-align: inherit;
    align-items: inherit;
    height: 80px;
  }
}

.mv-news-ttl {
  color: #fff;
  width: 92px;
  border-right: 1px solid #fff;
  text-align: center;
  font-size: 12px;
  line-height: 1.3;
}

@media screen and (max-width: 520px) {
  .mv-news-ttl {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #fff;
    margin-bottom: 0px;
    padding-bottom: 14px;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}

.mv-news-ttl span {
  font-size: 15px;
  font-family: "noto-serif", serif;
}

@media screen and (max-width: 520px) {
  .mv-news-ttl span {
    font-size: 19px;
    line-height: 0.9;
    margin-right: 10px;
  }
}

.news-slider {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.news-slider .swiper-slide {
  margin: 0 20px;
}

@media screen and (max-width: 520px) {
  .news-slider .swiper-slide {
    margin: 0;
  }
}

.news-slider .swiper-slide a {
  color: #fff;
  line-height: 1.6;
  margin-bottom: 5px;
}

@media screen and (max-width: 520px) {
  .news-slider .swiper-slide a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    white-space: nowrap;
  }
}

.news-slider .swiper-slide a span.date {
  font-size: 12px;
  margin-right: 10px;
}

@media screen and (max-width: 520px) {
  .news-slider .swiper-slide a span.date {
    margin-right: 10px;
  }
}

.news-slider .swiper-slide a span.ttl {
  font-size: 14px;
}

@media screen and (max-width: 520px) {
  .news-slider .swiper-slide a span.ttl {
    font-size: 14px;
  }
}

.news-slider {
  height: 76px;
  /* 必要に応じて調整 */
  overflow: hidden;
}

.news-slider .swiper-slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/*----------メッセージ----------*/
.top-message {
  padding-top: 80px;
  padding-right: 80px;
}

@media screen and (max-width: 768px) {
  .top-message {
    padding-top: 40px;
    padding-right: 40px;
  }
}

.top-message .contents {
  padding: 80px 0;
  background: #C7CBD2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

@media screen and (max-width: 768px) {
  .top-message .contents {
    padding: 40px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.top-message .contents::before {
  content: "";
  background-image: url(../images/top/message-deco.png);
  width: 279px;
  background-size: cover;
  height: 279px;
  position: absolute;
  right: 0;
  bottom: 0;
}

@media screen and (max-width: 768px) {
  .top-message .contents::before {
    width: 180px;
    height: 180px;
    opacity: 0.3;
  }
}

.top-message .contents .img {
  width: 566px;
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

@media screen and (max-width: 1200px) {
  .top-message .contents .img {
    width: 420px;
  }
}

@media screen and (max-width: 768px) {
  .top-message .contents .img {
    width: calc(100% - 40px);
  }
}

.top-message .contents .img .btn {
  position: absolute;
  bottom: 0;
  right: 0;
}

.top-message .contents .txt {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-left: 60px;
}

@media screen and (max-width: 768px) {
  .top-message .contents .txt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: 0;
    padding: 30px 30px 0;
  }
}

.top-message .contents h3 {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  margin-left: 35px;
  font-size: 40px;
  letter-spacing: 10px;
  font-weight: 500;
  line-height: 1.6;
}

@media screen and (max-width: 1200px) {
  .top-message .contents h3 {
    font-size: 38px;
  }
}

@media screen and (max-width: 768px) {
  .top-message .contents h3 {
    -webkit-writing-mode: inherit;
    -ms-writing-mode: inherit;
    writing-mode: inherit;
    margin-left: 0;
    font-size: 22px;
    letter-spacing: 3px;
    margin-bottom: 20px;
  }
}

.top-message .contents h3 span {
  margin: -25px 0;
}

/*----------当院からのお約束----------*/
.top-promise {
  padding-left: 80px;
  padding-bottom: 80px;
  padding-top: 20px;
}

@media screen and (max-width: 768px) {
  .top-promise {
    padding-left: 40px;
    padding-bottom: 40px;
  }
}

.top-promise .top-ttl01 {
  margin-left: 120px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .top-promise .top-ttl01 {
    margin-left: 0;
  }
}

.top-promise .top-ttl01::before {
  content: "";
  background-image: url(../images/top/promise-deco.png);
  width: 149px;
  background-size: cover;
  height: 149px;
  position: absolute;
  left: -165px;
  top: 20px;
}

@media screen and (max-width: 768px) {
  .top-promise .top-ttl01::before {
    width: 100px;
    height: 100px;
    left: -20px;
    top: 40px;
  }
}

.top-promise .contents {
  padding: 120px 80px 90px;
  background: url(../images/top/promise-bg.jpg);
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .top-promise .contents {
    padding: 40px 40px;
    background-position: center;
  }
}

.top-promise .contents .items {
  margin: 0 60px;
  margin-left: -20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .top-promise .contents .items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: 0;
    margin: 0;
    gap: 30px;
  }
}

.top-promise .contents .items .item {
  position: relative;
  max-width: 311px;
}

.top-promise .contents .items .item:not(:last-of-type) {
  margin-right: 75px;
}

@media screen and (max-width: 768px) {
  .top-promise .contents .items .item:not(:last-of-type) {
    margin-right: 0;
  }
}

.top-promise .contents .items .item img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .top-promise .contents .items .item img {
    max-height: 250px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.top-promise .contents .items .item .num {
  font-family: "fairwater-script", sans-serif;
  font-size: 62px;
  color: #fff;
  position: absolute;
  right: -35px;
  top: -60px;
}

@media screen and (max-width: 768px) {
  .top-promise .contents .items .item .num {
    font-size: 50px;
    top: -40px;
    right: -20px;
  }
}

.top-promise .contents .items .item .txt h4 {
  color: #fff;
  font-size: 22px;
  line-height: 1.8;
  text-align: center;
  font-weight: normal;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .top-promise .contents .items .item .txt h4 {
    font-size: 22px;
  }
}

.top-promise .contents .items .item .txt p {
  color: #fff;
}

/*----------お知らせ＆ブログ----------*/
.top-news {
  background: #ECECEC;
  padding: 80px 0;
}

@media screen and (max-width: 768px) {
  .top-news {
    padding: 40px 0;
  }
}

.top-news-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

@media screen and (max-width: 768px) {
  .top-news-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}

@media screen and (max-width: 768px) {
  .top-news-list li:nth-of-type(4) {
    display: none;
  }
}

.top-news-list li {
  position: relative;
}

.top-news-list li::before {
  content: "";
  display: block;
  height: 1px;
  background-color: #D3CFC3;
  position: absolute;
  bottom: -25px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .top-news-list li::before {
    bottom: -15px;
  }
}

.top-news-list li:nth-of-type(3)::before {
  display: none;
}

.top-news-list li:nth-of-type(4)::before {
  display: none;
}

.top-news-list li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.top-news-list li a .img img {
  min-width: 261px;
  width: 261px;
  height: 149px;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .top-news-list li a .img img {
    width: 140px;
    height: 140px;
    min-width: 140px;
  }
}

.top-news-list li a .txt {
  padding-left: 20px;
  color: #333;
}

@media screen and (max-width: 768px) {
  .top-news-list li a .txt {
    padding: 0 15px;
  }
}

.top-news-list li a .txt .date {
  font-size: 14px;
}

.top-news-list li a .txt .ttl {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .top-news-list li a .txt .ttl {
    font-size: 14px;
  }
}

/*----------ブログ下のメッセージ----------*/
.top-appeal {
  padding: 80px 0;
  background: url(../images/top/appeal-bg.jpg);
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 768px) {
  .top-appeal {
    padding: 40px 0;
    background: url(../images/top/appeal-bg-sp.jpg);
    background-size: cover;
    background-position: 50%;
  }
}

.top-appeal .contents {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  padding: 40px;
  text-align: center;
  border: 2px solid #fff;
  text-shadow: 0 0 5px #404040;
}

@media screen and (max-width: 768px) {
  .top-appeal .contents {
    padding: 20px;
    margin: 0 20px;
    width: auto;
  }
}

.top-appeal .contents .catch {
  color: #fff;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.5;
  letter-spacing: 6px;
}

@media screen and (max-width: 768px) {
  .top-appeal .contents .catch {
    font-size: 19px;
    letter-spacing: 4px;
    margin-bottom: 15px;
    line-height: 1.4;
  }
}

.top-appeal .contents .catch span.dot {
  font-size: 50px;
  background-image: -webkit-radial-gradient(center, circle, #fff 26%, transparent 40%);
  background-image: radial-gradient(circle at center, #fff 26%, transparent 40%);
  background-position: 39% top;
  background-repeat: no-repeat;
  background-size: 12px 12px;
}

.top-appeal .contents p {
  color: #fff;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .top-appeal .contents p {
    text-align: left;
    font-size: 14px;
  }
}

.top-appeal .contents p span.border {
  border-bottom: 1px solid #fff;
  padding-bottom: 3px;
}

.top-appeal h4 {
  font-size: 36px;
  text-align: center;
  margin-top: 30px;
  letter-spacing: 3px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .top-appeal h4 {
    font-size: 19px;
  }
}

.top-appeal h4 span.dot {
  font-size: 46px;
  background-image: -webkit-radial-gradient(center, circle, #fff 26%, transparent 40%);
  background-image: radial-gradient(circle at center, #fff 26%, transparent 40%);
  background-position: 47% top;
  background-repeat: no-repeat;
  background-size: 12px 12px;
}

@media screen and (max-width: 768px) {
  .top-appeal h4 span.dot {
    font-size: 23px;
    background: none;
  }
}

/*----------とも歯科クリニック5つの特徴----------*/
.top-feature {
  padding: 100px 0;
  background-image: url(../images/top/feature-bg.png);
  background-position: left top;
  background-repeat: repeat;
  background-size: 16px;
}

@media screen and (max-width: 768px) {
  .top-feature {
    padding: 40px 0;
  }
}

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

@media screen and (max-width: 768px) {
  .top-feature .contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.top-feature .contents .ttl {
  width: 120px;
  border-left: 2px solid #212630;
  border-right: 2px solid #212630;
  position: relative;
}

@media screen and (max-width: 768px) {
  .top-feature .contents .ttl {
    width: 100%;
    border-left: none;
    border-right: none;
    border-top: 2px solid #212630;
    border-bottom: 2px solid #212630;
    padding: 10px 0;
    margin-bottom: 40px;
  }
}

.top-feature .contents .ttl h3 {
  margin: 0 18px;
  margin-top: 30px;
  letter-spacing: 4px;
  font-weight: 500;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 22px;
}

@media screen and (max-width: 768px) {
  .top-feature .contents .ttl h3 {
    -webkit-writing-mode: inherit;
    -ms-writing-mode: inherit;
    writing-mode: inherit;
    text-align: center;
    font-size: 20px;
    letter-spacing: 3px;
    margin: 0;
  }
}

.top-feature .contents .ttl h3 span {
  font-size: 37px;
  letter-spacing: 12px;
  margin-top: -34px;
}

@media screen and (max-width: 768px) {
  .top-feature .contents .ttl h3 span {
    letter-spacing: 5px;
    font-size: 26px;
  }
}

.top-feature .contents .ttl h3 span strong {
  font-family: "fairwater-script", sans-serif;
  font-size: 80px;
  line-height: 1;
  letter-spacing: -63px;
  color: #F7581E;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .top-feature .contents .ttl h3 span strong {
    letter-spacing: 5px;
    font-size: 45px;
  }
}

.top-feature .contents .ttl_fix {
  position: fixed;
  top: 0px;
  z-index: 1000;
}

@media screen and (max-width: 768px) {
  .top-feature .contents .ttl_fix {
    position: static;
  }
}

.top-feature .contents .ttl_ab {
  position: absolute;
  top: auto;
  bottom: 0;
}

.top-feature .contents .content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 60px;
}

@media screen and (max-width: 768px) {
  .top-feature .contents .content {
    margin-left: 0;
  }
}

.top-feature .contents .content .items .txt-wrap .num {
  font-family: "fairwater-script", sans-serif;
  font-size: 22px;
  color: #212630;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .top-feature .contents .content .items .txt-wrap .num {
    font-size: 18px;
    text-align: center;
  }
}

.top-feature .contents .content .items .txt-wrap .num span {
  font-family: "fairwater-script", sans-serif;
  font-size: 64px;
  margin-left: 7px;
}

@media screen and (max-width: 768px) {
  .top-feature .contents .content .items .txt-wrap .num span {
    font-size: 45px;
  }
}

.top-feature .contents .content .items .txt-wrap .num span strong {
  color: #F7581E;
  font-weight: normal;
}

.top-feature .contents .content .items .txt-wrap h4 {
  font-size: 33px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .top-feature .contents .content .items .txt-wrap h4 {
    font-size: 22px;
    text-align: center;
  }
}

.top-feature .contents .content .items01 .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .top-feature .contents .content .items01 .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 40px;
  }
}

.top-feature .contents .content .items01 .item .img {
  width: 537px;
}

@media screen and (max-width: 768px) {
  .top-feature .contents .content .items01 .item .img {
    width: 100%;
    margin-bottom: 20px;
  }
}

.top-feature .contents .content .items01 .item .txt-wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 60px;
}

@media screen and (max-width: 768px) {
  .top-feature .contents .content .items01 .item .txt-wrap {
    margin-left: 0;
  }
}

.top-feature .contents .content .items01 .item.rvs {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  .top-feature .contents .content .items01 .item.rvs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.top-feature .contents .content .items01 .item.rvs .txt-wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 0px;
  margin-right: 60px;
}

@media screen and (max-width: 768px) {
  .top-feature .contents .content .items01 .item.rvs .txt-wrap {
    margin-right: 0;
  }
}

.top-feature .contents .content .items02 {
  background: #2B313B;
  position: relative;
  padding: 60px 70px 70px;
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .top-feature .contents .content .items02 {
    padding: 40px 20px;
    margin-bottom: 40px;
  }
}

.top-feature .contents .content .items02::before {
  content: "";
  background-image: url(../images/top/feature3-bg.png);
  width: 100%;
  height: 571px;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  background-position: center;
}

.top-feature .contents .content .items02 .item {
  z-index: 1;
  position: relative;
}

.top-feature .contents .content .items02 .item .txt-wrap {
  color: #fff;
}

.top-feature .contents .content .items02 .item .txt-wrap .num {
  color: #fff;
  text-align: center;
}

.top-feature .contents .content .items02 .item .txt-wrap .num span strong {
  color: #fff;
}

.top-feature .contents .content .items02 .item .txt-wrap h4 {
  text-align: center;
}

.top-feature .contents .content .items02 .item .txt-wrap .txt {
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .top-feature .contents .content .items02 .item .txt-wrap .txt {
    text-align: left;
    margin-bottom: 30px;
  }
}

.top-feature .contents .content .items02 .item .img {
  gap: 40px;
}

@media screen and (max-width: 768px) {
  .top-feature .contents .content .items02 .item .img {
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.top-feature .contents .content .items03 {
  gap: 60px;
}

@media screen and (max-width: 768px) {
  .top-feature .contents .content .items03 {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
}

.top-feature .contents .content .items03 .item .txt-wrap .num {
  text-align: center;
  margin-top: 25px;
}

@media screen and (max-width: 768px) {
  .top-feature .contents .content .items03 .item .txt-wrap .num {
    margin-top: 20px;
  }
}

.top-feature .contents .content .items03 .item .txt-wrap h4 {
  text-align: center;
}

/*----------診療内容----------*/
.top-medical .ttl-wrap {
  background: #212630;
  padding: 70px 0;
}

@media screen and (max-width: 768px) {
  .top-medical .ttl-wrap {
    padding: 40px 0 30px;
  }
}

.top-medical .ttl-wrap .top-ttl02 {
  margin-bottom: 0;
}

.top-medical .ttl-wrap .top-ttl02 .ja {
  color: #fff;
}

.top-medical .ttl-wrap .top-ttl02 .en {
  color: #fff;
}

.top-medical .main-items {
  gap: 0;
}

@media screen and (max-width: 768px) {
  .top-medical .main-items {
    grid-template-columns: repeat(1, 1fr);
  }
}

.top-medical .main-items .item {
  background: #000;
  height: 510px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .top-medical .main-items .item {
    height: 330px;
  }
}

.top-medical .main-items .item::before {
  content: "";
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: 20px;
  height: 20px;
  background-color: #fff;
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 1;
}

.top-medical .main-items .item:hover {
  opacity: 1;
}

.top-medical .main-items .item:hover::after {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.top-medical .main-items .item::after {
  position: absolute;
  content: "";
  display: block;
  width: 101%;
  height: 100%;
  top: 0;
  background: url(../images/top/medical1.jpg) no-repeat center center;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  background-size: cover;
  opacity: 0.7;
}

.top-medical .main-items .item.item2::after {
  background: url(../images/top/medical2.jpg) no-repeat top;
  background-size: cover;
}

.top-medical .main-items .item.item3::after {
  background: url(../images/top/medical3.jpg) no-repeat center center;
  background-size: cover;
}

.top-medical .main-items .item .txt {
  position: absolute;
  z-index: 1;
  bottom: 45px;
  width: 80%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .top-medical .main-items .item .txt {
    bottom: 20px;
    width: 85%;
  }
}

.top-medical .main-items .item .txt h4 {
  font-size: 33px;
  border-bottom: 2px solid #fff;
  margin-bottom: 20px;
  padding-bottom: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .top-medical .main-items .item .txt h4 {
    font-size: 26px;
    padding-bottom: 6px;
    margin-bottom: 10px;
  }
}

.top-medical .main-items .item .txt h4 span {
  font-size: 17px;
  display: block;
}

@media screen and (max-width: 768px) {
  .top-medical .main-items .item .txt h4 span {
    font-size: 15px;
  }
}

.top-medical .main-items .item .txt .list li {
  font-size: 17px;
  position: relative;
  padding-left: 30px;
}

@media screen and (max-width: 768px) {
  .top-medical .main-items .item .txt .list li {
    font-size: 14px;
  }
}

.top-medical .main-items .item .txt .list li::before {
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 18px;
  height: 18px;
  background-image: url(../images/top/check-white.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  content: "";
}

@media screen and (max-width: 768px) {
  .top-medical .main-items .item .txt .list li::before {
    top: 7px;
    width: 16px;
    height: 16px;
  }
}

.top-medical .sub-items {
  background: #C7CBD2;
  padding: 80px 0;
}

@media screen and (max-width: 768px) {
  .top-medical .sub-items {
    padding: 40px 0;
  }
}

.top-medical .sub-items .wrap {
  gap: 40px 20px;
}

@media screen and (max-width: 768px) {
  .top-medical .sub-items .wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.top-medical .sub-items .wrap .item .box {
  background: #fff;
  display: block;
  outline: 1px solid #212630;
  outline-offset: -7px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 208px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .top-medical .sub-items .wrap .item .box {
    height: 150px;
  }
}

.top-medical .sub-items .wrap .item .box::before {
  content: "";
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: 15px;
  height: 15px;
  background-color: #212630;
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 1;
}

.top-medical .sub-items .wrap .item .box img {
  width: 83px;
}

@media screen and (max-width: 768px) {
  .top-medical .sub-items .wrap .item .box img {
    width: 55px;
  }
}

.top-medical .sub-items .wrap .item .box h4 {
  font-size: 26px;
  font-weight: 500;
  color: #212630;
  letter-spacing: 2px;
  margin-top: 5px;
}

@media screen and (max-width: 768px) {
  .top-medical .sub-items .wrap .item .box h4 {
    font-size: 18px;
    letter-spacing: 0;
  }
}

.top-medical .sub-items .wrap .item .list {
  margin-top: 10px;
}

.top-medical .sub-items .wrap .item .list li {
  color: #212630;
  position: relative;
  padding-left: 26px;
  letter-spacing: 0;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .top-medical .sub-items .wrap .item .list li {
    line-height: 1.5;
    margin-top: 6px;
    font-size: 12px;
  }
}

.top-medical .sub-items .wrap .item .list li::before {
  display: block;
  position: absolute;
  top: 9px;
  left: 0;
  width: 16px;
  height: 16px;
  background-image: url(../images/top/check-navy.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  content: "";
}

@media screen and (max-width: 768px) {
  .top-medical .sub-items .wrap .item .list li::before {
    width: 14px;
    height: 14px;
    top: 2px;
  }
}

/*----------アクセス----------*/
.top-access {
  background: url(../images/top/access-bg.jpg);
  background-size: cover;
  padding: 60px 0 80px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .top-access {
    padding: 30px 0 40px;
  }
}

.top-access::before {
  content: "";
  background-image: url(../images/top/access-deco.png);
  width: 220px;
  background-size: cover;
  height: 220px;
  position: absolute;
  right: -8px;
  bottom: -27px;
}

@media screen and (max-width: 768px) {
  .top-access::before {
    width: 140px;
    height: 140px;
    opacity: 0.3;
  }
}

.top-access .contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

@media screen and (max-width: 768px) {
  .top-access .contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 90px;
  }
}

.top-access .contents iframe {
  width: 50%;
  height: 326px;
}

@media screen and (max-width: 768px) {
  .top-access .contents iframe {
    width: 100%;
    height: 51vw;
  }
}

.top-access .contents .add {
  position: absolute;
  right: 0;
  top: -69px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .top-access .contents .add {
    right: auto;
    top: -93px;
  }
}

.top-access .btn01 {
  background: none;
  border: 1px solid #fff;
}

.top-access .btn01:hover {
  background: #fff;
  color: #212630;
  opacity: 1;
}

.top-access .btn01:hover:before,
.top-access .btn01:hover:after {
  background: #212630;
}

/*----------インスタグラム----------*/
.top-instagram .ttl-wrap {
  padding: 70px 0 50px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .top-instagram .ttl-wrap {
    padding: 40px 0 30px;
  }
}

.top-instagram .ttl-wrap::before {
  content: "";
  background-image: url(../images/top/insta-deco.png);
  width: 212px;
  background-size: cover;
  height: 181px;
  position: absolute;
  left: 73px;
  bottom: 0;
}

@media screen and (max-width: 768px) {
  .top-instagram .ttl-wrap::before {
    left: 5px;
    height: 88px;
    width: 103px;
  }
}

.top-instagram .ttl-wrap .top-ttl02 {
  margin-bottom: 0;
}

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

  階層ページ

============================================================================*/
/*----------メインビジュアル----------*/
.low #mv {
  width: 100%;
  height: 360px;
  position: relative;
}

.low #mv:before {
  content: "";
  background-color: rgba(32, 32, 32, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .low #mv:before {
    border-radius: 0;
  }
}

.low #mv:after {
  content: "";
  width: 100%;
  height: 18px;
  background: url(../images/common/low-mv-wave.png);
  background-size: cover;
  background-position: top center;
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
}

.low #mv .ttl {
  display: block;
  width: 100%;
  font-size: 62px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 8px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-shadow: 0 0 6px #3f3f3f, 0 0 6px #3f3f3f;
}

@media screen and (max-width: 768px) {
  .low #mv .ttl {
    letter-spacing: 3px;
    font-size: 34px;
    top: 48%;
    line-height: 1.2;
  }
}

.low #mv .ttl span {
  letter-spacing: 5px;
  display: block;
  font-size: 22px;
  font-family: "Noto Serif JP", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media screen and (max-width: 768px) {
  .low #mv .ttl span {
    padding-top: 5px;
    letter-spacing: 3px;
    font-size: 16px;
  }
}

.low .contents {
  position: relative;
}

@media screen and (max-width: 1100px) {
  .low #mv {
    height: 180px;
  }
}

/*各ページメインビジュアル背景*/
#clinic #mv {
  background: url(../images/clinic/mv.jpg) no-repeat 50% 50%;
  background-size: cover;
}

#doctor #mv {
  background: url(../images/doctor/mv.jpg) no-repeat 50% 50%;
  background-size: cover;
}

#medical #mv {
  background: url(../images/medical/mv.jpg) no-repeat 50% 50%;
  background-size: cover;
}

#preventive #mv {
  background: url(../images/preventive/mv.jpg) no-repeat 50% 50%;
  background-size: cover;
}

#whitening #mv {
  background: url(../images/whitening/mv.jpg) no-repeat 50% 50%;
  background-size: cover;
}

#invisalign #mv {
  background: url(../images/invisalign/mv.jpg) no-repeat 50% 50%;
  background-size: cover;
}

#toothdecay #mv {
  background: url(../images/toothdecay/mv.jpg) no-repeat 50% 50%;
  background-size: cover;
}

#periodontal #mv {
  background: url(../images/periodontal/mv.jpg) no-repeat 50% 50%;
  background-size: cover;
}

#pediatric #mv {
  background: url(../images/pediatric/mv.jpg) no-repeat 50% 50%;
  background-size: cover;
}

#orthodontics #mv {
  background: url(../images/orthodontics/mv.jpg) no-repeat 50% 50%;
  background-size: cover;
}

#denture #mv {
  background: url(../images/denture/mv.jpg) no-repeat 50% 50%;
  background-size: cover;
}

#implant #mv {
  background: url(../images/implant/mv.jpg) no-repeat 50% 50%;
  background-size: cover;
}

#oralsurgery #mv {
  background: url(../images/oralsurgery/mv.jpg) no-repeat 50% 50%;
  background-size: cover;
}

#aesthetic #mv {
  background: url(../images/aesthetic/mv.jpg) no-repeat 50% 50%;
  background-size: cover;
}

#price #mv {
  background: url(../images/price/mv.jpg) no-repeat 50% 50%;
  background-size: cover;
}

#access #mv {
  background: url(../images/access/mv.jpg) no-repeat 50% 50%;
  background-size: cover;
}

#news #mv {
  background: url(../images/news/mv.jpg) no-repeat 50% 50%;
  background-size: cover;
}

/*----------院長紹介----------*/
#doctor .director:last-of-type .flex02 {
	padding-top: 80px;
	border-top: 1px solid #ccc;
}
@media screen and (max-width: 768px) {
  #doctor .director:last-of-type .flex02 {
	padding-top: 50px;
}
}

@media screen and (max-width: 768px) {
  #doctor .director .flex02 {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 768px) {
  #doctor .director .flex02 .img {
    margin: 0 0 20px;
  }
}

#doctor .director .catch {
  font-size: 26px;
  letter-spacing: 2px;
  line-height: 1.8;
  font-weight: 500;
  color: #212630;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  #doctor .director .catch {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

#doctor .director .img {
  position: relative;
}

#doctor .director .img .name {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(33, 38, 48, 0.7058823529);
  color: #fff;
  text-align: center;
  padding: 15px 35px;
  letter-spacing: 3px;
}

@media screen and (max-width: 768px) {
  #doctor .director .img .name {
    padding: 10px 20px;
  }
}

#doctor .director .img .name small {
  font-size: 16px;
  border-bottom: 1px solid #fff;
  padding-bottom: 4px;
}

#doctor .director .img .name .ja {
  font-size: 24px;
  display: block;
  line-height: 1;
  padding-top: 10px;
}

@media screen and (max-width: 768px) {
  #doctor .director .img .name .ja {
    font-size: 20px;
  }
}

#doctor .director .img .name .en {
  font-size: 12px;
  font-family: "noto-serif", serif;
  margin-top: -10px;
  letter-spacing: 2px;
}

#doctor .director .career {
  background-repeat: repeat;
  background-size: 1.1257035647vw auto;
  width: 100%;
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  #doctor .director .career {
    margin-top: 20px;
  }
}

#doctor .director .career .box-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  #doctor .director .career .box-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

#doctor .director .career .box-item .box {
  background-color: #ECECEC;
  width: 48%;
}

@media screen and (max-width: 768px) {
  #doctor .director .career .box-item .box {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  #doctor .director .career .box-item .box:last-of-type {
    margin-top: 20px;
  }
}

#doctor .director .career .box-item .box h4 {
  text-align: center;
  background: #F7581E;
  color: #fff;
  padding: 6px 0;
  font-size: 24px;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  #doctor .director .career .box-item .box h4 {
    font-size: 18px;
  }
}

#doctor .director .career .box-item .box ul {
  padding: 20px 30px;
}

@media screen and (max-width: 768px) {
  #doctor .director .career .box-item .box ul {
    padding: 10px 20px;
  }
}

#doctor .director .career .box-item .box ul li {
  line-height: 2.2;
}

#doctor .director .career .box-item .box1 h4 {
  background: #212630;
}

#doctor .director .career .box-item .box1 ul li::before {
  color: #212630;
}

#doctor .director .career .box-item .box2 ul li::before {
  color: #F7581E;
}

/*----------料金表----------*/
#price .price img {
  width: 100%;
}

#price .price .type1 th {
  width: 45%;
}

@media screen and (max-width: 768px) {
  #price .price .type1 th {
    width: 50%;
  }
}

#price .price .type1 td {
  width: 55%;
}

@media screen and (max-width: 768px) {
  #price .price .type1 td {
    width: 50%;
  }
}

#price .price .type2 .th1 {
  width: 230px;
}

@media screen and (max-width: 768px) {
  #price .price .type2 .th1 {
    width: 150px;
  }
}

#price .price .type2 .th2 {
  width: 175px;
}

@media screen and (max-width: 768px) {
  #price .price .type2 .th2 {
    width: 140px;
  }
}

#price .price .type2 .th5 {
  width: 180px;
}

@media screen and (max-width: 768px) {
  #price .price .type2 .th5 {
    width: 130px;
  }
}

@media screen and (max-width: 768px) {
  #price .price .table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media screen and (max-width: 768px) {
  #price .price .table-scroll table {
    min-width: 850px;
    width: 100%;
    font-size: 13px;
  }
}

/*----------アクセス----------*/
#access .map iframe {
  width: 100%;
  height: 500px;
}

@media screen and (max-width: 768px) {
  #access .map iframe {
    height: 300px;
  }
}

#access .map iframe+p {
  text-align: center;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  #access .map iframe+p {
    font-size: 14px;
  }
}

#access .map .btn01 {
  margin-top: 20px;
}

#access .movie {
  text-align: center;
}

#access .movie iframe {
  width: 888px;
  height: 500px;
}

@media screen and (max-width: 768px) {
  #access .movie iframe {
    width: 100%;
    height: 51vw;
  }
}

#access .movie iframe+p {
  text-align: center;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  #access .movie iframe+p {
    font-size: 14px;
  }
}

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

#access .going .going-items .item {
  background: #ECECEC;
  padding: 30px 40px 40px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #access .going .going-items .item {
    padding: 20px;
  }
}

#access .going .going-items .item h4 {
  font-size: 28px;
  font-weight: 500;
  border-bottom: 1px solid #212630;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  #access .going .going-items .item h4 {
    font-size: 22px;
  }
}

#access .going .going-items .item p {
  font-size: 17px;
}

@media screen and (max-width: 768px) {
  #access .going .going-items .item p {
    font-size: 14px;
  }
}

#access .going .going-items .item img {
  margin-top: 20px;
}

/*----------医院案内----------*/
#clinic .promise .items {
  gap: 40px;
}

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

#clinic .promise .items .item {
  position: relative;
}

#clinic .promise .items .item .txt {
  font-size: 20px;
  line-height: 1.6;
  text-align: center;
  padding-top: 15px;
}

@media screen and (max-width: 768px) {
  #clinic .promise .items .item .txt {
    font-size: 18px;
    padding-top: 10px;
  }
}

#clinic .feature .content .items .txt-wrap .num {
  font-family: "fairwater-script", sans-serif;
  font-size: 22px;
  color: #212630;
  line-height: 1.2;
}

@media screen and (max-width: 768px) {
  #clinic .feature .content .items .txt-wrap .num {
    font-size: 18px;
    text-align: center;
  }
}

#clinic .feature .content .items .txt-wrap .num span {
  font-family: "fairwater-script", sans-serif;
  font-size: 64px;
  margin-left: 7px;
}

@media screen and (max-width: 768px) {
  #clinic .feature .content .items .txt-wrap .num span {
    font-size: 45px;
  }
}

#clinic .feature .content .items .txt-wrap .num span strong {
  color: #F7581E;
  font-weight: normal;
}

#clinic .feature .content .items .txt-wrap h4 {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
  #clinic .feature .content .items .txt-wrap h4 {
    font-size: 22px;
    text-align: center;
  }
}

#clinic .feature .content .items01 .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  #clinic .feature .content .items01 .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

#clinic .feature .content .items01 .item:first-of-type {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  #clinic .feature .content .items01 .item:first-of-type {
    margin-bottom: 40px;
  }
}

#clinic .feature .content .items01 .item .img {
  width: 537px;
  -webkit-box-shadow: -15px 15px 0 #212630;
  box-shadow: -15px 15px 0 #212630;
  margin-left: 15px;
}

@media screen and (max-width: 768px) {
  #clinic .feature .content .items01 .item .img {
    width: 100%;
    margin-bottom: 35px;
    margin-left: 0px;
    -webkit-box-shadow: -10px 10px 0 #212630;
    box-shadow: -10px 10px 0 #212630;
  }
}

#clinic .feature .content .items01 .item .txt-wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 50px;
}

@media screen and (max-width: 768px) {
  #clinic .feature .content .items01 .item .txt-wrap {
    margin-left: 0;
  }
}

#clinic .feature .content .items01 .item.rvs {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  #clinic .feature .content .items01 .item.rvs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

#clinic .feature .content .items01 .item.rvs .img {
  -webkit-box-shadow: 15px 15px 0 #212630;
  box-shadow: 15px 15px 0 #212630;
  margin-right: 15px;
}

@media screen and (max-width: 768px) {
  #clinic .feature .content .items01 .item.rvs .img {
    margin-right: 0px;
    -webkit-box-shadow: 10px 10px 0 #212630;
    box-shadow: 10px 10px 0 #212630;
  }
}

#clinic .feature .content .items01 .item.rvs .txt-wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 0px;
  margin-right: 50px;
}

@media screen and (max-width: 768px) {
  #clinic .feature .content .items01 .item.rvs .txt-wrap {
    margin-right: 0;
  }
}

#clinic .feature .content .items02 {
  background: #2B313B;
  position: relative;
  padding: 60px 70px 70px;
  margin: 70px 0;
}

@media screen and (max-width: 768px) {
  #clinic .feature .content .items02 {
    padding: 40px 20px;
    margin-bottom: 40px;
    margin-top: 40px;
  }
}

#clinic .feature .content .items02::before {
  content: "";
  background-image: url(../images/top/feature3-bg.png);
  width: 100%;
  height: 571px;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  background-position: center;
}

#clinic .feature .content .items02 .item {
  z-index: 1;
  position: relative;
}

#clinic .feature .content .items02 .item .txt-wrap {
  color: #fff;
}

#clinic .feature .content .items02 .item .txt-wrap .num {
  color: #fff;
  text-align: center;
}

#clinic .feature .content .items02 .item .txt-wrap .num span strong {
  color: #fff;
}

#clinic .feature .content .items02 .item .txt-wrap h4 {
  text-align: center;
}

#clinic .feature .content .items02 .item .txt-wrap .txt {
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  #clinic .feature .content .items02 .item .txt-wrap .txt {
    text-align: left;
    margin-bottom: 30px;
  }
}

#clinic .feature .content .items02 .item .img {
  gap: 40px;
}

@media screen and (max-width: 768px) {
  #clinic .feature .content .items02 .item .img {
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}

#clinic .first .ttl02 {
  margin-top: 10px;
  margin-bottom: 15px;
}

#clinic .clinic-slide {
  max-width: 1080px !important;
  text-align: center;
  position: relative;
}

#clinic .clinic-slide-main {
  position: relative;
}

#clinic .clinic-slide-main__outer {
  width: 100%;
  height: 100%;
  position: relative;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  #clinic .clinic-slide-main__outer {
    margin-bottom: 10px;
  }
}

#clinic .clinic-slide-main__item {
  width: 100%;
  position: relative;
  text-align: center;
}

#clinic .clinic-slide-main__img {
  width: 100%;
  max-width: none;
  position: relative;
  z-index: 1;
}

#clinic .clinic-slide-main__caption {
  font-weight: 500;
  line-height: 1.4;
  font-size: 20px;
  background: #212630;
  color: #fff;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  min-width: 150px;
  padding: 10px 10px;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  #clinic .clinic-slide-main__caption {
    padding: 10px;
    min-width: 80px;
    font-size: 14px;
  }
}

#clinic .clinic-slide {
  max-width: 900px !important;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

#clinic .clinic-slide-main {
  position: relative;
  z-index: 10;
  cursor: pointer;
}

#clinic .clinic-slide-button {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
}

#clinic .clinic-slide-button-next::before {
  content: "";
  width: 55px;
  height: 55px;
  border-top: 3px solid #212630;
  border-right: 3px solid #212630;
  position: absolute;
  top: 50%;
  right: -60px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  z-index: 10;
}

@media screen and (max-width: 768px) {
  #clinic .clinic-slide-button-next::before {
    width: 20px;
    height: 20px;
    right: 3%;
  }
}

#clinic .clinic-slide-button-prev::before {
  content: "";
  width: 55px;
  height: 55px;
  border-top: 3px solid #212630;
  border-left: 3px solid #212630;
  position: absolute;
  top: 50%;
  left: -60px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  z-index: 10;
}

@media screen and (max-width: 768px) {
  #clinic .clinic-slide-button-prev::before {
    width: 20px;
    height: 20px;
    left: 3%;
  }
}

#clinic .facility .items {
  gap: 40px;
}

@media screen and (max-width: 768px) {
  #clinic .facility .items {
    grid-template-columns: repeat(1, 1fr);
  }
}

#clinic .facility .items .item {
  background: #ECECEC;
}

#clinic .facility .items .item h4 {
  background: #212630;
  color: #fff;
  font-size: 22px;
  padding: 5px 0;
  font-weight: 500;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #clinic .facility .items .item h4 {
    font-size: 20px;
  }
}

#clinic .facility .items .item p {
  padding: 20px;
}

/*----------診療案内----------*/
@media screen and (max-width: 768px) {
  #medical .anchor {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  #medical .medical {
    padding: 0 20px;
    margin-bottom: 40px;
  }
}

#medical .medical .flex {
  margin-top: 170px;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
  -ms-flex-pack: end;
  justify-content: end;
  position: relative;
}

@media screen and (max-width: 768px) {
  #medical .medical .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    margin-top: 40px;
  }
}

#medical .medical .flex::before {
  position: absolute;
  display: block;
  content: "";
  background: #f3f3f3;
  width: 94%;
  height: 84%;
  top: 36%;
  margin: auto;
  left: 0;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  #medical .medical .flex::before {
    display: none;
  }
}

#medical .medical .flex .img {
  width: 45%;
  margin: 0 0 0 5%;
}

@media screen and (max-width: 768px) {
  #medical .medical .flex .img {
    width: 100%;
    margin: 0;
  }
}

#medical .medical .flex .txt {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 580px;
}

#medical .medical .flex .txt h3 {
  margin-top: 0;
  font-size: 32px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  #medical .medical .flex .txt h3 {
    font-size: 25px;
    margin-top: 10px;
  }
}

#medical .medical .flex .txt .btn01 {
  margin: 30px 0 0;
}

@media screen and (max-width: 768px) {
  #medical .medical .flex .txt .btn01 {
    margin: 20px auto 0;
  }
}

#medical .medical .flex.flex01 {
  -webkit-box-pack: start;
  -webkit-justify-content: start;
  -ms-flex-pack: start;
  justify-content: start;
}

#medical .medical .flex.flex01::before {
  left: auto;
  right: 0 !important;
}

#medical .medical .flex.flex01 .img {
  margin: 0 5% 0 0;
}

/*----------治療内容共通----------*/
#toothdecay .about .flex01 .img,
#pediatric .about .flex01 .img,
#denture .treatment .flex01 .img,
#oralsurgery .about .flex01 .img {
  -webkit-box-shadow: -15px 15px 0 #212630;
  box-shadow: -15px 15px 0 #212630;
}

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

  #toothdecay .about .flex01 .img,
  #pediatric .about .flex01 .img,
  #denture .treatment .flex01 .img,
  #oralsurgery .about .flex01 .img {
    -webkit-box-shadow: -10px 10px 0 #212630;
    box-shadow: -10px 10px 0 #212630;
  }
}

#periodontal .about .flex02 .img,
#orthodontics .about .flex02 .img,
#implant .about .flex02 .img,
#aesthetic .about .flex02 .img {
  -webkit-box-shadow: 15px 15px 0 #212630;
  box-shadow: 15px 15px 0 #212630;
}

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

  #periodontal .about .flex02 .img,
  #orthodontics .about .flex02 .img,
  #implant .about .flex02 .img,
  #aesthetic .about .flex02 .img {
    -webkit-box-shadow: 10px 10px 0 #212630;
    box-shadow: 10px 10px 0 #212630;
  }
}

/*----------歯周病治療----------*/
#periodontal .periodontal .list05 {
  background: #ECECEC;
}

/*----------小児歯科----------*/
#pediatric .prevention .list05 {
  background: #fff1e7;
  padding: 15px 15px 0px 20px;
  margin: 10px 0;
}

@media screen and (max-width: 768px) {
  #pediatric .prevention .list05 {
    padding: 20px 20px 20px 25px;
  }
}

/*----------矯正歯科----------*/
#orthodontics .invisalign .txt {
  text-align: center;
}

@media screen and (max-width: 768px) {
  #orthodontics .invisalign .txt {
    text-align: left;
  }
}

/*----------インプラント----------*/
#implant .merit .layout01 {
  gap: 20px;
}

#implant .merit .layout01 .item {
  background: #212630;
  color: #fff;
}

@media screen and (max-width: 768px) {
  #implant .merit .layout01 .item {
    padding: 20px;
  }
}

#implant .merit .layout01 .item h3 {
  border-bottom: 1px solid #fff;
}

#implant .merit .layout01 .item ul li::before {
  color: #fff;
}

#implant .merit .layout01 .item:first-of-type {
  background: #F7581E;
  border: 1px solid #F7581E;
}

/*----------歯科口腔外科----------*/
#oralsurgery .wisdom .merit {
  gap: 20px;
}

#oralsurgery .wisdom .merit .item {
  background: #212630;
  color: #fff;
}

@media screen and (max-width: 768px) {
  #oralsurgery .wisdom .merit .item {
    padding: 20px;
  }
}

#oralsurgery .wisdom .merit .item h3 {
  border-bottom: 1px solid #fff;
}

#oralsurgery .wisdom .merit .item ul li::before {
  color: #fff;
}

#oralsurgery .wisdom .merit .item:first-of-type {
  background: #F7581E;
  border: 1px solid #F7581E;
}

#oralsurgery .wisdom .flow .item {
  position: relative;
}

#oralsurgery .wisdom .flow .item h3 {
  padding-top: 0px;
}

#oralsurgery .wisdom .flow .item .num {
  position: absolute;
  background: #212630;
  width: 50px;
  height: 50px;
  color: #fff;
  font-size: 22px;
  text-align: center;
  left: 0;
  top: 0;
}

#oralsurgery .wisdom .note {
  margin-top: 5px;
}

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

  専門サイト

============================================================================*/
/*----------ホワイトニング----------*/
#whitening {
  color: #000;
  font-size: 18px;
  letter-spacing: 0;
}

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

#whitening .main-ttl {
  font-size: 47px;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 50px;
  letter-spacing: 3px;
}

@media screen and (max-width: 768px) {
  #whitening .main-ttl {
    font-size: 24px;
    margin-bottom: 30px;
    letter-spacing: 2px;
  }
}

#whitening .main-ttl span {
  display: block;
  font-family: "trajan-pro-3", serif;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  #whitening .main-ttl span {
    line-height: 1.4;
  }
}

#whitening .main-ttl span small {
  font-size: 22px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #whitening .main-ttl span small {
    font-size: 16px;
  }
}

#whitening .main-ttl span small:before,
#whitening .main-ttl span small:after {
  content: "";
  position: absolute;
  top: 48%;
  display: inline-block;
  width: 27px;
  height: 1px;
  background-color: #000000;
}

#whitening .main-ttl span small:before {
  left: -40px;
}

#whitening .main-ttl span small:after {
  right: -40px;
}

#whitening #mv {
  position: relative;
  background: url(../images/whitening/mv.jpg) no-repeat 50% 50%;
  background-size: cover;
  height: 640px;
}

@media screen and (max-width: 1200px) {
  #whitening #mv {
    height: 600px;
  }
}

@media screen and (max-width: 768px) {
  #whitening #mv {
    background: url(../images/whitening/mv-sp.jpg);
    background-size: cover;
    background-position: 60%;
    height: calc(100svh - 60px);
  }
}

#whitening #mv::before {
  display: none;
}

#whitening #mv .logo {
  padding: 20px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  width: 410px;
}

@media screen and (max-width: 1200px) {
  #whitening #mv .logo {
    width: 230px;
  }
}

#whitening #mv .logo p {
  font-size: 17px;
  font-weight: 600;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  margin-top: 10px;
  text-align: center;
  padding: 2px 0 4px;
  letter-spacing: 2px;
}

@media screen and (max-width: 1200px) {
  #whitening #mv .logo p {
    font-size: 14px;
    margin-top: 5px;
    letter-spacing: 1px;
  }
}

#whitening #mv .txt {
  position: absolute;
  top: 53%;
  left: 3%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  #whitening #mv .txt {
    top: auto;
    bottom: 2.5%;
    left: 6%;
  }
}

#whitening #mv .txt h2 {
  font-size: 50px;
  font-weight: 500;
  letter-spacing: 5px;
  line-height: 1.4;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
}

@media screen and (max-width: 768px) {
  #whitening #mv .txt h2 {
    font-size: 28px;
  }
}

#whitening #mv .txt h2 span {
  margin: 0 -25px;
}

#whitening #mv .feature {
  position: absolute;
  right: 3%;
  top: 15%;
}

@media screen and (max-width: 1200px) {
  #whitening #mv .feature {
    top: 11%;
    right: 1%;
  }
}

@media screen and (max-width: 768px) {
  #whitening #mv .feature {
    right: auto;
    left: 40px;
    top: 35%;
  }
}

#whitening #mv .feature .item {
  border: 1px solid #8A7733;
  width: 178px;
  height: 178px;
  border-radius: 100vw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  #whitening #mv .feature .item {
    width: 100px;
    height: 100px;
  }
}

#whitening #mv .feature .item:first-of-type {
  margin-left: -90px;
  margin-bottom: -45px;
}

@media screen and (max-width: 768px) {
  #whitening #mv .feature .item:first-of-type {
    margin-left: -30px;
    margin-bottom: -15px;
  }
}

#whitening #mv .feature .item p {
  font-size: 23px;
  color: #8A7733;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 3px;
}

@media screen and (max-width: 768px) {
  #whitening #mv .feature .item p {
    font-size: 16px;
    letter-spacing: 1px;
  }
}

#whitening #mv .en {
  position: absolute;
  left: 0;
  bottom: -3px;
  font-size: 87px;
  color: #fff;
  opacity: 0.7;
  font-family: "trajan-pro-3", serif;
  font-weight: 400;
  letter-spacing: 4px;
  line-height: 0.7;
}

@media screen and (max-width: 768px) {
  #whitening #mv .en {
    font-size: 40px;
    line-height: 0.8;
  }
}

#whitening #mv .en span {
  font-size: 117px;
}

@media screen and (max-width: 768px) {
  #whitening #mv .en span {
    font-size: 60px;
  }
}

#whitening .worries {
  background: url(../images/whitening/worries-bg.jpg);
  background-size: cover;
  padding: 80px 0;
}

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

#whitening .worries .main-ttl {
  color: #fff;
}

#whitening .worries .main-ttl span small:before,
#whitening .worries .main-ttl span small:after {
  background: #fff;
}

#whitening .worries .items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

#whitening .worries .items .row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 40px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  #whitening .worries .items .row {
    gap: 15px;
  }
}

#whitening .worries .items .row .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 240px;
  height: 240px;
  border-radius: 100vw;
  background: #fff;
  position: relative;
}

@media screen and (max-width: 768px) {
  #whitening .worries .items .row .item {
    width: 46%;
    height: 140px;
    border-radius: 0;
  }
}

@media screen and (max-width: 768px) {
  #whitening .worries .items .row .item.first {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 46%;
    -ms-flex: 0 1 46%;
    flex: 0 1 46%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 30px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

#whitening .worries .items .row .item::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  right: 7px;
  bottom: 7px;
  border: 1px solid #000000;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  #whitening .worries .items .row .item::after {
    border-radius: 0;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
  }
}

#whitening .worries .items .row .item .num {
  font-family: "trajan-pro-3", serif;
  font-size: 30px;
  border-bottom: 1px solid #000;
  display: inline-block;
  padding: 0 15px;
  line-height: 1;
  padding-bottom: 15px;
  margin-bottom: 10px;
  margin-top: -10px;
}

@media screen and (max-width: 768px) {
  #whitening .worries .items .row .item .num {
    font-size: 24px;
    padding-bottom: 10px;
    margin-top: 0px;
  }
}

#whitening .worries .items .row .item h4 {
  font-size: 20px;
  text-align: center;
  font-weight: 500;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  #whitening .worries .items .row .item h4 {
    font-size: 15px;
  }
}

@media screen and (max-width: 768px) {
  #whitening .worries .items .row:first-of-type {
    margin-bottom: 10px;
  }
}

#whitening .message .ttl-wrap {
  text-align: center;
  font-size: 40px;
  line-height: 1.5;
  padding: 70px 0 15px;
  letter-spacing: 3px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #whitening .message .ttl-wrap {
    font-size: 21px;
    padding: 30px 0 15px;
    letter-spacing: 2px;
  }
}

#whitening .message .ttl-wrap .triangular {
  width: 100%;
  height: 64px;
  background: url(../images/whitening/triangular.png);
  background-size: cover;
  background-position: top center;
  position: absolute;
  bottom: -64px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
}

@media screen and (max-width: 768px) {
  #whitening .message .ttl-wrap .triangular {
    height: 21px;
    bottom: -21px;
  }
}

#whitening .message .ttl-wrap .ttl {
  position: relative;
  display: inline-block;
}

#whitening .message .ttl-wrap .ttl::before {
  content: "";
  position: absolute;
  width: 37px;
  height: 57px;
  background: url(../images/whitening/message-deco1.png);
  background-size: cover;
  left: -60px;
  bottom: 10px;
}

@media screen and (max-width: 768px) {
  #whitening .message .ttl-wrap .ttl::before {
    left: -40px;
    bottom: 9px;
    width: 27px;
    height: 49px;
  }
}

#whitening .message .ttl-wrap .ttl::after {
  content: "";
  position: absolute;
  width: 37px;
  height: 57px;
  background: url(../images/whitening/message-deco2.png);
  background-size: cover;
  right: -60px;
  bottom: 10px;
}

@media screen and (max-width: 768px) {
  #whitening .message .ttl-wrap .ttl::after {
    right: -40px;
    bottom: 9px;
    width: 27px;
    height: 49px;
  }
}

#whitening .message .contents {
  background: #F3F0EB;
  padding: 140px 0 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  #whitening .message .contents {
    padding: 60px 20px 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

#whitening .message .contents .img {
  width: 600px;
}

@media screen and (max-width: 1200px) {
  #whitening .message .contents .img {
    width: 500px;
  }
}

@media screen and (max-width: 768px) {
  #whitening .message .contents .img {
    width: 100%;
    margin-bottom: 20px;
  }
}

#whitening .message .contents .txt {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 60px;
  margin-right: 4%;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 768px) {
  #whitening .message .contents .txt {
    margin-left: 0;
    margin-right: 0;
  }
}

#whitening .difference {
  padding: 80px 0;
  background: #EBF7FF;
}

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

#whitening .difference .main-ttl {
  margin-bottom: 70px;
}

@media screen and (max-width: 768px) {
  #whitening .difference .main-ttl {
    margin-bottom: 50px;
  }
}

#whitening .difference .contents .items {
  gap: 60px;
}

@media screen and (max-width: 768px) {
  #whitening .difference .contents .items {
    grid-template-columns: repeat(1, 1fr);
  }
}

#whitening .difference .contents .items .item {
  background: #fff;
  outline: 1px solid #000000;
  outline-offset: -10px;
  padding: 80px 50px 50px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #whitening .difference .contents .items .item {
    padding: 44px 25px 25px;
    outline-offset: -5px;
  }
}

#whitening .difference .contents .items .item h5 {
  position: absolute;
  background: #838383;
  font-size: 30px;
  letter-spacing: 3px;
  color: #fff;
  text-align: center;
  width: 83%;
  font-weight: 500;
  top: -27px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 5px 0;
}

@media screen and (max-width: 768px) {
  #whitening .difference .contents .items .item h5 {
    font-size: 20px;
    padding: 2px 0 4px;
  }
}

#whitening .difference .contents .items .item h5 span::before {
  position: absolute;
  bottom: -14px;
  width: 30px;
  height: 15px;
  background-color: #838383;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

#whitening .difference .contents .items .item h5.bg-gold {
  background: #8A7733;
}

#whitening .difference .contents .items .item h5.bg-gold span::before {
  background: #8A7733;
}

#whitening .difference .contents .items .item p {
  margin-top: 20px;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 768px) {
  #whitening .difference .contents .items .item p {
    margin-top: 15px;
  }
}

#whitening .type {
  padding: 80px 0;
  background: url(../images/whitening/type-bg.jpg);
  background-size: cover;
}

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

#whitening .type .contents .items {
  gap: 40px;
}

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

#whitening .type .contents .items .item {
  background: #fff;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.1764705882);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1764705882);
  padding: 30px;
}

@media screen and (max-width: 768px) {
  #whitening .type .contents .items .item {
    padding: 20px;
  }
}

#whitening .type .contents .items .item:nth-of-type(odd) .img {
  background: #EBF7FF;
}

#whitening .type .contents .items .item .img {
  width: 180px;
  height: 180px;
  background: #F3F0EB;
  border-radius: 100vw;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #whitening .type .contents .items .item .img {
    width: 100px;
    height: 100px;
  }
}

#whitening .type .contents .items .item .img img {
  width: 86px;
  padding-top: 47px;
}

@media screen and (max-width: 768px) {
  #whitening .type .contents .items .item .img img {
    width: 55px;
    padding-top: 24px;
  }
}

#whitening .type .contents .items .item h4 {
  margin: 14px 0 10px;
  text-align: center;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  #whitening .type .contents .items .item h4 {
    font-size: 20px;
    margin: 10px 0 6px;
  }
}

#whitening .type .contents .items .item h4.sm {
  font-size: 23px;
}

@media screen and (max-width: 768px) {
  #whitening .type .contents .items .item h4.sm {
    font-size: 20px;
  }
}

#whitening .type .contents .items .item p {
  font-family: "Noto Sans JP", sans-serif;
}

#whitening .type .contents .well {
  background: #8A7733;
  padding: 20px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  margin-top: 70px;
}

@media screen and (max-width: 768px) {
  #whitening .type .contents .well {
    margin-top: 30px;
    text-align: left;
  }
}

#whitening .course {
  padding: 80px 0 0;
}

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

#whitening .course .ttl {
  font-size: 29px;
  letter-spacing: 3px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  #whitening .course .ttl {
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }
}

#whitening .course .ttl span {
  display: block;
  font-size: 81px;
  font-family: "trajan-pro-3", serif;
  color: #BFDCEB;
}

@media screen and (max-width: 768px) {
  #whitening .course .ttl span {
    font-size: 40px;
  }
}

#whitening .course .ttl+p {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  #whitening .course .ttl+p {
    margin-bottom: 30px;
    padding: 0 20px;
    text-align: left;
  }
}

#whitening .course .item .intro-wrap {
  background: url(../images/whitening/home-whitening-bg.jpg);
  background-size: cover;
  padding: 80px 0 220px;
}

@media screen and (max-width: 768px) {
  #whitening .course .item .intro-wrap {
    padding: 40px 0 140px;
  }
}

#whitening .course .item .intro-wrap .intro {
  color: #fff;
  text-align: center;
  font-size: 37px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 3px;
}

@media screen and (max-width: 768px) {
  #whitening .course .item .intro-wrap .intro {
    font-size: 18px;
    letter-spacing: 2px;
  }
}

#whitening .course .item .intro-wrap .intro span {
  font-size: 46px;
  border-bottom: 1px solid #fff;
  padding-bottom: 16px;
}

@media screen and (max-width: 768px) {
  #whitening .course .item .intro-wrap .intro span {
    font-size: 25px;
    padding-bottom: 0;
  }
}

#whitening .course .item .about {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: -140px;
  margin-left: 63px;
}

@media screen and (max-width: 768px) {
  #whitening .course .item .about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: 0;
    padding: 20px;
  }
}

#whitening .course .item .about .img {
  border: 8px solid #fff;
  width: 660px;
}

@media screen and (max-width: 1200px) {
  #whitening .course .item .about .img {
    width: 540px;
  }
}

@media screen and (max-width: 768px) {
  #whitening .course .item .about .img {
    width: 100%;
  }
}

#whitening .course .item .about .txt {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background: #fff;
  padding: 70px 70px 0;
  margin-top: 126px;
  margin-left: -53px;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  #whitening .course .item .about .txt {
    padding: 0;
    margin-left: 0;
    margin-top: 15px;
  }
}

#whitening .course .item .about .txt h5 {
  text-align: center;
  font-size: 35px;
  margin-bottom: 30px;
  font-weight: 500;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  #whitening .course .item .about .txt h5 {
    font-size: 22px;
    margin-bottom: 10px;
  }
}

#whitening .course .item .about .txt p {
  font-family: "Noto Sans JP", sans-serif;
}

#whitening .course .item .osusume {
  margin-top: 70px;
  background: #F3F0EB;
  padding: 40px;
}

@media screen and (max-width: 768px) {
  #whitening .course .item .osusume {
    margin-top: 5px;
    padding: 20px;
  }
}

#whitening .course .item .osusume h6 {
  font-size: 26px;
  text-align: center;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
  #whitening .course .item .osusume h6 {
    font-size: 19px;
    margin-bottom: 10px;
  }
}

#whitening .course .item .osusume ul {
  gap: 15px 40px;
}

@media screen and (max-width: 768px) {
  #whitening .course .item .osusume ul {
    grid-template-columns: repeat(1, 1fr);
  }
}

#whitening .course .item .osusume ul li {
  border-bottom: 1px dotted #000000;
  padding-bottom: 5px;
  position: relative;
  padding-left: 32px;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 768px) {
  #whitening .course .item .osusume ul li {
    padding-left: 22px;
  }
}

#whitening .course .item .osusume ul li::before {
  content: "";
  width: 23px;
  height: 23px;
  background: url(../images/whitening/check.png);
  background-size: cover;
  position: absolute;
  left: 0;
  top: 7px;
}

@media screen and (max-width: 768px) {
  #whitening .course .item .osusume ul li::before {
    width: 16px;
    height: 16px;
  }
}

#whitening .course .item .flow {
  border: 8px solid #F3F0EB;
  padding: 70px 80px 80px;
  margin-bottom: 80px;
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  #whitening .course .item .flow {
    margin-top: 30px;
    padding: 20px;
    margin-bottom: 40px;
  }
}

#whitening .course .item .flow h5 {
  text-align: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  #whitening .course .item .flow h5 {
    margin-bottom: 30px;
  }
}

#whitening .course .item .flow h5 span {
  font-size: 35px;
  border-bottom: 1px solid #000;
  padding-bottom: 15px;
  font-weight: 500;
  line-height: 1.4;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  #whitening .course .item .flow h5 span {
    font-size: 21px;
  }
}

#whitening .course .item .flow .flow-contents {
  padding: 0;
  border: none;
}

#whitening .course .item .flow .flow-contents .item .txt {
  padding-right: 0;
}

#whitening .course .item.office-whitening .note {
  margin-top: 10px;
  font-family: "Noto Sans JP", sans-serif;
}

#whitening .course .item.office-whitening .intro-wrap {
  background: url(../images/whitening/office-whitening-bg.jpg);
  background-size: cover;
}

#whitening .course .item.office-whitening .about {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin-left: 0;
  margin-right: 63px;
}

@media screen and (max-width: 768px) {
  #whitening .course .item.office-whitening .about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 0;
  }
}

#whitening .course .item.office-whitening .about .txt {
  margin-left: 0;
  margin-right: -53px;
}

@media screen and (max-width: 768px) {
  #whitening .course .item.office-whitening .about .txt {
    margin-right: 0;
  }
}

#whitening .course .well {
  background: #8A7733;
  padding: 20px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  margin-bottom: 80px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  #whitening .course .well {
    margin-bottom: 30px;
    text-align: left;
  }
}

#whitening .contact {
  background: #EBF7FF;
  padding: 50px 0;
}

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

#whitening .contact h3 {
  font-size: 30px;
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  #whitening .contact h3 {
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 20px;
  }
}

#whitening .contact h3::before,
#whitening .contact h3::after {
  content: "";
  height: 1px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  background-color: #000000;
}

#whitening .contact h3::before {
  margin-right: 1rem;
}

#whitening .contact h3::after {
  margin-left: 1rem;
}

#whitening .contact .items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: -2%;
}

@media screen and (max-width: 768px) {
  #whitening .contact .items {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: 0;
    gap: 15px;
  }
}

#whitening .contact .items a {
  width: 31.333%;
  background: #FFFFFF;
  margin-left: 2%;
  color: #000;
  text-align: center;
  padding: 14px;
}

@media screen and (max-width: 768px) {
  #whitening .contact .items a {
    width: 100%;
    padding: 8px 10px 18px;
  }
}

#whitening .contact .items a p {
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  #whitening .contact .items a p {
    font-size: 14px;
  }
}

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

@media screen and (max-width: 768px) {
  #whitening .contact .items a h4 {
    font-size: 22px;
    line-height: 0.6;
    margin: 6px 0 2px;
  }
}

#whitening .contact .items a h4 span {
  padding-left: 30px;
  position: relative;
}

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

@media screen and (max-width: 768px) {
  #whitening .contact .items a h4 span::before {
    top: 2px;
  }
}

#whitening .contact .items a.rsv {
  background: #8A7733;
  color: #fff;
}

#whitening .contact .items a.rsv h4 span::before {
  background-image: url(../images/common/web.png);
  background-size: cover;
}

#whitening .contact .items a.line {
  background: #01B901;
  color: #fff;
}

#whitening .contact .items a.line h4 span::before {
  background-image: url(../images/common/line.png);
  background-size: cover;
}

/*----------予防歯科----------*/
#preventive {
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-size: 18px;
  letter-spacing: 0;
}

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

#preventive .main-ttl {
  font-size: 80px;
  color: #41BAB6;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 5px;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  #preventive .main-ttl {
    font-size: 36px;
    letter-spacing: 3px;
    margin-bottom: 30PX;
    line-height: 1.2;
  }
}

#preventive .main-ttl strong {
  color: #fff;
  -webkit-text-stroke: 0.1px #41BAB6;
}

@media screen and (max-width: 768px) {
  #preventive .main-ttl strong {
    color: #fff;
    -webkit-text-stroke: 1px #41BAB6;
  }
}

#preventive .main-ttl .ja {
  display: block;
  font-size: 30px;
  font-weight: 500;
  color: #333;
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  #preventive .main-ttl .ja {
    font-size: 18px;
    padding-top: 10px;
  }
}

#preventive .max-ttl {
  background: #41BAB6;
  padding: 70px 0;
  position: relative;
}

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

#preventive .max-ttl::before {
  position: absolute;
  bottom: -22px;
  width: 148px;
  height: 23px;
  background-color: #41BAB6;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  z-index: 1;
}

@media screen and (max-width: 768px) {
  #preventive .max-ttl::before {
    width: 80px;
    height: 15px;
    bottom: -14px;
  }
}

#preventive .max-ttl h3 {
  font-size: 42px;
  color: #fff;
  letter-spacing: 3px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #preventive .max-ttl h3 {
    font-size: 22px;
    line-height: 1.6;
  }
}

#preventive .mv-wrap {
  padding: 45px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #preventive .mv-wrap {
    padding: 20px;
  }
}

#preventive .mv-wrap::before {
  content: "";
  width: 249px;
  height: 376px;
  background-image: url(../images/preventive/mv-bg-deco1.png);
  position: absolute;
  background-size: cover;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  #preventive .mv-wrap::before {
    width: 137px;
    height: 207px;
  }
}

#preventive .mv-wrap::after {
  content: "";
  width: 396px;
  height: 391px;
  background-image: url(../images/preventive/mv-bg-deco2.png);
  position: absolute;
  background-size: cover;
  top: 0;
  right: 0;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  #preventive .mv-wrap::after {
    width: 200px;
    height: 200px;
  }
}

#preventive #mv {
  position: relative;
  background: url(../images/preventive/mv.jpg) no-repeat 50% 50%;
  background-size: cover;
  height: 555px;
  width: auto;
  border-radius: 100px;
}

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

@media screen and (max-width: 768px) {
  #preventive #mv {
    height: calc(100svh - 150px);
    border-radius: 40px;
    background: url(../images/preventive/mv-sp.jpg);
    background-size: cover;
    background-position: center;
  }
}

#preventive #mv::before {
  content: "";
  width: 169px;
  height: 179px;
  background-image: url(../images/preventive/mv-deco2.png);
  position: absolute;
  background-size: cover;
  left: auto;
  right: -30px;
  top: 60px;
  background-color: inherit;
}

@media screen and (max-width: 768px) {
  #preventive #mv::before {
    width: 68px;
    height: 72px;
    right: -12px;
    top: 47px;
  }
}

#preventive #mv::after {
  content: "";
  width: 194px;
  height: 225px;
  background-image: url(../images/preventive/mv-deco1.png);
  position: absolute;
  background-size: cover;
  left: -30px;
  bottom: 40px;
  -webkit-transform: none;
  transform: none;
}

@media screen and (max-width: 768px) {
  #preventive #mv::after {
    left: -10px;
    bottom: 13px;
    width: 77px;
    height: 90px;
  }
}

#preventive #mv .logo {
  padding: 30px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  width: 410px;
  position: absolute;
  background: #fff;
  top: -45px;
  left: -45px;
  border-radius: 0 0 45px 0;
}

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

@media screen and (max-width: 768px) and (max-width: 768px) {
  #preventive #mv .logo {
    top: -20px;
    left: -20px;
    padding: 13px 18px 18px;
    border-radius: 0 0 20px 0;
  }
}

#preventive #mv .logo p {
  font-size: 18px;
  font-weight: 600;
  background: #FF9191;
  color: #fff;
  border-radius: 100vw;
  width: 350px;
  margin-left: auto;
  text-align: center;
  padding: 2px 0 4px;
  letter-spacing: 2px;
}

@media screen and (max-width: 768px) {
  #preventive #mv .logo p {
    width: 100%;
    font-size: 13px;
    padding: 2px 0;
    margin-top: 5px;
  }
}

#preventive #mv .txt {
  position: absolute;
  bottom: 8%;
  right: 3%;
}

@media screen and (max-width: 768px) {
  #preventive #mv .txt {
    right: 20px;
    bottom: 20px;
    z-index: 111;
  }
}

#preventive #mv .txt h2 {
  position: relative;
  font-size: 52px;
  font-weight: 500;
  letter-spacing: 3px;
  line-height: 1.4;
  text-shadow: 0 0 7px #fff, 0 0 7px #fff, 0 0 7px #fff, 0 0 7px #fff, 0 0 7px #fff, 0 0 7px #fff;
}

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

#preventive #mv .txt h2::before {
  content: "";
  width: 112px;
  height: 71px;
  background-image: url(../images/preventive/mv-txt-deco.png);
  position: absolute;
  background-size: cover;
  left: -50px;
  top: -40px;
}

@media screen and (max-width: 768px) {
  #preventive #mv .txt h2::before {
    left: -31px;
    top: -29px;
    width: 66px;
    height: 41px;
  }
}

#preventive #mv .txt h2 span {
  font-size: 60px;
  color: #41BAB6;
  margin: 0 -15px;
}

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

#preventive .message {
  background: #FEFED8;
  padding: 80px 0;
  position: relative;
}

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

#preventive .message::before {
  content: "";
  width: 242px;
  height: 325px;
  background-image: url(../images/preventive/message-deco1.png);
  position: absolute;
  background-size: cover;
  left: 24px;
  top: 54%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 1200px) {
  #preventive .message::before {
    width: 177px;
    height: 239px;
  }
}

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

#preventive .message::after {
  content: "";
  width: 251px;
  height: 387px;
  background-image: url(../images/preventive/message-deco2.png);
  position: absolute;
  background-size: cover;
  right: 30px;
  top: 54%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 1200px) {
  #preventive .message::after {
    width: 178px;
    height: 273px;
  }
}

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

#preventive .message .ttl {
  text-align: center;
  color: #41BAB6;
  font-size: 42px;
  line-height: 1.4;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  #preventive .message .ttl {
    font-size: 22px;
    margin-bottom: 30px;
  }
}

#preventive .message .ttl span {
  border-bottom: 3px dotted #41BAB6;
  padding-bottom: 2px;
}

#preventive .message .txt {
  text-align: center;
}

@media screen and (max-width: 768px) {
  #preventive .message .txt {
    padding: 0 20px;
    text-align: left;
  }
}

#preventive .preventive {
  padding: 80px 0;
  background-color: #ecfafa;
  background-image: -webkit-radial-gradient(circle, #ffffff 5px, transparent 5px), -webkit-radial-gradient(circle, #ffffff 5px, transparent 5px);
  background-image: radial-gradient(circle, #ffffff 5px, transparent 5px), radial-gradient(circle, #ffffff 5px, transparent 5px);
  background-position: 0 0, 24px 23px;
  background-size: 48px 46px;
  background-repeat: repeat;
}

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

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

@media screen and (max-width: 768px) {
  #preventive .preventive .contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

#preventive .preventive .contents .txt {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: 60px;
  margin-left: 5%;
}

@media screen and (max-width: 768px) {
  #preventive .preventive .contents .txt {
    margin: 0;
    padding: 0 20px;
  }
}

#preventive .preventive .contents .img {
  width: 624px;
}

@media screen and (max-width: 1200px) {
  #preventive .preventive .contents .img {
    width: 500px;
  }
}

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

#preventive .preventive .contents .img img {
  border-radius: 80px 0 0 80px;
}

@media screen and (max-width: 768px) {
  #preventive .preventive .contents .img img {
    border-radius: 40px 0 0 40px;
  }
}

#preventive .merit {
  padding: 80px 0;
}

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

#preventive .merit .main-ttl .inner {
  position: relative;
  display: inline-block;
}

#preventive .merit .main-ttl .inner::after {
  content: "";
  width: 146px;
  height: 64px;
  background-image: url(../images/preventive/merit-ttl-deco1.png);
  position: absolute;
  background-size: cover;
  left: -200px;
  top: 54%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  #preventive .merit .main-ttl .inner::after {
    width: 45px;
    height: 21px;
    left: -49px;
    top: 23%;
  }
}

#preventive .merit .main-ttl .inner::before {
  content: "";
  width: 146px;
  height: 64px;
  background-image: url(../images/preventive/merit-ttl-deco2.png);
  position: absolute;
  background-size: cover;
  right: -200px;
  top: 54%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  #preventive .merit .main-ttl .inner::before {
    width: 45px;
    height: 21px;
    right: -49px;
    top: 23%;
  }
}

#preventive .merit .contents .items {
  gap: 50px 80px;
}

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

#preventive .merit .contents .items .item .ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 92px;
  border-bottom: 3px dotted #41BAB6;
  margin-bottom: 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 28px;
  line-height: 1.4;
  padding-bottom: 10px;
}

@media screen and (max-width: 768px) {
  #preventive .merit .contents .items .item .ttl {
    font-size: 18px;
    padding-bottom: 7px;
    height: auto;
    margin-bottom: 20px;
  }
}

#preventive .merit .contents .items .item .ttl span {
  font-size: 64px;
  color: #41BAB6;
  padding-right: 40px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #preventive .merit .contents .items .item .ttl span {
    font-size: 30px;
    padding-right: 25px;
    padding-left: 7px;
  }
}

#preventive .merit .contents .items .item .ttl span::before {
  content: "";
  width: 130px;
  height: 130px;
  background: #FEFED8;
  border-radius: 100vw;
  position: absolute;
  left: -28px;
  top: -18px;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  #preventive .merit .contents .items .item .ttl span::before {
    width: 68px;
    height: 68px;
    left: -10px;
    top: -10px;
  }
}

#preventive .merit .contents .items .item img {
  border-radius: 50px;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  #preventive .merit .contents .items .item img {
    margin-bottom: 15px;
    border-radius: 40px;
  }
}

#preventive .effect .max-ttl h3 .bb {
  border-bottom: 3px dotted #fff;
  padding-bottom: 5px;
}

#preventive .effect .max-ttl h3 .inner {
  position: relative;
}

#preventive .effect .max-ttl h3 .inner::before {
  content: "";
  width: 72px;
  height: 81px;
  background-image: url(../images/preventive/effect-ttl-deco1.png);
  position: absolute;
  background-size: cover;
  left: -120px;
  top: 53%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  #preventive .effect .max-ttl h3 .inner::before {
    width: 24px;
    height: 27px;
    left: -24px;
    top: -5px;
  }
}

#preventive .effect .max-ttl h3 .inner::after {
  content: "";
  width: 65px;
  height: 79px;
  background-image: url(../images/preventive/effect-ttl-deco2.png);
  position: absolute;
  background-size: cover;
  right: -110px;
  top: 53%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  #preventive .effect .max-ttl h3 .inner::after {
    width: 20px;
    height: 24px;
    right: -18px;
    top: -5px;
  }
}

#preventive .effect .contents {
  background: #F1EAE0;
  padding: 80px 0;
}

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

#preventive .effect .contents .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

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

#preventive .effect .contents .item .img {
  width: 560px;
}

@media screen and (max-width: 1200px) {
  #preventive .effect .contents .item .img {
    width: 440px;
  }
}

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

#preventive .effect .contents .item .txt {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 60px;
}

@media screen and (max-width: 768px) {
  #preventive .effect .contents .item .txt {
    margin: 0 0 20px;
  }
}

#preventive .effect .contents .item .txt h4 {
  font-size: 28px;
  line-height: 1.5;
  margin-bottom: 22px;
}

@media screen and (max-width: 768px) {
  #preventive .effect .contents .item .txt h4 {
    font-size: 19px;
    margin-bottom: 14px;
  }
}

#preventive .effect .contents .item .txt h4 span {
  color: #41BAB6;
}

#preventive .care {
  margin-top: 75px;
}

@media screen and (max-width: 768px) {
  #preventive .care {
    margin-top: 40px;
  }
}

#preventive .care .contents .items .item {
  background: url(../images/preventive/care-bg01.jpg);
  background-size: cover;
  height: 440px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-position: center;
}

@media screen and (max-width: 768px) {
  #preventive .care .contents .items .item {
    background: none;
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

#preventive .care .contents .items .item .txt-wrap {
  max-width: 660px;
  margin-left: 5%;
}

@media screen and (max-width: 1200px) {
  #preventive .care .contents .items .item .txt-wrap {
    max-width: 530px;
    margin-left: 4%;
  }
}

@media screen and (max-width: 768px) {
  #preventive .care .contents .items .item .txt-wrap {
    background: #FEF1E5;
    margin-left: 0;
    padding: 30px 20px;
  }
}

#preventive .care .contents .items .item .txt-wrap .num {
  font-size: 27px;
  color: #FF9191;
  font-weight: bold;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  #preventive .care .contents .items .item .txt-wrap .num {
    font-size: 20px;
  }
}

#preventive .care .contents .items .item .txt-wrap .num span {
  font-size: 67px;
  padding-left: 10px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #preventive .care .contents .items .item .txt-wrap .num span {
    font-size: 40px;
  }
}

#preventive .care .contents .items .item .txt-wrap .num span::after {
  content: "";
  width: 26px;
  height: 23px;
  background-image: url(../images/preventive/care-ttl01.png);
  position: absolute;
  background-size: cover;
  right: -20px;
  top: 0px;
}

@media screen and (max-width: 768px) {
  #preventive .care .contents .items .item .txt-wrap .num span::after {
    width: 18px;
    height: 16px;
    right: -15px;
  }
}

#preventive .care .contents .items .item .txt-wrap h4 {
  font-size: 33px;
  color: #FF9191;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  #preventive .care .contents .items .item .txt-wrap h4 {
    font-size: 20px;
    line-height: 1.5;
  }
}

#preventive .care .contents .items .item.item2 {
  background: url(../images/preventive/care-bg02.jpg);
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 768px) {
  #preventive .care .contents .items .item.item2 {
    background: none;
  }
}

#preventive .care .contents .items .item.item2 .txt-wrap {
  margin-left: auto;
  margin-right: 5%;
}

@media screen and (max-width: 1200px) {
  #preventive .care .contents .items .item.item2 .txt-wrap {
    margin-right: 4%;
  }
}

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

#preventive .care .contents .items .item.item2 .txt-wrap .num {
  color: #41BAB6;
}

#preventive .care .contents .items .item.item2 .txt-wrap .num span::after {
  background-image: url(../images/preventive/care-ttl02.png);
}

#preventive .care .contents .items .item.item2 .txt-wrap h4 {
  color: #41BAB6;
}

#preventive .care .contents .items .item.item3 {
  background: url(../images/preventive/care-bg03.jpg);
  background-position: center;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  #preventive .care .contents .items .item.item3 {
    background: none;
  }
}

@media screen and (max-width: 768px) {
  #preventive .care .contents .items .item.item3 .txt-wrap {
    background: #DDFFEE;
  }
}

#preventive .care .contents .items .item.item3 .txt-wrap .num {
  color: #3EC366;
}

#preventive .care .contents .items .item.item3 .txt-wrap .num span::after {
  background-image: url(../images/preventive/care-ttl03.png);
}

#preventive .care .contents .items .item.item3 .txt-wrap h4 {
  color: #3EC366;
}

#preventive .flow .max-ttl .inner {
  position: relative;
}

#preventive .flow .max-ttl .inner::before {
  content: "";
  width: 84px;
  height: 63px;
  background-image: url(../images/preventive/flow-ttl-deco.png);
  position: absolute;
  background-size: cover;
  right: -110px;
  top: -8px;
}

@media screen and (max-width: 768px) {
  #preventive .flow .max-ttl .inner::before {
    right: -87px;
    top: 17px;
    width: 37px;
    height: 28px;
  }
}

#preventive .flow .contents {
  padding: 80px 0;
}

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

#preventive .flow .contents .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: #E7F9F9;
  padding: 30px 30px 30px 90px;
  position: relative;
  border-radius: 40px;
}

@media screen and (max-width: 1200px) {
  #preventive .flow .contents .item {
    padding: 30px 30px 30px;
  }
}

@media screen and (max-width: 768px) {
  #preventive .flow .contents .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px 20px 20px;
  }
}

#preventive .flow .contents .item::before {
  content: "";
  position: absolute;
  bottom: -64px;
  left: 50%;
  margin-left: -25px;
  border: 25px solid transparent;
  border-top: 20px solid #41BAB6;
}

#preventive .flow .contents .item:last-child::before {
  display: none;
}

#preventive .flow .contents .item:not(:last-of-type) {
  margin-bottom: 60px;
}

#preventive .flow .contents .item .num {
  width: 110px;
  height: 110px;
  border-radius: 100vw;
  background: #41BAB6;
  color: #fff;
  letter-spacing: -2px;
  font-size: 53px;
  text-align: center;
  padding-top: 5px;
  line-height: 1.8;
  position: absolute;
  left: -55px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 1200px) {
  #preventive .flow .contents .item .num {
    top: 10px;
    width: 60px;
    height: 60px;
    left: -10px;
    padding-top: 0px;
    font-size: 32px;
  }
}

#preventive .flow .contents .item .img {
  width: 300px;
}

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

#preventive .flow .contents .item .img img {
  border-radius: 40px;
}

#preventive .flow .contents .item .txt {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: 30px;
}

@media screen and (max-width: 768px) {
  #preventive .flow .contents .item .txt {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

#preventive .flow .contents .item .txt h4 {
  font-size: 28px;
  color: #41BAB6;
}

@media screen and (max-width: 768px) {
  #preventive .flow .contents .item .txt h4 {
    font-size: 20px;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 10px;
  }
}

#preventive .timing {
  padding: 80px 0;
  background-color: #FEFED8;
  background-image: -webkit-radial-gradient(circle, #ffffff 5px, transparent 5px), -webkit-radial-gradient(circle, #ffffff 5px, transparent 5px);
  background-image: radial-gradient(circle, #ffffff 5px, transparent 5px), radial-gradient(circle, #ffffff 5px, transparent 5px);
  background-position: 0 0, 24px 23px;
  background-size: 48px 46px;
  background-repeat: repeat;
}

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

#preventive .timing .ttl {
  text-align: center;
  color: #41BAB6;
  font-size: 42px;
  line-height: 1.4;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  #preventive .timing .ttl {
    font-size: 24px;
    margin-bottom: 30px;
  }
}

#preventive .timing .ttl span {
  position: relative;
  display: inline-block;
}

#preventive .timing .ttl span::before {
  content: "";
  width: 55px;
  height: 66px;
  background-image: url(../images/preventive/timing-ttl-deco1.png);
  position: absolute;
  background-size: cover;
  left: -100px;
  top: 53%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  #preventive .timing .ttl span::before {
    left: -39px;
    top: 68%;
    width: 32px;
    height: 38px;
  }
}

#preventive .timing .ttl span::after {
  content: "";
  width: 55px;
  height: 66px;
  background-image: url(../images/preventive/timing-ttl-deco2.png);
  position: absolute;
  background-size: cover;
  top: 53%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -100px;
}

@media screen and (max-width: 768px) {
  #preventive .timing .ttl span::after {
    right: -39px;
    top: 68%;
    width: 32px;
    height: 38px;
  }
}

#preventive .timing .contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  #preventive .timing .contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

#preventive .timing .contents .img {
  width: 452px;
}

@media screen and (max-width: 768px) {
  #preventive .timing .contents .img {
    width: 100%;
    margin-top: 15px;
  }
}

#preventive .timing .contents .txt {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 40px;
}

@media screen and (max-width: 768px) {
  #preventive .timing .contents .txt {
    margin-left: 0;
  }
}

#preventive .contact {
  background: url(../images/preventive/contact-bg.jpg);
  background-size: cover;
  padding: 50px 0;
}

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

#preventive .contact h3 {
  font-size: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  #preventive .contact h3 {
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 20px;
  }
}

#preventive .contact h3::before,
#preventive .contact h3::after {
  content: "";
  height: 1px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  border-bottom: 3px dotted #fff;
}

#preventive .contact h3::before {
  margin-right: 1rem;
}

#preventive .contact h3::after {
  margin-left: 1rem;
}

#preventive .contact .items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: -2%;
}

@media screen and (max-width: 768px) {
  #preventive .contact .items {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: 0;
    gap: 15px;
  }
}

#preventive .contact .items a {
  width: 31.333%;
  background: #FFFFFF;
  margin-left: 2%;
  color: #000;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
}

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

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

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

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

@media screen and (max-width: 768px) {
  #preventive .contact .items a h4 {
    font-size: 22px;
    line-height: 0.6;
    margin: 6px 0 2px;
  }
}

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

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

@media screen and (max-width: 768px) {
  #preventive .contact .items a h4 span::before {
    top: 2px;
  }
}

#preventive .contact .items a.rsv {
  background: #FF9191;
  color: #fff;
}

#preventive .contact .items a.rsv h4 span::before {
  background-image: url(../images/common/web.png);
  background-size: cover;
}

#preventive .contact .items a.line {
  background: #01B901;
  color: #fff;
}

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

/*----------インビザライン----------*/
#invisalign {
  font-size: 18px;
  letter-spacing: 0.5px;
  font-family: "Noto Sans JP", sans-serif;
}

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

#invisalign .main-ttl {
  font-size: 41px;
  letter-spacing: 3px;
  text-align: center;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  #invisalign .main-ttl {
    font-size: 24px;
    line-height: 1.4;
  }
}

#invisalign .main-ttl small {
  font-size: 36px;
}

@media screen and (max-width: 768px) {
  #invisalign .main-ttl small {
    font-size: 20px;
  }
}

#invisalign .main-ttl strong {
  font-size: 54px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  #invisalign .main-ttl strong {
    font-size: 30px;
  }
}

#invisalign .main-ttl span {
  font-family: "mrsheffield-pro", sans-serif;
  font-weight: 400;
  color: #FF7298;
  display: block;
  font-size: 46px;
  letter-spacing: 0;
}

@media screen and (max-width: 768px) {
  #invisalign .main-ttl span {
    font-size: 27px;
    padding-top: 5px;
  }
}

#invisalign .mv-bg {
  background: url(../images/invisalign/mv-bg.jpg);
  background-size: cover;
  background-position: bottom;
}

#invisalign #mv {
  position: relative;
  background: url(../images/invisalign/mv.png) no-repeat 50% 50%;
  background-size: cover;
  min-height: 650px;
  max-height: 650px;
  height: 100vh;
}

@media screen and (max-width: 1200px) {
  #invisalign #mv {
    min-height: 600px;
    max-height: auto;
    height: 63px;
    background-position: 38%;
  }
}

@media screen and (max-width: 768px) {
  #invisalign #mv {
    min-height: auto;
    height: 690px;
    background: url(../images/invisalign/mv-sp.png);
    background-size: cover;
  }
}

#invisalign #mv::before {
  display: none;
}

#invisalign #mv .logo {
  padding: 25px 30px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  width: 400px;
}

@media screen and (max-width: 768px) {
  #invisalign #mv .logo {
    width: 240px;
    padding: 10px 15px;
  }
}

#invisalign #mv .logo p {
  font-size: 16px;
  background: #FF7298;
  color: #fff;
  margin-top: 8px;
  text-align: center;
  padding: 2px 0 4px;
  letter-spacing: 2px;
}

@media screen and (max-width: 768px) {
  #invisalign #mv .logo p {
    font-size: 13px;
  }
}

#invisalign #mv .txt {
  position: absolute;
  top: 370px;
  left: 38.8%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 1200px) {
  #invisalign #mv .txt {
    top: 357px;
  }
}

@media screen and (max-width: 768px) {
  #invisalign #mv .txt {
    left: 3.5%;
    top: 110px;
    -webkit-transform: none;
    transform: none;
  }
}

#invisalign #mv .txt h2 {
  font-size: 3vw;
  font-weight: 500;
  letter-spacing: 5px;
  line-height: 1.5;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  #invisalign #mv .txt h2 {
    font-size: 22px;
  }
}

#invisalign #mv .txt h2 small {
  font-size: 2.4vw;
}

@media screen and (max-width: 768px) {
  #invisalign #mv .txt h2 small {
    font-size: 19px;
  }
}

#invisalign #mv .mv-feature {
  position: absolute;
  right: 40px;
  bottom: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  #invisalign #mv .mv-feature {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    right: 6%;
    bottom: 44px;
  }
}

#invisalign #mv .mv-feature .item {
  background: #fff;
  width: 165px;
  height: 165px;
  border-radius: 100vw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  #invisalign #mv .mv-feature .item {
    width: 110px;
    height: 110px;
    margin-left: 0;
    margin-top: 10px;
  }
}

#invisalign #mv .mv-feature .item::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  right: 7px;
  bottom: 7px;
  border: 1px solid #FF7298;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  #invisalign #mv .mv-feature .item::before {
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
  }
}

#invisalign #mv .mv-feature .item img {
  width: 38px;
  padding-bottom: 5px;
}

@media screen and (max-width: 768px) {
  #invisalign #mv .mv-feature .item img {
    width: 28px;
  }
}

#invisalign #mv .mv-feature .item p {
  font-size: 19px;
  text-align: center;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  #invisalign #mv .mv-feature .item p {
    font-size: 14px;
  }
}

#invisalign #mv .en {
  position: absolute;
  left: 63px;
  bottom: 80px;
  font-size: 108px;
  color: #FF7298;
  font-family: "mrsheffield-pro", sans-serif;
  font-weight: 400;
  line-height: 0.7;
  -webkit-transform: rotate(-20deg);
  transform: rotate(-20deg);
}

@media screen and (max-width: 768px) {
  #invisalign #mv .en {
    font-size: 50px;
    bottom: 30px;
  }
}

#invisalign .worries {
  padding: #F0F0F0;
  padding-top: 80px;
}

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

#invisalign .worries .ttl {
  font-size: 41px;
  letter-spacing: 3px;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 50px;
  position: relative;
  padding-top: 50px;
}

@media screen and (max-width: 768px) {
  #invisalign .worries .ttl {
    font-size: 24px;
    margin-bottom: 30px;
  }
}

#invisalign .worries .ttl::before {
  content: "";
  width: 115px;
  height: 43px;
  background-image: url(../images/invisalign/worries-ttl-deco.png);
  position: absolute;
  background-size: cover;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0px;
}

#invisalign .worries .ttl small {
  font-size: 26px;
}

@media screen and (max-width: 768px) {
  #invisalign .worries .ttl small {
    font-size: 18px;
  }
}

#invisalign .worries .ttl span {
  font-size: 54px;
}

@media screen and (max-width: 768px) {
  #invisalign .worries .ttl span {
    font-size: 34px;
  }
}

#invisalign .worries .contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  #invisalign .worries .contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

#invisalign .worries .contents .img {
  width: 480px;
  margin-top: -40px;
}

@media screen and (max-width: 1200px) {
  #invisalign .worries .contents .img {
    width: 430px;
    margin-top: 15px;
  }
}

@media screen and (max-width: 768px) {
  #invisalign .worries .contents .img {
    margin-top: 0;
    width: 70%;
    margin-left: auto;
  }
}

#invisalign .worries .contents .txt {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

#invisalign .worries .contents .txt ul {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  #invisalign .worries .contents .txt ul {
    margin-bottom: 30px;
  }
}

#invisalign .worries .contents .txt ul li {
  border-bottom: 1px dashed #9d9d9d;
  padding-bottom: 13px;
  font-size: 20px;
  position: relative;
  padding-left: 40px;
}

@media screen and (max-width: 768px) {
  #invisalign .worries .contents .txt ul li {
    font-size: 16px;
    padding-left: 30px;
  }
}

#invisalign .worries .contents .txt ul li:not(:first-of-type) {
  margin-top: 13px;
}

#invisalign .worries .contents .txt ul li::before {
  content: "";
  width: 29px;
  height: 29px;
  background-image: url(../images/invisalign/check.png);
  position: absolute;
  background-size: cover;
  left: 0;
  top: 7px;
}

@media screen and (max-width: 768px) {
  #invisalign .worries .contents .txt ul li::before {
    width: 20px;
    height: 20px;
  }
}

#invisalign .solution {
  padding: 80px 0;
  background: url(../images/invisalign/solution-bg.jpg);
  background-size: cover;
}

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

#invisalign .solution .ttl {
  text-align: center;
  color: #fff;
  font-size: 48px;
  line-height: 1.4;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  #invisalign .solution .ttl {
    font-size: 24px;
  }
}

#invisalign .solution .ttl span {
  font-size: 36px;
}

@media screen and (max-width: 768px) {
  #invisalign .solution .ttl span {
    font-size: 20px;
  }
}

#invisalign .solution .ttl small {
  font-size: 32px;
}

@media screen and (max-width: 768px) {
  #invisalign .solution .ttl small {
    font-size: 18px;
  }
}

#invisalign .solution .img {
  text-align: center;
  margin: 20px 0 10px;
}

@media screen and (max-width: 768px) {
  #invisalign .solution .img {
    margin: 10px 0 5px;
  }
}

#invisalign .solution .img img {
  width: 586px;
}

#invisalign .solution .txt {
  color: #fff;
}

#invisalign .feature {
  padding: 60px 0 80px;
}

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

#invisalign .feature .contents .items {
  gap: 50px 40px;
}

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

#invisalign .feature .contents .items h4 {
  font-size: 25px;
  font-weight: 500;
  margin: 22px 0 14px;
  text-align: center;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  #invisalign .feature .contents .items h4 {
    font-size: 20px;
    margin: 15px 0 8px;
  }
}

#invisalign .merit .ttl-wrap {
  background: #2F3744;
  padding: 70px 0 70px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #invisalign .merit .ttl-wrap {
    padding: 30px 0;
  }
}

#invisalign .merit .ttl-wrap .ttl {
  color: #fff;
  font-size: 46px;
  text-align: center;
  line-height: 1.3;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  #invisalign .merit .ttl-wrap .ttl {
    font-size: 24px;
  }
}

#invisalign .merit .ttl-wrap .en {
  color: #fff;
  opacity: 0.2;
  position: absolute;
  left: 5px;
  bottom: 0;
  font-size: 127px;
  font-family: "mrsheffield-pro", sans-serif;
  line-height: 0.2;
}

@media screen and (max-width: 768px) {
  #invisalign .merit .ttl-wrap .en {
    font-size: 60px;
    left: 2px;
  }
}

#invisalign .contents .items01 {
  position: relative;
}

#invisalign .contents .items01::before {
  content: "";
  width: 100%;
  background: #FFEAEF;
  height: 80%;
  position: absolute;
  top: 0;
  z-index: -1;
}

#invisalign .contents .items01 .item {
  padding-top: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  #invisalign .contents .items01 .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 0;
  }
}

#invisalign .contents .items01 .item .img {
  z-index: 1;
  width: 713px;
}

@media screen and (max-width: 1200px) {
  #invisalign .contents .items01 .item .img {
    width: 600px;
  }
}

@media screen and (max-width: 768px) {
  #invisalign .contents .items01 .item .img {
    width: 100%;
  }
}

#invisalign .contents .items01 .item .txt-wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background: #fff;
  outline: 1px solid #FF7298;
  outline-offset: -10px;
  margin-left: -200px;
  margin-top: 46px;
  height: 460px;
  padding: 57px;
  padding-left: 243px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  #invisalign .contents .items01 .item .txt-wrap {
    margin-left: 0;
    padding-left: 0;
    height: auto;
    padding: 30px;
    margin-top: 0;
  }
}

#invisalign .contents .items01 .item .txt-wrap .num {
  font-family: "mrsheffield-pro", sans-serif;
  font-size: 215px;
  line-height: 0.2;
  margin-bottom: 18px;
}

@media screen and (max-width: 768px) {
  #invisalign .contents .items01 .item .txt-wrap .num {
    font-size: 150px;
    margin-bottom: 10px;
  }
}

#invisalign .contents .items01 .item .txt-wrap h4 {
  font-size: 32px;
  line-height: 1.5;
  font-weight: 500;
  padding-bottom: 22px;
  margin-bottom: 22px;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 768px) {
  #invisalign .contents .items01 .item .txt-wrap h4 {
    font-size: 20px;
    padding-bottom: 15px;
    margin-bottom: 13px;
  }
}

#invisalign .contents .items01 .item .txt-wrap h4::after {
  position: absolute;
  content: "";
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 170px;
  height: 1px;
  background-color: #FF7298;
}

#invisalign .contents .items01 .item .txt-wrap .txt {
  text-align: left;
}

#invisalign .contents .items01 .item.rvs {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  #invisalign .contents .items01 .item.rvs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

#invisalign .contents .items01 .item.rvs .txt-wrap {
  margin-left: 0px;
  padding-left: 40px;
  padding-right: 243px;
  margin-right: -200px;
}

@media screen and (max-width: 768px) {
  #invisalign .contents .items01 .item.rvs .txt-wrap {
    margin: 0;
    padding: 30px;
  }
}

#invisalign .contents .items02 {
  padding: 92px 0 80px;
  gap: 60px;
}

@media screen and (max-width: 768px) {
  #invisalign .contents .items02 {
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
    padding: 40px 0;
  }
}

#invisalign .contents .items02 .item {
  background: #E6ECF2;
  padding: 60px 40px 40px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #invisalign .contents .items02 .item {
    padding: 30px 20px 20px;
  }
}

#invisalign .contents .items02 .item .num {
  font-family: "mrsheffield-pro", sans-serif;
  font-size: 215px;
  line-height: 0.2;
  position: absolute;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  #invisalign .contents .items02 .item .num {
    font-size: 150px;
  }
}

#invisalign .contents .items02 .item h4 {
  font-size: 28px;
  text-align: center;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  #invisalign .contents .items02 .item h4 {
    font-size: 20px;
    line-height: 1.6;
  }
}

#invisalign .contents .items02 .item img {
  padding: 20px 0;
}

@media screen and (max-width: 768px) {
  #invisalign .contents .items02 .item img {
    padding: 15px 0;
  }
}

#invisalign .contents .items02 .item:nth-of-type(2) {
  background: #FFEAEF;
}

#invisalign .message {
  padding: 70px 0;
  background: url(../images/invisalign/message-bg.jpg);
  background-size: cover;
  letter-spacing: 1px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #invisalign .message {
    padding: 50px 0 40px;
    background: #ededed;
  }
}

#invisalign .message .en {
  position: absolute;
  left: 40px;
  top: -20px;
  font-size: 102px;
  color: #FF7298;
  font-family: "mrsheffield-pro", sans-serif;
  font-weight: 400;
  line-height: 0.7;
  -webkit-transform: rotate(-20deg);
  transform: rotate(-20deg);
}

@media screen and (max-width: 768px) {
  #invisalign .message .en {
    font-size: 55px;
    left: 20px;
    top: -10px;
  }
}

#invisalign .message .contents {
  width: 670px;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  #invisalign .message .contents {
    width: 100%;
  }
}

#invisalign .message .contents .catch {
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 3px;
}

@media screen and (max-width: 768px) {
  #invisalign .message .contents .catch {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

#invisalign .message .contents .catch span {
  border-bottom: 1px solid #FF7298;
  padding-bottom: 6px;
}

@media screen and (max-width: 768px) {
  #invisalign .message .contents .catch span {
    padding-bottom: 0;
  }
}

#invisalign .message .contents .name {
  text-align: right;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  #invisalign .message .contents img {
    margin-top: 20px;
  }
}

#invisalign .flow {
  padding: 60px 0 80px;
}

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

#invisalign .flow .flow02 .flow-contents .item .step {
  background: #FF7298;
}

#invisalign .flow .flow02 .flow-contents .item .step em {
  font-family: "mrsheffield-pro", sans-serif;
  font-size: 102px;
  padding-top: 0;
}

@media screen and (max-width: 768px) {
  #invisalign .flow .flow02 .flow-contents .item .step em {
    font-size: 70px;
  }
}

#invisalign .flow .flow02 .flow-contents .item h4 {
  font-size: 26px;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 768px) {
  #invisalign .flow .flow02 .flow-contents .item h4 {
    font-size: 20px;
    line-height: 1.4;
    padding-bottom: 5px;
  }
}

#invisalign .flow .flow02 .flow-contents .item::after {
  background-image: url(../images/invisalign/dot.png);
}

#invisalign .faq {
  padding: 60px 0 80px;
  background: url(../images/invisalign/faq-bg.jpg);
  background-size: cover;
}

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

#invisalign .faq .main-ttl {
  color: #fff;
}

#invisalign .faq .main-ttl span {
  color: #fff;
}

#invisalign .contact {
  background: #FF7298;
  padding: 50px 0;
}

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

#invisalign .contact h3 {
  font-size: 30px;
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  #invisalign .contact h3 {
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 20px;
  }
}

#invisalign .contact h3::before,
#invisalign .contact h3::after {
  content: "";
  height: 1px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  background-color: #ffffff;
}

#invisalign .contact h3::before {
  margin-right: 1rem;
}

#invisalign .contact h3::after {
  margin-left: 1rem;
}

#invisalign .contact .items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: -2%;
}

@media screen and (max-width: 768px) {
  #invisalign .contact .items {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: 0;
    gap: 15px;
  }
}

#invisalign .contact .items a {
  width: 31.333%;
  background: #FFFFFF;
  margin-left: 2%;
  color: #000;
  text-align: center;
  padding: 14px;
}

@media screen and (max-width: 768px) {
  #invisalign .contact .items a {
    width: 100%;
    padding: 8px 10px 18px;
  }
}

#invisalign .contact .items a p {
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  #invisalign .contact .items a p {
    font-size: 14px;
  }
}

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

@media screen and (max-width: 768px) {
  #invisalign .contact .items a h4 {
    font-size: 22px;
    line-height: 0.6;
    margin: 6px 0 2px;
  }
}

#invisalign .contact .items a h4 span {
  padding-left: 30px;
  position: relative;
}

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

@media screen and (max-width: 768px) {
  #invisalign .contact .items a h4 span::before {
    top: 2px;
  }
}

#invisalign .contact .items a.rsv {
  background: #2F3744;
  color: #fff;
}

#invisalign .contact .items a.rsv h4 span::before {
  background-image: url(../images/common/web.png);
  background-size: cover;
}

#invisalign .contact .items a.line {
  background: #01B901;
  color: #fff;
}

#invisalign .contact .items a.line h4 span::before {
  background-image: url(../images/common/line.png);
  background-size: cover;
}

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

  フッター

============================================================================*/
footer {
  background-color: #212630;
  padding: 60px 0 0;
}

footer .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #fff;
}

footer .wrap .left h2 {
  margin-bottom: 20px;
}

footer .wrap .left h2 img {
  width: 100%;
  max-width: 409px;
}

footer .wrap .left .tel {
  margin: 5px 0 10px;
}

footer .wrap .left .tel a {
  font-size: 31px;
  margin-top: -4px;
  padding-left: 32px;
  letter-spacing: 3px;
  color: #fff;
  position: relative;
}

footer .wrap .left .tel a::before {
  position: absolute;
  content: "";
  background: url(../images/common/tel.png);
  background-size: cover;
  width: 25px;
  height: 25px;
  top: 14px;
  left: 0px;
}

footer .wrap .left table {
  width: 100%;
  margin-bottom: 20px;
}

footer .wrap .left table th,
footer .wrap .left table td {
  padding: 12px 20px;
  vertical-align: middle;
  border-bottom: 1px solid #fff;
  line-height: 1.4;
}

footer .wrap .left table tr:last-of-type th,
footer .wrap .left table tr:last-of-type td {
  border-bottom: 0px solid #fff;
}

footer .wrap .left table th {
  white-space: nowrap;
  text-align: left;
  border-right: 1px solid #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 10em;
}

footer .wrap .left table td {
  padding: 12px 10px;
  text-align: center;
}

footer .wrap .right {
  width: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 50px;
  position: relative;
}

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

footer .wrap .right dl dt {
  width: 7em;
  margin-bottom: 30px;
  line-height: 1.4;
}

footer .wrap .right dl dd {
  width: calc(100% - 7em);
  margin-bottom: 30px;
}

footer .wrap .right dl dd ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

footer .wrap .right dl dd ul li {
  width: 50%;
}

footer .wrap .right dl dd ul li a {
  display: block;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 17px;
  position: relative;
  padding-left: 18px;
}

footer .wrap .right dl dd ul li a::before {
  content: "";
  width: 7px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: calc(50% + 5px);
  left: 0;
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

footer .wrap .right dl dd ul li a::after {
  content: "";
  width: 7px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

footer .wrap .right dl dd ul li a span {
  display: inline-block;
  position: relative;
  padding-left: 15px;
}

footer .wrap .right dl dd ul li a span:after {
  content: "";
  background: url(../images/arrow3.png) no-repeat;
  background-size: 5px;
  width: 5px;
  height: 9px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

footer .wrap .right dl dd ul li a span:before {
  content: "";
  width: calc(100% - 15px);
  height: 1px;
  position: absolute;
  bottom: -2px;
  left: 15px;
  background-color: #fff;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: 0.2s all ease-out;
  transition: 0.2s all ease-out;
  -webkit-transform-origin: left;
  transform-origin: left;
}

footer .wrap .right dl dd ul li a:hover span:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

footer .wrap .right .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: -15px;
}

footer .wrap .right .btn li {
  width: 50%;
  margin-right: 15px;
}

footer .wrap .right .btn li a {
  display: block;
  line-height: 49px;
  height: 50px;
  border: 1px solid #fff;
  color: #fff;
  text-align: center;
}

footer .wrap .right .btn li a:hover {
  background: #fff;
  opacity: 1;
  color: #212630;
}

footer .wrap .right .btn li a:hover span::before {
  background-image: url(../images/common/line-navy.png);
  background-size: cover;
}

footer .wrap .right .btn li.rsv a:hover span::before {
  background-image: url(../images/common/web-navy.png);
  background-size: cover;
}

footer .wrap .right .btn li a span {
  position: relative;
  padding-left: 27px;
}

footer .wrap .right .btn li a span::before {
  content: "";
  background-image: url(../images/common/line.png);
  width: 25px;
  height: 25px;
  background-size: cover;
  position: absolute;
  left: -3px;
  top: 0px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

footer .wrap .right .btn li.rsv a span::before {
  background-image: url(../images/common/web.png);
  width: 23px;
  height: 23px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

/*banner*/
.footer-bnr {
  text-align: center;
  margin-top: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .footer-bnr {
    margin: 20px 15px 0;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.footer-bnr a {
  margin: 0 10px;
}

@media screen and (max-width: 768px) {
  .footer-bnr a {
    width: 100%;
  }
}

.footer-bnr a img {
  width: 300px;
}

@media screen and (max-width: 768px) {
  .footer-bnr a img {
    width: 100%;
    max-width: 240px;
    margin-top: 20px;
  }
}

footer .copy {
  color: #fff;
  font-size: 14px;
  text-align: center;
  opacity: 0.5;
  padding-top: 50px;
  padding-bottom: 20px;
}

@media screen and (max-width: 768px) {
  footer .copy {
    padding-top: 30px;
    font-size: 12px;
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 768px) {
  footer {
    padding: 30px 0 0;
  }

  footer .wrap {
    display: block;
  }

  footer .wrap .left {
    margin-bottom: 30px;
  }

  footer .wrap .left h2 {
    margin-bottom: 10px;
    text-align: center;
  }

  footer .wrap .left h2 img {
    width: 100%;
    max-width: 280px;
  }

  footer .wrap .left h2+p {
    line-height: 1.8;
    margin-bottom: 10px;
    text-align: center;
  }

  footer .wrap .left .tel {
    text-align: center;
  }

  footer .wrap .left table {
    width: 100%;
    margin-bottom: 10px;
  }

  footer .wrap .left table th,
  footer .wrap .left table td {
    padding: 7px 5px;
  }

  footer .wrap .left table th {
    width: 8em;
  }

  footer .wrap .left table td {
    padding: 5px 5px;
  }

  footer .wrap .right {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 0px;
    position: relative;
  }

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

  footer .wrap .right dl dt {
    width: 6em;
    margin-bottom: 20px;
  }

  footer .wrap .right dl dd {
    width: calc(100% - 6em);
    margin-bottom: 20px;
  }

  footer .wrap .right dl dd ul li a {
    margin-bottom: 10px;
  }

  footer .wrap .right dl dd ul li a span {
    display: inline-block;
    position: relative;
    padding-left: 15px;
  }

  footer .wrap .right dl dd ul li a span:after {
    content: "";
    background: url(../images/arrow3.png) no-repeat;
    background-size: 5px;
    width: 5px;
    height: 9px;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  footer .wrap .right dl dd ul li a span:before {
    display: none;
  }
}

/* footer sp nav */
.sp_bottom-menu {
  visibility: hidden;
  height: 0;
  overflow: hidden;
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 50;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.sp_bottom-menu__btn {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.04em;
  vertical-align: bottom;
  width: 50%;
  height: 60px;
  line-height: 30px;
  background-color: rgba(247, 88, 30, 0.9333333333);
  text-align: center;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3215686275);
}

.sp_bottom-menu__btn::before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 27px;
  background: url(../images/common/web.png) no-repeat center center/contain;
  margin-right: 5px;
}

.sp_bottom-menu__btn--line {
  background-color: rgba(14, 211, 0, 0.9058823529) !important;
}

.sp_bottom-menu__btn--line::before {
  width: 22px;
  height: 30px;
  background-image: url(../images/common/line.png) !important;
}

.sp_bottom-menu__btn--tel {
  background-color: rgba(33, 38, 48, 0.9294117647) !important;
}

.sp_bottom-menu__btn--tel::before {
  width: 19px;
  height: 29px;
  background-image: url(../images/common/tel.png) !important;
}

@media screen and (max-width: 768px) {
  .sp_bottom-menu {
    visibility: visible;
    height: auto;
    overflow: visible;
  }
}

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