@charset "UTF-8";

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

body {
  background-image: url(../images/background1.png);
  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;
  background-color: #fff;
}

.main {
  margin-top: 0px;
  z-index: 1;
  box-shadow: 0 0 11px rgba(0, 0, 0, 0.2);
}



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

  
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;
  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: 150px;
z-index: 2;
font-size: 24px;
}

.fixed-nav ul {
list-style-type: none; /* リストマーカーを非表示 */
}

.fixed-nav li {
padding: 15px; /* 四角い枠線 */
padding: 10px; /* 内側の余白 */
margin-top: 10px;
border-radius: 5px; /* 四隅を少し丸くする（任意） */
}

.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;
}
}

body {
  background-image: url(../images/hana-kiiro22.jpg);
}

.salon-top {
  background-image: url(../images/salon-top21.jpg);
  background-size: cover;
  height: 500px;
  text-align: right;
  padding-top: 200px;
  text-align: center;
}
.salon-top img {
  width: 400px;
}
/* ==============================================================================
予約
=================================================================================*/



.salon-item {
  margin: 100px 0;

}

.salon-information {
  margin-top: 100px;
}


.contact-qa {
  background-image: url(../images/haikei_top01.png);
  background-size: cover;
  border-radius: 100px 100px 0 100px;
  padding: 10px;
  margin-top: -100px;
  color: #333;
}
.contact-qa h2 img {
  height:170px;
}

.salon-reservation,
.salon-fq {
  background-color: #fff;
  border-radius: 50px;
  width: 90%;
  margin: 60px auto;
  padding: 25px;
}

.salon-fq {
  margin-top: 120px;
}

.salon-reservation ul,
.qa-list {
  list-style-type: none;
}

.salon-reservation {
  text-align: center;
}
.salon-reservation h3,
.m-h-l-t,
.contact-list li {
  margin-bottom: 30px;
}
.contact-list li:last-child {
  margin-bottom: 0;
}
.contact-list .yoyaku-line {
  margin-bottom: 5px;
}
.yoyaku-hpb,
.yoyaku-line {
  max-width: 250px;
  border-radius: 10px;
}
.yoyaku-hpb {
  border: 1px solid #c96;
  margin: 0 auto;
}
.yoyaku-line {
  border: 1px solid #c96;
  padding: 10px;
  margin: 0 auto;
}
.yoyaku-line img {
  width: 250px;
}
.time span,
.yoyaku-tel span {
  border-bottom: 1px solid #333;
}
.time {
  font-size: 18px;
}
.yoyaku-tel {
  font-size: 20px;
}
.tagimgtop-center {
  text-align: center;
  margin-bottom: -50px;
}

a[href^="tel"] {
  color: black; /* テキストの色を黒に設定 */
}
/* ==============================================================================
F&Q
=================================================================================*/
.tagimgbtm-center {
  margin-top: -100px;
}
.fq-center {
  text-align: center;
  margin-bottom: 50px;
}
.q {
  color: #c01733;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
}
.a {
  padding: 10px;
}
.qa-item {
  border-bottom: 1px dashed #333;
  margin-bottom: 50px;
}
.qa-item:last-child {
  margin-bottom: 0;
}

.triangle-icon {
  margin-top: 10px;
  width: 15px;
  height: 10px;
}

details {
  overflow: hidden;
  margin-top: -10px;
  position: relative;
  padding-left: 20px;
}
details[open] .triangle-icon {
  transform: rotate(180deg);
}
/* すべてのブラウザ向け */
details > summary {
  display: block; /* デフォルト矢印を非表示 */
  cursor: pointer;
}

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

.cosmetics {
  text-align: center;
  padding: 190px 50px;
  background-image: url(../images/kesyouhinn22.png);
  background-size: cover;
}
.cosmetics h3{
  font-size: 60px;
}
.cosmetics p {
  color: #5845a8;
  font-size: 17px;
  margin-top: 50px;
  line-height: 2rem;
}
.scroll-infinity {
  background-color: #c1badf;
}
.scroll-infinity__item {
  margin: 20px 15px;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
    to {
    transform: translateX(-100%);
  }
  }
  .scroll-infinity__wrap {
    display: flex;
    overflow: hidden;
  }
  .scroll-infinity__list {
    display: flex;
    list-style: none;
    padding: 0
  }
  .scroll-infinity__list--left {
    animation: infinity-scroll-left 80s infinite linear 0.5s both;
  }
  .scroll-infinity__item {
    width: calc(2500px / 6);
  }
  .scroll-infinity__item>img {
    width: 100%;
  }
/* ==============================================================================
コンタクトフォーム
=================================================================================*/

.tagimg-center {
  text-align: center;
  margin-top: -70px;
}
.salon-contact {
  background-image: url(../images/haikei_top01.png);
  background-size: cover;
  border-radius: 60px 60px 0 60px;
  padding: 10px;
}
form {
  background-color: #fff;
  border-radius: 50px;
  width: 90%;
  margin: 60px auto;
  padding: 10px;
}
form dl {
  padding-top: 10px;
  margin: 0 auto;
  width: 80%;
}
.hissu-setume {
  margin-top: 25px;
  margin-right: 65px;
  text-align: right;
}
.hissu,
form span {
  color: #ee7800;
}
.img-center {
  text-align: center;
  margin: 30px;
}
.form-item {
  margin-bottom: 30px;
}
#name,
#mail,
#tel,
form textarea {
  border-radius: 5px;
  width: 100%;
  height: 50px;
  padding: 10px;
}
form textarea {
  height: 200px;
}
.sousin {
  display: block;
  margin: 0 auto 50px auto;
  color: #fff;
  background-color: #c96;
  padding: 5px 30px;
  border-radius: 5px;
}
input,
textarea {
  background-color: #c1bbdf;
}

input:focus,
textarea:focus {
  background-color: #fff;
  outline: 2px solid #c1bbdf;
}

/* ==============================================================================
インフォメーション
=================================================================================*/
.map-kuruma {
  width: 100%;
  padding: 0 50px;
}
.information {
  text-align: center;
}

/* ==============================================================================
グーグルマップ
=================================================================================*/
iframe {width: 100%;}

/* ==============================================================================
フッター
=================================================================================*/
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;
  }


}


/* ==============================================================================
スマホ版
=================================================================================*/
@media screen and (max-width: 426px) {
  .contact-qa h2 img {
    height: 100px;
  }
  .cosmetics p {
    font-size: 14px;
  }

  .qa-item {
    font-size: 10px;
  }

  .cosmetics h3{
    font-size: 40px;
  }
}





