@charset "UTF-8";
/*============================================================
	Base
============================================================*/
html,
body {
  width: 100%;
  overflow-x: hidden;
}
@media only screen and (max-width: 767px) {
  html,
  body {
    min-height: 100vh;
  }
}

html {
  font-family: YakuHanMP, "Shippori Mincho", serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
     -moz-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #666;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 3.7333333333vw;
    -webkit-text-size-adjust: 100%;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1500px) {
  html {
    font-size: 1.2vw;
  }
}
html * {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}
@media only screen and (max-width: 767px) {
  body.fixed {
    height: -webkit-fill-available;
    height: 100vh;
    height: 100dvh;
    height: calc(var(--vh, 1vh) * 100);
  }
}

img {
  width: 100%;
  height: auto;
}
img[src$=".svg"] {
  max-width: 100%;
}

a,
a * {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  color: #666;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover,
a:hover img {
  opacity: 0.75;
}

header,
main,
section,
footer {
  width: 100%;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
     -moz-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  min-height: 1px;
}

p {
  line-height: 1.8;
  text-align: justify;
}

/*============================================================
	Commmon
============================================================*/
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media print, screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

.inner {
  position: relative;
  width: 80vw;
  max-width: 1200px;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .inner {
    width: 86.6666666667%;
    max-width: 86.6666666667vw;
  }
}

/*  hedings
-------------------------------------------------*/
h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.7777777778rem;
  padding-top: 4.4444444444rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  h2 {
    line-height: 1.4;
  }
}
h2::before {
  position: absolute;
  content: "";
  width: 3.2777777778rem;
  height: 3.5rem;
  background: url(../img/icon_tooth.svg) no-repeat center top/contain;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/*  bg
-------------------------------------------------*/
.cross {
  padding: 5.5555555556rem 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .cross {
    padding: 3.5714285714rem 0;
  }
}
.cross::before, .cross::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(51, 204, 255, 0.2);
  top: 0;
  left: 0;
  z-index: -1;
}
.cross::before {
  -webkit-transform: skewY(5deg);
          transform: skewY(5deg);
}
.cross::after {
  -webkit-transform: skewY(-5deg);
          transform: skewY(-5deg);
}

/*  accordion
-------------------------------------------------*/
.ac {
  font-weight: 700;
  cursor: pointer;
  position: relative;
}
.ac::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.1111111111rem 1.1111111111rem 0 1.1111111111rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 767px) {
  .ac::after {
    border-width: 0.7142857143rem 0.7142857143rem 0 0.7142857143rem;
  }
}
.ac.open::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

