@charset "utf-8";


/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap');


/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");


/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("inview.css-1");


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


/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
	--primary-color: #F2F2F2;			/*テンプレートの土台カラー*/
	--primary-inverse-color: #707070;	/*上のprimary-colorの対となる色*/
	
	--secondary-color: #283841;			/*テンプレートのサブまたはアクセントカラー*/
	--secondary-inverse-color: #fff;	/*上のsecondary-colorの対となる色*/
	
	--accent-color: #a27b50;			/*アクセントカラー*/
	--accent-inverse-color: #fff;		/*アクセントカラーの対となる色*/
	
	--global-space: 20px;				/*主に余白の一括管理用*/
}


/*テキストのフェードイン設定
---------------------------------------------------------------------------*/
/*アニメーション設定*/
@keyframes fadeIn {
	0% {opacity: 0;transform: scale(0.1) rotate(-30deg);}
	100% {opacity: 1;transform: scale(1) rotate(0deg);}
}

/* 初期状態でテキストを非表示にする */
.fade-in-text {
    visibility: hidden;
}

/* アニメーションを適用するクラス。
animationの行の「0.2s」が文字の出現のなめらかさで、大きいほどなめらかに出てきます。小さいとタイピングのようにカクカク出ます。
１文字ずつの出現する際の時差は、js/main.jsの「テキストのフェードイン効果」の中にある「0.1」で調整できます。*/
.char {
    display: inline-block;
    opacity: 0;
    animation: fadeIn 0.2s linear both;
}


/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}

html,body {
	height: 100%;
	font-size: 13px;	/*基準となるフォントサイズ。*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	html, body {
		font-size: 14px;	/*基準となるフォントサイズ。*/
	}

	}/*追加指定ここまで*/


body {
	margin: 0;padding: 0;
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;	/*フォント種類*/
	-webkit-text-size-adjust: none;
	line-height: 2.5;		/*行間*/
	background: #1c1714;	/*背景色*/
	color: var(--primary-inverse-color);	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
	overflow-x: hidden;
}


/*リセット他*/
figure {margin: 0;}
dd {margin: 0;}
nav ul {list-style: none;}
nav,ul,li,ol {margin: 0;padding: 0;}
section li {margin-left: 1rem;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*他*/
input {font-size: 1rem;}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: inherit;
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
}

/*マウスオン時*/
a:hover {
	text-decoration: none;
}


/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*大きな画面で見た場合に両サイドに見える画像*/
header::before {
	background: url("../images/hamburger_menu/PC/bg_pc_oct.jpg") no-repeat center center / cover;	/*背景画像の読み込み*/
}

/*このブロック内のcontents*/

header .contents a {color: inherit;}

/*ロゴ、謳い文句、ロゴ上の装飾画像を囲むボックス*/
header #logo-container {
	flex: 1;
	padding: 0;		/*上、左右、下への余白*/
	position: relative;
	z-index:999;
	text-align: center;
}


/*謳い文句*/
header p {
	display: block;
	font-size: 0.8rem;	/*文字サイズ80%*/
}

/*ロゴ*/
header .logo {
	position: absolute;
	left: 5%;		/*ロゴが入ったボックスに対して左からの配置指定*/
	top: 10px;		/*ロゴが入ったボックスに対して上からの配置指定。マイナスがつくので、ボックスから飛び出る形になります。*/
	width: 120px;	/*画像の幅*/
	padding:0;
}

/*タイトル画像*/
header .title {
	position: absolute;
	right: 0;
	left: 0;
	top: 300px;	
	margin: 0 auto;
	width: 250px;		/*ロゴ画像の幅。お好みで。*/
	z-index:98;
}

/*PC両サイド*/

  .left_side {
	position: absolute;
	width: 300px;
  }
   .right_side {
	position: absolute;
	width: 300px;
  }
  
   .right_side_tit {
	margin:40px 0 10px 0;
  }



/*ヘッダー下部のSCROLLアニメーション
---------------------------------------------------------------------------*/
/*アニメーション設定*/
@keyframes scroll-line {
  0% {transform: scaleY(1);}
  50% {transform: scaleY(0);}
  100% {transform: scaleY(0);}
}

.scroll_area{
	padding:0;
}


/*ラインアニメーションを囲むブロック*/
.scroll_area{
	max-width: 560px;
	margin: auto 0 auto;
	overflow-x: visible;
	position: relative;
	height:100px;
	background-color: #F2F2F2;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
		.scroll_area{
		max-width: 393px;	/*大きな画面になった場合のコンテンツ幅*/
		margin: 0 auto;	/*画面の左右中央に配置*/
		overflow-x: visible;
		}
	
		}/*追加指定ここまで*/


/*ヘッダーメニュー（大きな画面で見た場合に左側に固定表示されるメニュー）
---------------------------------------------------------------------------*/
/*800px未満は非表示*/
.pc_logo{
	display: none;
}
.pc_puretxt{
	display: none;
}

	/*画面幅800px以上の追加指定*/
	@media screen and (min-width:800px) {

		.pc_logo {
		display: block;	/*表示させる*/
		position: fixed;
		z-index: 1;
		left: 20px;
		top: 40px;	/*上からの配置場所*/
		}
		.pc_logo img{
			width:100px;
		}
		.pc_puretxt{
			display: block;	/*表示させる*/
			position: fixed;
			z-index: 1;
			left: 3%;
			top: 300px;	/*上からの配置場所*/
		}
		.pc_puretxt img{
			max-width:350px;
		}
	}


/*ヘッダーメニュー（大きな画面で見た場合に右側に固定表示されるメニュー）
---------------------------------------------------------------------------*/
/*800px未満は非表示*/
#header-menu {
	display: none;
}

	/*画面幅800px以上の追加指定*/
	@media screen and (min-width:800px) {

	#header-menu {
		display: block;	/*表示させる*/
		position: fixed;z-index: 1;
		right: 10%;
		top: 120px;	/*上からの配置場所*/
	}

	#header-menu img{
		width:180px;
	}


	#header-menu a:hover{
		transition: 0.3s;
	}
	#header-menu a:hover{
		opacity: 0.5;
	}
  
	
	/*メニュー１個あたり*/
	#header-menu li a {
		text-decoration: none;display: block;
		/*background: var(--secondary-color);*/		/*背景色。冒頭のsecondary-colorを読み込む。*/
		color: var(--secondary-inverse-color);	/*文字色。冒頭のsecondary-inverse-colorを読み込む。*/
		margin-bottom: 0;					/*下に空けるスペース。メニュー同士の上下間の隙間。*/
		border-radius: 0;		/*角丸の指定。左上、右上、右下、左下への順。100pxの所はとりあえず大きな数字にしておけばOK。*/
		padding: 0;	/*ボタン内の余白。上、右、下、左への順番。*/
		font-size: 1.2rem;	/*文字サイズを120%に。*/
	}

	}/*追加指定ここまで*/


/*背景画像共通（大きな画面で見た場合に両サイドに見える画像）
---------------------------------------------------------------------------*/
.section{z-index:9;}
.section::before {
	opacity: 0;
	transition: opacity 1s; /* 1秒かけてフェードイン/フェードアウト */
	content: '';
	position: fixed;z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.section.active::before {
	opacity: 1;
}
.section.inactive::before {
	opacity: 1;
}
.inactive{
	z-index:2;
}


/*contents（各セクションブロック直下にあるボックス）
---------------------------------------------------------------------------*/
.contents {
	background: var(--primary-color);		/*背景色。冒頭のprimary-colorを読み込む。*/
	color: var(--primary-inverse-color);	/*文字色。冒頭のprimary-inverse-colorを読み込む。*/
	position: relative;
	overflow-x: hidden;
	z-index: 9999;
}
.contents2 {
	background: #fff;		/*背景色。冒頭のprimary-colorを読み込む。*/
	color: var(--primary-inverse-color);	/*文字色。冒頭のprimary-inverse-colorを読み込む。*/
	position: relative;
	overflow-x: hidden;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.contents,
	#gallery .gallery-box {
		max-width: 393px;	/*大きな画面になった場合のコンテンツ幅*/
		margin: 0 auto;		/*画面の左右中央に配置*/
		overflow-x: visible;
		z-index: 9999;
	}

	}

