@charset "UTF-8";
/* CSS Document */

/*ITOWA トップページ(PC)*/



/*リセットcss*/
	*{
		margin: 0;
		padding: 0;
		box-sizing: border-box;
	}

	body{
		font-family: " メイリオ ", Meiryo, " ヒラギノ角ゴ Pro W3", "HiraginoKaku Gothic Pro", " ＭＳ Ｐゴシック ", "MS PGothic", sans-serif;
		line-height: 1.5em;
		background-color: #fff;
	}

	h1,h2,h3,h4,h5,h6,h7{
		font-size: 100%;
		font-weight: normal;
	}

	li{
		list-style: none;
	}

	img{
		display: block;
		border: none;
	}

	a{
		display: block;
		text-decoration: none;
	}

    span{
	    display: block;
    }

    html body{
		overflow-x: hidden;
		width: 100%;
		height: 100%;  
		margin: 0; 
		padding: 0;   
		box-sizing: border-box;
    }

/*PCレスポンシブ*/

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

	/* メイン画像ヘッダーに潜り込まないように */
	
	main {
		margin-top: 240px;
	}

/*	********************ヘッダー*********************/
	
	#header {
		position: fixed;
		top: 0;
		margin-top: 20px;
		left: 0;   
		width: 100%;   
		height: 200px;
		z-index: 1000; 
		background: rgba(255, 255, 255, 0.8); 
		backdrop-filter: blur(10px); 
		box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
		padding: 20px;  
		box-sizing: border-box;
		transition: background 0.3s ease, box-shadow 0.3s ease;
	}
	
	#headerInner{
		display: flex;
		justify-content: space-between;
		margin: auto;
		margin-top: 30px;
		padding-left: 60px;
		padding-right: 60px;	
	}
	
	#header .header-content {
		display: flex;        
		justify-content: space-between; 
		align-items: center;     
		width: 100%;
	}
	
	#logo img{
		width: 338px;
	}
	
	#gnavi ul{
		display: flex;
		justify-content: space-between;
		width: 623px;
		margin-top: 74px;
		margin-right: 50px;
	}
	
	#gnavi ul a {
		font-size: 20px;
		color: #000;
		transition: transform 0.2s ease, color 0.2s ease;
		display: inline-block; 
		font-family: "Shippori Mincho B1", serif;
		font-weight: 400;
		font-style: normal;
		letter-spacing: 3px;
	}

	
	
	#gnavi ul a:hover {
		transform: translateY(2px); 
		color: #555; 
	}

	
/*	*ハンバーガー用ナビゲーション非表示*/
	
	#hamburger{
		display: none;
		}
	#sp-nav{
		display: none;
	}
	
/*	背景色*/
	
	.concept {
		background-color: #f9f7f4;
		padding-top: 150px;
		padding-bottom: 150px;
	}
	
	.menu {
		background-color: #fff;
		padding-top: 150px;
		padding-bottom: 150px;
	}
	
	.about {
		background-color: #f8f8f8;
		padding-top: 100px;
		padding-bottom: 100px;
	}
	
	.faq {
		background-color: #fff;
		padding-top: 150px;
		padding-bottom: 150px;
	}
	
	.contact{
		background-color: #f9f7f4;
		padding-top: 150px;
		padding-bottom: 150px;
	}
	
/*	********************メイン***********************/
	
/*	メインフォト*/
	
	#mainPhoto{
		display: inline-block;
		width: 100%;
		margin-top: 30px;
	}
	#mainPhoto img{
		display: block;
		height: auto;
		width: 100%;
		max-width: 1158px;
		margin-left: auto;
		margin-right: auto;
		padding-left: 60px;
		padding-right: 60px;	
	}
	
/*	見出タイトル*/
	
	.catch{
		margin-top: 200px;
		text-align: center;
		font-size: 35px;
		font-family: "Noto Serif JP", serif;
		font-optical-sizing: auto;
		font-weight: 600;
		font-style: normal;
		
	}
	
