@charset "utf-8";

/* Google Fonts
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@100..900&display=swap');

/* Font Awesome（アイコン）
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

/* lightbox.css
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.10.0/css/lightbox.css");


/* キーフレーム
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

@keyframes animation1 {
	0% {left: -200px;}
	100% {left: 0px;}
}


/* 全体リセット & 基本
---------------------------------------------------------------------------*/
*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	height: 100%;
	font-size: 13px;
}

@media screen and (min-width:900px) {
	html, body {
		font-size: 13px;
	}
}

body {
	font-family:"M PLUS 1","ヒラギノ角ゴ Pro W3","MS Pゴシック","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,Osaka,"MS PGothic",sans-serif;
	font-weight: 450;
	font-optical-sizing: auto;
	letter-spacing: 0.1rem;
	-webkit-text-size-adjust: none;
	margin: 0;
	padding: 0;
	line-height: 2;
	background: #f59abd;
	color: #fcf8fa;
}

/* リセット */
figure {margin: 0;}
dd {margin: 0;}
nav,ul,li {margin: 0;padding: 0;}
nav ul {list-style: none;}
h1,h2,h3,h4 {font-weight: 400;}
table {border-collapse:collapse;}
img {border: none;max-width:100%;height: auto;vertical-align: middle;}
iframe {width: 100%;}
input {font-size: 1rem;}
strong {font-weight: 500;}


/* リンク
---------------------------------------------------------------------------*/
a {
	color: #fff;
	transition: 0.3s;
}
a:hover {
	text-decoration: none;
}


/* TOP動画（index.html）
---------------------------------------------------------------------------*/
#video {
	position: relative;
	z-index: -1;
	overflow: hidden;
	width: 100%;
	height: 100%;
	margin: 0 auto;
}

/* 動画自体を画面いっぱいに固定して背景として使う */
#video video {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 100%;
	min-height: 100%;
}

/* 縦向き端末 */
@media (orientation: portrait) {
	#video .landscape {display: none;}
	#video .portrait {display: block;}
}

/* 横向き端末 */
@media (orientation: landscape) {
	#video .portrait {display: none;}
	#video .landscape {display: block;}
}


/* header（左側メニュー）
---------------------------------------------------------------------------*/
header {
	width: 250px;
	padding: 0 2vw;
	margin-top: 5vw;
	text-align: center;
}

header #logo img {display: block;}
header #logo {padding: 0;margin: 0;}

@media screen and (min-width:900px) {
	header {
		position: fixed;
		left: 0;
		top: 0;
	}
}

@media screen and (max-height:500px) {
	header {
		position: absolute;
	}
}


/* main（右側コンテンツ）
---------------------------------------------------------------------------*/
@media screen and (min-width:900px) {
	main {
		margin-left: 250px;
	}
}

main h2 {
	font-size: 2.5rem;
}
main h3 {
	font-size: 1.5rem;
}


/* メニューの表示・非表示（テンプレの仕様）
---------------------------------------------------------------------------*/
#menubar {display: none;}
.large-screen #menubar {display: block;}
.small-screen #menubar.display-block {display: block;}
#menubar_hdr.display-none {display: none;}


/* メニュー本体
---------------------------------------------------------------------------*/
#menubar ul {
	margin: 3rem 0;
}

#menubar nav a {
	display: block;
	text-decoration: none;
	background: rgba(222, 6, 121, 0.7);
	border: 1px solid rgba(255,255,255,0.3);
	color: #fff;
	padding: 1.5rem;
	margin: 2rem 0;
	border-radius: 5px;
}
#menubar nav a:hover {
	background: rgba(0,0,0,0.9);
	border: 1px solid rgba(255,255,255,0.9);
}

/* 900px以下（スマホ）でのメニュー */
.small-screen #menubar.display-block {
	position: fixed;
	overflow: auto;
	z-index: 100;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	padding-top: 80px;
	background: rgba(0,0,0,0.8);
	animation: animation1 0.2s both;
}
.small-screen #menubar ul {
	margin: 3rem;
}


/* ハンバーガーアイコン
---------------------------------------------------------------------------*/
#menubar_hdr {
	animation: opa1 0s 0.2s both;
	position: fixed;
	z-index: 101;
	cursor: pointer;
	right: 30px;
	top: 30px;
	padding: 16px 14px;
	width: 46px;
	height: 46px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: #d30c44;
}
#menubar_hdr span {
	display: block;
	transition: 0.3s;
	border-top: 1.5px solid #fff;
}
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;
	width: 20px;
}
#menubar_hdr.ham span:nth-of-type(1){
	transform: rotate(45deg) translate(3.8px, 5px);
}
#menubar_hdr.ham span:nth-of-type(3){
	transform: rotate(-45deg) translate(3.8px, -5px);
}
#menubar_hdr.ham span:nth-of-type(2){
	display: none;
}


