@charset "UTF-8";
@import url("grid.css");

:root { /* 色変更される場合は、#以降のカラーコードを変更してください IE非対応 */
    --base-color: #7f553a;/* 茶色 */
    --link-color: #b0ca79;/* 鶯色 */
    --linkhover-color: #7f553a;/* 茶色 */
    --back-color: #f6dfec;/* 桜色 */
    --border-color: #b0ca79;/* 鶯色 */
    --white-color: #fff;
    --nav-color: rgb(253,180,183,0.7)/* 桜色半透明 */
}
body {
	background: var(--white-color); 
	color: var(--base-color);
	font-family: "M PLUS Rounded 1c"; /* Googleフォント */
}
img {
	max-width:100%;
	height: auto;/*高さ自動*/
}
a {
	display:block;
	color: var(--link-color);
	text-decoration-line: none;
}
a:hover { 
	color: var(--linkhover-color);
}
h2 {
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	text-align: center;display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--title-font-set);
	font-weight: 400;
}
h2::before, h2::after {
	content:"";
	width:80px;
	height:1px;
	margin:0 10px;
	background-color: var(--border-color);
}
h3 {
	padding-bottom: 0.5rem;
	font-family: var(--font-set);
	font-weight: 400;
	font-style: var(--font-style-no);
}
h3.underline {
	border-bottom: 1px solid var(--border-color);
}
h4 {
	border-left: 4px solid var(--link-color);
	padding-left: 1rem;
	font-family: var(--font-set);
	font-weight: 400;
	font-style: var(--font-style-no);
}
section {
	padding: 3rem 0;
}
cite {
	font-weight: 700;
	font-style: var(--font-style-no);
}
a.inlinelink {/* リンク改行回避 */
	display: inline-block;
	font-weight: 700;
}
.shopname {/* 店名装飾 */
	font-family: var(--title-font-set);
	font-weight: 400;
	font-style: var(--font-style-no);
}
.icon {/* hアイコン */
	vertical-align: -3px;
	color: var(--border-color);
}
.icon2 {/* ノーマルテキストアイコン */
	vertical-align: -3px;
	font-size: 108%
}
.back-color {/* 桜色背景 */
	background-color: var(--back-color);
}
.topichi {/* 上部市松 */
	background: url("../img/background_ichi.png") var(--back-color);/* 背景画像 */
	background-repeat: repeat-x; 
	background-position: top left;
}
.bottomichi {/* 下部市松 */
	background: url("../img/background_ichi.png") var(--back-color);/* 背景画像 */
	background-repeat: repeat-x; 
	background-position: bottom left;
}


/* コンテンツ見出し--------------------------- */
.galleryback h2, .contactback h2, .accessback h2 {/* 文字装飾 */
	text-shadow: 1px 2px 3px var(--white-color); 
	font-size: 3em;
	font-weight: 700;
}
.galleryback, .contactback, .accessback {/* 背景装飾 */
	background-repeat: no-repeat;
	background-position: center center;
	padding: 15rem 0;
}


/*ヘッダー
-------------------------------------*/
/*スマホ用メニュー
-------------------------------------*/	
.spnavi {
	display: none;
}
nav ul {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	list-style: none;
	margin: 10px 0 0 0;
}
nav li {
	flex: 1 0 auto;
	margin-bottom: 0;
}
nav li a {
	text-decoration: none;
	text-align: center;
	width: 100%;
	color: var(--white-color);
}
nav a:hover {
	color: var(--back-color);   
}
nav a {
	padding: 0.8em;
}

@media screen and (min-width: 769px){
/* PC時はMENUボタンを非表示 */
#open,#close {
	display: none !important;
}
#navi {
	display: block !important;
}
}

@media screen and (max-width: 768px){
.header {
	flex-direction: column;
	margin-bottom: 10px;
}
.header #open,#close  {
	position: absolute;
	top: 12px;
	right: 12px;
}
nav ul {
	flex-direction: column;
}
.header li {
	padding-top: 0;
}
/* スマホ時はMENUボタンを表示 */
#open {
	display: block;
	background: url(../img/button.png);
	background-repeat: no-repeat;
	background-size: contain;
	width: 50px;
	height: 50px;
	border: none;
	position: absolute;
	top: 12px;
	right: 12px;
}
#close  {
	display: block;
	background: url(../img/button2.png);
	background-repeat: no-repeat;
	background-size: contain;
	width: 50px;
	height: 50px;
	border: none;
	position: absolute;
	top: 12px;
	right: 12px;
}
/* スマホ時はメニューを非表示 */
#navi {
	display: none;
}
.navblock {
	margin-top: -10px;
}
}


