@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Noto+Serif+JP:wght@400;700&display=swap');

body {
  font-family: 'Noto Sans JP', '游ゴシック体', 'Yu Gothic', 'ヒラギノ角ゴ ProN W3',
               'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  max-width: 100vw;
  overflow-x: hidden;
}

/* serif切り替え用 */
.serif {
  font-family: 'Noto Serif JP', '游明朝', 'Yu Mincho', 'ヒラギノ明朝 ProN W3',
               'Hiragino Mincho ProN', 'MS P明朝', 'MS PMincho', serif;
}

h1 {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  overflow: hidden;
}

.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  text-align: center;
}

.profile {
  text-align: center;
    display: grid;
    row-gap: 10px;
}
.width{
  padding: 2em 1em;
}
.height{
  padding: 2em 2em;
}
.profile-photo {
  width: 150px;
  border-radius: 50%;
  margin-bottom: 1em;
}

.contact {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5em;
  padding: 0 1em 3rem;
}
/* バナー */
.banner a:nth-child(n+2){
  margin-top: 2%;
    display: block;
}
/* 各SNSボタン（共通） */
.contact a{
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.8em 1.6em;
  border-radius: 5px;
  width: 100%;
  max-width: 320px;
  text-decoration: none;
  line-height: 1;
  
}
/* ホームページ */
.hp {
  background-color: #ed8640;
}
.hp svg {
  width: 1.2em;
  height: 1.2em;
  stroke-width: 1.8;
  display: block;
  vertical-align: middle;   
}
/* インスタグラム */
.instagram {
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  transition: opacity 0.3s ease;
}
.instagram i {
  font-size: 1.3em;
  display: inline-block;
}
/* YouTube */
.youtube{
  background-color: #FF0000; /* YouTubeレッド */
  color: #fff;
}


/* LINE */
.line {
  background-color: #00c300;
}
.line .line-icon {
  width: 1.2em;
  height: auto;
  display: inline-block;
  vertical-align: middle; 
}
/* Facebook */
.facebook {
  background-color: #1877f2;
}
.facebook i {
  font-size: 1.3em;
  display: inline-block;
}
/* X */
.x { background-color: #000; }
/* note */
.note { background-color: #41c9b4; }
/* ChatWork */
.chatwork { background-color: #e60012; }
/* Slack */
.slack { background-color: #4A154B; }
/* 食べログ */
.tabelog { background-color: #ffa500; }
/* ホットペッパー */
.hotpepper {
   background-color: #cc0000;
   }
/* ホットペッパービューティ */
.hotpepper-beauty { background-color: #bb4e8b; }
/* GoogleMap */
.gmap { background-color: #34a853; }
/* メール */
.mail { background-color: #12136b; }
/* 電話 */
.tel { background-color: #9c008f; }

footer {
  text-align: center;
  font-size: 0.8rem;
}

/* PC・SP切り替え制御 */
#sp {
  display: none;
}
#pc {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.logo img {
  max-width: 300px;
  height: auto;
  margin-bottom: 20px;
}

/* スマホ表示（768px以下） */
@media screen and (max-width: 768px) {
  body:before {
    content: "";
    position: fixed;
    inset: 0;
    background-repeat: repeat;
    background-size: cover;
    pointer-events: none;
    z-index: -1;
    background-color: #f5f5f5;
  }

  #pc {
    display: none;
  }

  #sp {
    display: block;
  }

  .profile img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
    box-sizing: border-box;
  }
}