/*h2見出し共通*/
.contents h2 {
	margin: 0;
	line-height: 1.8;	/*行間をデフォルトより狭くする。２行になった場合に間があきすぎるので。*/
	padding: 20px 0;	/*上下、左右への余白*/
	font-size: 1.8rem;	/*文字サイズ180%*/
	text-align: center;	/*テキストをセンタリング*/
}

/*h2内の小文字*/
.contents h2 span.hosoku {
	display: block;
	font-size: 0.7rem;		/*文字サイズを70%に*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広く*/
	padding-bottom: 0.5rem;	/*下の見出しとの間の余白。0.5文字分。*/
}


/*オープニング特別メニュー（specialブロック）
---------------------------------------------------------------------------*/
/*大きな画面で見た場合に両サイドに見える画像*/
#special::before {
	background: url('../images/bg_special.jpg') no-repeat center center / cover;	/*背景画像の読み込み*/
}

/*このブロック内のcontents*/
#special .contents {
	background: var(--accent-color) /*背景色。冒頭のaccent-colorを読み込む。*/
	url("../images/bg_special.png") no-repeat center top / 100%;	/*背景画像の読み込み。見出しの上にある装飾画像です。*/
	color: var(--accent-inverse-color);	/*文字色。冒頭のaccent-inverse-colorを読み込む。*/
}


/*オープニングアニメーション（PCのみ）
---------------------------------------------------------------------------*/
/*800px未満は非表示*/
@media screen and (max-width:799px) {
.loading {
	display: none;
}
}

/*画面幅800px以上の追加指定*/
@media screen and (min-width:800px) {
.loading {
	content: '';
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	z-index: 100000;
	height: 100vh;
	background-color: #000;
  }
  
  .loading div {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 10;
	opacity: 0;
	animation-name: slide-fade;
	animation-duration: 8s;
	animation-iteration-count: infinite;
}

@keyframes slide-fade {
	0%{
		opacity: 0;
	}
	40%{
		opacity: 10;
	}
	80%{
		opacity: 0;
	}
	100%{
		opacity: 0;
		z-index: 0;
	}
}
.loading div:first-of-type{
	background-image: url(../images/pc_top0.jpg);
}
.loading  div:nth-of-type(2){
	background-image: url(../images/pc_top1.jpg);
	animation-delay: 2s;
}
.loading  div:nth-of-type(3){
	background-image: url(../images/pc_top2.jpg);
	animation-delay: 4s;
}
.loading  div:nth-of-type(4){
	background-image: url(../images/pc_top3.jpg);
	animation-delay: 6s;
}
  
  @keyframes open{
	  0% {
		  opacity: 0;
		  transform: scaleY(8) scaleX(8);
	  }
	  90% {
		  opacity: 1;
		  transform: scaleY(1) scaleX(1);
	  }
  }
}

/*横スライドインタイプのスライドショー（１枚目の画像のアスペクト比が反映されるタイプ）
---------------------------------------------------------------------------*/
/*画像を囲むブロック*/


.slider {
	width: 100%;
	height: 100%;
	aspect-ratio: 9 / 16
}


.slider div {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 10;
	opacity: 0;
	animation-name: slide-fade;
	animation-duration: 43s;
	animation-iteration-count: infinite;
}

@keyframes slide-fade {
  0% {
        opacity: 0;
    }
    8% {
        opacity: 1;
    }
    17% {
        opacity: 1;
    }
    25% {
        opacity: 0;
        z-index:0;
    }
    100% { opacity: 0 }
}
}
.slider div:first-of-type{
	background-image: url(../images/sp_top0.jpg?250912-1);
}
.slider div:nth-of-type(2){
	background-image: url(../images/sp_top0.jpg?250912-1);
	animation-delay: 1s;
}
.slider div:nth-of-type(3){
	background-image: url(../images/sp_top1.jpg?250912);
	animation-delay: 5s;
}
.slider div:nth-of-type(4){
	background-image: url(../images/sp_top2.jpg?250912);
	animation-delay: 12s;
}
.slider div:nth-of-type(5){
	background-image: url(../images/sp_top3.jpg?250912);
	animation-delay: 18s;
}
.slider div:nth-of-type(6){
	background-image: url(../images/sp_top4.jpg?250912);
	animation-delay: 24s;
}
.slider div:nth-of-type(7){
	background-image: url(../images/sp_top5.jpg?250912);
	animation-delay: 31s;
}
.slider div:nth-of-type(8){
	background-image: url(../images/sp_top6.jpg?250912);
	animation-delay: 37s;
}


/*画像を囲むブロック*/
.slide5 {
	position: relative;
	overflow: hidden;
}

/*画像の共通設定*/
.slide5 .slide {
	position: absolute;right: 0px;top: 0px;
	width: 100%;
	height: 100%;
	transform: translateX(100%);
	transition: transform 0.7s ease;	/*0.7sはスライドにかける時間（0.7秒）。0.7を変更する場合、main.jsのスライドショー用のコードの最後の「700」も変更する。*/
}

/*アクティブ時*/
.slide5 .slide.active {
	transform: translateX(0);
}

/*左に移動*/
.slide5 .slide.left {
	transform: translateX(-100%);
}

/*非表示*/
.slide5 .slide.hidden {
	opacity: 0;
}

/*初期表示用*/
.slide5 .slide.initial {
	transform: translateX(0);
	transition: none;
}

/*１枚目画像（変更不要）*/
.slide5 .img1 {
	position: relative;
	width: 100%;
	height: auto;
}

/*画像のクリップ*/
.slide5 .slide img {
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: center;
}

/*現在表示されているスライドのみをクリック可能にする設定（変更不要）*/
.slide5 .slide {
	pointer-events: none;
}
.slide5 .slide.active {
	pointer-events: auto;
}

/*現在表示中のボタンブロック*/
.slide5 .slide-indicators {
    text-align: center;
	position: absolute;
	width: 100%;
	bottom: 80px;	/*ボタンの配置場所。スライドショーの画面下からの距離。*/
	left: 0px;
}

/*ボタン１個あたり*/
.slide5 .indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;	/*未アクティブ時のボタン色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色。*/
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

/*アクティブ時のボタン色*/
.slide5 .indicator.active {
    background: var(--accent-color);	/*冒頭のaccent-colorを読み込む*/
}


/*ピュアナチュラルに生きる。ナチュラルに暮らす（ikiruブロック）
---------------------------------------------------------------------------*/
/*大きな画面で見た場合に両サイドに見える画像*/
#ikiru::before {
	background: url("../images/hamburger_menu/PC/bg_pc_oct.jpg") no-repeat center center / cover;	/*背景画像の読み込み*/
}

/*このブロック内のh2見出し*/
#ikiru h2 {
	margin-top:-60px;
	padding:0 40px;
	font-family: serif;
	text-align: center;
	background: #FFF;
}
.ikiru_tit img{
   width:80%;
}

/*背景半円上*/
.bg_circle_above {
	display: inline-block;
	margin:140px auto 0 auto;
	padding:20px 0 0 ;
	width: 100%;
	height: 200px;
	border-radius: 50% / 100% 100% 0 0;
	background: #FFF;
	text-align: center;
  }
  