/*	h3左右ライン線、サブタイトル共通*/
	
	.line-wrapper {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 50px; /* 線と文字の間隔 */
		margin: 50px auto;
	}
	
	.line {
		width: 70px; /* 固定長 */
		height: 1px;
		background-color: #000;
	}
	
	.subtext {
		font-size: 24px;
		white-space: nowrap;
		opacity: 0;
		transform: translateY(40px);
		transition: all 1.5s ease-out;
		will-change: opacity, transform;
		font-family: "Noto Serif SC", serif;
		font-optical-sizing: auto;
		font-weight: 400;
		font-style: normal;
	}
	
	.subtext.fade-in {
	opacity: 1;
	transform: translateY(0);
	}

/*	h1*/
	.top{
		margin-top: 50px;
		font-size: 23px;
		text-align: center;
		line-height: 1.5;
		font-family: "Klee One", cursive;
		font-weight: 400;
		font-style: normal;
	}
	
/***** スライドショー *****/
	
	.slider-container {
		width: 100%;
		max-width: 100%; /* 最大幅を100%にすることでレスポンシブ対応 */
		margin: 0 auto;
		overflow: hidden;
		position: relative;
		padding-top: 150px;
		padding-bottom: 150px;
	}
	
/* スライドの幅調整 */
	
	.slider-track {
		display: flex;
		transition: transform 0.6s ease-in-out;
	}

/* スライドの設定 */
	.slide {
		flex: 0 0 calc(33.3333% - 20px); /* 3列表示（100% / 3 = 約33.3%） */
		margin: 0 10px;
		display: flex;
		justify-content: center;
		align-items: center;
		transition: transform 0.4s ease, opacity 0.4s ease;
		opacity: 0.6;
		box-sizing: border-box;
	}

/* アクティブスライド */
	
	.slide.active {
		transform: scale(1.2); /* 拡大 */
		opacity: 1; /* 目立たせる */
		z-index: 2; /* 他のスライドより前面に */
	}
	
/* スライド用画像の設定 */
	
	.slide img {
		width: 100%;
		height: auto;
		max-width: 379px;
		transition: transform 0.4s ease;
	}
	

	
/******Concept******/
	
	.concept{
		margin-top: 100px;
	}
	
	h2{
		text-align: center;
		font-size: 40px;
		font-family: "Libre Baskerville", serif;
		font-weight: 600;
		font-style: normal;
		letter-spacing: 2px;
	}
	
	.conceptC{
		margin-top: 150px;
	}
	
	/*	左右ライン線パターン２短い、サブタイトル共通*/
	
	.line-wrapper2 {
		font-size: 30px;
		font-family: "Noto Serif JP", serif;
		font-optical-sizing: auto;
		font-weight: 600;
		font-style: normal;
	}
	
	.line-wrapper2 {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 40px; /* 線と文字の間隔 */
		margin: 40px auto;
	}
	.line2 {
		width: 50px; /* 固定長 */
		height: 1px;
		background-color: #000;
	}
	.subtext2 {
		font-size: 23px;
		white-space: nowrap;
	}
	
/*	日本伝統和装*/
	
	.c1{
		max-width: 850px;
		width: 90%;
		margin-left: auto;
		margin-right: 100px;
	}
	
	.numberEnglish{
		display: flex;
	}
	
	.number{
		font-size: 25px;
		font-family: "Vollkorn", serif;
		font-optical-sizing: auto;
		font-weight: 600;
		font-style: normal;
	}
	
	.numberR{
		font-size: 18px;
		margin-left: 10px;
		font-family: "Shippori Mincho", serif;
		font-weight: 400;
		font-style: normal;
	}
	
	.traditional{
		max-width: 180px;
		width: 100%;
		margin-top: 30px;
	}
	
	.explanation{
		font-size: 16px;
		width: auto;
	}
	
	.tx{
		display: flex;
	}
	
	.txRL{
		margin-left: 65px;
	}
	
/*	パーソナルコーディネートヘアメイク*/
	
	.c2{
		max-width: 1150px;
		width: 90%;
		margin-right: 100px;
		margin-left: auto;
		margin-top: 40px;
	}
	
	.personalHM{
		max-width: 200px;
		width: 100%;
		margin-top: 30px;
	}
	
