@charset "UTF-8";
/* -------------------------
   2026 My Reset CSS
-------------------------- */
/* 1. ボックスモデル統一：絶対入れる */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. ベーシックなタグリセット */
html,
body {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-weight: 400;
}

/* 3. 要素の基本的な余白・装飾リセット */
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
figure,
figcaption,
dl,
dt,
dd,
ul,
ol,
li,
table,
th,
td {
  margin: 0;
  padding: 0;
}

/* 4. リストのマーカー消す（必要に応じて上書き） */
ul,
ol {
  list-style: none;
}

/* 5. リンク初期化（装飾だけ消す） */
a {
  text-decoration: none;
  color: inherit;
}

/* 6. 画像：下のスキマ消す & 100%にして使いやすくする */
img,
svg,
video {
  vertical-align: middle;
  border: 0;
  max-width: 100%;
  height: auto;
}

/* 7. テーブル系 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 8. 引用符リセット */
blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
}

/* 9. HTML5要素：念のためブロック扱い（古いWPテーマ互換） */
article,
aside,
footer,
header,
nav,
section,
main,
figure,
figcaption {
  display: block;
}

/* --------------------
   style.css
---------------------*/
/* 1200pxより小さい場合 */
/* 1023pxより小さい場合 */
/* 768pxより小さい場合 */
/* 640pxより小さい場合 */
html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  letter-spacing: normal;
  color: #827069;
  background-color: #F7F3F0;
}
@media (max-width: 640px) {
  body {
    font-size: 15px;
  }
}

.text_center {
  text-align: center;
}

h2 {
  padding: 60px 0 40px;
}
@media (max-width: 640px) {
  h2 {
    padding: 60px 0 30px;
  }
}

@media (max-width: 640px) {
  .t_concept {
    width: 158px;
    margin: auto;
  }
}

@media (max-width: 640px) {
  .t_stylist {
    width: 116px;
    margin: auto;
  }
}

@media (max-width: 640px) {
  .t_access {
    width: 126px;
    margin: auto;
  }
}

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

.sp {
  display: none;
}
@media (max-width: 768px) {
  .sp {
    display: block;
  }
}

.ssp {
  display: none;
}
@media (max-width: 640px) {
  .ssp {
    display: block;
  }
}

section {
  max-width: 640px;
  margin: auto;
  background-color: #fff;
}

.text {
  line-height: 2.2;
  padding-bottom: 100px;
  font-weight: 500;
  position: relative;
  z-index: 100;
}
@media (max-width: 640px) {
  .text {
    padding-bottom: 70px;
  }
}

.contact_menu {
  position: fixed;
  left: 15vw;
  top: 100px;
  z-index: 200;
}
@media (max-width: 1560px) {
  .contact_menu {
    left: 9vw;
  }
}
@media (max-width: 1200px) {
  .contact_menu {
    left: 3.5vw;
  }
}
@media (max-width: 640px) {
  .contact_menu {
    left: 8px;
  }
}
.contact_menu .item1 {
  width: 136px;
  height: 136px;
  border-radius: 50%;
  background-color: #E996AB;
  display: grid;
  place-items: center;
  margin-bottom: 44px;
  transition: all 0.4s;
}
.contact_menu .item1:hover {
  background-color: #827069;
}
.contact_menu .item2 {
  width: 136px;
  height: 136px;
  border-radius: 50%;
  background-color: #CF6281;
  display: grid;
  place-items: center;
  transition: all 0.4s;
}
.contact_menu .item2:hover {
  background-color: #827069;
}
.contact_menu .item3 {
  margin-bottom: 10px;
}

.pc_menu {
  position: fixed;
  right: 16vw;
  top: 80px;
  z-index: 200;
}
@media (max-width: 1560px) {
  .pc_menu {
    right: 10vw;
  }
}
@media (max-width: 1200px) {
  .pc_menu {
    right: 4vw;
  }
}
.pc_menu p {
  width: 114px;
  height: 114px;
  border-radius: 50%;
  background-color: #fff;
  display: grid;
  place-items: center;
  color: #CF6281;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 50px;
  transition: all 0.4s;
}
.pc_menu p:hover {
  background-color: #827069;
  color: #fff;
}

/*-------------------------
 *ハンバーガーメニュー
 --------------------------*/
/* ハンバーガー（三本線） */
.hamburger {
  position: fixed;
  top: 10px;
  right: 10vw;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 400;
}
@media (max-width: 640px) {
  .hamburger {
    right: 20px;
  }
}