/* 回転アニメーションの定義 */
@keyframes rotateAnimation {
	from {
	  transform: rotate(0deg);
	}
	to {
	  transform: rotate(360deg);
	}
  }
  
  /* 回転する要素のスタイル */
  .rotate-box {
	width: 120px;
	height: 120px;
	margin: -25px 0 0 65%;
	animation: rotateAnimation 10s linear infinite;
  }

/*こだわりテキストが入った背景色（bg1）*/
#ikiru .bg1 {
	background: #FFF;	/*背景色*/
	padding: 20px 0 20px 0;		/*上下、左右への余白*/
	font-family: serif;
	text-align: center;
}

.bg1 img{
	width:55%;
	z-index:98;
}



/*このボックス内のイメージ写真*/
#ikiru aside {
	margin: 0 calc(-1 * var(--global-space));	/*両サイドの余白を相殺して幅一杯に使う*/
	border-radius: 100px 100px 0px 0px;	/*角を丸くする指定。左上、右上、右下、左下への順番。普通に表示させたいならこの１行を削除。*/
	overflow: hidden;
}

/*このボックス内の余白。段落１文字目にインデント（１文字さがる）をとる。*/
#ikiru .bg1 p {
	text-indent: -0.5em;
}

/*コンセプト
---------------------------------------------------------------------------*/
/*大きな画面で見た場合に両サイドに見える画像*/
#concept::before {
	background: url("../images/hamburger_menu/PC/bg_pc_oct.jpg") no-repeat center center / cover;	/*背景画像の読み込み*/
}

.concept{
max-width: 560px;	/*大きな画面になった場合のコンテンツ幅*/
margin: 0 auto;		/*画面の左右中央に配置*/
padding:0 0  0;
overflow-x: visible;
background-color: #FFF;

}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	
		.concept{
		max-width: 393px;	/*大きな画面になった場合のコンテンツ幅*/
		margin: 0 auto;	/*画面の左右中央に配置*/
		overflow-x: visible;
		}
	}

.concept-img{
	padding:50px 0;
	background-color: #FFF;
}

.concept h2 {
	padding:0 40px 0 40px;
	text-align: center;
	background: #FFF;
}

.sub-tit{
	text-align: center;
	font-family: serif;
	font-size:13px;
	line-height:20px;
	background: #FFF;
}

.concept h2 img{
	text-align: center;
    width:50%;
}

.concept_txt{
	padding:40px 0;
	text-align: center;
	font-family: serif;
	background: #FFF;
}

.lineup_att{
	margin:20px 0;
	font-size:80%;
	line-height: 130%;
	text-align: left;
	letter-spacing:0.01em;
	padding-left: 1em;
	text-indent: -1em;
}
.concept_att{
	margin:40px 20px 20px 20px;
	font-size:80%;
	line-height: 140%;
	text-align: left;
	letter-spacing:0.01em;
	padding-left: 1em;
	text-indent: -1em;
}


/*コンセプト featured
---------------------------------------------------------------------------*/
.featured_area{
	position: relative;
	background-color: #FFF;
}
.featured_img{
	display: block;
	width:100%;
	padding:30px 20px 20px 20px;
}

.featured_number{
	position: absolute;
	left: 10px;
	bottom: 32px;
}

.featured_number img{
	width:120px;
}

.featured_txt{
	text-align: right;
	font-size:1.0em;
	padding:0 20px 0 0;
	line-height: 2.0;
	letter-spacing:0.01em;
}

.featured_viewmore{
	text-align: right;
	padding:30px 30px 30px 0 ;
}

/*iPhone SE対応*/
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
    /* CSS */

	.featured_number{
		position: absolute;
		left: 10px;
		bottom: 20px;
	}

	.featured_number img{
		width:100px;
	}

	.featured_txt{
		text-align: right;
		font-size:1.2em;
		padding:0 20px 0 0;
		line-height: 2.0;
		letter-spacing:0.01em;
	}

}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

		.featured_number img{
			width:100px;
		}
	
		.featured_txt{
			text-align: right;
			font-size:1.3em;
			padding:0 20px 0 0;
			line-height: 2.0;
			letter-spacing:1px;
		}
}/*追加指定ここまで*/



/*View More */
.readmore {
	width:100%;
    position: relative;
    margin: 0;
	padding:10px 0 20px 0;
    display: block;
    color: #666;
    border: none;
    outline: 0;
    cursor: pointer;
    background-color: #fff;
    letter-spacing: 0.1em;
}
.readmore:before {
  content: "";
  /*width: 50px;*/
  /*height: 50px;*/
  text-align: center;
  border-radius: 50%;
  display: block;
  margin: 0 auto .5em;
  transition: .3s;
  background-color: #fff;
}
.readmore.on-click:before {
  transform: rotate(180deg);
}
.readmore .open {
  display: block;
}
.readmore.on-click .open {
  display: none;
}
.readmore .close {
  display: none;
}
.readmore.on-click .close {
  display: block;
}



/*View More 表示部分*/

.featured_area_view{
	position: relative;
	background-color: #FFF;
}

.featured_area_view_txt{
	text-align: right;
	font-size:1.3em;
	padding:0 30px 0 0;
	line-height: 150%;
	letter-spacing:1px;
}

.featured_area_view_img{
	width:100%;
	padding:30px 30px 20px 30px;
}

.featured_area_view_number{
	position: absolute;
	left: 15px;
	bottom: 0;
}

.featured_area_view_number img{
	width:120px;
}
.viewmore_txt{
	width:100%;
	padding:20px;
	text-align: left;
	text-align: justify; 
	background-color: #FFF;
}

.viewmore_att{
	width:100%;
	padding:20px;
	text-align: left;
	text-align: justify; 
	background-color: #FFF;
	font-size:11px;
	line-height: 1.8;
	letter-spacing :0.01em;
}

.viewbtn img{
	width:70%;
}

.viewmore_img{
	width:100%;
	margin:20px 0 0 0;
	padding:20px 80px;
	text-align: center;
}

.viewmore_img img:hover {
	opacity: 0.7;
}

.viewmore_img2{
	width:100%;
	margin:20px 0 0 0;
	padding:0;
	text-align: center;
}

.close_btn{
	margin:20px 0 60px 0;
	padding:20px 60px;
	text-align: center;
	border-bottom: 1px solid #ededed;
}

.close_btn2{
	margin:-120px 0 0 0;
	padding:20px 60px 0 60px;
	text-align: center;
}

.close_btn3{
	margin:-120px 0 0 0;
	padding:20px 60px 0 60px;
	text-align: center;
}

.detail_btn{
	position: relative;	
}

.close_btn img{
	width:44px;
}

.close_btn2 img{
	width:44px;
}

.close_btn3 img{
	width:44px;
}

.close-btn2{
	position: absolute;
	bottom:50px;
	left:160px;
}


.details-summary {
	position: relative;
	display: block;
	background-color: #fff;
	font-size: 24px;
	text-align: right;
	padding:0 20px 0 0;
	&:hover {
		cursor: pointer;
		opacity: 0.8;
	}
	.btn {
		position: absolute;
        top: 37%;
        left: 10%;
        width: 18px;
        height: 18px;
        transform-origin: center center;
        transition-duration: 0.2s;

        &:before,
        &:after {
            content: "";
            background-color: #fff;
            border-radius: 10px;
            width: 18px;
            height: 4px;
            position: absolute;
            top: 7px;
            left: 0;
            transform-origin: center center;
        }
        &:before {
            width: 4px;
            height: 18px;
            top: 0;
            left: 7px;
        }
    }
	&.is-active {
		.btn {
			-webkit-transform: rotate(-180deg);
			transform: rotate(-180deg);
			&:before {
            	content: none;
        	}	
		}
    }
}

.details-summary::-webkit-details-marker {
	display: none;
}


