@charset "UTF-8";

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


/* タブレットレスポンシブ */

@media screen and (max-width: 768px) {
	
	/* メイン画像ヘッダーに潜り込まないように */

	main {
		margin-top: 140px; 
	}

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

	#headerInner {
		margin-top: 20px;
		width: 100%;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 1000; 
		background: rgba(255, 255, 255, 0.9);
		box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3); 
		padding: 20px;
		box-sizing: border-box; 
		transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
	}
	
	#headerInner .header-content{
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%; 
		max-width: none; 
		margin: 0 auto; 
	}

/*	ロゴ*/
	
	#logo img{
		width: 180px;
	}
	
	
/*	ナビゲーション非表示*/
	
	#gnavi ul {
		display: none;
	}
	
/***** ハンバーガーアイコン*****/

	#hamburger {
		display: block;
		width: 30px;
		height: 42px;
		position: relative;
		cursor: pointer;
		z-index: 1100;
		margin-left: auto;
		margin-top: -54px;
	}

/* ハンバーガーの線 */

	#hamburger span {
		display: block;
		height: 1px;
		background-color: #333;
		margin: 10px 0;
		transition: all 0.3s ease;
	}

/* ハンバーガーアニメーション */

	#hamburger.active span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}
	#hamburger.active span:nth-child(2) {
		opacity: 0;
	}
	#hamburger.active span:nth-child(3) {
		transform: rotate(-45deg) translate(10px, -10px);
	}

/* ナビゲーションメニュー（スライドイン） */

	.sp-nav {
		position: fixed;
		top: 0;
		right: 0;
		width: 250px;
		height: 100vh;
		z-index: 1000;
		opacity: 0;
		transform: translateX(100%);
		transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
		pointer-events: none;
	}
	.sp-nav.active {
		opacity: 1;
		transform: translateX(0);
		pointer-events: auto;
	}

/* メニュー中身 */

	.nav-inner {
		width: 100%;
		height: 100%;
		background: rgba(255, 255, 255, 0.85);
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding: 60px 0;
		box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
	}

/* メニューリスト */

	.sp-nav .nav-inner ul {
		list-style: none;
		padding: 0;
		margin: 0;
		text-align: center;
	}
	
	.sp-nav li {
	margin: 40px 0;
	}

/* メニューリンク */

	.sp-nav .nav-inner a {
		font-size: 18px;
		text-decoration: none;
		color: #000;
		transition: color 0.3s ease;
		font-family: "Shippori Mincho B1", serif;
		font-weight: 400;
		font-style: normal;
		letter-spacing: 3px;
	}
	
	.sp-nav .nav-inner a:hover {
		transform: translateY(2px); 
		color: #555;
	}
	
	.sp-nav a:focus {
		outline: 2px solid #000;
		outline-offset: 2px;
	}	

/*	背景色***********************/
	
	.concept {
		background-color: #f9f7f4;
		padding-top: 100px;
		padding-bottom: 100px;
	}
	
	.menu {
		background-color: #fff;
		padding-top: 100px;
		padding-bottom: 100px;
	}
	
	.about {
		background-color: #f8f8f8;
		padding-top: 100px;
		padding-bottom: 100px;
	}
	
	.faq {
		background-color: #fff;
		padding-top: 100px;
		padding-bottom: 100px;
	}
	
	.contact{
		background-color: #f9f7f4;
		padding-top: 100px;
		padding-bottom: 100px;
	}
	
/******************** メインー********************/

/*	メインフォト*/
	
	#mainPhoto {
		display: inline-block;
		width: 100%;
		margin-top: 30px;
	}
	#mainPhoto img {
		display: block;
		height: auto;
		width: 100%;
		max-width: 648px;
		margin-left: auto;
		margin-right: auto;
		padding-left: 30px;
		padding-right: 30px;
	}
	
/*	見出タイトル*/
	
	.catch{
		margin-top: 100px;
		text-align: center;
		font-size: 23px;
		font-family: "Noto Serif JP", serif;
		font-optical-sizing: auto;
		font-weight: 600;
		font-style: normal;
	}
	
/*	左右ライン線、サブタイトル共通*/
	
	.line-wrapper {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 40px; /* 線と文字の間隔 */
		margin: 30px auto;
	}
	
	.line {
		width: 40px; 
		height: 1px;
		background-color: #000;
	}
	
	.subtext {
		font-size: 17px;
		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: 15px;
		text-align: center;
		font-family: "Klee One", cursive;
		font-weight: 400;
		font-style: normal;
	}
	
/*	スライドショー*/
	
	.slider-container {
		max-width: 100%;
		overflow: hidden;
		padding-top: 100px;
		padding-bottom: 100px;
	}
	
	.slider-track {
		display: flex;
		transition: transform 0.6s ease-in-out;
		will-change: transform;
	}
	
	.slide {
		flex: 0 0 calc(33.3333%); 
		margin: 0 10px;
		opacity: 0.6;
		transition: transform 0.4s ease, opacity 0.4s ease;
	}
	
	.slide.active {
		transform: scale(1.2);
		opacity: 1;
		z-index: 2;
	}
	
	.slide img {
		max-width: 379px;
		width: 100%;
		height: auto;
		display: block;
	}

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

