* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
::before , ::after {
	box-sizing: inherit;
}
button {
	margin: 0;
	padding: 0;
	outline: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
	vertical-align: middle;
	text-align: inherit;
	font: inherit;
	-webkit-appearance: none;
	appearance: none;
}
.logo {
	width: 200px;
	height: auto;
	margin-left: 20px;
	margin-right: 50px;
}
h3{
	padding-top: 30px;
	padding-bottom: 20px;
}
li:nth-child(7) {
  margin-right: 60px;
}
h2 p img{
	margin-left: 30px;
	margin-left: 30px;
}
.top img{
	width: 100vw;
	height: auto;
}
.aboutimg{
	width: 70vw;
	height: auto;
	text-align: center;
}
.abouttext{
	width: 50vw;
	margin-top: 40px;
}
.about p{
	margin-top: 40px;
}
.frow{
background-color: #e3d7a3;
height: 300px;
margin: 20px;
}
.frowtext{
	width: 80vw;
	height: 300px;
 margin-top: 40px;
	float: left;
}
.frow p{
	width: 50vw;
}
.linkbanner{
	margin: 30px;
	width: 50%;
	height: auto;
}
.subtop img{
	width: 100vw;
	height: auto;
	z-index: -1;
}

.subtitle{
	width: 70vw;
	height: auto;
	margin-top: 40px;
}
a{
  text-decoration: none;
  color: #6b3f31;
}