.details-content {
	padding: 0;
	border-top: none;
	border-left: none;
	border-right: none;
	background-color: #FFF;

	.close-btn {
		width:60px;
		display: block;
		background-color: #FFF;
		margin: 0 auto;
		text-align: center;
		border: none;
		cursor: pointer;
		&:hover {
			opacity: 0.8;
		}
	}

}


/*背景半円下*/
.bg_circle_under {
	display: inline-block;
	margin:0 auto;
	padding:20px 0 0 ;
	width: 100%;
	height: 200px;
	border-radius: 50% / 0 0 100% 100%;
	background: #FFF;
	text-align: center;
 }

 .circle_under_bottom{
	padding:0 50px 0 50px;
	font-family: serif;
	text-align: center;
	background-color: #fff;
}

/*ラインナップ
---------------------------------------------------------------------------*/
/*大きな画面で見た場合に両サイドに見える画像*/
#lineup::before {
	background: url("../images/hamburger_menu/PC/bg_pc_oct.jpg") no-repeat center center / cover;	/*背景画像の読み込み*/
}

#lineup{
	background-color: #FFFFFF!important;
}

.lineup{
	max-width: 560px;	/*大きな画面になった場合のコンテンツ幅*/
	margin: 0 auto 0 auto;		/*画面の左右中央に配置*/
	padding:30px 0 60px 0;
	overflow-x: visible;
	background-color: #FFFFFF!important;
}

.lineup_bg{
	background-color: #FFFFFF!important;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	
		.lineup{
		max-width: 393px;	/*大きな画面になった場合のコンテンツ幅*/
		margin: 0 auto 0 auto;;	/*画面の左右中央に配置*/
		overflow-x: visible;
		background-color: #FFFFFF;
		}
	}


.lineup-img{
	padding:50px 0;
	background-color: #FFF;
}

.lineup h2 {
	padding:0 40px 0 40px;
	text-align: center;
	background: #FFF;
}
.b-exlogo{
	padding:50px 0 20px 0;
	background-color: #FFF;	
	text-align: center;
}

.lineup .sub-tit{
	padding:0 0 30px 0;
	text-align: center;
	font-family: serif;
	font-size:13px;
	line-height:20px;
	background: #FFF;
}

.lineup h2 img{
	text-align: center;
    width:50%;
	padding:80px 0 10px 0;
}


.lineup_txt{
	padding:0 0 90px 0;
	text-align: center;
	background: #FFF;
	line-height:2.5;
	letter-spacing :0.09em;
}

.lineup .concept_txt{
	padding:40px 0;
	text-align: center;
	font-family: serif;
	background: #FFF;
}

/* LINE UPラインナップ シャンプー＆トリートメント shampoo&treatment*/
	.shamtre{
		position: relative;
		background-color: #FFF;
		height:500px;
	}
	.shamtre_img{
		position: absolute;
		width:90%;
		text-align: left;
		z-index:2222;
	}
	.shamtre_bg{
		position: absolute;
		width:90%;
		height:280px;
		z-index:1111;
		top: 13em;
		right: 0;
		padding:0;
		background-color: #F2F2F2;
	}

	.shamtre_tit{
		position: absolute;
		top: 0;
		right: 10px;
		z-index:3333;
	}
	
	.shamtre_tit img{
		width:18px;
	}
	.shamtre_item{
		width:100%;
		height:auto;
		z-index:1111;
		position: absolute;
		top: 15em;
		right: 0;
		padding:120px 0 0 0;
	}

	@media only screen and (-webkit-min-device-pixel-ratio: 2) {
		.shamtre_tit img{
			width:17px;
		}

		.shamtre_img{
			position: absolute;
			width:90%;
			text-align: left;
			z-index:2222;
		}
	}

	@media only screen and (-webkit-min-device-pixel-ratio: 3) {
		.shamtre_bg{
			position: absolute;
			width:auto;
			height:346px;
			z-index:1111;
			top: 13em;
			right: 0;
			padding:0;
			background-color: #F2F2F2;
		}
		.shamtre_item{
			width:100%;
			height:auto;
			z-index:1111;
			position: absolute;
			top: 15em;
			right: 0;
			padding:150px 0 0 0;
		}

		.shamtre_tit img{
			width:20px;
		}
	}
	
	.shamtre_item_tit{
		z-index:1112;
		position: absolute;
		/*bottom: -100em;*/
		text-align:center;
	}

	
	.shamtre_item h3{
		margin:0 0 10px 0;
		padding:0;
		text-align: center;
	}
	
	.shamtre_item h3 img{
	    width:200px;
		padding:30px 0 0 0;
	}
	.shamtre_item p{
		margin:0;
		padding:0;
		text-align: center;
	}


/*ラインナップ商品*/
.product{
	max-width:393px;
	margin:0 auto;
	padding:30px 20px 0 20px;
    background-color:  #fff;    /* 背景色指定 */
}

.product_detail {
	max-width:393px;
    display: inline-block;      /* インラインブロック要素にする */
    background-color:  #FFF;    /* 背景色指定 */
	margin:0 auto;
    padding: 0;   
	vertical-align: top;             /* 余白指定 */
}

.product_left{
	width:70px;
}
.product_right{
	max-width:275px;
}

.product_img{
	width:60px;
}

.product_img img{
	padding:5px 0;
}
.product_img_comment{
	position: absolute;
	top:90px;
	left:40px;
}
.product_img_comment img{
	width:80px;
}
.product_price{
	width:70px;
	padding:0 0 20px 0;
}
.product_subtxt{
	margin:0;
	padding:10px 0 0 20px;
	font-size:13px;
	line-height: 2em;
}
.product_subtxt2{
	margin:40px 0 0 0;
	padding:10px 0 0 20px;
	font-size:13px;
	line-height: 2em;
}
.product_detail h4{
	margin:0;
	padding:0 0 0 20px;
	font-size:18px;
	font-weight:normal;
	letter-spacing: 0.01em;
}

.product_ico{
	padding:0 0 10px 20px;
	width:95px;	
}
.product_txt{
	padding:0 0 40px 20px;
	font-size:12px;
	line-height: 2.0;
	letter-spacing: 0.15em;
	text-align: justify; 
}
.product_btn{
	margin:0 0 10px 20px;
}

.product_btn img{
	width:205px;
	margin:5px 0 5px 15px;
}

.product_btn img:hover {
	opacity: 0.7;
}

.product_btn2{
	margin:0 0 10px 0;
}

.product_btn2 img{
	width:218px;
	margin:5px 5px 5px 15px;
}

.product_btn2 img:hover {
	opacity: 0.7;
}

.scalp_area{
	position: relative;
}


@media all and (max-width: 375px) {
	.product_left{
		width:60px;
	}
	.product_right{
		max-width:270px;
	}
	.product_detail h4{
		margin:0;
		padding:0 0 0 20px;
		font-size:17px;
		font-weight:normal;
		letter-spacing: 0.05em;
	}
 }

 @media all and (max-width: 360px) {
	.product_left{
		width:60px;
	}
	.product_right{
		max-width:250px;
	}
	.product_detail h4{
		margin:0;
		padding:0 0 0 20px;
		font-size:16px;
		font-weight:normal;
		letter-spacing: 0.01em;
	}
 }


@media all and (max-width: 344px) { 
	.product_left{
		width:60px;
	}
	.product_right{
		max-width:240px;
	}
	.product{
		max-width:375px;
		margin:0 auto;
		padding:30px 20px 0 20px;
		background-color:  #fff;    /* 背景色指定 */
	}

	.product_img{
		width:50px;
	}
	.product_btn img{
		width:170px;
		margin:5px 0 5px 15px;
	}

	.product_btn img:hover {
		opacity: 0.7;
	}

	.product_price{
		width:70px;
		padding:0 0 20px 0;
	}
	.product_detail h4{
		margin:0;
		padding:0 0 0 20px;
		font-size:14px;
		font-weight:normal;
	}
	.product_txt{
		padding:0 0 40px 20px;
		font-size:12px;
		line-height: 2.0;
		text-align: justify; 
	}
	.product_subtxt{
		margin:0;
		padding:10px 0 0 20px;
		font-size:12px;
		line-height: 2em;
	}

	.product_img_comment{
		position: absolute;
		top:80px;
		left:30px;
	}

}