.hamburger span {
  display: block;
  width: 30px;
  height: 2px;
  background: #827069;
  margin: 7px 0;
  transition: 0.4s;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* メニュー本体 */
.nav {
  position: fixed;
  top: 0;
  right: -100%;
  /* 最初は隠す */
  width: 200px;
  background: #fff;
  transition: 0.3s;
  padding-top: 52px;
  z-index: 200;
}
.nav li a {
  display: block;
  padding: 14px 40px;
  color: #CF6281;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.15em;
}
.nav .nav_item a {
  background-color: #dcd7d5;
}

/* メニュー表示 */
.nav.active {
  right: 0;
}

.logo_wrap {
  width: 640px;
  margin: auto;
  height: 82px;
  padding-top: 30px;
  text-align: center;
  background-color: #fff;
}
@media (max-width: 768px) {
  .logo_wrap {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    height: 52px;
    padding-top: 15px;
    padding-left: 20px;
    text-align: left;
    z-index: 300;
  }
}
@media (max-width: 640px) {
  .logo_wrap {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .logo_wrap img {
    width: 114px;
  }
}

#page_top {
  position: fixed;
  bottom: 4px;
  right: 16px;
  z-index: 200;
}
@media (max-width: 640px) {
  #page_top {
    bottom: 50px;
    right: 0;
  }
}
#page_top div {
  width: 44px;
  height: 240px;
  display: grid;
  place-items: center;
  transition: all 0.4s;
}
@media (max-width: 640px) {
  #page_top div {
    width: 30px;
    height: 160px;
  }
}
@media (max-width: 640px) {
  #page_top div img {
    width: 11px;
  }
}

.main {
  max-width: 640px;
  margin: auto;
  background-color: #fff;
}
@media (max-width: 768px) {
  .main {
    padding-top: 52px;
  }
}

/* --------------------
   swiper
---------------------*/
.swiper {
  position: relative;
  width: 100%;
  height: 428px;
}

.swiper-slide img {
  width: 100%;
  height: 428px;
  -o-object-fit: cover;
     object-fit: cover;
}

.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
@media (max-width: 640px) {
  .logo {
    width: 200px;
  }
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  width: 12px;
  height: 12px;
  margin-bottom: 10px;
}

.swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}

/* --------------------
   ポップアップ
---------------------*/
.js-popup {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
}

.js-popup.is-show {
  -webkit-animation: popup 0.8s ease-out forwards;
          animation: popup 0.8s ease-out forwards;
}