/*	撮影動画撮影*/
	
	.c3{
		max-width: 925px;
		width: 90%;
		margin-left: auto;
		margin-right: 100px;
		margin-top: 40px;
	}
	
	.photoMovie{
		max-width: 150px;
		width: 100%;
		margin-top: 30px;
	}
	
	
	
/*	*****menu******/
	
	.menu{
		margin-top: 100px;
	}
	
	.menuExplanation p{
		text-align: center;
		font-size: 23px;
		line-height: 2;
		font-family: "Klee One", cursive;
		font-weight: 400;
		font-style: normal;
		padding-bottom: 100px;
	}
	
	.menuC{
		display: flex;
		justify-content: space-between;
		max-width: 1126px;
		width: 90%;
		margin-left: auto;
		margin-right: auto;
		gap: 20px;
	}
	
	.menuC li img{
		max-width: 280px;
		width: 100%;
	}
	
	.plan{
		display: flex;
		flex-direction: column;
	}
	
	.plan p{
		text-align: center;
		margin-top: 30px;
		font-size: 23px;
		font-family: "Libre Baskerville", serif;
		font-weight: 400;
		font-style: normal;
		letter-spacing: 1px;
	}
	
	.button-01{
		margin-top: 100px;
	}

/*ボタン四角*/
	
	.button-01 a {
		font-family: 'Noto Serif JP', serif;
		font-size: 16px;
		letter-spacing: 0.1em;
		color: #333;
		font-weight: 400;
		border: solid 1px #333;
		display: block;
		box-sizing: border-box;
		max-width: 300px;
		text-align: center; 
		padding: 16px 64px;
		margin: 24px;
		margin-inline: auto;
		text-decoration: none;
		cursor: pointer;
		transition: all 0.3s;
		background-color: #fff;
	}
	
	.button-01 a:hover {
		color: #fff;
		background: #333;
		transition: all 0.3s;
	}

	
	