/* LINE UPラインナップ スカルプクレンジング scalpcleansing*/
	.scalpcleansing{
		position: relative;
		background-color: #FFF;
		margin:60px 0 0 0;
		height:450px;
	}
	.scalpcleansing_img{
		position: absolute;
		width:90%;
		text-align: left;
		z-index:22;
	}
	.scalpcleansing_tit{
		position: absolute;
		top: 0;
		right: 10px;
		z-index:3333;
	}
	.scalpcleansing_tit img{
		width:17px;
	}
	.scalpcleansing_item{
		width:90%;
		height:auto;
		z-index:11;
		position: absolute;
		top: 15em;
		right: 0;
		padding:30% 0 0 0;
		background-color: #F2F2F2;
	}
	.scalpcleansing_item h3{
		width:300px;
		margin:0 0 10px 0;
		padding:0 0 0 65px;
		text-align: left;
	}
	
	.scalpcleansing_item h3 img{
		width:80%;
		padding:30px 0 0 0;
	}
	.scalpcleansing_item p{
		margin:0;
		padding:0 0 30px 75px;
		text-align: left;
	}

	.scalpcleansing_img2{
		position: absolute;
		width:90%;
		text-align: right;
		z-index:22;
		top: 0;
		right :0;
	}
	.scalpcleansing_tit2{
		position: absolute;
		top: 0;
		left: 10px;
		z-index:3333;
	}
	.scalpcleansing_tit2 img{
		width:18px;
	}
	.scalpcleansing_bg{
		width:90%;
		height:280px;
		z-index:11;
		position: absolute;
		top: 12em;
		left: 0;
		padding:30% 0 0 0;
		background-color: #F2F2F2;
	}
	.scalpcleansing_item2{
		position: absolute;
		z-index:22;
		width:100%;
		height:auto;
		padding:325px 0 0 0;
        text-align:center;
	}

	@media only screen and (-webkit-min-device-pixel-ratio: 2) {
	.scalpcleansing_tit2 img{
		width:17px;
	}
    }
	@media only screen and (-webkit-min-device-pixel-ratio: 3) {
		/* iPhone14 */

		.scalpcleansing_tit2 img{
			width:19px;
		}

		.scalpcleansing_bg{
			width:90%;
			height:280px;
			z-index:11;
			position: absolute;
			top: 12em;
			left: 0;
			padding:310px 0 0 0;
			background-color: #F2F2F2;
		}

	.scalpcleansing_item2{
		position: absolute;
		z-index:22;
		width:100%;
		height:auto;
		padding:350px 0 0 0;
        text-align:center;
	}
}
	.scalpcleansing_item2 h3{
        text-align:center;
		margin:20px 0 0 0;
		padding:0;
	}
	.scalpcleansing_item2 h3 img{
		width:220px;
		margin:0;
		padding:0;
	}
	.scalpcleansing_item2 p{
		margin:0;
		padding:0;
        text-align:center;
	}

 

/*treatmentスライドインタイトル*/
.slidein_tit_area{
	position: relative;
	z-index:1110;
	padding:60px 0;
	background-color: #fff;
	width:100%;
	height:200px;
}

.slidein_tit_bg{
   margin-right:30px;
   padding:20px 0;
   background-color: #F2F2F2;
   height:134px;
}
.slidein_tit{
   margin:-120px;
   text-align: center;
   height:250px;
}
.slidein_tit h3{
   margin:15px 0 0 0;
}
.slidein_tit h3 img{
   width:240px;
   text-align: center;
}
.slidein_tit p{
   margin:0;
}

/*メニューの下にあるテキストブロック（※スライドショーと共通）*/
.slide5 .slide .text,
.menu .text {
	margin: 0;
	padding: 10px;	/*ボックス内の余白*/
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 100%;
	text-align: center;
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事で0.6は色が60%出た状態。*/
	color: #fff;	/*文字色*/
}

/*メニューの下にある吹き出し系のアイコン（※スライドショーと共通）*/
.slide5 .slide .icon-menu-point,
.menu .icon-menu-point {
	text-align: center;
	width: 79px;	/*幅*/
	height: 75px;	/*高さ*/
	line-height: 1.2;
	color: #fff;	/*文字色*/
	font-size: 0.8rem;	/*文字サイズ80%*/
	padding-top: 24px;	/*上に空ける余白。上下のバランスをとって下さい。*/
	position: absolute;z-index: 1;
	left: 20px;		/*左からの配備場所*/
	bottom: 40px;	/*下からの配備場所*/
	background: url("../images/icon_menu_point.svg") no-repeat center center;	/*アイコン画像の読み込み*/
	transform: rotate(-20deg);	/*左に20度回転*/
}


/* 1DAY TRIAL  */
.trial{
	background: url("../images/lineup/1day_trial/bg_1day_autumn.jpg") no-repeat top center ;	/*背景画像の読み込み*/
	background-size:contain;
	margin:50px 20px 0 20px;
	padding:20px;
	height:1100px;
	text-align: center;
}

.trial p span{
    font-size:70%;
}

.trial_tit{
	text-align: center;
	margin:0 auto;
	padding:30px 60px 0 60px;
}

.trial_btn{
	text-align: center;	
}

.trial_btn img:hover {
	opacity: 0.7;
}

.trial_txt{
	margin:20px 0;
	padding:0 10%;
	text-align: left;
	line-height: 180%;
}

.trial_product{
	padding:20px 20px 0 20px;
	display:flex;
	justify-content: center;
}

.trial_product div{
	padding:0;
}

.trial_product_img{
	margin:0 10px;
	width:100px;
	text-align: center;
}

.trial_product_img a:hover {
	opacity: 0.7;
}

.trial_product_price{
	font-size:80%;
	text-align: left;
	line-height: 150%;
	margin:0 0 0 20px;
}

.trial_product_txt{
	font-size:90%;
	text-align: left;
	text-align: justify; 
	line-height: 150%;
	margin:0 0 0 0;
}
.trial_product_btn{
	margin:20px 0 10px 0;
	width:100%;
	text-align:center;
}

.trial_product_btn img{
	width:120px;
}

.trial_btn{
	margin:10px 0;
}

.trial_btn img{
	width:150px;
	margin:5px;
}

.trial_btn img:hover {
	opacity: 0.7;
}

@media all and (max-width: 344px) { 
.trial_tit{
	text-align: center;
	margin:0 auto;
	padding:10px 60px 0 60px;
}
}

/*サイドストーリー
---------------------------------------------------------------------------*/
/*大きな画面で見た場合に両サイドに見える画像*/
#sidestory::before {
	background: url("../images/hamburger_menu/PC/bg_pc_oct.jpg") no-repeat center center / cover;	/*背景画像の読み込み*/
}

.sidestory{
max-width: 560px;	/*大きな画面になった場合のコンテンツ幅*/
margin: 0 auto 0 auto;		/*画面の左右中央に配置*/
padding:80px 0;
overflow-x: visible;
background-color: #F2F2F2;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	
		.sidestory{
		max-width: 393px;	/*大きな画面になった場合のコンテンツ幅*/
		margin: 0 auto 0 auto;;	/*画面の左右中央に配置*/
		overflow-x: visible;
		background-color: #F2F2F2;
		}
	}


.sidestory-img{
	padding:50px 0;
}

.sidestory h2 {
	padding:0 40px 0 40px;
	text-align: center;
}

