@charset "UTF-8";

/* ==============================================================================
共通設定
=================================================================================*/
* {
    box-sizing: border-box;
    line-height: 1.5;
    margin: 0; /* ページ全体の余白をリセット */
    padding: 0;
    font-size: 16px;
}

body {
  background-image: url(../images/renga.jpg);
  font-family: "Noto Serif JP", serif;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}

img {
    max-width: 100%;
    height: auto;    /* アスペクト比を維持 */
}

.main,footer {
  max-width: 767px;
  margin: auto;
}

.main {
  margin-top: 0px;
  z-index: 1;
  background-color: #ede2e0;
  text-align: center;
  padding-bottom: 80px;
  box-shadow: 0 0 11px rgba(0,0,0,.2);
}

/* アニメーションの初期設定 */
/* アニメーション */
@keyframes slideUp {
  0% {
    transform: translateY(50px); /* 下から開始 */
    opacity: 0; /* 非表示 */
  }
  
  100% {
    transform: translateY(0); /* 元の位置 */
    opacity: 1; /* 完全に表示 */
  }
}

.slide-up.in-view {
  animation: slideUp 1s ease-in-out forwards; /* アニメーション適用 */
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; /* Adjust this value as needed */
}

ul {
  list-style-type: none;
}




/* ==============================================================================
ヘッダー
=================================================================================*/

  
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.0em;
  background: none;
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
}


.logotype {
  position: fixed;
  top: 20px;
  left: 1.4em;
  color: #333;
  z-index: 1001;
}

nav {
  display: flex;
  align-items: center;
}


.menu__box {
  display: flex;
  flex-direction: row;
  list-style-type: none;
}

.menu__box {
  flex-direction: column;
  position: fixed;
  visibility: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: -600px 0 0 0;
  padding: 0.6em 0;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.99);
  box-shadow: 1px 0 6px rgba(0, 0, 0, 0.2);
  z-index: 3;
  opacity: 0.9;
}

  .menu__box li {
    z-index: 1000 !important; 
  }



.menu__item {
  display: flex;
  flex-direction: column;
  padding: 0 1em 0 1.9em;
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
}

.menu__box li:first-child .menu__item {
  margin-top: 80px;
}


.menu__item {
  display: block;
  padding: 12px 24px;
  color: #5854a8;
  font-size: 20px;
  font-weight: 600;
  transition-duration: 0.5s;
  border: 2px solid #5854a8; /* 四角い枠線 */
  padding: 10px; /* 内側の余白 */
  margin-top: 10px;
  margin-left: 90px;
  margin-right: 90px;
  border-radius: 10px; /* 四隅を少し丸くする（任意） */
}

.menu__item:hover {
  background-color: #5854a8;
  color: #fff;
}


#menu__toggle {
  opacity: 0;
}
#menu__toggle:checked ~ .menu__btn > span {
  transform: rotate(45deg);
}
#menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  transform: rotate(0);
  background: #5854a8;
}
#menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
  background: #5854a8;
}
#menu__toggle:checked ~ .menu__box {
  visibility: visible;
  left: 0;
  margin: 0;
}

.menu__btn {
  position: fixed;
  top: 20px;
  right: 1.4em;
  transition-duration: 0.25s;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 1002;
  margin-right: 15px;
  margin-top: 8px;
}


.menu__btn span {
  display: inline-block;
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #5854a8;
  z-index: 3;
}
.menu__btn span::before {
  display: inline-block;
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #5854a8;
  content: "";
  top: -12px;
  transition-duration: 0.25s;
  z-index: 3;
}
.menu__btn span::after {
  display: inline-block;
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #5854a8;
  content: "";
  top: 12px;
  transition-duration: 0.25s;
  z-index: 3;
}


 .leftmenu-box {
  list-style-type: none;
 }

 .logo-sp{
  width: 50px;
  display: none;
 }

 .logo-pc{
  width: auto;
  height: 50px;
 }