/* ソーシャルアイコン（共通）
---------------------------------------------------------------------------*/
ul.icons {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
}
ul.icons li {
	margin-right: 10px;
}
ul.icons i {
	font-size: 25px;
}

/* Information 内の大きめアイコン */
ul.iconsss {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: left;
}
ul.iconsss li {
	margin-right: 20px;
}
ul.iconsss i {
	font-size: 35px;
}


/* section 共通
---------------------------------------------------------------------------*/
.section::before {
	opacity: 0;
	transition: opacity 1s;
}
.section.active::before {
	opacity: 1;
}
.section.inactive::before {
	opacity: 0;
}

section {
	padding: 2vw 2vw;
}

#section1,#section2,#section3,#section4,#section5,#section6,#section7 {
	min-height: calc(100dvh - 50px);
	margin-bottom: 80px;
	padding: 5vw;
}

@media screen and (min-width:900px) {
	#section1,#section2,#section3,#section4,#section5,#section6,#section7 {
		border-radius: 3vw 0 0 3vw;
	}
}

/* 背景画像用の ::before */
#section1::before,
#section2::before,
#section3::before,
#section4::before,
#section5::before,
#section6::before,
#section7::before {
	content: '';
	position: fixed;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* section1（未使用でもテンプレとして残す） */
#section1 {
	color: #fff;
}
#section1::before {
	background: url('../images/top_2.png') no-repeat center center / cover;
}

/* section2 Information */
#section2 {
	background-color: rgba(252, 83, 83,0.3);
	color: #fff;
}
#section2::before {
	background: url('../images/S__92823569.png') no-repeat center center / cover;
}

/* section3 Menu */
#section3 {
	background-color: rgba(165, 232, 246, 0.8);
	color: #181515;
}
#section3::before {
	background: url('../images/S__92823571.jpg') no-repeat center center / cover;
}

/* section4 Products */
#section4 {
	color: #0c0c0cf5;
}
#section4::before {
	background: rgba(251,252,252,1);
}

/* section5 日本語プロフィールテキスト（TOPページ中段） */
#section5 {
	background-color: rgba(24, 10, 76, 0.4);
	color: #fff;
}
#section5::before {
	background: url('../images/823E0ED88CF4.jpg') no-repeat center center / cover;
}

/* section6 Gallery（hairstyle.html） */
#section6 {
	color: #0c0c0cf5;
}
#section6::before {
	background: rgba(148, 229, 247,0.7);
}

/* section7 Profile（profile.html） */
#section7 {
	color: #0a0000;
}
#section7::before {
	background: rgba(246, 247, 247, 0.7);
}

/* section7 の動く文字 */
.textAnime {
	height: 40px;
	margin-top: 40px;
	margin-bottom: 10px;
	text-align: center;
	overflow: hidden;
}
.textAnime span{
	display: inline-block;
	font-size: 12px;
	color: #82b9fd;
	font-family: sans-serif;
	font-weight: bold;
	letter-spacing: 7px;
	line-height: 1;
	-webkit-text-stroke: 1px #82b9fd;
	transform: translateY(50px);
	animation: textAnime 2s infinite alternate;
}
@keyframes textAnime {
	100%{
		transform: translateY(0px);
	}
}

/* profile の写真グリッド */
.container-6 {
	margin-top: 10%;
	margin-bottom: 10%;
	display: grid;
	gap: 2rem 1.5rem;
	grid-template-columns: repeat(3,1fr);
}
.container-6 img {
	aspect-ratio: 1/1;
	object-fit: cover;
	border-radius: 16px;
}


/* お客様の声ボックス */
.mybox{
	background-color: #F6D4D8;
	border-radius: 5px;
	margin: 20px 20px;
	padding: 30px 20px 20px 20px;
	position: relative;
	z-index: 0;
}
.mybox:before{
	border: 2px solid #fff;
	border-radius: 5px;
	content: '';
	display: block;
	margin: 4px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: -1;
}


/* 縦向き端末で背景差し替え */
@media (orientation: portrait) {
	#section1::before {
		background-image: url('../images/top_2.png');
	}
	#section2::before {
		background-image: url('../images/S__92823569.png');
	}
	#section3::before {
		background-image: url('../images/S__92823571.jpg');
	}
}

/* 背景色を入れないクラス */
.no-bgcolor {
	background-color: transparent !important;
}


/* 共通ボタン（profileリンクなど）
---------------------------------------------------------------------------*/
a.btn_04 {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 180px;
	margin: auto;
	padding: 0.5rem 0.5rem;
	font-weight: bold;
	background: hsla(329, 89%, 78%, 0.7);
	color: #fff;
	border-radius: 100vh;
	transition: 0.5s;
	margin-top: 20%;
	margin-bottom: 20%;
}
a.btn_04:hover {
	color: #27acd9;
	background: #fff;
}