/* サイトタイトル
-------------------------------------*/
.head {
	background: url("../img/mainimg.jpg");/* 背景画像 */
	background-repeat: no-repeat;   
	background-position: center center;
	height: 100vh;
}
.head h1 {
	height: 350px;
	line-height: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--white-color);
	text-shadow: 1px 2px 3px var(--base-color); 
	margin: 0;
	font-size: 3em;
}
.navblock {
	background: var(--nav-color);
}
.navblock li {
	text-shadow: 1px 2px 3px var(--base-color); 
}

.button {
	border-radius: var(--kado30);
	height: 50px;
	line-height: 48px;
	color: var(--white-color);
}
.button:hover {
	border: 1px solid var(--linkhover-color);
	color: var(--linkhover-color);
}


/* キャッチコピー
-------------------------------------*/
.catchback {
	background: url('../img/catchback.png');/* 背景画像 */
	background-size: contain;
	background-repeat: repeat-x;
}
.catch {
	background-color: rgba(255, 255, 255, 0.7); 
	margin: 5rem auto;
	padding: 3rem 0;
	max-width: 700px;
	border: 1px solid var(--border-color);
	text-align: center;
	line-height: 1.7;
	border-radius: 50%;
}
.center {
	text-align: center;
	margin-bottom: 4rem;
}


/* お知らせ
-------------------------------------*/

.back-color {}
.news {
	margin: 0 auto;
	max-width: 980px;
	padding: 2rem;
}
.news iframe {
	border-radius: var(--kado20);
	margin: 0;
	padding: 0;
	text-align: center;
	width: 100%;
	height: 80%;
}

.news h3 {
	position: relative;
	margin-bottom: 3rem;
	padding-bottom: 0.1rem;
	text-align: center;
}

.news h3:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 60px;
	left: 50%;
	height: 5px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background: repeating-linear-gradient(-45deg, var(--link-color), var(--link-color) 2px, var(--back-color) 2px, var(--back-color) 5px);
}

/* インラインフレーム内--------------------------- */
.newspage {
	margin: 0;
	padding: 0.5em 1em;
}
.newspage  dl{
	margin: 0;
	padding: 0;
}
.newspage  dt{
	font-weight: 700;
	border-bottom: 2px dashed var(--border-color);
}
.newspage  dd{
	margin-bottom: 1em;
	margin-left: 1em;
	padding-left: 0;
}


/* 器と着物
-------------------------------------*/
.galleryback {/* タイトル */
	background: url('../img/galleryback.jpg');/* 背景画像 */
}
.shoplink a {/* オンラインショップ誘導リンク */
	font-weight: 700;
	margin-top: 3rem;
	letter-spacing: 0.2em;
}

/* マウスホバーで画像を拡大--------------------------- */
.hoverbox{
	max-height: 250px;
	overflow: hidden;
}
.hoverbox-img{
	transition-duration: 0.3s;
	border-radius: var(--kado20);
}
.hoverbox-img:hover{
	transform: scale(1.3);
	transition-duration: 0.3s;
}
.hoverbox h3{

}


/*アクセス
-------------------------------------*/
.accessback {/* タイトル */
	background: url('../img/accessback.jpg');/* 背景画像 */
}
.access {
	background: url('../img/rogo_p_300.png');/* 背景画像 */
	background-repeat: no-repeat;   
	background-position: bottom right;
}
.access h3 {
	font-weight: 700;
	position: relative;
	padding: 0.3em;
	letter-spacing: 0.1em;
}
.access h3:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 3px;
	background: repeating-linear-gradient(-45deg, var(--link-color), var(--link-color) 2px, var(--back-color) 2px, var(--back-color) 5px);
}
.access h4 {
	letter-spacing: 0.1em;
}
.access ul {
	list-style-type: none;
}
.access li {
	border-bottom: 1px dashed var(--border-color);
}
.access .map-img {
	display: flex;
}
.access .map-img img {
	border-radius: var(--kado20);
	padding: 0.5em;
}

/* Googleマップ--------------------------- */
.gmap {
	margin: 3rem 0;
}
.access .map {
	margin-bottom: 2em;
}
.access .map iframe {
	border-radius: var(--kado10);
	width: 100%;
	aspect-ratio: 16/9; 
}