/* topボタン */
.top-btn {
  position: fixed;
  bottom: 20px;
  right: 300px;
  z-index: 2;
  }
  @media screen and (max-width: 1200px) {
  .top-btn {
    right: 30px;
  }
  }
  /* 右側に固定するナビゲーション */
  .sns-box {
  width: 200px;
  display: block;
  position: fixed;
  bottom: 20px;
  right: 1.4em;
  z-index: 2;
  }
  .follwus {
  width: 150px;
  margin: 0 25px;
  }
  .snsbox-top {
  margin-bottom: 50px;
  }
  .snsbox-top img {
  height: 42px;
  }
  .copy-link-button {
    background-color: transparent;
  }
  .bgc-rgba {
  background-color: rgba(88, 66, 168, 0.6);
  padding: 20px;
  }
  .bgc-rgba li {
  margin: 0 20px;
  }
  .snsbox-list {
  display: flex;
  list-style-type: none;
  justify-content: space-between;
  }
  .snsbox-line {
  text-align: center;
  }
  .snsbox-line p {
  color: #fff;
  margin: 10px 0;
  }
  .snsbox-item {
  margin: 10px;
  }
  .snsbox-img {
  width: auto;
  height: 40px;
  }
  .boxline-img{
  width: 100%;
  }

/* 画面幅1200px未満の場合非表示にする */
@media screen and (max-width: 1200px) {

.sns-box {
  display: none;
}


}

 /* 画面幅が900px未満の場合に非表示にする */
 @media screen and (max-width: 900px) {
  .fixed-nav {
    display: none; /* 非表示 */
  }
  .logo-sp {
    display: block;
  }
  .logo-pc {
    display: none;
  }
  }
  
  /* 左側に固定するナビゲーション */
  .fixed-nav {
  position: fixed; /* 固定位置 */
  top: 0; /* 上端に配置 */
  left: 0; /* 左端に配置 */
  padding-left: 1.4rem;
  width: 200px; /* ナビゲーションの幅 */
  height: 400px; /* フッターの高さ分を引く */
  color: white;
  margin-top: 154px;
  z-index: 2;
  font-size: 24px;
  }
  
  .fixed-nav ul {
  list-style-type: none; /* リストマーカーを非表示 */
  }
  
  .fixed-nav li {
  padding: 10px; /* 内側の余白 */
  margin-top: 10px;
  padding-bottom: 16px;
  }
  
  .fixed-nav a {
  text-decoration: none; /* 下線を削除 */
  color: #333;
  font-size: 20px;
  font-weight: 500;
  }
  
  .fixed-nav a:hover {
    color: #7b00f5; /* ホバー時の色変更 */
    }
  
  /* メインコンテンツ */
  .main-content {
  margin-left: 200px; /* ナビゲーションの幅分だけ余白を確保 */
  padding: 20px;
  }
  
  
  @media screen and (min-width: 768px) {
  .menu__item {
    margin-left: 200px;
    margin-right: 200px;
    font-size: 25px;
  }
  .main {
    margin-top: 50px; 
    border-radius: 30px 30px 0 0;
    overflow: hidden;
  }
  }
  
/* ==============================================================================
トップ
=================================================================================*/




/* すべてのブラウザ向け */
details > summary {
  list-style: none; /* デフォルト矢印を非表示 */
}

/* Safari（iOS含む）向け */
details > summary::-webkit-details-marker {
  display: none; /* Safari特有の矢印を非表示 */
}

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

.swiper {
  z-index: 1;
}


/* ==============================================================================
脱毛
=================================================================================*/


.hair-removal {
  margin: 5px 30px;
}

.ladies {
  background-color: #fff;
  margin: 0 30px 0 30px;
  padding: 20px 20px 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  overflow: hidden;
}

h3 {
  text-align: center;
}



.menu-img {
  height: 220px;
  border-radius: 20px;
  margin: 0 -20px;
}



.ladies-p {
  text-align: left;
  font-size: 14px;
  text-align: justify;
  word-break: break-all;
  text-justify: inter-character;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-size: 16px;
  padding-top: 20px;
}

.yyoyaku-title {
  background-color: #333;
  color: #fff;
  padding: 5px 20px;
  border-radius: 30px;
  font-size: 16px;
} 

.yyoyaku-btn {
  padding-top: 35px;
  padding-bottom: 30px;
  text-align: center;
}

.purple_line {
  text-align: center;
  margin-top: 30px;
}


@media screen and (min-width: 768px) {
  .ladies-p {
    font-size: 18px;

  }

  .yyoyaku-title {
    font-size: 18px;
  }

  .ladies {
    padding: 40px;
    margin-left: 50px;
    margin-right: 50px;
  }

  
.hair-removal {
  margin-top: 15px;
}
}