.sidestory .sub-tit{
	padding:0 0 30px 0;
	text-align: center;
	font-family: serif;
	font-size:13px;
	line-height:20px;
	background-color: #F2F2F2;
}

.sidestory h2 img{
	text-align: center;
    width:70%;
}

.sidestory .concept_txt{
	padding:40px 20px 20px 20px;
	text-align: center;
	background-color: #F2F2F2;
}

.sidestory_movie{
	margin:40px 0 20px 0;
	padding:0;
	background-color: #F2F2F2;
}

.sidestory_movie video{
	margin:0;
	padding:0;	
	// iPhone safariの枠線を消す
	filter: drop-shadow(0px 0px rgba(0,0,0,0));
  
	// PCのChromeの枠線を消す
	outline: none;
	border: none;
}

/*Instagram
---------------------------------------------------------------------------*/

/*大きな画面で見た場合に両サイドに見える画像*/
#instagram::before {
	background: url("../images/hamburger_menu/PC/bg_pc_oct.jpg") no-repeat center center / cover;	/*背景画像の読み込み*/
}

.instagram{
max-width: 560px;	/*大きな画面になった場合のコンテンツ幅*/
margin: 0 auto 0 auto;		/*画面の左右中央に配置*/
padding:30px 0;
overflow-x: visible;
background-color: #fff;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	
		.instagram{
		max-width: 393px;	/*大きな画面になった場合のコンテンツ幅*/
		margin: 0 auto 0 auto;;	/*画面の左右中央に配置*/
		overflow-x: visible;
		background-color: #fff;
		}
	}


.instagram img{
	padding:30px 0;
	transition: .3s;
}

.instagram img:hover {
	opacity: 0.7;
}

/*footer
---------------------------------------------------------------------------*/

/*大きな画面で見た場合に両サイドに見える画像*/
footer::before {
	background: url("../images/hamburger_menu/PC/bg_pc_oct.jpg") no-repeat center center / cover;	/*背景画像の読み込み*/
}

footer{
max-width: 560px;	/*大きな画面になった場合のコンテンツ幅*/
margin: 0 auto 0 auto;		/*画面の左右中央に配置*/
padding:0 0 30px 0;
overflow-x: visible;
background-color: #fff;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	
		footer{
		max-width: 393px;	/*大きな画面になった場合のコンテンツ幅*/
		margin: 0 auto 0 auto;;	/*画面の左右中央に配置*/
		overflow-x: visible;
		background-color: #fff;
		}
	}



/*NEWS
---------------------------------------------------------------------------*/
/*大きな画面で見た場合に両サイドに見える画像*/
#news::before {
	background: url("../images/hamburger_menu/PC/bg_pc_oct.jpg") no-repeat center center / cover;	/*背景画像の読み込み*/
}

.news{
max-width: 560px;	/*大きな画面になった場合のコンテンツ幅*/
margin: 0 auto 0 auto;		/*画面の左右中央に配置*/
padding:60px 0 30px 0;
overflow-x: visible;
background-color: #FFFFFF;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	
		.news{
		max-width: 393px;	/*大きな画面になった場合のコンテンツ幅*/
		margin: 0 auto 0 auto;;	/*画面の左右中央に配置*/
		overflow-x: visible;
		background-color: #FFFFFF;

		}
	}


.news-img{
	padding:50px 0;
	background-color: #FFF;
}

.news h2 {
	padding:0 40px 0 40px;
	text-align: center;
	background: #FFF;
}

.news .sub-tit{
	padding:0 0 30px 0;
	text-align: center;
	font-family: serif;
	font-size:13px;
	line-height:20px;
	background: #FFF;
}

.news h2 img{
	text-align: center;
    width:35%;
}

.news .concept_txt{
	padding:40px 0;
	text-align: center;
	font-family: serif;
	background: #FFF;
}

.news_att{
	margin:40px 20px 20px 0;
	font-size:70%;
	line-height: 100%;
	text-align: left;
	letter-spacing:0.01em;
}


/*STORE
---------------------------------------------------------------------------*/
/*大きな画面で見た場合に両サイドに見える画像*/
#stores::before {
	background: url("../images/hamburger_menu/PC/bg_pc_oct.jpg") no-repeat center center / cover;	/*背景画像の読み込み*/
}

.store{
	max-width: 560px;	/*大きな画面になった場合のコンテンツ幅*/
	margin: 0 auto 0 auto;		/*画面の左右中央に配置*/
	padding:60px 0 30px 0;
	overflow-x: visible;
	background-color: #FFFFFF;
}

.hands_list{
    width:275px;
    margin:0 auto;
	padding:30px 0;
	text-align:center;
}

.hands_list dl dt{
     background-color:#ededed;
     font-weight:bold;
}
.hands_list dl dd{
     margin-bottom:20px;
}


	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	
		.store{
		max-width: 393px;	/*大きな画面になった場合のコンテンツ幅*/
		margin: 0 auto 0 auto;;	/*画面の左右中央に配置*/
		overflow-x: visible;
		background-color: #FFFFFF;
		}
	}


.store-img{
	padding:50px 0;
	background-color: #FFF;
}

.store h2 {
	padding:0 40px 0 40px;
	text-align: center;
	background: #FFF;
}

.store .sub-tit{
	padding:0 0 30px 0;
	text-align: center;
	font-family: serif;
	font-size:13px;
	line-height:20px;
	background: #FFF;
}

.store h2 img{
	text-align: center;
    width:40%;
}
.store_info{
	text-align: center;
}

.store_txt{
	padding:20px;
	text-align: left;
	font-family: serif;
	background: #FFF;
	display: none;
}

.store_img{
	text-align: center;
}

.store_img img{
	width:70%;
	margin:20px;
	text-align: center;
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}

/*
.store_img img:hover {
	opacity: 0.7;
}
*/

	

/*ONLINE STORE
---------------------------------------------------------------------------*/
/*大きな画面で見た場合に両サイドに見える画像*/
#onlinestores::before {
	background: url("../images/hamburger_menu/PC/bg_pc_oct.jpg") no-repeat center center / cover;	/*背景画像の読み込み*/
}

.onlinestore{
max-width: 560px;	/*大きな画面になった場合のコンテンツ幅*/
margin: 0 auto 0 auto;		/*画面の左右中央に配置*/
padding:60px 0 30px 0;
overflow-x: visible;
background-color: #FFFFFF;
z-index:2;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	
		.onlinestore{
		max-width: 393px;	/*大きな画面になった場合のコンテンツ幅*/
		margin: 0 auto 0 auto;;	/*画面の左右中央に配置*/
		overflow-x: visible;
		background-color: #FFFFFF;
		}
	}


.onlinestore-img{
	padding:50px 0;
	background-color: #FFF;
}

.onlinestore h2 {
	padding:0 40px 0 40px;
	text-align: center;
	background: #FFF;
	/*display: none;*/
}

.onlinestore .sub-tit{
	padding:0 0 30px 0;
	text-align: center;
	font-family: serif;
	font-size:13px;
	line-height:20px;
	background: #FFF;
}

.onlinestore h2 img{
	text-align: center;
    width:80%;
}

.onlinestore .concept_txt{
	padding:40px 0;
	text-align: center;
	font-family: serif;
	background: #FFF;
}


#onlinestore .contents {
	background-color: #FFFFFF;
}

/*横並び画像1等分 */
.onlinestore_1 {
	margin:10px;
    display: flex;

}
.onlinestore_1 img div{
	padding:5px;
    height: 50px;       /* 画像の高さ */
    object-fit: cover;     /* 画像のアスペクト比を維持しつつ、コンテナに合わせる */
    width: calc(100% / 1); /* 画像の幅をセクションの3分の1に設定 */
}

.onlinestore_1>div{
    border: 1px solid #ededed;
	margin: 0 5px;

}

/* リンクボタンhover */