/* Form Tags 
-------------------------------------------------*/
form input,
form textarea {
  text-align: left;
  font-family: YakuHanMP, "Shippori Mincho", serif;
  color: #666;
  padding: 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  border: solid 1px #fff;
  background: #fff;
}
form input:focus,
form textarea:focus {
  border-color: #3cf;
  outline: none;
}
form input {
  width: 100%;
}
form input[type=submit] {
  background: #06C755;
  border: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
form input[type=submit][disabled] {
  background: #ccc !important;
  cursor: default;
}
form input[type=checkbox] {
  display: none;
}
form input[type=submit],
form button {
  display: inline-block;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0;
  border-radius: 0;
  width: 100%;
  height: 2.7777777778rem;
  line-height: 2.7777777778rem;
  border-radius: 1.3888888889rem;
  text-align: center;
  font-size: 1.3333333333rem;
  font-weight: 700;
}
form input[type=submit]::-moz-focus-inner,
form button::-moz-focus-inner {
  border: 0;
}
form button {
  background: #999;
}
@media print, screen and (min-width: 768px) {
  form button {
    margin-right: 1.6666666667rem;
  }
}
@media only screen and (max-width: 767px) {
  form button {
    margin-right: 2%;
  }
}
form textarea {
  width: 100%;
  min-height: 11.1111111111rem;
}
form label span {
  position: relative;
  padding-left: 1.3888888889rem;
}
form label span::before {
  position: absolute;
  content: "";
  width: 1.1111111111rem;
  height: 1.1111111111rem;
  border: solid 1px #666;
  background: #fff;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
form label input[type=checkbox]:checked + span::after {
  position: absolute;
  content: "";
  width: 0.8333333333rem;
  height: 0.5555555556rem;
  border-left: solid 3px #3cf;
  border-bottom: solid 3px #3cf;
  left: 0.1111111111rem;
  bottom: 0.5555555556rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
form :placeholder-shown,
form ::-webkit-input-placeholder,
form :-moz-placeholder,
form ::-moz-placeholder,
form :-ms-input-placeholder {
  color: #999;
}
form legend {
  display: none;
}

/* Validation
-------------------------------------------------*/
.err {
  border: solid 1px #ED1E79;
  background: rgba(237, 30, 121, 0.1);
}

.errMsg {
  margin-left: 1em;
  padding-bottom: 1px;
  display: block;
  line-height: 1.4;
  text-indent: -0.9em;
  color: #fff;
  font-size: 70%;
}

.formError {
  margin-left: 1em;
  padding-bottom: 13px;
  display: block;
}
.formError .formErrorContent {
  padding: 6px;
  position: relative;
  background: rgba(237, 30, 121, 0.8);
  font-size: 1.2rem;
  border-radius: 3px;
}
.formError .formErrorContent::after {
  position: absolute;
  content: "";
  left: 20px;
  bottom: -13px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 5px 0 5px;
  border-color: rgba(237, 30, 121, 0.8) transparent transparent transparent;
}
.formError .formErrorArrow {
  display: none;
}
.formError.fixed {
  margin-left: 0;
}
.formError.fixed .formErrorContent {
  display: inline-block;
}

/*============================================================
	Layout
============================================================*/
/*  header
-------------------------------------------------*/
header {
  height: 7.7777777778rem;
  padding: 1.6666666667rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  header {
    height: 5rem;
    padding: 1.0714285714rem;
  }
}
header > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header > a figure {
  width: 8.7222222222rem;
  margin-right: 1.6666666667rem;
}
@media only screen and (max-width: 767px) {
  header > a figure {
    width: 4.2857142857rem;
    margin-right: 0.3571428571rem;
  }
}
header > a h1 {
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  header > a h1 {
    font-size: 0.7142857143rem;
  }
}
header ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header ul li a {
  display: block;
  position: relative;
}
@media only screen and (max-width: 767px) {
  header ul li a {
    width: 1.7857142857rem;
    height: 1.7857142857rem;
    border-radius: 50%;
  }
  header ul li a span {
    display: none;
  }
}
header ul li a::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  header ul li a::before {
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media print, screen and (min-width: 768px) {
  header ul li:not(:first-child) {
    margin-left: 1.6666666667rem;
  }
  header ul li:not(:first-child) a {
    width: 13.8888888889rem;
    height: 2.7777777778rem;
    line-height: 2.7777777778rem;
    border-radius: 1.3888888889rem;
  }
  header ul li:not(:first-child) a span {
    color: #fff;
    font-size: 1.3333333333rem;
    font-weight: 700;
  }
}
@media only screen and (max-width: 767px) {
  header ul li:not(:first-child) {
    margin-left: 0.7142857143rem;
  }
}
@media print, screen and (min-width: 768px) {
  header ul li:first-child a {
    padding-left: 1.1111111111rem;
  }
  header ul li:first-child a::before {
    width: 0.8888888889rem;
    height: 1.2777777778rem;
    background: url(../img/icon_tel.svg) no-repeat left center/contain;
    left: 0;
  }
  header ul li:first-child a span {
    font-family: Times New Roman;
    font-size: 1.8888888889rem;
    color: #3cf;
    letter-spacing: 0.05em;
  }
}
@media only screen and (max-width: 767px) {
  header ul li:first-child a {
    background: rgba(51, 204, 255, 0.1);
  }
  header ul li:first-child a::before {
    width: 0.5714285714rem;
    height: 0.8214285714rem;
    background: url(../img/icon_tel.svg) no-repeat center center/contain;
  }
}
header ul li:first-child small {
  display: block;
  font-size: 0.7777777778rem;
  margin-top: 0.5em;
}
@media only screen and (max-width: 767px) {
  header ul li:first-child small {
    display: none;
  }
}
header ul li:nth-child(2) a {
  background: #3cf;
}
@media print, screen and (min-width: 768px) {
  header ul li:nth-child(2) a {
    padding-left: 3.6111111111rem;
  }
  header ul li:nth-child(2) a::before {
    width: 1.6666666667rem;
    height: 1.1111111111rem;
    background: url(../img/icon_mail.svg) no-repeat center left/contain;
    left: 1.4444444444rem;
  }
}
@media only screen and (max-width: 767px) {
  header ul li:nth-child(2) a::before {
    width: 1.0714285714rem;
    height: 0.7142857143rem;
    background: url(../img/icon_mail.svg) no-repeat center center/contain;
  }
}
header ul li:last-child a {
  background: #06C755;
}
@media print, screen and (min-width: 768px) {
  header ul li:last-child a {
    padding-left: 4.4444444444rem;
  }
  header ul li:last-child a::before {
    width: 1.6666666667rem;
    height: 1.6111111111rem;
    background: url(../img/icon_line.svg) no-repeat center left/contain;
    left: 2.2222222222rem;
  }
}
@media only screen and (max-width: 767px) {
  header ul li:last-child a::before {
    width: 1.0714285714rem;
    height: 1.0357142857rem;
    background: url(../img/icon_line.svg) no-repeat center center/contain;
  }
}

/*  MV
-------------------------------------------------*/
#mv {
  position: relative;
}
#mv .inner {
  position: absolute;
  height: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding-top: 21.1111111111rem;
}
@media only screen and (max-width: 767px) {
  #mv .inner {
    padding-top: 12.5rem;
  }
}
#mv .inner p {
  width: 36.1111111111rem;
  height: 5rem;
  line-height: 5rem;
  background: #ED1E79;
  color: #fff;
  font-size: 2.6666666667rem;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #mv .inner p {
    width: 100%;
    height: 3.2142857143rem;
    line-height: 3.2142857143rem;
    font-size: 1.7142857143rem;
  }
}
#mv .inner p span {
  font-weight: 500;
  white-space: nowrap;
  position: absolute;
  color: #ED1E79;
  font-size: 1.6666666667rem;
  left: 50%;
  top: -3.8888888889rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  #mv .inner p span {
    font-size: 1.2857142857rem;
    top: -2.5rem;
  }
}
#mv .inner p strong {
  font-family: Times New Roman;
  font-size: 4.4444444444rem;
  font-weight: 400;
  color: #ff0;
}
@media only screen and (max-width: 767px) {
  #mv .inner p strong {
    font-size: 2.8571428571rem;
  }
}

