/* フォントの設定 */
* {
  /* font-family: "游明朝", "YuMincho", "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; */

  font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
}

h1,
h2,
.staff-name {
  font-family: "游明朝", "YuMincho", "Hiragino Mincho ProN W3",
    "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝",
    "ＭＳ 明朝", serif;
}

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  margin: 0;
  padding: 0;
}
body {
  line-height: 1;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
nav ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}
a {
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  margin: 0;
  padding: 0;
}
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: 700;
}
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
input,
select {
  vertical-align: middle;
}

/* ふわっと表示 */
body {
  /* font-size: 20px; */
  /* font-weight: bold; */
  animation-name: fadein;
  animation-duration: 2s;
  animation-iteration-count: 1;
}
@keyframes fadein {
  from {
    opacity: 0;
    /* transform: translateY(20px); */
  }
  to {
    opacity: 1;
    /* transform: translateY(0); */
  }
}

/* スマホ横で文字サイズが変わるのを防ぐ */
body {
  -webkit-text-size-adjust: none;
}
.overflow {
  overflow: hidden;
}

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

ul {
  list-style: none;
}

/* コンテンツ全体を中央寄せ */
section {
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: black;
}

main p {
  margin: 10px 0;
  line-height: 1.2;
}

main li {
  line-height: 1.2em;
}

.btn {
  display: inline-block;
  background-color: black;
  padding: 10px 25px;
  margin: 20px 0;
  color: white;
  border-radius: 2px;
  transition: 0.4s;
}

.btn:hover {
  opacity: 0.7;
}

.red {
  background-color: tomato;
}

nav a,
.snsbar a {
  transition: 0.4s;
}

nav a:hover,
.snsbar a:hover {
  opacity: 0.5;
}

.bg-box h2 {
  border-color: white;
}

main section {
  text-align: center;
  margin: 150px 0;
}

main h2 {
  font-size: 32px;
  font-weight: normal;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px black solid;
  display: inline-block;
}

.back {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center center;
  width: 100%;
}

.back::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.back .bg-box {
  position: absolute;
  width: 100%;
  color: white;
}

/******** HEADER ********/
header nav {
  height: 80px;
  width: 100%;
  z-index: 30;
  position: fixed;
  background: white;
  opacity: 0.9;
}

.nav-logo {
  font-size: 24px;
  line-height: 80px;
  padding: 0 0 0 80px;
  font-weight: bold;
}

.nav-logo img {
  height: 50px;
  width: auto;
  margin: 15px 0;
}

header nav ul {
  float: right;
  margin-right: 20px;
}

header nav ul li {
  display: inline-block;
  line-height: 80px;
  margin: 0 10px;
  color: white;
}

header nav ul li .btn {
  line-height: normal;
}

.checkBtn {
  font-size: 30px;
  float: right;
  line-height: 80px;
  margin-right: 40px;
  cursor: pointer;
  display: none;
}

#check {
  display: none;
}

@media (max-width: 960px) {
  .nav-logo {
    padding-left: 20px;
  }
  .checkBtn {
    display: block;
  }
  header nav ul {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #fcfcfc;
    top: 80px;
    left: -100%;
    text-align: center;
    transition: all 0.5s;
  }
  header nav ul li {
    display: block;
    margin: 30px 0;
    line-height: 30px;
  }
  header nav ul li a {
    font-size: 20px;
  }
  #check:checked ~ ul {
    left: 0;
  }
}

.top-wrapper .back {
  height: 650px;
  width: 100%;
}

.bg-top {
  background-image: url(../photo/inside-5.jpg);
}

.top-wrapper .bg-box {
  text-align: left;
  margin-top: 40px;
  padding-left: 50px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.top-copy {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2em;
}

.top-wrapper section {
  margin: 15px 0;
  text-align: left;
}

/******** ABOUT ********/
.top-about .text {
  max-width: 600px;
  margin: 0 auto;
}

main h3 {
  margin: 20px 0 10px;
}

.top-about .photos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 900px;

  /* 画像が縦に伸びるのを防ぐ */
  align-items: flex-start;
}
.top-about .photos img {
  width: 33%;
  height: auto;
  padding: 5px;
}

/******** NY DryCut ********/
.top-drycut .bg-drycut {
  background-image: url(../photo/cutting-1.jpg);
  background-attachment: fixed;
  height: 100vh;
}
.top-drycut .bg-drycut .bg-box {
  text-align: center;
  max-width: 700px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.top-drycut li {
  color: #fff352;
}

/******** STYLE ********/
.slide-sm,
.slide-lg {
  margin-top: 20px;
  margin-bottom: 40px;
}

.slide-sm {
  display: none;
}

/******** Menu ********/
.box-menus {
  display: flex;
  justify-content: space-between;
  margin: 30px auto 20px;
  max-width: 800px;
}

.menu-child {
  width: 33%;
  padding: 0 15px;
}

.menu-child h3 {
  font-weight: normal;
}

.box-menus i {
  color: tomato;
  border: 1px solid #f0f0f0;
  border-radius: 50%;
  width: 180px;
  height: 180px;
  font-size: 38px;
  line-height: 180px;
}

.massage {
  line-height: 1.4em;
}

.link-blue {
  color: blue;
  text-decoration: underline;
}

/******** RESERVATION ********/
.bg-reserve {
  background-image: url(../photo/inside_plant.jpg);
  background-attachment: fixed;
  height: 350px;
}

.bg-reserve .bg-box {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.fa-phone-alt {
  padding-right: 5px;
}

/******** STAFF ********/
.box-staffs {
  display: flex;
  /* justify-content: space-between; */
  justify-content: space-around;
  max-width: 750px;
  margin: 30px auto 30px;
}

.staff-child img {
  width: 350px;
  height: auto;
}

.staff-name {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0;
}

.staff-sub {
  font-size: 12px;
  color: gray;
  margin-top: 3px;
  margin-bottom: 3px;
}

/******** FOOTER ********/
footer {
  text-align: center;
  background: #f0f0f0;
  padding: 50px 50px;
}

footer .logo img {
  height: 38px;
  width: auto;
}

footer nav ul {
  display: flex;
  justify-content: space-between;
  max-width: 600px;
  margin: 20px auto;
  color: black;
}

.snsbar {
  font-size: 20px;
  padding: 20px 0;
}

.shop-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 750px;
  margin: 20px auto;
}

.shop-info .box {
  text-align: left;
  width: 50%;
  margin-right: 20px;
}
.shop-info img {
  width: 50%;
  height: auto;
  padding: 0 10px;
}
.shop-info p {
  margin: 8px 0;
  line-height: 1.2;
  font-size: 14px;
}
.shop-info p:nth-of-type(2) {
  border-bottom: 1px black dotted;
  padding-bottom: 8px;
}
.shop-info span {
  display: inline-block;
  width: 5em;
}

.cp {
  font-size: 12px;
  margin-top: 100px;
  line-height: 2em;
}

.br-sp {
  display: none;
}

/* 電話発信機能 */
.tel a {
  color: #ffffff;
}

@media (min-width: 561px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
