@charset "utf-8";

/****************************************/
/* global class *************************/

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

.pc {
  display: block;
}

.pc-inline-block {
  display: inline-block;
}

.pc-inline {
  display: inline;
}

.pc-flex {
  display: flex;
}

.tb,
.tb-inline-block,
.tb-inline,
.tb-flex {
  display: none;
}

.sp,
.sp-inline-block,
.sp-flex {
  display: none;
}

.flex {
  display: flex;
  justify-content: space-between;
}

.flex-2 {
  display: flex;
  justify-content: space-around;
}

.flex-menu {
  display: flex;
  justify-content: flex-end;
  padding: 0 3% 1% 4%;
}

.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

.align-items {
  align-items: flex-end;
}

.font-red {
  color: #b7282e;
}

.font-small {
  font-size: 1.5rem;
}

.font-medium {
  font-size: 2rem;
}

.font-large {
  font-size: 2.5rem;
}

.font-Xlarge {
  font-size: 3rem;
}

.font-XXlarge {
  font-size: 3.5rem;
}

.width-15 {
  width: 15%;
}

.width-20 {
  width: 20%;
}

.width-25 {
  width: 25%;
}

.width-30 {
  width: 30%;
}

.width-40 {
  width: 40%;
}

.width-45 {
  width: 45%;
}

.width-50 {
  width: 50%;
}

.width-50-2 {
  width: 50%;
}

.width-70 {
  width: 70%;
}

.width-80 {
  width: 80%;
}

.width-90 {
  width: 90%;
}

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

/* /global class ************************/
/****************************************/

/****************************************/
/* common *******************************/

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #454545;
}

.wrapper {
  padding-top: 0;
  background: #fff;
}

/**********  header  **********/

.head-wrapper {
  margin: 0 auto;
  color: #777777;
  /* background: #9fd9f6; */
  /* opacity: 0.75; */
  padding: 0.25em 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}

/* スクロールしたら背景をつける */
.header {
  transition: background 0.5s ease-out;
}
/* スクロールしたらヘッダー背景色を変更 */
.header.headerColorScroll {
  background: #9fd9f6;
  opacity: 0.75;
  transition: background 0.5s ease-out;
}
/* スクロール背景終わり */

article.anchor {
  display: block;
  padding-top: 200px;
  margin-top: -200px;
}

.logo {
  margin-top: 0.5em;
}

.nav {
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 4rem;
}

nav li {
  list-style: none;
  position: relative;
}

nav a {
  color: #000;
  text-decoration: none;
  margin: 1em;
  font-size: 1.25em;
  position: relative;
}

/* nav a:hover {
  text-decoration: 3px underline #fff9b1;
  opacity: 0.5;
} */

nav ul li a::after {
  content: "";
  display: block;
  height: 2px;
  width: 0%;
  background: #fff9b1;
  position: absolute;
  bottom: 0;
  left: 10%;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #fff9b1;
}

nav ul li a:hover::after {
  width: 80%;
}
/**********  header end  **********/

/**********  main  **********/
.main-visual {
  position: relative;
}

.main-visual h1 {
  background: #fff7;
  -webkit-backdrop-filter: contrast(0.8);
  backdrop-filter: contrast(0.8);
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.25em;
  padding: 1.5em 0;
  position: absolute;
  text-align: center;
  font-size: 3.5rem;
  text-shadow: 0 0 1rem #00bfff;
  top: 45%;
  width: 100%;
}

.main-wrap {
  max-width: 960px;
  text-align: center;
  margin: 0 auto;
  padding: 5em 0 0 0;
  background: #fff;
}

.greeting p {
  text-indent: 1em;
  text-align: justify;
  line-height: 3;
  letter-spacing: 0.15em;
  margin: 3em 0;
  width: 80%;
}

.slider img {
  transform-origin: center top;
  transform: scale(1.1);
  transition: 5s ease-out;
}
.slider .slick-active img {
  transform: scale(1);
}

/* slickスライドショーの時 */
/* .slick-dots li button::before {
  font-family: slick;
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 10px;
  height: 10px;

  background-color: #fff9b1;
  border-radius: 50%;
  content: "";
  text-align: center;
  opacity: 0.25;
  color: #000;
  -webkit-font-smoothing: antialiased;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: #9fd9f6;
  background-color: #9fd9f6;
} */

article {
  margin: 5em 0;
}

/* h2 */
.head-border {
  display: flex;
  align-items: center;
  margin: 0 0 2em 0;
}

.head-border:before,
.head-border:after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #666;
}

.head-border:before {
  margin-right: 2rem;
}

.head-border:after {
  margin-left: 2rem;
}

.info > p {
  text-indent: 1em;
  margin: 0 1em;
}

/**********  schedule  **********/
.treatment-time > p {
  display: none;
}

/* スケジュール表 */
.biz-hour {
  border-collapse: collapse;
  margin: 3em auto;
}