/*  feature
-------------------------------------------------*/
#feature {
  background: #3cf;
  padding: 1.6666666667rem 0;
}
@media only screen and (max-width: 767px) {
  #feature {
    padding: 1.7857142857rem 0;
  }
}
@media print, screen and (min-width: 768px) {
  #feature ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
}
#feature ul li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media print, screen and (min-width: 768px) {
  #feature ul li {
    width: 33.3333333333%;
    height: 7.7777777778rem;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (max-width: 767px) {
  #feature ul li {
    padding-left: 3.2142857143rem;
  }
}
#feature ul li figure {
  width: 2.7777777778rem;
}
@media only screen and (max-width: 767px) {
  #feature ul li figure {
    width: 3.2142857143rem;
    margin-right: 0.7142857143rem;
  }
}
#feature ul li p {
  color: #fff;
  text-align: center;
  font-size: 1.6666666667rem;
  line-height: 1.2;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  #feature ul li p {
    font-size: 1.2857142857rem;
    text-align: left;
  }
}
@media print, screen and (min-width: 768px) {
  #feature ul li:not(:last-child) {
    border-right: solid 3px #fff;
  }
}
@media only screen and (max-width: 767px) {
  #feature ul li:not(:last-child) {
    border-bottom: solid 3px #fff;
    margin-bottom: 1.0714285714rem;
    padding-bottom: 1.0714285714rem;
  }
}

