@charset "UTF-8";

:root{
    --primary-navy: #00253B;     /* フォントカラー */
    --primary-khaki: #2B3700;     /* フォントカラー */
    --primary-pink: #FF0069;    /* フォントカラー */
    --primary-beige: #AEA392;    /* フォントカラー */
    --primary-white: #fff;    /* フォントカラー */
    --primary-brown:#766C5E;  /* フォントカラー */
    --primary-rightbeige: #E7DBCA;     /* バックグランドカラー */
    --primary-rightgreen:#BAC0A2;
    --primary-whitebeige: #FCF7F1;     /* バックグランドカラー */
    --secondary-color: #FFFFFF;   /* 背景色 */
    --btn-color: linear-gradient(90deg, #DFCACA 0.08%, #E7B8B8 99.93%);   /* ボタン*/
    --font-sans: "Noto Sans JP", sans-serif;
    --font-serif: "Noto Serif JP", serif;
    --font-hand: "Babylonica", cursive;
}

.body{
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    color: var(--primary-navy);
    background-color: var(--secondary-color);
}

/* ===== ヘッダー ===== */
.page-title{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--primary-brown);
    text-align: center;
    font-size: 3.6rem;
    line-height: 1;
}

.page-title-txt{
    color: var(--primary-navy);
    text-align: center;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1; 
}

/* ===== STAFF ABOUT ===== */

.staff-container{
    display: flex;
    padding: 30px 36px 50px;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
}

.staff-topic{
    text-align: left;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.8;
}

.staff-txt{
    text-align: left;
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.8;
}

@media screen and (min-width: 769px){    
.staff-container{
    margin: 0 auto;
    padding: 30px 0 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.staff-topic{
    font-size: 2.4rem;
}

.staff-txt{
    font-size: 1.8rem;
}

.spBr{
    display: none;
}
}

/* ===== SATFF LIST ===== */
.staff-list{
    display: flex;
    max-width: 100%;
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.staff-item{
    display: flex;
    padding: 40px 20px;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    background: #FCF7F1;
}

.staff-item-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap; /* 画面が狭い時は縦並びに */
  overflow: visible; /* はみ出しを防止 */
}

/* 📱 画像のレスポンシブ設定 */
.staff-item-top img {
  width: 80%;
  height: auto;
  margin: 0 auto;
  max-width: 500px; /* お好みで上限 */
  object-fit: contain; /* 画像切れ防止 */
  display: block;
}

.staff-item-txt{
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
    margin-top: 30px;
}

.staff-name{
    font-size: 2rem;
    font-weight: 700;
}

.staff-position{
    color: var(--primary-pink);
    font-weight: 300;
}

.staff-comment1{
    color: var(--primary-beige);
    font-family: var(--font-sans);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.6;
}

.staff-comment2{
    color: var(--primary-khaki);
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.8;
}

.staff-skill{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.staff-skill-item{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.staff-skill-title{
    background: var(--primary-rightgreen);
    width: 100%;
    text-align: center;
    color: #FFF;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.6;
    box-sizing: border-box; /* パディングを含めて幅調整 */
    margin: 0 auto;   
    }


.staff-skill-txt{
    color: var(--primary-khaki);
    font-family:var(--font-sans);
    font-weight: 300;
    line-height: 1.8;
    align-self: stretch;
}

@media screen and (min-width: 769px){
.staff-item{
    display: flex;
    width: 70%;
    margin: 0 auto;
    padding: 50px;
}
.staff-item-top{
flex-direction: row;
    align-items: center;
    justify-content: center;
}
 .staff-item-top img,
 .staff-item-txt {
   width: 50%;
    max-width: none;
  }

  .staff-item-txt {
   text-align: left;
    padding-left: 30px;
  }

.staff-position{
  font-size: 1.6rem;
}
.staff-comment1{
    font-size: 2.4rem;
}
.staff-comment2{
    font-size: 1.8rem;
}
.staff-skill-title{
    font-size: 1.8rem;
}
.staff-skill-txt{
    font-size: 1.8rem;
}
}


/* ===== サロン情報 ===== */

.info-flex{
    display: flex;
    padding: 60px 0 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
}

.info-img{
    width:100%;
    border-radius: 0 0 0 80px;
    background: lightgray 50% / cover no-repeat;
}

.info-detail{
    display: flex;
    padding-left: 26px;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    align-self: stretch;
}

.info-title{
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.info-subtitle{
    text-align: center;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1;
}

.info-table{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    align-self: stretch;
}

.info-txt01{
    display: flex;
    align-items: center;
    gap: 5px;
    align-self: stretch;
}

.info-txt02{
    font-family: var(--font-sans);
    font-size: 1.6rem;
    font-weight: 300; 
    line-height: 1.4;
}

.info-side{
    font-family: var(--font-sans);
    font-size: 1.6rem;
    font-weight: 300;
    padding-left: 10px;
}

.info-map {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 の比率（例：高さを幅の56.25%に） */
  height: 0;
  overflow: hidden;
}

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


/* サロン情報　pc */
@media screen and (min-width: 769px){
.info-flex{
    display: flex;
    padding-bottom: 60px;
    flex-direction: row;
    align-items: center;
    gap: 50px;
    justify-content: center;
    width: 90%;
    margin: 0 auto;
}

.info-subtitle{
    font-size: 2rem;
}

.info-txt02{
    font-size: 1.8rem;
}

.info-side{
    font-size: 1.8rem;
}

.info-img{
    max-width:400px;
}
}