.biz-hour th {
  /* １番上の線 */
  border-top: 1px solid #9fd9f6;
}
.biz-hour th,
.biz-hour td {
  padding: 10px 20px;
  text-align: center;
  /* ２番目以降の線 */
  border-bottom: 1px solid #9fd9f6;
}

/* 上段の背景色 */
.biz-hour th {
  /* background: #FFF9B1; */
  font-weight: normal;
}

/* 土曜日の文字色 */
.biz-hour th.sat {
  color: #3db2da;
}

/* 日曜日の文字色 */
.biz-hour th.sun {
  color: #e66a6a;
}
/**********  schedule end  **********/

/**********  profile  **********/
.prof-box {
  justify-content: center;
  align-items: flex-end;
}

.profile {
  margin: 1em 0;
}
/**********  profile end  **********/

/**********  reservation  **********/
.reserve-contact {
  margin: 0 0 5em 0;
}

.reserve-contact p {
  margin: 0 0 3em 0;
}

/* 黄色のボタン */
.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

a.btn-custom01 {
  margin-bottom: 0.5rem;
  padding: 0;
  border-radius: 0.75rem;
}

a.btn-custom01:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  width: 100%;
  height: 100%;

  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translate3d(0, 0.75rem, -1rem);
  transform: translate3d(0, 0.75rem, -1rem);

  border: 2px solid #000;
  border-radius: inherit;
  background: #dad474;
  -webkit-box-shadow: 0 0.6rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.6rem 0 0 rgba(0, 0, 0, 0.2);
}

a.btn-custom01:after {
  font-family: "Font Awesome 5 Free";
  font-size: 2rem;
  font-weight: normal;
  line-height: 1;
  position: absolute;
  top: calc(50% - 1rem);
  left: 1.5rem;
  margin: 0;
  padding: 0;
}

.btn-custom01-front {
  position: relative;
  display: block;
  padding: 1.5rem 5rem 1.5rem 5rem;

  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 2px solid #000;
  border-radius: inherit;
  background: #fff9b1;
}

.fa-position-left {
  position: absolute;
  top: calc(50% - 0.5em);
  left: 1rem;
}

.fa-position-right {
  position: absolute;
  top: calc(50% - 0.5em);
  right: 1rem;
}

a.btn-custom01:hover {
  -webkit-transform: translate(0, 0.25rem);
  transform: translate(0, 0.25rem);
  background: #fff9b1;
}

a.btn-custom01:hover:before {
  -webkit-transform: translate3d(0, 0.5rem, -1rem);
  transform: translate3d(0, 0.5rem, -1rem);
  -webkit-box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
}

a.btn-custom01:active {
  -webkit-transform: translate(0rem, 0.75rem);
  transform: translate(0rem, 0.75rem);
}

a.btn-custom01:active:before {
  -webkit-transform: translate3d(0, 0, -1rem);
  transform: translate3d(0, 0, -1rem);
  -webkit-box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0.35rem 0 0 rgba(0, 0, 0, 0.2);
}
/* 黄色のボタン end */

/* スクロール位置調整 黄色ボタン用 */
section.anchor2 {
  display: block;
  padding-top: 150px;
  margin-top: -150px;
}

/* 見出し飾り */
.left-line {
  border-left: 5px solid #9fd9f6;
  margin: 1em 0;
  padding: 0 0 0 0.5em;
}

.reservation-line > p,
.tel-reserve p {
  padding: 0 0 2em 0;
}

.dd-txt {
  margin: 1em;
}

.order {
  position: relative;
  margin: 2em 0;
  border: 0.5em solid #9fd9f6;
  border-radius: 5px;
}

.right-box {
  padding: 1em;
}

dt {
  margin: 1em 0 1em 0.5em;
  text-decoration: 5px underline #fff9b1;
}

dd {
  text-align: left;
}

dd:nth-child(2) {
  margin: 0 0 1em;
}

.line-f {
  margin: 2em;
}

.line-f img {
  width: 60%;
  height: auto;
}

/* 手順の番号 */
.number {
  position: absolute;
  z-index: 3;
  left: -1px;
  top: -1px;
  color: #fff;
  background: #9fd9f6;
  padding: 1em;
  border-radius: 0 0 5px 0;
}

.artwork img {
  width: 40%;
  margin: 3em 0 0 0;
}
/**********  reservation end  **********/

/**********  access  **********/
.access-map img {
  margin: 2em 0;
  box-shadow: 0px 0px 5px;
}

.access-txt p {
  margin-bottom: 1em;
}

.access-txt p:last-of-type {
  margin: 0;
}

.google-map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%; /*比率はここで調整すること!*/
}
.google-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/**********  access end  **********/

/**********  footer  **********/
footer {
  background: #9fd9f6;
  padding: 3em;
}

/***** トップへ戻るボタン用CSS *****/
/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #9fd9f6;
  border-radius: 60px;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0;
  transition: all 0.3s;
}

#page-top a:hover {
  background: #fff9b1;
}

/*リンクの右下固定*/
#page-top {
  position: fixed;
  right: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

/* アップモーション */
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ダウンモーション */
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/***** トップへ戻るボタン用CSS end *****/
/**********  footer end  **********/