/*  こんな歯のお悩みありませんか？
-------------------------------------------------*/
#trouble {
  padding: 5.5555555556rem 0;
}
@media only screen and (max-width: 767px) {
  #trouble {
    padding: 3.5714285714rem 0;
  }
}
#trouble .inner {
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  #trouble .inner ul {
    width: 58.3333333333%;
    margin: auto;
  }
}
#trouble .inner ul li {
  border-bottom: solid 3px #3cf;
  padding-bottom: 1.1111111111rem;
  margin-bottom: 1.6666666667rem;
  font-size: 1.3333333333rem;
}
@media only screen and (max-width: 767px) {
  #trouble .inner ul li {
    line-height: 1.4;
  }
}
#trouble .inner ul li strong {
  font-weight: 700;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(65%, transparent), color-stop(0%, rgba(255, 255, 0, 0.5)));
  background: -webkit-linear-gradient(transparent 65%, rgba(255, 255, 0, 0.5) 0%);
  background: linear-gradient(transparent 65%, rgba(255, 255, 0, 0.5) 0%);
  padding: 0 0.3em 0.1em;
}
#trouble .inner p {
  font-size: 2rem;
  line-height: 1.4;
  color: #3cf;
  padding-top: 9.4444444444rem;
  font-weight: 700;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #trouble .inner p {
    font-size: 1.4285714286rem;
    padding-top: 6.0714285714rem;
  }
}
#trouble .inner p::before, #trouble .inner p::after {
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
}
#trouble .inner p::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6.6666666667rem 13.8888888889rem 0 13.8888888889rem;
  border-color: #3cf transparent transparent transparent;
}
@media only screen and (max-width: 767px) {
  #trouble .inner p::before {
    border-width: 4.2857142857rem 8.9285714286rem 0 8.9285714286rem;
  }
}
#trouble .inner p::after {
  width: 27.7777777778rem;
  height: 6.6666666667rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(transparent));
  background: -webkit-linear-gradient(top, #fff 0%, transparent 100%);
  background: linear-gradient(to bottom, #fff 0%, transparent 100%);
}
@media only screen and (max-width: 767px) {
  #trouble .inner p::after {
    width: 17.8571428571rem;
    height: 4.2857142857rem;
  }
}

/*  ポイント
-------------------------------------------------*/
@media print, screen and (min-width: 768px) {
  #point .inner {
    width: 66.6666666667vw;
    max-width: 1000px;
  }
}
#point .inner ol {
  counter-reset: point;
}
#point .inner ol li {
  background: #fff;
  padding: 2.7777777778rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #point .inner ol li {
    padding: 1.7857142857rem;
  }
}
#point .inner ol li:not(:last-child) {
  margin-bottom: 2.7777777778rem;
}
@media only screen and (max-width: 767px) {
  #point .inner ol li:not(:last-child) {
    margin-bottom: 1.7857142857rem;
  }
}
#point .inner ol li dl dt {
  counter-increment: point;
  font-size: 2rem;
  font-weight: 700;
  padding-top: 5rem;
  margin-bottom: 1em;
  line-height: 1.4;
  position: relative;
}
#point .inner ol li dl dt::before, #point .inner ol li dl dt::after {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
#point .inner ol li dl dt::before {
  font-family: Times New Roman;
  font-weight: 400;
  content: "POINT " counter(point, decimal-leading-zero);
  color: #3cf;
  font-size: 1.6666666667rem;
  top: 0;
}
#point .inner ol li dl dt::after {
  content: "";
  width: 5rem;
  height: 0.5555555556rem;
  background: #3cf;
  top: 3.3333333333rem;
}
#point .inner ol li dl dt strong {
  color: #ED1E79;
}
#point .inner ol li dl dd {
  line-height: 2;
}