a:hover {
color:#a52a2a;
text-decoration:underline;
}
.ppp{
	margin: 40px;
	margin-top: 60px;
}
.sub{
	clear: both;
}
.subgazou1{
	width: 400px;
	height: auto;
}
.subgazou2{
	width: 400px;
	height: auto;
	margin:40px;
}
.kaigyou{
	clear: both;
}
.kaigyou hr{
	margin: auto;
	margin-bottom: 30px:
	text-align: center;
 width: 60vw;
}
.mannnaka{
	margin: auto;
	text-align: center;
}
.mannnaka img{
	margin: auto;
	text-align: center;
	width:450px;
	height: auto;
}
.abo{
	width: 450px;
}
.obi{
	background-color: #aaaaaa;
}
.obi p{
	margin: auto;
	text-align: center;
}
.tel{
	font-size: 20px;
	font-weight: bold;
	margin-top: 10px;
	margin-bottom: 20px;
}
.stores{
	color: orange;
	margin-top: 30px;
}
.otoiawase{
	padding-top: 30px;
	background-color: #fafad2;
}
.otoiawase a{
	font-size: 20px;
	margin-top: 10px;
	margin-bottom: 20px;
}
.otoiawase img{
	 width: 300px;
	 height: auto;
	 margin: auto;
	text-align: center;
}
.left-column2 {
  float: left;
  width: 50%; /* 要素の幅を50%に定義 */
}
.right-column{
	width: 380px;
	margin: 10px;
}
.right-column2 {
  float: right;
  width: 42%; /* 要素の幅を50%に定義 */
}
.to{
	margin: auto;
	text-align: center;
}
.okuduke{
	padding-top: 20px;
}
#now{
	color:#800080;
}
.left-column {
padding-left: 20px;
}
/**************** 以下、ハンバーガーボタンのスタイリング ****************/
.btn {
	/* ボタンの配置位置  */
	position: fixed;
	top: 32px;
	right: 16px;
	/* 最前面に */
	z-index: 10;
	/* ボタンの大きさ  */
	width: 48px;
	height: 48px;
  background-color:rgba(255,255,255,0.5);
}
/***** 真ん中のバーガー線 *****/
.btn-line {
	display: block;
	/* バーガー線の位置基準として設定 */
	position: relative;
	/* 線の長さと高さ */
	width: 100%;
	height: 4px;
	/* バーガー線の色 */
	background-color: #d6d5d5;
	transition: .2s;
}
/***** 上下のバーガー線 *****/
.btn-line::before , .btn-line::after {
	content: "";
	/* 基準線と同じ大きさと色 */
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #d6d5d5;
	transition: .5s;
}
.btn-line::before {
	/* 上の線の位置 */
	transform: translateY(-16px);
}
.btn-line::after {
	/* 下の線の位置 */
	transform: translateY(16px);
}
/***** メニューオープン時 *****/
.btn-line.open {
	/* 真ん中の線を透明に */
	background-color: transparent;
}
.btn-line.open::before , .btn-line.open::after {
	content: "";
	background-color: #333;
	transition: .2s;
}
.btn-line.open::before {
	/* 上の線を傾ける */
	transform: rotate(45deg);
}
.btn-line.open::after {
	/* 上の線を傾ける */
	transform: rotate(-45deg);
}
/**************** ここまで、ハンバーガーボタンのスタイリング ****************/
/**************** 以下、メニューのスタイリング ****************/
.menu {
	/* メニューを縦に */
	display: flex;
	flex-direction: column;
	position: fixed;
	/* メニューの位置マイナス指定で画面外に */
	right: -70%;
	width: 70%;
	height: 100vh;
	background-color: rgba(253, 245, 230, .7);
	color: #8b4513;
	transition: .3s;
}
.menu-list {
	/* メニューテキスト位置をリスト内中心に */
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	z-index: 3;
}
.menu-list:hover {
	background-color: rgba(255, 255, 255, .5);
	color: #333;
	cursor: pointer;
	transition: .3s;
}
/***** メニューオープン時位置0にして画面内に *****/
.menu.open {
	position: absolute;
	right: 0;
}
/* 600px以上はハンバーガーボタン非表示、ヘッダー固定 */
@media screen and (min-width: 1200px) {
	.btn {
			display: none;
		}
		.menu {
			/* メニューを横に */
			display: flex;
			flex-direction: row;
			position: fixed;
			top: 0;
			right: 0;
			width: 100%;
			height: 100px;
		}
		nav{
			height: auto;
		}
.top img{
	width: 100vw;
	height: auto;
}
.about{
	margin-top: 40px;
}
.aboutimg{
	width: 40vh;
	height: auto;
	float: left;
}
.aboutimg{
	width: 40vw;
	margin-left: 20px;
	margin-right: 50px;
	height: auto;
	text-align: center;
	float: left;
}
.about{
	overflow:  auto;
}
.abouttext:after {
  content: "";
  clear: both;
  display: block;
}
.frow{
background-color: #e3d7a3;
padding: 20px;
	margin-top: 40px;
	height: 300px;
}
h2{
	font-size: 40px;
}
.about p{
	margin-top: 30px;
}
.frow p{
	margin-top: 30px;
}
.linkbanner{
	margin-top: 40px;
	width: 200px;;
	height: auto;
	text-align: right;
}
.frowimg{
	float: right;
	width: 400px;
	height: auto;
	border-top: 30px;
}
main div {
  margin: 0; /* 要素の外側の余白を0に定義 */
  padding: 0; /* 要素の内側の余白を0に定義 */
}


.left-column {
  float: left;
  width: 50%; /* 要素の幅を50%に定義 */
padding-left: 20px;
}

.right-column {
		width: 680px;
		margin: 10px;
		padding-right: 80px;
  float: right;
  width: 45%; /* 要素の幅を50%に定義 */
}
.right-column::after{
	clear: both;
	float: none;
}
.subtitle{
	width: 30vw;
	height: auto;
	margin-top: 40px;
}
.br-sp{
	display: none;
}
.subgazou2{
	width: 500px;
	height: auto;
	margin:40px;
}
.kaigyou hr{
	margin: auto;
	text-align: center;
 width: 60vw;
}
.mannnaka img{
	margin: auto;
	clear: both;
	text-align: center;
	margin-top: 60px;
	margin-bottom: 60px;
	width: 800px;
	height: auto;
}
.otoiawase{
	margin-top: 50px;
}
.otoiawase img{
	 width: 500px;
	 height: auto;
}
.otoiawase p{
	font-size: 22px;
}
.otoiawase a{
	font-size: 22px;
}
}
}