/* /common ******************************/
/****************************************/

/****************************************/
/* tb *******************************/

@media screen and (max-width: 1024px) {
  :root {
    font-size: 48%;
  }

  nav a {
    font-size: 1em;
  }

  .main-visual h1 {
    letter-spacing: 0.25em;
    padding: 1.25em 0;
    font-size: 2rem;
    top: 50%;
  }

  article.anchor {
    display: block;
    padding-top: 100px;
    margin-top: -100px;
  }

  .main-wrap {
    width: 80%;
  }

  section.anchor2 {
    display: block;
    padding-top: 100px;
    margin-top: -100px;
  }
}

@media screen and (max-width: 769px) {
  .line-f {
    margin: 1em;
  }

  .line-f img {
    width: 40%;
    height: auto;
  }

  .right-box-tb {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.8);
    font-size: 1.25em;
    bottom: 5%;
  }

  .right-box-tb2 {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.8);
    font-size: 1.25em;
    bottom: 5%;
  }

  .artwork {
    display: none;
  }

  .width-50 {
    width: 100%;
  }
}

/****************************************/
/* sp *******************************/

@media screen and (max-width: 599px) {
  :root {
    font-size: 50%;
  }

  /* logo */
  .pc,
  .logo-2 {
    display: none;
  }

  .sp {
    display: block;
  }

  .sp-logo {
    margin: 0 auto;
  }

  .logo {
    padding: 0.5em 0 1em 0;
  }

  .head-wrapper {
    background: #9fd9f6;
    opacity: 0.75;
  }

  /* hamburger_menu */
  .hamburger {
    display: block;
    position: fixed;
    z-index: 3;
    right: 13px;
    top: 12px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }
  .hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #555;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
  }
  .hamburger span:nth-child(1) {
    top: 10px;
  }
  .hamburger span:nth-child(2) {
    top: 20px;
  }
  .hamburger span:nth-child(3) {
    top: 30px;
  }

  /* ナビ開いてる時のボタン */
  .hamburger.active span:nth-child(1) {
    top: 16px;
    left: 6px;
    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
    transform: rotate(315deg);
  }

  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 16px;
    -webkit-transform: rotate(-315deg);
    -moz-transform: rotate(-315deg);
    transform: rotate(-315deg);
  }

  nav ul li a::before,
  nav ul li a::after {
    display: none;
  }

  nav.globalMenuSp {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    color: #000;
    background: #fff;
    text-align: center;
    transform: translateX(100%);
    transition: all 0.6s;
    width: 100%;
  }

  nav.globalMenuSp ul {
    background: #9fd9f6;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    flex-direction: column;
  }

  nav.globalMenuSp ul li {
    list-style: none;
    padding: 0;
    width: 100%;
    border-bottom: 1px solid #fff;
  }
  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  nav.globalMenuSp ul li:hover {
    background: #fff9b1;
  }

  nav.globalMenuSp ul li a {
    display: block;
    color: #000;
    /* padding: 1em 0; */
    text-decoration: none;
    font-size: 1.25em;
  }

  /* このクラスを、jQueryで付与・削除する */
  nav.globalMenuSp.active {
    transform: translateX(0%);
  }

  /* main-visual */
  .main-visual h1 {
    letter-spacing: 0.25em;
    padding: 1em 0;
    font-size: 1.5rem;
    top: 40%;
  }

  .main-visual img {
    width: 100%;
    height: auto;
  }

  article.anchor {
    display: block;
    padding-top: 80px;
    margin-top: -80px;
  }

  /* main */
  .main-wrap {
    width: 80%;
    padding: 0;
  }

  .head-border {
    margin: 1.5em 0 1.5em 0;
  }

  .width-50-2 {
    width: 80%;
  }

  /* profile */
  .greeting p {
    margin: 0 0 3em 0;
    line-height: 2;
    font-size: 1.75rem;
  }

  .profile-box {
    display: block;
  }

  .profile-list {
    width: 80%;
  }

  .width-30 {
    width: 60%;
  }

  /* schedule */
  .treatment-time > p {
    display: block;
  }

  /* schedule_scroll */
  .sc-table {
    overflow: scroll;
    white-space: nowrap;
  }

  /* reservation */
  section.anchor2 {
    display: block;
    padding-top: 100px;
    margin-top: -100px;
  }

  .two-btn {
    display: block;
  }

  .left-btn,
  .right-btn {
    margin-bottom: 5em;
  }

  .tel-txt {
    text-align: left;
  }

  .pc-flex {
    display: block;
  }

  .width-50 {
    width: 100%;
  }

  .right-box-tb,
  .right-box-tb2 {
    position: static;
  }

  .line-f img {
    width: 70%;
    height: auto;
  }

  .artwork {
    display: none;
  }

  /* map */
  .google-map {
    position: relative;
    width: 100%;
    padding-top: 75%;
  }

  .google-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

@media screen and (max-width: 375px) {
  .main-visual h1 {
    font-size: 1.25rem;
    top: 40%;
  }
}