/*  通いやすい3つの施術メニュー
-------------------------------------------------*/
#menu {
  padding: 5.5555555556rem 0;
}
@media only screen and (max-width: 767px) {
  #menu {
    padding: 3.5714285714rem 0;
  }
}
@media print, screen and (min-width: 768px) {
  #menu .inner {
    width: 66.6666666667vw;
    max-width: 1000px;
  }
}
#menu .inner dl dt {
  font-size: 1.3333333333rem;
}
@media print, screen and (min-width: 768px) {
  #menu .inner dl dt {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media only screen and (max-width: 767px) {
  #menu .inner dl dt {
    line-height: 1.2;
  }
}
@media only screen and (max-width: 767px) {
  #menu .inner dl dt span:last-child {
    display: block;
    text-align: right;
  }
}
#menu .inner dl dt span small {
  font-size: 1rem;
}
#menu .inner dl dd {
  line-height: 1.8;
  text-align: justify;
}
#menu .inner > ul > li:not(:last-child) {
  margin-bottom: 1.6666666667rem;
}
@media only screen and (max-width: 767px) {
  #menu .inner > ul > li:not(:last-child) {
    margin-bottom: 1.0714285714rem;
  }
}
#menu .inner > ul > li dl {
  border: solid 3px #3cf;
}
#menu .inner > ul > li dl dt {
  background: #3cf;
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  #menu .inner > ul > li dl dt {
    height: 3.3333333333rem;
    line-height: 3.3333333333rem;
    padding: 0 1.6666666667rem;
  }
}
@media only screen and (max-width: 767px) {
  #menu .inner > ul > li dl dt {
    padding: 0.7142857143rem;
  }
}
#menu .inner > ul > li dl dt span strong {
  color: #ff0;
}
#menu .inner > ul > li dl dd {
  padding: 1.6666666667rem;
}
@media only screen and (max-width: 767px) {
  #menu .inner > ul > li dl dd {
    padding: 1.0714285714rem;
  }
}
#menu .inner .other {
  background: rgba(51, 204, 255, 0.2);
  padding: 1.6666666667rem;
  margin-top: 2.7777777778rem;
}
@media only screen and (max-width: 767px) {
  #menu .inner .other {
    padding: 1.0714285714rem;
    margin-top: 1.7857142857rem;
  }
}
#menu .inner .other h3 {
  color: #3cf;
  font-size: 1.6666666667rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #menu .inner .other h3 {
    font-size: 1.2857142857rem;
    text-align: left;
  }
}
#menu .inner .other h3::after {
  border-color: #3cf transparent transparent transparent;
  right: 0;
}
#menu .inner .other ul {
  display: none;
}
#menu .inner .other ul li {
  background: #fff;
  padding: 1.6666666667rem;
  margin-top: 1.6666666667rem;
}
#menu .inner .other ul li dl dt {
  color: #3cf;
  padding-bottom: 0.5555555556rem;
  margin-bottom: 1.1111111111rem;
  border-bottom: solid 1px #3cf;
}