/* ==============================================================================
脱毛機械
=================================================================================*/
  .kikai {
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
  }

  .kikai h3 {
    margin-top: 20px;
  }

  .kikai p {
    margin-top: 20px;
    padding-bottom: 20px;
    text-align: justify;
    word-break: break-all;
    text-justify: inter-character;
    line-height: 1.8;
  }

  .kikai img {
    margin-top: 20px;
    padding-bottom: 30px;
  }


  @media screen and (min-width: 768px) {
    .kikai h3 {
      font-size: 24px;
      margin-top: 50px;
      margin-bottom: 40px;
    }

    .kikai img {
      margin-top: 50px;
      width: 550px;
    }

    .kikai p {
      font-size: 18px;
    }

    .purple_line {
      margin-top: 50px;
    }

    .kikai {
      margin-left: 10px;
      margin-right: 10px;
    }
  }



/* ==============================================================================
脱毛脱毛可能部位
=================================================================================*/

.fast-name {
  padding-top: 100px;
  padding-bottom: 100px;
}

.parts {
  margin-top: 50px;
  width: 160px;
}

.datsumou-parts {
  margin-top: -15px;
  margin-left: 20px;
  margin-right: 20px;
}

.datsumo-setumei {
  margin-top: 15px;
}

.treatment-flow {
  font-size: 16px;
  font-weight: 600;
  margin-top: -10px;
  margin-bottom: 5px;
}

.tyuui {
  text-align: right;
  font-size: 14px;
  margin-top: -5px;
}

@media screen and (min-width: 768px) {
  .parts {
    width: 200px;
    margin-top: 50px;
  }

  .datsumou-parts h3 {
    font-size: 18px;
  }

  .datsumo-setumei {
    font-size: 24px;
    margin-bottom: 30px;
    margin-top: 40px;
    margin-left: 40px;
    margin-right: 40px;
  } 

  .treatment-flow {
    margin-top: 40px;
    font-size: 24px;
    margin-bottom: 10px;
  }

  .tyuui {
    font-size: 16px;
    padding-right: 5px;
  }

  .datumou_flow {
    width: 550px;
  }

  .datsumou-parts {
    margin-left: 100px;
    margin-right: 100px;
  }
  
}




/* ==============================================================================
基本セット
=================================================================================*/

.kihon-line {
margin-top: -24px;
}

.price-title {
  width: 150px;
  margin-top: 50px;
}

.kihon-title p {
  font-size: 24px ;
  font-weight: 500;
}

.kihon-setumei {
  margin-top: 15px;
}


.kihon-img {
  width: 150px;
  margin-top: -15px;
}

.kihon-grid {
  margin: 20px 25px 0 25px;
}



/* 全体のスタイル */


/* ボックス全体 */
.item-box {
  display: flex; /* 横並びにする */
  justify-content: space-between; /* 項目名と価格を左右に配置 */
  align-items: center; /* 縦方向で中央揃え */
  background-color: #d7c8b7; /* 背景色（ベージュ） */
  border-bottom: 5px solid #a67c52; /* 下線を追加（ブラウン） */
  margin-bottom: 20px;
  text-align: center;
  max-height: 150px;
}

/* 項目名のスタイル */
.item-name {
  font-size: 14px;
  color: #000; /* テキスト色（黒） */
  padding-left: 10px;
  font-weight: 600;
  text-align: left;
}

/* 金額部分のボックス（背景白） */
.price-box {
  background-color: #fff; /* 背景色を白に設定 */
  padding: 15px 10px; /* 内側余白を追加 */
  width: 120px;
  padding-left: 40px;
}


/* 金額のスタイル */
.price-yen {
  font-size: 24px;
  color: #a67c52; /* ゴールド系の色 */
  font-weight: 200;
}

.price-2 {
  font-size: 22px;
  border-bottom: 1px dashed #aaa; /* 点線 */
}

.price-2box {
  padding: 55px 10px 55px 25px;
}

.first-item {
  margin-top: 50px;
}

.first-name {
  padding: 5px 8px 5px 8px;
}

.nokoro-item {
  padding-top: 25px;
  padding-bottom: 25px;
}

.last-item {
  padding-top: 20px;
  padding-bottom: 20px;
}