/*ボタン四角*/
	
	.button-01 a {
		font-family: 'Noto Serif JP', serif;
		font-size: 14px;
		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: 50px;
		max-width: 648px;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
	}
	
	.f1{
		max-width: 196px;
		width: 100%;
		display: block;
		margin-left: auto;
	}
	
	.aboutEx{
		max-width: 548px;
		margin-left: auto;
		margin-right: auto;
		text-align: center;
		padding-top: 10px;
		padding-bottom: 10px;
		font-size: 14px;
	}
	
	p.aboutEx {
		font-size: 14px;
	}
	
	.f2{
		max-width: 220px;
		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: 30px;
	}
	
	.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: 50px;
	}
	
	.faqC{
		margin-left: auto;
		margin-right: auto;
		max-width: 648px;
		margin-top: 50px;
	}
	
	.faqBt{
		margin-top: 50px;
	}
	
	.faqBt .button-13 a{
		margin-right: 50px;
	}
	
	
/*	アコーディオン*/
	
	.qa-6 summary,
	.qa-6 p {
		font-size: 13px !important;
	}
	
	.qa-6 {
		max-width: 648px;
		width: 90%;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 5px;
		border-bottom: 1px solid #333;
}
	.qa-6 summary {
		margin-top: 10px;
		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 {
		content: "";
		width: 0;
		height: 0;
		border: none;
		border-left: 6px solid transparent;
		border-right: 6px solid transparent;
		border-top: 8px solid #333;
		transform: translateY(-50%);
		margin-left: 10px;
	}
	
	.qa-6[open] summary::after {
		border-top: none;
		border-bottom: 8px solid #333;
		transform: translateY(-50%); 
	}
	
	.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: 50px;
	}
	
	.contactf{
		margin-top: 100px;
		text-align: center;
		font-size: 16px;
		line-height: 2;
		font-family: "Klee One", cursive;
		font-weight: 400;
		font-style: normal;
	}
	
	/*ボタン四角*/
	
	.contactBtn{
		margin-top: 50px;
	}
	
/******************** フッター********************/
	
	.footerInner{
		background-color: #583737;
	}
	
	.footerLogo{
		max-width: 220px;
		width: 100%;
		padding-top: 100px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.footerInsta{
		margin-top: 70px;
	}
	.insta {
		max-width: 60px;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
		padding-top: 0; 
		cursor: pointer;
		display: block; 
	}
	
/*	フッターナビ*/
	
	.footervav{
		margin-top: 70px;
	}
	
	.footervav ul{
		
		display: flex;
		justify-content: space-between;
		max-width: 648px;
		width: 90%;
		margin-left: auto;
		margin-right: auto;
	}
	
	.footervav ul li a {
		display: block;
		color: #fff;
		font-size: 18px;
		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: 70px;
		margin-top: 60px;
		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:  100px;
		font-size: 13px;
		letter-spacing: 2px;
		font-family: "Shippori Mincho", serif;
		font-weight: 400;
		font-style: normal;
		}
	
	
}
/*タブレットレスポンシブ終了*/



/*スマホレスポンシブ*/
@media (max-width: 480px) {
	
/******************** ヘッダー********************/
	
	
/******************** メイン********************/

	.catch{
		font-size: 19px;
	}
	
/*	左右ライン線、サブタイトル共通*/

	.subtext {
		font-size: 14px;
	}
	
/*	h1*/
	.top{
		font-size: 11px;
		overflow-wrap: break-word;
	}
	.slider-container {
		padding-top: 70px;
		padding-bottom: 70px;
	}
	
/*	h3左右ライン線パターン２短い、サブタイトル共通*/
	
	.line-wrapper {
		gap: 20px;
	}
	
	.subtext2 {
		font-size: 13px;
		font-weight: bold;
	}
	
	.explanation{
		font-size: 12px;
		}
	
	.f1{
		margin-bottom: 20px;
		max-width: 170px;
	}
	
	/*	*****menu******/
	
	.menuExplanation p{
		font-size: 13px;
	}
	
	/*	about*/
	
	.about{
		max-width: 90%;
		}
	
	.aboutEx {
		font-size: 11px;
	}
	
	p.aboutEx {
		font-size: 11px;
		padding-left: 3px;
		padding-right: 3px;
	}
	
	.aboutUnder {
		flex-direction: column;
	}
	
	.f2 {
		order: 1;
		margin-top: 30px;
		max-width: 170px;
	}
	
/*	ボタン２(View More）*/
	
	.button-13 a  {
		order: 0;
		max-width: 180px;
		margin-top: 50px;
		margin-right: 50px;
	}
	
	/*	contact*/
	
	.contactf{
		font-size: 13px;
	}
	
/******************** フッター********************/
	
	.insta{
		max-width: 40px;
	}	
	
	.footervav ul li a {
		font-size: 15px;	
	}
	
	.footer-links {
		flex-direction: column;
		align-items: center;
		gap: 30px;
	}
	
	.footer-links a {
		font-size: 12px;
		padding: 6px 20px;
	}
	.copyright{
		font-size: 11px;
	}
	
	
}
/*スマホレスポンシブ終了*/