/*  ホワイトニングの流れ
-------------------------------------------------*/
#flow .inner ol {
  counter-reset: flow;
}
@media print, screen and (min-width: 768px) {
  #flow .inner ol {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 2.7777777778rem;
  }
}
@media only screen and (max-width: 767px) {
  #flow .inner ol {
    margin-bottom: 1.7857142857rem;
  }
}
#flow .inner ol li {
  counter-increment: flow;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  #flow .inner ol li {
    width: 14.5833333333%;
    padding-top: 1.6666666667rem;
  }
}
@media only screen and (max-width: 767px) {
  #flow .inner ol li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #flow .inner ol li figure {
    width: 30%;
  }
}
#flow .inner ol li::before {
  position: absolute;
  content: "STEP " counter(flow, decimal-leading-zero);
  color: #3cf;
  font-family: Times New Roman;
  top: 0;
  white-space: nowrap;
}
@media print, screen and (min-width: 768px) {
  #flow .inner ol li::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    font-size: 1.3333333333rem;
  }
}
@media only screen and (max-width: 767px) {
  #flow .inner ol li::before {
    font-size: 1.0714285714rem;
    left: 35%;
  }
}
#flow .inner ol li p {
  font-weight: 700;
}
@media print, screen and (min-width: 768px) {
  #flow .inner ol li p {
    font-size: 0.7777777778rem;
    text-align: center;
    letter-spacing: 0;
    margin-top: 1.1111111111rem;
  }
}
@media only screen and (max-width: 767px) {
  #flow .inner ol li p {
    width: 65%;
  }
}
@media only screen and (max-width: 767px) {
  #flow .inner ol li:not(:last-child) {
    margin-bottom: 1.7857142857rem;
  }
}
#flow .inner ol li:not(:last-child) figure {
  position: relative;
}
#flow .inner ol li:not(:last-child) figure::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
}
@media print, screen and (min-width: 768px) {
  #flow .inner ol li:not(:last-child) figure::after {
    border-width: 0.5555555556rem 0 0.5555555556rem 0.5555555556rem;
    border-color: transparent transparent transparent #3cf;
    right: -1.1111111111rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media only screen and (max-width: 767px) {
  #flow .inner ol li:not(:last-child) figure::after {
    border-width: 0.7142857143rem 0.7142857143rem 0 0.7142857143rem;
    border-color: #3cf transparent transparent transparent;
    bottom: -1.25rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
#flow .inner ul {
  background: #fff;
}
@media print, screen and (min-width: 768px) {
  #flow .inner ul {
    width: 66.6666666667vw;
    max-width: 1000px;
    margin: auto;
    padding: 1.6666666667rem;
  }
}
@media only screen and (max-width: 767px) {
  #flow .inner ul {
    padding: 1.0714285714rem;
  }
}
#flow .inner ul li {
  font-size: 0.7777777778rem;
  color: #3cf;
  line-height: 1.4;
  margin-left: 1em;
  text-indent: -1em;
}
@media only screen and (max-width: 767px) {
  #flow .inner ul li {
    font-size: 0.8571428571rem;
  }
}
#flow .inner ul li::before {
  content: "※";
}
#flow .inner ul li:not(:last-child) {
  margin-bottom: 0.5555555556rem;
}

/*  当院は全ての部屋が個室となっております
-------------------------------------------------*/
#privacy {
  padding: 5.5555555556rem 0;
}
@media only screen and (max-width: 767px) {
  #privacy {
    padding: 3.5714285714rem 0;
  }
}
#privacy .inner h2 {
  padding-top: 0;
}
#privacy .inner h2::before {
  display: none;
}
#privacy .inner h2 strong {
  color: #ED1E79;
}
#privacy .inner p {
  text-align: center;
  margin-bottom: 2.7777777778rem;
}
@media only screen and (max-width: 767px) {
  #privacy .inner p {
    margin-bottom: 1.7857142857rem;
  }
}
#privacy .inner ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #privacy .inner ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#privacy .inner ul li {
  width: 31.6666666667%;
}
@media only screen and (max-width: 767px) {
  #privacy .inner ul li {
    width: 80%;
  }
  #privacy .inner ul li:not(:last-child) {
    margin-bottom: 1.7857142857rem;
  }
}
#privacy .inner ul li figure figcaption {
  display: block;
  text-align: center;
  margin-top: 0.5em;
}

/*  よくある質問
-------------------------------------------------*/
#faq {
  padding-bottom: 5.5555555556rem;
}
@media only screen and (max-width: 767px) {
  #faq {
    padding-bottom: 3.5714285714rem;
  }
}
@media print, screen and (min-width: 768px) {
  #faq .inner {
    width: 66.6666666667vw;
    max-width: 1000px;
  }
}
#faq .inner ul li:not(:last-child) {
  margin-bottom: 1.6666666667rem;
}
#faq .inner ul li dl dt {
  background: #3cf;
  color: #fff;
  padding: 1.1111111111rem 1.6666666667rem 1.1111111111rem 3.3333333333rem;
  font-size: 1.3333333333rem;
}
@media only screen and (max-width: 767px) {
  #faq .inner ul li dl dt {
    padding: 0.7142857143rem 2.5rem;
    font-size: 1.0714285714rem;
    line-height: 1.2;
  }
}
#faq .inner ul li dl dt::before {
  position: absolute;
  content: "Q";
  color: #ff0;
  font-family: Times New Roman;
  font-size: 1.6666666667rem;
  font-weight: 400;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 1.3888888889rem;
}
@media only screen and (max-width: 767px) {
  #faq .inner ul li dl dt::before {
    left: 0.8928571429rem;
    top: 0.1785714286rem;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
#faq .inner ul li dl dt::after {
  border-color: #fff transparent transparent transparent;
  right: 1.6666666667rem;
}
@media only screen and (max-width: 767px) {
  #faq .inner ul li dl dt::after {
    right: 1.0714285714rem;
  }
}
#faq .inner ul li dl dd {
  padding: 1.6666666667rem 1.6666666667rem 0;
  display: none;
  line-height: 1.8;
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  #faq .inner ul li dl dd {
    padding: 1.0714285714rem 1.0714285714rem 0;
  }
}