/* hair style の Instagram ボタン
---------------------------------------------------------------------------*/
@import "https://use.fontawesome.com/releases/v5.13.0/css/all.css";

.btn,
a.btn,
button.btn {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.5;
	position: relative;
	display: inline-block;
	padding: 1rem 4rem;
	cursor: pointer;
	user-select: none;
	transition: all 0.3s;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	letter-spacing: 0.1em;
	color: #212529;
	border-radius: 0.5rem;
}

a.btn-c {
	font-size: 1.8rem;
	position: relative;
	padding: 2rem 5rem 2rem 3rem;
	color: #fff;
	border-radius: 0;
	background-image: linear-gradient(115deg,#231557 0%,#44107a 25%,#ff1361 90%,#fff800 100%);
	box-shadow: 0 10px 10px rgba(0,0,0,0.2);
}
a.btn-c span {
	position: relative;
}
a.btn-c:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	transition: all 0.3s;
	background-image: linear-gradient(115deg,#231557 0%,#44107a 15%,#ff1361 70%,#fff800 100%);
}
a.btn-c:after {
	font-family: "Font Awesome 5 Free";
	font-size: 1.6rem;
	line-height: 1;
	position: absolute;
	top: calc(50% - 0.8rem);
	right: 1rem;
	content: "\f30b";
	transition: all 0.3s;
}
a.btn-c:hover {
	color: #fff;
}
a.btn-c:hover:before {
	opacity: 0;
}
a.btn-c:hover:after {
	right: 0.5rem;
}


/* HOMEボタン（btn_30）
---------------------------------------------------------------------------*/
a.btn_30 {
	display: flex;
	vertical-align: middle;
	text-decoration: none;
	margin: auto;
	width: 20em;
	height: 4em;
	color: #ccc;
	cursor: pointer;
	transition: all 0.85s cubic-bezier(.17,.67,.14,.93);
	transform-style: preserve-3d;
	transform-origin: 100% 50%;
}
a.btn_30:hover {
	transform: rotateX(-90deg);
}
a.btn_30 .side {
	box-sizing: border-box;
	position: absolute;
	display: inline-block;
	width: 20em;
	text-align: center;
	padding: 1.2rem 4rem;
	font-weight: bold;
	letter-spacing: 2px;
}
a.btn_30 .top {
	margin-top: 10%;
	margin-bottom: 10%;
	background: #5fc7fa;
	color: #fff;
	transform: rotateX(90deg) translate3d(0, 0, 2em);
}
a.btn_30 .front {
	margin-top: 10%;
	margin-bottom: 10%;
	background: #f68fca;
	color: #fff;
	transform: translate3d(0, 0, 2em);
}

/* お客様の声ページ用 HOMEボタン（btn_301） */
a.btn_301 {
	display: flex;
	vertical-align: middle;
	text-decoration: none;
	margin: auto;
	width: 20em;
	height: 4em;
	color: #ccc;
	cursor: pointer;
	transition: all 0.85s cubic-bezier(.17,.67,.14,.93);
	transform-style: preserve-3d;
	transform-origin: 100% 50%;
}
a.btn_301:hover {
	transform: rotateX(-90deg);
}
a.btn_301 .side {
	box-sizing: border-box;
	position: absolute;
	display: inline-block;
	width: 20em;
	text-align: center;
	padding: 1.2rem 4rem;
	font-weight: bold;
	letter-spacing: 2px;
}
a.btn_301 .top {
	background: #5fc7fa;
	color: #fff;
	transform: rotateX(90deg) translate3d(0, 0, 2em);
}
a.btn_301 .front {
	background: #f68fca;
	color: #fff;
	transform: translate3d(0, 0, 2em);
}


/* フッター
---------------------------------------------------------------------------*/
footer small {font-size: 100%;}
footer {
	font-size: 0.8rem;
	text-align: center;
	padding-bottom: 1rem;
}
footer a {color: inherit;text-decoration: none;}


/* お知らせブロック
---------------------------------------------------------------------------*/
.new dd {
	padding-bottom: 1rem;
}
.new dt span {
	display: inline-block;
	text-align: center;
	line-height: 1.8;
	border-radius: 3px;
	padding: 0 0.5rem;
	width: 6rem;
	transform: scale(0.8);
	background: rgba(255,255,255,0.8);
	color: #333;
}
@media screen and (min-width:700px) {
	.new {
		display: grid;
		grid-template-columns: auto 1fr;
	}
}


/* list-grid（Products と Gallery サムネイル）
---------------------------------------------------------------------------*/
.list-grid-trimming {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}
.list-grid-trimming .list {
	position: relative;
	overflow: hidden;
	height: 0;
	padding-top: 100%;
}
.list-grid-trimming .list a {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.list-grid-trimming .list img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: 0.5s;
}
.list-grid-trimming .list img:hover {
	transform: scale(1.1);
	filter: contrast(1.3);
}


/* PAGE TOP
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}
.pagetop a {
	display: block;
	text-decoration: none;
	text-align: center;
	z-index: 99;
	animation: opa1 0.2s 0.2s both;
	position: fixed;
	right: 20px;
	bottom: 20px;
	color: #fff;
	font-size: 1.5rem;
	background: rgba(0,0,0,0.2);
	width: 60px;
	line-height: 60px;
	border-radius: 50%;
}


/* その他ユーティリティ
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb0 {margin-bottom: 0px !important;}
.mb30 {margin-bottom: 30px !important;}
.look {display: inline-block;padding: 0px 10px;background: #000;border: 1px solid #fff;border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.color-check, .color-check a {color: #ffcf0d;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}

@media screen and (min-width:900px) {
	.ws {width: 48%;display: inline;}
	.sh {display: none;}
	.pc {display: block;}
}


/* ここから profile.html 用の追加調整
---------------------------------------------------------------------------*/

/* プロフィールの一番上のイラスト画像
   profile.html で <img ... class="profile-main"> を付けると効きます */
#section7 img.profile-main {
	display: block;
	margin: 40px auto 20px;
	max-width: min(600px, 90%);
	height: auto;
}