.onlinestore_1 a:hover {
	opacity: 0.5;
}

.onlinestore_2 a:hover {
	opacity: 0.5;
}

.onlinestore_3 a:hover {
	opacity: 0.5;
}

/*横並び画像2等分 */
.onlinestore_2 {
	margin:10px;
    display: flex;

}
.onlinestore_2 img div{
	padding:5px;
    height: 50px;       /* 画像の高さ */
    object-fit: cover;     /* 画像のアスペクト比を維持しつつ、コンテナに合わせる */
    width: calc(100% / 2); /* 画像の幅をセクションの3分の1に設定 */
}

.onlinestore_2>div{
    border: 1px solid #ededed;
	margin: 0 5px;
    background: #FFF;
}

/*横並び画像3等分 */
.onlinestore_3 {
	margin:10px;
    display: flex;
	background-color: #FFF;
}
.onlinestore_3 img div{
	padding:5px;
    height: 50px;       /* 画像の高さ */
    object-fit: cover;     /* 画像のアスペクト比を維持しつつ、コンテナに合わせる */
    width: calc(100% / 3); /* 画像の幅をセクションの3分の1に設定 */
}

.onlinestore_3>div{
    border: 1px solid #ededed;
	margin: 0 5px;
    background: #FFF;
}
}


/* リンクボタンhover */

.onlinestore_1 a:hover {
	opacity: 0.5;
}

.onlinestore_2 a:hover {
	opacity: 0.5;
}

.onlinestore_3 a:hover {
	opacity: 0.5;
}






.main-slide {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.main-slide img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  animation: slide-animation 24s linear infinite 0s;
}

.main-slide img {
  height: auto;
}

.main-slide img:nth-of-type(2){
  animation-delay: 8s;/*2枚目の開始時間*/
}

.main-slide img:nth-of-type(3){
  animation-delay: 16s;/*3枚目の開始時間*/
}

@keyframes slide-animation {
  0% {
    animation-timing-function: ease-in;/*ゆっくり表示される*/
    opacity: 0;
  }
  12% {
    animation-timing-function: ease-out;/*表示された*/
    opacity: 1;
  }
  30% {
    opacity: 1;/*＊表示期間*/
  }
  43% {
    opacity: 0;/*次の画像で消えている*/
  }
  100% {
    opacity: 0;/*表示されていない時間*/
  }
}





/*ギャラリー
---------------------------------------------------------------------------*/
:root {
	--gallery-space: 120px;	/*上と下の波打った画像の高さ。お好みで調整してもらってもOKですし、下で数箇所使っている所を直接数字入力に変更されてもOKです。*/
}

/*大きな画面で見た場合に両サイドに見える画像*/
#gallery::before {
	background: url("../images/hamburger_menu/PC/bg_pc_oct.jpg") no-repeat center center / cover;	/*背景画像の読み込み*/
}

/*ギャラリーブロックの上部にある固定表示されている飾り用の写真たち*/
#gallery aside {
	position: absolute;
	left: 0px;
	top: calc(-1 * var(--gallery-space));	/*本来の場所ではなく上にずらす*/
}

/*このブロック内のcontents*/
#gallery .contents {
	background: var(--primary-color);		/*背景色。冒頭のprimary-colorを読み込む。*/
}

#gallery .gallery-box {
	position: relative;
	overflow: visible;
	background: var(--accent-color);		/*背景色。冒頭のaccent-colorを読み込む。*/
	color: var(--accent-inverse-color);		/*文字色。冒頭のaccent-inverse-colorを読み込む。*/
	margin: var(--gallery-space) calc(-1 * var(--global-space));
}

/*上と下の波打った画像の読み込みに関する共通設定*/
#gallery .gallery-box::before,
#gallery .gallery-box::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: var(--gallery-space);	/*画像の高さ。上のgallery-spaceを読み込む。*/
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

/*上の波打った画像への追加設定*/
#gallery .gallery-box::before {
    top: calc(-1 * var(--gallery-space));
    background-image: url("../images/bg_gallery_top.png");	/*上の画像*/
}

/*下の波打った画像への追加設定*/
#gallery .gallery-box::after {
    top: 100%;
    background-image: url("../images/bg_gallery_bottom.png");	/*下の画像*/
}


/*サムネイルスライドショー
---------------------------------------------------------------------------*/
/*スライドショーブロック全てを囲むブロック*/
.slide-thumbnail-box {
	overflow-x: hidden;
}

/*画像たちを囲むブロック*/
.slide-thumbnail1 .img {
	display: flex;
}

/*画像*/
.slide-thumbnail1 .img img {
	padding: 5px;	/*画像の余白*/
}

/*右から左へ、左から右へ、のアニメーション*/
.slide-thumbnail1 .rtl, .slide-thumbnail1 .ltr {
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
.slide-thumbnail1 .rtl {animation-name: slide-rtl;}
.slide-thumbnail1 .ltr {animation-name: slide-ltr;}

@keyframes slide-rtl {
0% {transform: translateX(0);}
100% {transform: translateX(-50%);}
}

@keyframes slide-ltr {
0% {transform: translateX(-50%);}
100% {transform: translateX(0);}
}


/*tableっぽいdl（「お知らせ」」）
---------------------------------------------------------------------------*/
dl.table {
	display: grid;
	grid-template-columns: 100px auto;	/*dtとddを横並びにし、dtの幅を100pxに、残りは自動。*/
	padding: 0 1.5rem 0 1.5rem;
	line-height: 2;
}
dl.table dt,
dl.table dd {
	padding: 1rem 0;
	border-bottom: 1px solid #ccc;	/*枠線の幅、線種、色*/
}

dl.table dd {
	border-bottom: 1px solid #ccc;	/*枠線の幅、線種、色*/
}

#cb{
	display: none;
  }
  
  .more_btn{
	display: block;
	margin: 1em auto 0;
	padding: 8px 16px;
	text-align: center;
	cursor: pointer;
  }
  #cb ~ .more_btn::before{
    content: url('../images/news/button_down.png');
    display: block;
  }
  #cb:checked ~ .more_btn::before{
    content: url('../images/news/button_up.png');
    display: block;
  }
  
  .more_wrap{
	overflow: hidden;
	max-height: 0;
	transition: 0.5s;
  }
  #cb:checked ~ .more_wrap{
	max-height: 100vh;
  }

  .table div{
	padding:20px 0;
	font-size:90%;
	line-height:160%;
	text-align: justify; 
 }
 




/*menu.htmlのテキストのみのお品書きに使用*/
dl.table.reverse {
	grid-template-columns: auto 100px;	/*dtとddを横並びにし、dtの幅を自動に、残りは10px。*/
}
dl.table.reverse dd {
	text-align: right;
}

/*menuブロックのみ、奇数番目のメニューの行に薄く背景色をつける*/
#menu dl.table dt:nth-of-type(odd),
#menu dl.table dd:nth-of-type(odd) {
	background: rgba(0,0,0,0.04);
}



/*フッター設定（コピーライト部分）
---------------------------------------------------------------------------*/
footer small {font-size: 100%;}
footer {
	font-size: 0.9rem;		/*文字サイズ80%*/
	text-align: center;		/*内容をセンタリング*/
}

/*リンクテキスト*/
footer a {color: inherit;text-decoration: none;}

footer a:link {
	color: inherit;text-decoration: none;
	}
	
	footer a:visited {
	color:#ccc;
	}
	
	footer a:hover {
		color:#ccc;

	}
	
	footer a:active {
		color:#ccc;
	}

footer ul li{
	margin:0 20px 10px 20px ;
	list-style: none;
	text-align: left;;

}

.b-exlogo{
	text-align: center;
	width:150px;
	margin:0 auto;
	padding:20px 0 10px 0;
}

.copyright{
	font-family: Arial, Helvetica, sans-serif;
	padding:0 0 50px 0;
}