/*  お問い合わせフォーム
-------------------------------------------------*/
#contact {
  background: rgba(51, 204, 255, 0.2);
  padding: 5.5555555556rem 0;
}
@media only screen and (max-width: 767px) {
  #contact {
    padding: 3.5714285714rem 0;
  }
}
@media print, screen and (min-width: 768px) {
  #contact .inner {
    width: 66.6666666667vw;
    max-width: 1000px;
    margin: auto;
  }
}
#contact .inner > p {
  text-align: center;
}
#contact .inner > p strong {
  display: block;
  font-weight: 700;
  font-size: 120%;
  margin-bottom: 1em;
}
#contact .inner > p small {
  display: block;
  margin-top: 1em;
  color: #ED1E79;
}
@media print, screen and (min-width: 768px) {
  #contact .inner .container {
    width: 50%;
    margin: auto;
  }
}
#contact .inner .container dl {
  width: 100%;
}
#contact .inner .container dl dt {
  display: block;
  text-align: center;
  margin-bottom: 0.7142857143rem;
}
#contact .inner .container dl dt span {
  padding-right: 2.7777777778rem;
  position: relative;
}
#contact .inner .container dl dt span::after {
  position: absolute;
  content: "必須";
  background: #ED1E79;
  color: #fff;
  text-align: center;
  width: 2.2222222222rem;
  height: 1.1111111111rem;
  line-height: 1.0555555556rem;
  border-radius: 0.5555555556rem;
  font-size: 0.7777777778rem;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#contact .inner .container dl dd:not(:last-of-type) {
  margin-bottom: 1.6666666667rem;
}
#contact .inner .container dl dd.value {
  background: #fff;
  padding: 15px;
  text-align: left;
}
#contact .inner .privacy_policy {
  margin-top: 2.7777777778rem;
  height: 16.6666666667rem;
  overflow: auto;
  border: solid 1px #3cf;
  background: rgba(255, 255, 255, 0.5);
  padding: 1.6666666667rem;
}
#contact .inner .privacy_policy h3 {
  text-align: center;
  font-size: 1.6666666667rem;
  font-weight: 700;
  margin-bottom: 1em;
}
#contact .inner .privacy_policy h4 {
  font-size: 1.3333333333rem;
  font-weight: 700;
  margin-top: 1em;
  margin-bottom: 0.5em;
}
@media only screen and (max-width: 767px) {
  #contact .inner .privacy_policy h4 {
    line-height: 1.2;
  }
}
#contact .inner .privacy_policy p {
  font-size: 0.8888888889rem;
  line-height: 1.5;
}
#contact .inner .privacy_policy ul li {
  font-size: 0.8888888889rem;
  line-height: 1.2;
  margin-top: 0.5em;
  margin-left: 1em;
  text-indent: -1em;
}
#contact .inner .privacy_policy ul li::before {
  content: "・";
}
#contact .inner .agree {
  margin-top: 2.7777777778rem;
  text-align: center;
}
#contact .inner .submitBtn {
  margin-top: 2.7777777778rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#contact .inner .submitBtn .submit,