/* PC のときにプロフィールブロックを中央寄せ＆少し小さめに */
@media screen and (min-width:900px) {
	#section7 {
		max-width: 900px;
		margin: 80px auto 100px;
	}
}

/* ===========================
   2025-12-05 追記の修正用CSS
   =========================== */

/* 1) 全体の文字サイズを少し大きくする（PCもスマホも） */
html,
body {
  font-size: 15px;
}

@media screen and (min-width: 900px) {
  html,
  body {
    font-size: 16px;
  }
}

/* 2) index.html の「Hair Style」ボタンのデザイン復活 */
a.btn_17 {
  display: block;
  text-align: center;
  vertical-align: bottom;
  text-decoration: none;
  position: relative;
  width: 180px;           /* ボタンの横幅 */
  margin: 2rem auto;      /* 上下の余白＋中央寄せ */
  padding: 0.8rem 1rem;
  font-weight: bold;
  color: hsl(329, 75%, 73%);
  background: #e1f3f9;
  transition: 0.3s ease-in-out;
  border-radius: 999px;   /* まるいボタン */
}

a.btn_17::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 999px;
  border: 2px solid hsl(329, 75%, 73%);
  transition: 0.2s;
}

a.btn_17:hover {
  background: hsl(329, 75%, 73%);
  color: #fff;
}

a.btn_17:hover::before {
  top: 0;
  left: 0;
}

/* 3) profile.html （#section7）を中央寄せ＋トップ画像を中央に */
@media screen and (min-width: 900px) {
  #section7 {
    max-width: 900px;          /* コンテンツの最大幅 */
    margin: 80px auto 100px;   /* 左右 auto で中央寄せ */
  }
}

/* セクション7の一番上の画像を中央＆少し小さめに */
#section7 > img {
  display: block;
  margin: 40px auto 20px;
  max-width: min(600px, 90%);
  height: auto;
}
/* Hair Style ボタン（スマホでも装飾が崩れないよう修正）*/
a.btn_17 {
	display: block;
	text-align: center;
	text-decoration: none;
	position: relative;
	width: 160px;
	margin: 40px auto;
	padding: 1rem 3rem;
	font-weight: bold;
	color: hsl(329, 75%, 73%) !important;
	background: #e1f3f9 !important;
	border-radius: 8px;
	transition: 0.3s ease-in-out;
	border: none;
}

a.btn_17::before {
	content: '';
	position: absolute;
	top: -5px;
	left: -5px;
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	border: 2px solid hsl(329, 75%, 73%);
	transition: 0.2s;
	border-radius: 8px;
}

a.btn_17:hover {
	background: hsl(329, 75%, 73%) !important;
	color: #fff !important;
}

a.btn_17:hover::before {
	top: 0;
	left: 0;
}

/* --- 文章の最初が勝手に空く問題を修正 --- */
body {
    text-indent: 0 !important;
}

#section6 h3 {
    font-size: 1.4rem !important;
    line-height: 1.6;
}

/* モバイル用 Instagram ボタン調整：最強セレクタ版 */
@media screen and (max-width: 899px) {
  body a.btn.btn-c {
    font-size: 1.2rem !important;
    padding: 0.8rem 2rem 0.8rem 1.6rem !important;
    transform: scale(0.75) !important;
    transform-origin: center center !important;
  }

  body a.btn.btn-c:after {
    font-size: 1rem !important;
    right: 0.5rem !important;
  }
}