.last-box {
  margin-bottom: 50px;

}

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

  .price-box {
    width: 140px;
  }


  .price-title {
    width: 200px;
  }

  .kihon-img  {
    width: 300px;
  }

  .kihon-title p {
    font-size: 24px;
    font-weight: 600;
  }

  .kihon-setumei {
    font-size: 24px;
  }

  .kihon-grid {
    margin-left: 80px;
    margin-right: 80px;
  }

  .price-yen {
    font-size: 20px !important;
    font-weight: 400;
  }

  .item-name {
    font-size: 18px !important;
  }

  .nokoro-item {
    padding-top: 50px;
    padding-bottom: 50px;
  }


}

/* ==============================================================================
全身脱毛お得セット
=================================================================================*/

.top-img img{
  width: 100%;
  text-align: center;
}

.zenshin-grid {
  margin: 20px 5px;
}

.zenshin,.set-corce {
  margin-left: 25px;
  margin-right: 25px;
}

.set-title {
  font-size: 20px;
  font-weight: 500;
}

.zenshin-box {
  display: flex; /* 横並びにする */
  justify-content: space-between; /* 項目名と価格を左右に配置 */
  align-items: center; /* 縦方向で中央揃え */
  background-color: #C2B9CD;
  border-bottom: 5px solid #B39BC7; /* 同系統の濃いパープル */
  margin-bottom: 20px;
}

.price2-box {
  background-color: #fff; /* 背景色を白に設定 */
  padding: 5px 5px; /* 内側余白を追加 */
  padding-left: 10px;
  width: 46%;
  text-align: right;
}

.zenshin-last {
  margin-bottom: 50px;
}


@media screen and (min-width: 768px) {
.set-title {
  font-size: 24px;
}

.zenshin-grid {
  margin-left: 80px;
  margin-right: 80px;
}

.item-name {
  font-size: 18px;
}

.price-yen2 {
  font-size: 20px;
  padding: 10px 30px 10px 10px;
}

.last-price-yen2 {
  padding-left: 40px;
}

.kihon-img2 {
  margin-top: 50px;
}
}



/* ==============================================================================
お得なセットコース
=================================================================================*/
/* 全体のスタイル */
.pricing-item {
  max-width: 600px; /* コンテナの最大幅 */
  text-align: center; /* テキストを中央揃え */
  font-family: 'Noto Sans JP', sans-serif; /* フォント設定 */
  margin-top: 20px;
}

/* コースタイトル部分 */
.course-title {
  background-color: #CC9999; /* 背景色（画像に基づくピンク系カラー） */
  color: #fff; /* テキスト色（白） */
  padding: 10px 5px; /* 内側余白を追加 */
  font-size: 15px; /* フォントサイズ */
  font-weight: bold; /* 太字設定 */
}

/* 金額部分 */

.price {
  font-size: 20px; /* 金額フォントサイズ */
  color: #333; /* ダークグレーの文字色 */
}

.price span {
  font-size: 16px; /* 括弧内のフォントサイズを小さくする */
}

/* 点線部分 */
.dotted-line {
  border-bottom: 2px dotted #aaa; /* 点線のスタイル */
  margin-top: -8px;
}

.last-price {
  background-color: #fff;
  padding: 5px 0;
  font-weight: 300;
}

.set-grid {
  padding-bottom: 50px;
}

.keisen {
  padding-left: 10px;
  padding-right: 10px;
}

.set {
  margin-bottom: 20px;
}




/* 全体のスタイル */
.notice {
  max-width: 600px; /* コンテナの最大幅 */
  margin: 0 20px; /* 上下に20px、左右中央揃え */
  padding: 20px;
  background-color: #f9f1f0; /* 背景色（淡いピンク） */
  border: 1px solid #d9b8b3; /* 枠線（ピンク系） */
  border-radius: 8px; /* 角丸 */
}

/* タイトル部分 */
.notice-title {
  font-size: 20px;
  font-weight: bold;
  color: #a67c52; /* ゴールド系の色 */
  text-align: center;
  margin-bottom: 15px;
}

/* リスト部分 */
.notice-list {
  list-style-type: decimal; /* 番号付きリスト */
  padding-left: 20px; /* リストのインデント */
}

.notice-list li {
  font-size: 16px;
  line-height: 1.8; /* 行間を広げて読みやすく */
  margin-bottom: 20px; /* 各項目の間隔 */
  text-align: left;
}