/*btn1（お品書きメニューブロックの一番下で使っているシンプルボタン）
---------------------------------------------------------------------------*/
.btn1 a {
	display: block;text-decoration: none;
	text-align: center;
	border: 1px solid #333;	/*枠線の幅、線種、色*/
	padding: 20px;			/*ボタン内の余白*/
	font-size: 1.2rem;		/*文字サイズ120%*/
	border-radius: 3px;		/*角を少しだけ丸く*/
}

/*右側の矢印アイコン設定*/
.btn1 a::after {
	transition: 0.3s;
	font-family: "Font Awesome 6 Free";
	content: "\f054";		/*使いたいアイコン名（Font Awesome）をここで指定*/
	font-weight: bold;		/*この手の設定がないとアイコンが出ない場合があります*/
	margin-left: 10px;		/*アイコンとテキストとの間に空けるスペース*/
}	

/*マウスオン時に矢印の左側のスペースを広くする*/
.btn1 a:hover::after {
	margin-left: 15px;
}


/*メニューブロック初期設定
---------------------------------------------------------------------------*/
/*ロゴ*/
.logo_area img{
	margin:-30px 0 50px 0;
	width:100px;
}


/*メニューをデフォルトで非表示*/
#menubar {display: none;}
#menubar ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
#menubar a {
	display: block;
	text-decoration: none;
	text-align: center;
}
#menubar ul li {
	display: block;
	text-decoration: none;
	text-align: center;
}

#menubar ul .menutit{
	width:180px;
	margin:30px 20px;
}
#menubar ul .menuimg{
	width:200px;
	padding:0;
}

#menubar ul img a:hover {
	opacity: 0.5;
}

/*上で非表示にしたメニューを表示させる為の設定*/
.large-screen #menubar {display: block;}
.small-screen #menubar.display-block {display: block;}

/*3本バーをデフォルトで非表示*/
#menubar_hdr.display-none {display: none;}


/*開閉メニュー
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
.small-screen #menubar.display-block {
	position: fixed;overflow: auto;z-index: 10000;
	right: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 60px 10vw 50px;	/*ブロック内の余白。上、左右、下への順番。*/
	background: url("../images/hamburger_menu/SP/bg_sp_oct.jpg") no-repeat top center / cover;	/*背景画像の読み込み*/
	color: #FFF;	/*文字色。css冒頭のsecondary-inverse-colorを読み込みます。*/
	animation: opa1 1s both;	/*opa1を実行する。1sは1秒の事。*/
}

/*メニュー１個あたりの設定*/
.small-screen #menubar nav ul li {
	/*border: 1px solid var(--secondary-inverse-color);	枠線の幅、線種、varは色の事でcss冒頭のsecondary-inverse-colorを読み込みます。*/
	/*margin: 1rem 0;*/			/*メニューの外側に空けるスペース。上下、左右への順番。*/
	/*border-radius: 5px;*/		/*角を丸くする指定*/
	text-align: center;
}
.small-screen #menubar a {
	color: inherit;
	padding: 0.5rem 5rem;	/*メニュー内の余白。上下、左右へ。*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/

/*画面幅1000px以上の追加指定*/
@media screen and (min-width:1000px) {

	#menubar_hdr {
		display:none;
	}
}


/*３本バーを囲むブロック*/
#menubar_hdr {
	animation: opa1 0s 0.2s both;
	position: fixed;z-index: 10001;
	cursor: pointer;
	right: 0px;				/*右からの配置場所指定*/
	top: 0px;				/*上からの配置場所指定*/
	margin:20px 10px;
	padding: 12px 8px;		/*上下、左右への余白*/
	width: 44px;			/*幅（３本バーが出ている場合の幅になります）*/
	height: 44px;			/*高さ*/
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素（３本バー）部分。flexはデフォルトで横並びになるので、それを縦並びに変更。*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	transform: scale(1);	/*デフォルトで準備したサイズの1倍。お好みで。*/
	transform-origin: right top;
	mix-blend-mode: exclusion;
	color:#fff;
}


/*バー１本あたりの設定*/
#menubar_hdr span:nth-of-type(1){
	width:12px;
	text-align: left;
	color:#fff;
}

#menubar_hdr span:nth-of-type(3){
	width:12px;
	margin-left:17px;
	color:#fff;
}

/*バー１本あたりの設定*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;	/*アニメーションにかける時間。0.3秒。*/
	border-top: 1px solid #fff;	/*線の幅、線種、色*/
}

/*×印が出ている状態の3本バーの背景色*/

/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;	/*変形の起点。センターに。*/
	width: 32px;                    	/*バーの幅*/
	margin-left:0;
}

/*×印が出ている状態の設定。※１本目のバー。*/
#menubar_hdr.ham span:nth-of-type(1){
	transform: rotate(35deg) translate(3.8px, 8px);	/*回転45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※３本目のバー。*/
#menubar_hdr.ham span:nth-of-type(3){
	transform: rotate(-35deg) translate(3.8px, -8px);	/*回転-45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※２本目のバー。*/
#menubar_hdr.ham span:nth-of-type(2){
	display: none;	/*２本目は使わないので非表示にする*/
}

/*縦スクロール線*/
.scroll {
    position  : absolute;
    font-size : 13px;
    writing-mode : vertical-rl;
    top : 0;
    left : 50%;
    transform: translateX(-50%) translateY(-50%);
}
.scroll::after {
    content : '';
    display : inline-block;
    position : absolute;
    background-color: #707070;
    right : 50%;
    bottom : -100px;
    transform : translateX(-50%);
    width : 1px;
    height : 100px;
    animation: scroll 1.5s infinite;
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.scroll{z-index:9;}


/*マニュアルページ用
---------------------------------------------------------------------------*/
.manual {
	background: #fff;
	color: #333;
	padding: 5vw;
}
.manual pre.look {display: block;}
.manual .look {background: #eee;}
.manual h3 {
	line-height: 2;
	display: inline-block;
	background: linear-gradient(transparent 60%, yellow);
}
.manual h3 + p {margin-top: -0.5rem;}
.manual.margin-left {padding-left: 300px;}

	/*画面幅999px以下の追加指定*/
	@media screen and (max-width:999px) {

	.manual.margin-left {padding-left: 4vw;}

	}/*画面幅900px以上の追加指定ここまで*/

/*その他
---------------------------------------------------------------------------*/
.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: var(--accent-color);}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}
pre {white-space: pre-wrap;word-wrap: break-word;overflow-wrap: break-word;}
.white_space{background-color: #fff;}
.gray_space {
	background: var(--primary-color);		/*背景色。冒頭のprimary-colorを読み込む。*/
	color: var(--primary-inverse-color);	/*文字色。冒頭のprimary-inverse-colorを読み込む。*/
	position: relative;
	overflow-x: hidden;
	background-color: #f2f2f2;
	z-index:2;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.gray_space {
		max-width: 393px;	/*大きな画面になった場合のコンテンツ幅*/
		margin: 0 auto;		/*画面の左右中央に配置*/
		overflow-x: visible;
		z-index:2;
	}

}
.white_space{
	background: var(--primary-color);		/*背景色。冒頭のprimary-colorを読み込む。*/
	color: var(--primary-inverse-color);	/*文字色。冒頭のprimary-inverse-colorを読み込む。*/
	position: relative;
	overflow-x: hidden;
	background-color: #fff;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.gray_space {
		max-width: 393px;	/*大きな画面になった場合のコンテンツ幅*/
		margin: 0 auto;		/*画面の左右中央に配置*/
		overflow-x: visible;
		z-index:2;
	}

}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

		.ws {width: 48%;display: inline;}
		.sh {display: none;}
		.pc {display: block;}

	}/*画面幅900px以上の追加指定ここまで*/