#contact .inner .submitBtn .btn_back {
  width: 13.8888888889rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #contact .inner .submitBtn .submit,
  #contact .inner .submitBtn .btn_back {
    width: 49%;
  }
}
#contact .inner .submitBtn .submit::after,
#contact .inner .submitBtn .btn_back::after {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  content: "";
  width: 0.5555555556rem;
  height: 0.5555555556rem;
  border-right: solid 2px #fff;
  border-bottom: solid 2px #fff;
  top: 50%;
}
#contact .inner .submitBtn .submit::after {
  right: 1.6666666667rem;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
@media only screen and (max-width: 767px) {
  #contact .inner .submitBtn .submit::after {
    right: 1.0714285714rem;
  }
}
#contact .inner .submitBtn .submit:hover::after {
  right: 1.1111111111rem;
}
#contact .inner .submitBtn .submit:hover input[type=submit] {
  background: #059540;
}
#contact .inner .submitBtn .submit.disabled::after {
  display: none;
}
#contact .inner .submitBtn .submit.disabled::after:hover input[type=submit][disabled] {
  background: #ccc !important;
  cursor: default;
}
#contact .inner .submitBtn .btn_back {
  margin-right: 2.7777777778rem;
}
@media only screen and (max-width: 767px) {
  #contact .inner .submitBtn .btn_back {
    margin-right: 2%;
  }
}
#contact .inner .submitBtn .btn_back::after {
  left: 1.6666666667rem;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
}
@media only screen and (max-width: 767px) {
  #contact .inner .submitBtn .btn_back::after {
    left: 1.0714285714rem;
  }
}
#contact .inner .submitBtn .btn_back:hover::after {
  left: 1.1111111111rem;
}
#contact .inner .submitBtn .btn_back:hover button {
  background: gray;
}

/*  footer
-------------------------------------------------*/
footer {
  background: #3cf;
  color: #fff;
  padding: 5.5555555556rem 0;
}
@media only screen and (max-width: 767px) {
  footer {
    padding: 3.5714285714rem 0;
  }
}
@media print, screen and (min-width: 768px) {
  footer .inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
footer .inner .map {
  width: 48.75%;
  height: 0;
  position: relative;
  overflow: hidden;
  padding-top: 33.3333333333%;
}
@media only screen and (max-width: 767px) {
  footer .inner .map {
    width: 100%;
    padding-top: 68.3760683761%;
    margin-bottom: 1.0714285714rem;
  }
}
footer .inner .map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
@media print, screen and (min-width: 768px) {
  footer .inner .data {
    width: 48.75%;
  }
}
footer .inner .data h3 {
  font-size: 1.3333333333rem;
  font-weight: 700;
  margin-bottom: 0.8333333333rem;
}
footer .inner .data address {
  display: block;
  text-align: justify;
  line-height: 1.8;
}
footer .inner .data a {
  display: inline-block;
  color: #ff0;
  font-family: Times New Roman;
  font-size: 1.8888888889rem;
  margin: 0.2em 0;
  padding-left: 1.1111111111rem;
  position: relative;
}
footer .inner .data a::before {
  position: absolute;
  content: "";
  width: 0.8888888889rem;
  height: 1.2777777778rem;
  background: url(../img/icon_tel-y.svg) no-repeat left center/contain;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
footer .inner .data ul {
  border-top: solid 1px #fff;
  border-bottom: solid 1px #fff;
  margin: 1.1111111111rem 0;
  padding: 1.1111111111rem 0;
}
@media only screen and (max-width: 767px) {
  footer .inner .data ul {
    margin: 0.7142857143rem 0;
    padding: 0.7142857143rem 0;
  }
}
footer .inner .data ul li {
  margin-left: 1em;
  text-indent: -1em;
  line-height: 1.2;
}
footer .inner .data ul li::before {
  content: "●";
}
footer .inner .data ul li:not(:last-child) {
  margin-bottom: 0.5em;
}
footer .inner .data small {
  font-size: 1rem;
  display: block;
  margin-bottom: 0.5em;
  margin-left: 1em;
  text-indent: -1em;
  line-height: 1.2;
}
footer .inner .data small::before {
  content: "※";
}
footer .inner .data .copy {
  text-align: right;
}