@-webkit-keyframes popup {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes popup {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
/* --------------------
   各コンテンツ
---------------------*/
.sec_img {
  margin-bottom: 120px;
}
@media (max-width: 640px) {
  .sec_img {
    margin-bottom: 80px;
  }
}

.sec_img2 {
  padding-bottom: 40px;
}
@media (max-width: 640px) {
  .sec_img2 {
    padding-bottom: 10px;
  }
}

.concept {
  position: relative;
}

.circle1 {
  position: absolute;
  top: 40px;
  left: clamp(-180px, -13vw, -50px);
  z-index: 50;
  width: clamp(150px, 25vw, 339px);
}
@media (max-width: 1023px) {
  .circle1 {
    position: fixed;
  }
}

.circle2 {
  position: absolute;
  top: 580px;
  right: clamp(-250px, -16vw, -80px);
  z-index: 50;
  width: clamp(150px, 25.8vw, 353px);
}
@media (max-width: 1023px) {
  .circle2 {
    width: 150px;
    position: fixed;
    top: 380px;
    right: -40px;
  }
}

@media (max-width: 1023px) {
  .circle10 {
    position: fixed;
    z-index: 50;
    width: 160px;
    top: 650px;
    left: -50px;
  }
}

.stylist {
  position: relative;
}
.stylist .name {
  font-size: 22px;
  font-weight: 500;
  color: #CF6281;
}
.stylist .text2 {
  padding-top: 40px;
}

.circle3_a {
  position: absolute;
  top: 60px;
  right: -110px;
  z-index: 50;
}
@media (max-width: 1023px) {
  .circle3_a {
    display: none;
  }
}

.circle4 {
  position: absolute;
  top: 680px;
  left: clamp(-234px, -17.1vw, -80px);
  z-index: 50;
  width: clamp(200px, 29.8vw, 408px);
}
@media (max-width: 1023px) {
  .circle4 {
    display: none;
  }
}

.service_menu {
  position: relative;
  padding-top: 30px;
}
@media (max-width: 640px) {
  .service_menu {
    background-color: #F7F3F0;
  }
}

.circle5 {
  position: absolute;
  top: 280px;
  right: clamp(-242px, -17.7vw, -140px);
  z-index: 50;
  width: clamp(140px, 21vw, 297px);
}
@media (max-width: 1023px) {
  .circle5 {
    display: none;
  }
}

.circle3_b {
  position: absolute;
  top: 880px;
  left: -65px;
  z-index: 50;
}
@media (max-width: 1023px) {
  .circle3_b {
    display: none;
  }
}

.circle6 {
  position: absolute;
  top: 1380px;
  right: clamp(-280px, -20.5vw, -150px);
  z-index: 50;
  width: clamp(160px, 25.8vw, 353px);
}
@media (max-width: 1023px) {
  .circle6 {
    display: none;
  }
}

.circle3_c {
  position: absolute;
  top: 1900px;
  left: -154px;
  z-index: 50;
}
@media (max-width: 1023px) {
  .circle3_c {
    display: none;
  }
}

.circle8 {
  position: absolute;
  top: 2640px;
  left: -134px;
  z-index: 50;
}

.service_menu_inner {
  max-width: 460px;
  width: 90%;
  margin: auto;
}
@media (max-width: 640px) {
  .service_menu_inner {
    width: 254px;
  }
}
.service_menu_inner h3 {
  font-size: 19px;
  font-weight: 700;
  color: #CF6281;
  padding-bottom: 20px;
}
.service_menu_inner h3 span {
  font-size: 12px;
  font-weight: 500;
}

dl {
  padding-bottom: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 100;
}

dt {
  width: 75%;
  padding: 10px 0;
  border-bottom: #cbbdb7 2px dotted;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media (max-width: 640px) {
  dt {
    width: 65%;
    letter-spacing: normal;
  }
}
dt span {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: normal;
}
@media (max-width: 640px) {
  dt span {
    font-size: 13px;
    font-weight: 400;
  }
}

dd {
  width: 25%;
  text-align: right;
  padding: 10px 0;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-bottom: #cbbdb7 2px dotted;
}
@media (max-width: 640px) {
  dd {
    width: 35%;
    letter-spacing: normal;
  }
}

.last_menu {
  margin-bottom: 30px;
}

.access {
  padding-top: 30px;
  position: relative;
}

.circle7 {
  position: absolute;
  top: 100px;
  right: -176px;
  right: clamp(-176px, -12.9vw, -100px);
  z-index: 50;
  width: clamp(150px, 20vw, 274px);
}
@media (max-width: 1023px) {
  .circle7 {
    display: none;
  }
}

.circle3_d {
  position: absolute;
  top: 600px;
  left: -20px;
}
@media (max-width: 1023px) {
  .circle3_d {
    display: none;
  }
}

.access_inner {
  max-width: 460px;
  width: 95%;
  margin: auto;
}
.access_inner .text3 {
  padding-bottom: 40px;
  border-bottom: #cbbdb7 1px solid;
  margin-bottom: 40px;
}

.google_rink {
  max-width: 256px;
  margin: auto;
  margin-bottom: 60px;
  border: #827069 1px solid;
  border-radius: 30px;
}
@media (max-width: 640px) {
  .google_rink {
    max-width: 173px;
  }
}
.google_rink a {
  display: block;
  padding: 12px;
  font-weight: 500;
  border-radius: 30px;
  transition: all 0.4s;
}
.google_rink a:hover {
  background-color: #827069;
  color: #fff;
}
@media (max-width: 640px) {
  .google_rink a {
    font-size: 14px;
  }
}

.map {
  display: block;
  padding-bottom: 50px;
  position: relative;
  z-index: 100;
}
@media (max-width: 640px) {
  .map {
    padding-bottom: 40px;
    width: 85%;
    margin: auto;
  }
}

footer {
  max-width: 640px;
  margin: auto;
  background-color: #fff;
  display: flex;
  position: relative;
  z-index: 100;
}

.f_tel {
  width: 50%;
  height: 96px;
  background-color: #E996AB;
}
@media (max-width: 640px) {
  .f_tel {
    height: 60px;
  }
}

.f_line {
  width: 50%;
  height: 96px;
  background-color: #CF6281;
}
@media (max-width: 640px) {
  .f_line {
    height: 60px;
  }
}

.f_tel a,
.f_line a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  transition: all 0.4s;
}

.f_tel a:hover,
.f_line a:hover {
  background-color: #827069;
}

@media (max-width: 640px) {
  .f_tel a img {
    width: 134px;
  }
}

@media (max-width: 640px) {
  .f_line a img {
    width: 144px;
  }
}
/*# sourceMappingURL=style.css.map */