/*	*****about******/
	
	.about{
		margin-top: 100px;
		max-width: 1246px;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	
	.f1{
		max-width: 397px;
		width: 100%;
		display: block;
		margin-left: auto;
	}
	
	.aboutEx{
		max-width: 763px;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
		padding-top: 20px;
		padding-bottom: 20px;
	}
	
	p.aboutEx {
		font-size: 18px;
	}

	
	.f2{
		max-width: 386px;
		width: 100%;
		}
	
	.f1, .f2 {
		opacity: 0;
		transform: translateY(60px);
		transition: all 1.5s ease-out; 
		will-change: opacity, transform;
	}
	
	.fade-in {
		opacity: 1;
		transform: translateY(0);
	}

	.aboutUnder{
		display: flex;
		justify-content: space-between;
	}
	
/*	ボタン２(View More）*/
	
	.button-13 a {
		font-family: 'Noto Serif JP', serif;
		font-size: 16px;
		letter-spacing: 0.1em;
		color: #333;
		font-weight: 400;
		display: block;
		position: relative;
		box-sizing: border-box;
		max-width: 180px;
		text-align: center; 
		padding: 4px 60px 7px 0;
		margin-top: 80px;
		margin-inline: auto;
		text-decoration: none;
		cursor: pointer;
		transition: all 0.3s;
		text-indent: 22px;
		margin-right: 150px;
	}
	
	.button-13 a::before {
		content: "";
		display: block;
		position: absolute;
		width: 180px;
		height: 1px;
		background: #333;
		bottom: 0;
		transition: all 0.3s;
	}
	
	.button-13 a::after {
		content: "";
		display: block;
		position: absolute;
		width: 30px;
		height: 1px;
		background: #333;
		rotate: 40deg;
		right: -3px;
		bottom: 10px;
		transition: all 0.3s;
	}
	
	.button-13 a:hover::after,
	.button-13 a:hover::before {
		translate: 20px 0;
		transition: all 0.3s;
	}
	
	
	
/*****	Q&A*****/
	
	.faq{
		margin-top: 100px;
	}
	
	.faqC{
		margin-left: auto;
		margin-right: auto;
		max-width: 870px;
		margin-top: 70px;
	}
	
	.faqBt{
		margin-top: 100px;
	}
	
	.faqBt .button-13 a{
		margin-right: 50px;
	}
	
	
/*	アコーディオン*/
	
	.qa-6 {
		margin-top: 10px;
		max-width: 870px;
		margin-bottom: 5px;
		border-bottom: 1px solid #333;
}
	.qa-6 summary {
		margin-top: 20px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		position: relative;
		padding: 1em 2em 1em 3em;
		color: #333333;
		cursor: pointer;
		list-style: none;
	}
	
	.qa-6 summary::-webkit-details-marker {
		display: none; /* 追加：Safariの三角を非表示に */
	}
	
	.qa-6 summary::before,
	.qa-6 p::before {
		position: absolute;
		left: 1em;
		font-size: 1.3em;
	}
	
	.qa-6 summary::before {
		color: #75bbff;
		content: "Q";
	}
	
	.qa-6 summary::after {
		transform: translateY(-25%) rotate(45deg);
		width: 7px;
		height: 7px;
		margin-left: 10px;
		border-bottom: 2px solid #333333b3;
		border-right: 2px solid #333333b3;
		content: '';
		transition: transform .5s;
	}
	
	.qa-6[open] summary::after {
		transform: rotate(225deg);
	}
	
	.qa-6 p {
		position: relative;
		transform: translateY(-10px);
		opacity: 0;
		margin: 0;
		padding: .3em 3em 1.5em;
		color: #333;
		transition: transform .5s, opacity .5s;
	}
	
	.qa-6[open] p {
		transform: none;
		opacity: 1;
	}
	
	.qa-6 p::before {
		color: #ff8d8d;
		line-height: 1.2;
		content: "A";
	}
	
	
	
/*	*****Contact******/
	
	.contact{
		margin-top: 100px;
	}
	
	.contactf{
		margin-top: 150px;
		text-align: center;
		font-size: 23px;
		line-height: 2;
		font-family: "Klee One", cursive;
		font-weight: 400;
		font-style: normal;
	}
	
	/*ボタン四角*/
	
	.contactBtn{
		margin-top: 100px;
	}
	

/*	********************フッター*********************/
	
	.footerInner{
		background-color: #583737;
	}
	
	.footerLogo{
		max-width: 360px;
		width: 100%;
		padding-top: 150px;
		margin-left: auto;
		margin-right: auto;
	}
	.footerInsta{
		margin-top: 120px;
	}
	.insta {
		max-width: 60px;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
		padding-top: 0; 
		cursor: pointer;
		display: block; 
	}

	
/*	フッターナビ*/
	
	.footervav{
		margin-top: 120px;
	}
	
	.footervav ul{
		
		display: flex;
		justify-content: space-between;
		max-width: 850px;
		margin-left: auto;
		margin-right: auto;
	}
	
	
	.footervav ul li a {
		display: block;
		color: #fff;
		font-size: 25px;
		position: relative;
		transition: color 0.3s ease;
		font-family: "Shippori Mincho B1", serif;
		font-weight: 400;
		font-style: normal;
		letter-spacing: 3px;
	}
	
	.footervav ul li a::after {
		content: "";
		position: absolute;
		bottom: -5px;
		left: 0;
		width: 0%;
		height: 1px;
		background: #fff;
		transition: width 0.3s ease;
	}
	
	.footervav ul li a:hover {
		color: #ddd;
		}
	
	.footervav ul li a:hover::after {
		width: 100%; 
	}
	
	.footer-links {
		display: flex;
		justify-content: center;
		gap: 130px;
		margin-top: 70px;
		margin-bottom: 20px;
		flex-wrap: wrap;
	}
	
	.footer-links a {
		color: #fff;
		font-size: 14px;
		text-decoration: none;
		border: 1px solid #fff;
		padding: 8px 16px;
		border-radius: 4px;
		transition: all 0.3s;
		font-family: "Shippori Mincho B1", serif;
	}
	
	.footer-links a:hover {
		background-color: #fff;
		color: #583737;
	}
	
	.copyright{
		margin-top: 100px;
		text-align: center;
		color: #fff;
		padding-bottom: 150px;
		font-size: 17px;
		letter-spacing: 2px;
		font-family: "Shippori Mincho", serif;
		font-weight: 400;
		font-style: normal;
		}	
}
/*PCレスポンシブ終了*/