/*お問い合わせ
-------------------------------------*/
.contactback {/* タイトル */
	background: url('../img/contactback.jpg');/* 背景画像 */
}
h3.stripe {
	position: relative;
	padding: 0.3em;
}
h3.stripe:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 3px;
	background: repeating-linear-gradient(-45deg, var(--link-color), var(--link-color) 2px, var(--back-color) 2px, var(--back-color) 5px);
}
.button,input[type="submit"] {
	color: var(--white-color);
	background-color: var(--link-color);
	border: 1px solid var(--link-color);
	margin: 1rem;
}
.button:hover,input[type="submit"]:hover {
	color: var(--white-color);
	background-color: var(--linkhover-color);
	border: 1px solid var(--linkhover-color);
}
.table {
	margin: 4rem 0;
}
.table th {
	width: 150px;
}
input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"], textarea, select {
    border-radius: 10px;
}
input[type="email"]:focus,input[type="number"]:focus,input[type="search"]:focus,
input[type="text"]:focus,input[type="tel"]:focus,
input[type="url"]:focus,input[type="password"]:focus,textarea:focus,
select:focus {
  border: 1px solid var(--link-color);
}


/* SNS
-------------------------------------*/
.snsicon {
	display: flex;
	flex-direction: row;
	justify-content: center;
}
.snsicon li {
	width: 60px;
	list-style-type: none;
	margin-top: 2rem;
	padding: 0 1rem;
}


/*フッター
-------------------------------------*/
footer {
	background-color: var(--white-color); 
	background: url('../img/footerback.png');/* 背景画像 */
	background-size: center;
	background-repeat: repeat-x;
}

/* フッターメニュー--------------------------- */
.footermenu {
	display: flex;
	flex-direction: row;
	justify-content: center;
	list-style-type: none;
	margin-top: 2rem;
}
.footermenu li {
	margin-bottom: 0;
	padding: 1rem;
}
.footermenu a {
	color: var(--base-color);
}


/*コピーライト
-------------------------------------*/
.copyright {
	text-align: center;
	padding: 1rem 0;
}
.copyright a {
	color: var(--base-color);
	text-decoration: none;
}


/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
	position: fixed;
	bottom: 25px;
	right: 25px;
	display: block;
	width: 40px;
	height: 40px;
	box-sizing: border-box;
	background: var(--link-color);
	border: 1px solid var(--link-color);
	border-radius: 50%;
	padding-top: 30px;
	text-align: center;
	text-decoration: none;
	opacity: 0.8;
}
#pagetop::after{
	content: "";
	display: block;
	border-top: 2px solid var(--white-color);
	border-right: 2px solid var(--white-color);
	width: 25%;
	height: 25%;
	top: 45%;
	left: 0;
	right: 0;
	margin: auto;
	position: absolute;
	transform: rotate(-45deg);
}
#pagetop:hover{
	opacity: 0.5;
}


/* 下層ページヘッダー
-------------------------------------*/
.subhead {
	height: 500px;
	background: url('../img/subpageback.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	margin-bottom: 2rem;
}
.subhead h1 {
	height: 500px;
	line-height: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--white-color);
	text-shadow: 1px 2px 3px var(--base-color); 
	margin: 0;
}

/*パンくずリスト
-----------------------------------*/
.breadcrumb {
	margin: 0 0 1em 0;
	padding: 0;	
}
.breadcrumb li {
	list-style-type: none;
}
.breadcrumb li a {
	display: inline-block;
	color: var(--link-color);
}


/* 幅768px以下の表示
-------------------------------------*/
@media screen and (max-width: 768px){
h2,h3 {
	font-size: 2.2rem;
}
h2::before, h2::after {
	width:30px;
}


/* サイトタイトル
-------------------------------------*/
.head {
	height: 100%;
}
.head h1 {
	height: 500px;
}


/*キャッチコピー
-------------------------------------*/
.catch {
	margin: 3rem 2rem;
	max-width: 100%;
}
.catch h2 {
	margin-bottom: 1rem;
}


/*ニュース
-------------------------------------*/
.news-list .item .title{
	margin-top: 1em;
}


/*お問い合わせ
-------------------------------------*/
.table th {
	width: 100%;
	display: block;
}	
.table td {
	display: block;
}


/* フッターメニュー
-------------------------------------*/
.footermenu {
	flex-flow: row wrap;
}
.footermenu li {
	text-align: center;
}
}