@media screen and (min-width: 768px) {
  .set-grid-item {
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .set-grid {
    margin-left: 10%;
    margin-right: 10%;
  }

  .notice {
    margin-left: 80px;
    margin-right: 80px;
     }

     .last-price {
      font-size: 18px;
      font-weight: 400;
     }

     .notice-title {
      font-size: 18px;
     }

     .notice-list {
      font-size: 18px;
     }


}

/* ==============================================================================
コンタクト
=================================================================================*/
#contact {
  text-align: center;
  background-color: #ede2e0;
  border-radius: 180px 180px 0 0px;
  margin-top: 100px;
}

#contact img {
  margin-top: 35px;
  width: 200px;
  margin-bottom: -20px;
}

.yyoyaku-btn  a{
  text-decoration-line: none; /* 下線なし */
}

.otoi-btn a {
  text-decoration-line: none; /* 下線なし */
}

 .yyoyaku-btn {
  margin-top: 20px;
}

.yyoyaku-title {
  background-color: #cc9966;
  color: #fff;
  padding: 15px 50px;
  border-radius: 15px;
} 

.otoi-btn {
  margin-top: 50px;
}

.otoi-title {
  background-color: #cc9966;
  color: #fff;
  padding: 15px 40px;
  border-radius: 15px;
} 

.contact-setumei {
  font-size: 18px;
  margin-top: 20px;
  color: #333;
  font-weight: bold;
  padding-bottom: 10px;
}

.tel {
  font-size: 24px;
  margin-top: 40px;
  font-family: 'Noto Sans JP', sans-serif;
  padding-bottom: 35px;
}

.no-decoration {
  color: inherit; /* 親要素の色を継承 */
  font-size: 28px;
}

.contact-setumeippp {
  font-size: 14px;
  padding-left: 30px;
  padding-right: 30px;
}

#contact .contactfonts {
  margin-top: -100px; /* 上下左右に20pxはみ出す */
  width: 160px;
  height: auto;
}


.yyoyaku-title:hover {
  background-color: #D6BFAB;
}

.otoi-title:hover {
  background-color: #D6BFAB;
}

@media screen and (min-width: 768px) {
  #contact {
    margin-top: 200px;
    border-radius: 400px 400px 0 0px;
  }

  #contact .contactfonts {
    width: 250px;
    margin-top: -40px; /* 上下左右に20pxはみ出す */
  }

  .contact-setumei {
    margin-top: 30px;
    font-size: 24px;
  }

  .contact-setumeippp {
    font-size: 16px;
    padding-top: 20px;
    padding-bottom: 20px;  
  }

  .yyoyaku-title,.otoi-title {
    font-size: 24px;
  }

  .yyoyaku-title {
    padding-left: 80px;
    padding-right: 80px;
  }

  .otoi-title {
    padding-left: 70px;
    padding-right: 70px;
  }

  .yyoyaku-btn,.otoi-btn {
    padding-bottom: 15px;
  }

  .tel {
    padding-bottom: 30px;
    font-size: 36px;
  }

  .ohana-flow {
    width: 160px;
  }

  .no-decoration {
    font-size: 36px;
  }

}



/* ==============================================================================
フッター
=================================================================================*/
footer {
  background-color: rgba(88, 66, 168, 0);
}
.footer {
  background-color: rgba(88, 66, 168, 0.6);
  color: #fff;
  padding: 30px;
}
.footer-name,
.footer-address {
  margin-bottom: 30px;
}
.footer-name p,
.footer-address p,
.footer-time p {
  font-size: 13px;
}

.footer-logo {
  display: flex;
  justify-content: space-between;
}
.ftlogo-list {
  margin-top: auto;
}
.ftlogo-list img {
  height: 35px;
  margin-right: 10px;
}
.ftlogo-logo img {
  margin-bottom: -10px;
  width: 65px;
}
.small {
  text-align: center;
  padding: 10px 0;
}
small {
  font-size: 13px;
  color: #5845a8;
}

.ftlogo-list .line-big {
  margin-bottom: -5px;
  height: 50px;
}


@media screen and (max-width: 424px) {
  .ftlogo-list {
    margin-top: 20px;
  }
  .inst-big {
    margin-bottom: 25px;
  }
  .ftlogo-list .line-big {
    margin-bottom: 20px;
  }
  .ftlogo-logo {
    padding-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .ftlogo-list img {
    margin-right: 20px;
    height: 40px;
  }


}
