@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap');
@font-face {
    font-family: "Tempus Sans ITC";
    src: url(../font/TEMPSITC.TTF); 
}
/*==========================================
全体
===========================================*/
html {
  font-size: 62.5%;
  width: 100%;
  height: 100%
}
body {
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
/*  font-family: "游ゴシック体", "Yu Gothic", YuGothic, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	color: #515151;
	letter-spacing: 0.5px;
	width: 100%;
	height: 100%;
}
body.hide {
	opacity :0;
}
body {
	opacity :1;
	transition: opacity 1s;
}

/*==========================================
調整用
===========================================*/
.red {
  color: #FF0000;
}
.blue {
  color: #0070c0;
}
.black {
  color: #000000;
}
.gray{
    color: #323232;
}
.bold {
  font-weight: bold;
}
.center {
  text-align: center;
}
.spacer20 {
  height: 20px;
}
.spacer30 {
  height: 30px;
}
.spacer50 {
  height: 50px;
}
.spacer80 {
  height: 80px;
}
.spacer100 {
  height: 100px;
}
.spacer120 {
  height: 120px;
}
.btnmode {
	-ms-user-select: none; /* IE 10+ */
	-moz-user-select: -moz-none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	user-select: none;
	cursor: pointer;
}
.disable-scroll {
	overflow-y: hidden;
}
.mb10{
	margin-bottom: 10px;
}
.mb20{
	margin-bottom: 20px;
}
.mb30{
	margin-bottom: 30px;
}
.mt30{
	margin-top: 30px;
}
.mt50{
	margin-top: 50px;
}
.mr20{
	margin-right: 20px;
}
.pc {
  display: none;
}
.sp {
  display: block;
}
@media only screen and (min-width:769px) /*769px以上*/ {
.pc {
  display: block;
}
.sp {
  display: none;
}
}
/*==========================================
フォントサイズ
===========================================*/
h1, h2, h3{
	line-height: 150%;
	color: #e88f8f;
}
h1{
	font-size: 2.8rem;
}
h2{
	font-size: 2.4rem;
}
h3{
	font-size: 1.8rem;	
}
p{
	font-size: 1.6rem;
	line-height: 200%;
	color: #676767;
}
.souris-font{
	font-family: "Tempus Sans ITC";	
	font-weight: bold;
}
@media only  screen and (min-width:769px) /*769px以上*/{
h1{
	font-size: 3.2rem;
}
h2{
	font-size: 2.8rem;
}
h3{
	font-size: 2.0rem;	
}
p{
	font-size: 1.8rem;
	line-height: 220%;
	}
}
/*==========================================
 全体
===========================================*/
#wrapper{
	width: 100%;
	height: 100%;
}

/*==========================================
 ヘッダーのスタイル
===========================================*/
#header{
	position: fixed;
	top: 0;
	right: 0;
    width: 100%;
    z-index: 999; 
}
.header{
	position: relative;
	height: 60px;
	padding: 10px 20px;
	backdrop-filter: blur(12px);
	transition: background-color .7s;
}
.logo {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	font-size: 4.2rem;
	color: #fff;
	font-family: "Tempus Sans ITC";
	font-weight: normal;
	transition: color .7s;
}

.top-nav{
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
}
.top-nav a {
	margin-left: 15px;
	text-decoration: none;
	color: #fff;
	font-size: 12px;
	transition: color .7s;
}

.header.white {
	background-color: rgba(255,255,255,0.7);
}
.header.white .logo {
	color: #EA8688;
}
.header.white .top-nav a {
	color: #A6A6A6;
}
.header.white .burger-menu .hamburger {
	background: #A6A6A6;
}
.header.white .burger-menu .hamburger:before,
.header.white .burger-menu .hamburger:after {
	background: #A6A6A6;
}
.header.white .burger-menu .menu-name:after {
	color: #A6A6A6;
}
.burger-menu .menu-name:after {
	transition: color .7s;
}

@media only screen and (min-width:769px) /*769px以上*/ {
.header{
	height: 80px;
	padding: 20px 30px;
}
.logo{
	font-size: 5.8rem;	
	}

}
@media only screen and (min-width:1024px) /*1024px以上*/ {
.top-nav a {
	margin-left: 30px;
	}
}
/*==========================================
TOP　スライダー部分
===========================================*/
.top-slider-sp{
	width: 100%;
	height: auto;
}
.top-slider-sp img{
	width: 100%;
	height: auto;
}
@media only screen and (min-width:769px) /*769px以上*/ {
.top-slider-pc{
	width: 100%;
	height: auto;
}
.top-slider-pc img{
	width: 100%;
	height: auto;
}
}

/*==========================================
contents部分
===========================================*/
.contents-wrapper{
	background: linear-gradient(
	to bottom,
	#FFFFEF 0%,
	#FFFFFB 30%,
	#FFFFFF 100%
	);
	/* 背景を固定する */
	background-attachment: fixed;
	position: relative;
	z-index: 3;
}
.contents {
	position: relative;
	padding: 50px 20px;
	margin: 0 auto;
	max-width: 1100px;
}
/* ===== 背景装飾 ===== */
/* 左上 */
img.deco {
	position: fixed;
	top: 40px;
	left: 0;
	width: 360px;
	height: auto;
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none; /* クリック無効 */
	z-index: 0;
	opacity: 0.4;
}
/* 右下 */
img.deco2 {
	position: fixed;
	bottom: 0;
	right: 0;
	width: 480px;
	height: auto;
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none; /* クリック無効 */
	z-index: 0;
	opacity: 0.5;
}
@media only screen and (min-width:769px) /*769px以上*/ {
.contents {
	padding: 50px 20px 100px;
}
img.deco {
	top: 80px;
	left: 0;
	width: 360px;
	opacity: 0.5;
}
img.deco2 {
	width: 480px;
	height: auto;
	opacity: 0.6;
}
}
@media only screen and (min-width:1024px) /*1024px以上*/ {
.contents {
	position: relative;
	padding: 50px 20px 100px;
	margin: 0 auto;
	max-width: 1100px;
}
img.deco {
	top: 80px;
	left: 0;
	width: 380px;
	opacity: 0.5;
}
img.deco2 {
	width: 580px;
	height: auto;
	opacity: 0.6;
}
}

/*==========================================
TOP concept部分
===========================================*/
.concept-wrapper{
    max-width: 960px;
    padding: 50px 0;
    border-radius: 20px;
    margin: 0 auto;
}
.concept-wrapper h1{
    text-align: center;
    margin-bottom: 70px;
}
.concept-text{
	color: #e88f8f;
}
p.sp-pdt{
    padding-top: 60px;
}
.bg-mouse{
    background-image: url(../img/mouse.png);
    background-repeat: no-repeat;
    background-size: 280px auto;
    background-position: right 120px;
}
.concept-collage{
    background-image: url("../img/concept-collage.jpg");
	background-size: cover; /* 縦横比を維持して全体を覆う */
	background-position: center; /* 画像を中央に配置 */
	background-repeat: no-repeat; /* 画像の繰り返しを防ぐ */
	width: 100%;
	height: 250px;
	transition: height 0.5s;
}
@media only screen and (min-width:769px) /*769px以上*/ {
.concept-wrapper{
    margin-top: 70px;
    padding: 40px 0;
}
.concept-wrapper h1{
    margin-bottom: 100px;
}
p.sp-pdt{
    padding-top: 0;
}
.bg-mouse{
    background-image: url(../img/mouse.png);
    background-repeat: no-repeat;
    background-size: 430px auto;
    background-position: right 180px;
}
.concept-collage{
    background-image: url("../img/concept-collage.jpg");
	background-size: cover; /* 縦横比を維持して全体を覆う */
	background-position: center; /* 画像を中央に配置 */
	background-repeat: no-repeat; /* 画像の繰り返しを防ぐ */
	width: 100%;
	height: 380px;
	transition: height 0.5s;
    margin-top: 80px;
}
}
/*==========================================
TOP Collection部分
===========================================*/
.collection{
	position: relative;
	/*background-color: rgba(251, 234, 233, 0.7);*/
	/*background-image: url("../img/image11.svg");*/
    background-image: url("../img/collection-bg.png");
    background-size: cover;
    padding: 50px 20px;
    margin: 0 0 100px;
}
.collection-inner{}
.collection-img{
	width: 100%;
	text-align: center;
}
.collection-img img{
	width: 100%;
	height: auto;
	max-width: 400px;
	border-radius: 18px;
}
.collection-text{
	padding-bottom: 30px;
	text-align: center;	
}
@media only screen and (min-width:769px) /*769px以上*/ {
.collection{
	padding: 60px 20px;
	margin-top: 50px;
}
.collection-inner {
	display: flex;
	flex-direction:row-reverse;
	align-items: center;
	max-width: 1000px;
	margin: 0 auto;
}
.collection-img{
	width: 50%;
}
.collection-text{
	width: 50%;
	padding-bottom: 0;
}
.collection-text h1{
	font-size: 3.2rem;
	}
}
/*================================
TOP コーディネート部分
==================================*/
.coordinate-section {
    margin: 150px 0 100px;
    padding: 0;
}
h2.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #e8a3a8;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 0.01em!important;
}
h2.section-title>span{
    font-size: 2.2rem;
}
.section-title::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  background: url("../img/heart.png") no-repeat bottom / contain;
  margin-right: 8px;
}
.section-title::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 26px;
  background: url("../img/heart.png") no-repeat bottom / contain;
  margin-left: 8px;
}
.coordinate-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* スマホ：2枚ずつ */
    gap: 20px;
}
.coordinate-grid img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    display: block;
}
@media only screen and (min-width:769px) /*769px以上*/ {
.coordinate-section {
    margin: 200px 0 100px;
    padding: 0 2%;
  }
h2.section-title {
    font-size: 2.2rem;
    margin-bottom: 60px;
}
h2.section-title>span{
    font-size: 2.6rem;
}
.coordinate-grid {
    grid-template-columns: repeat(4, 1fr); /* PC：4枚横並び */
    gap: 24px;
}

}

/*================================
TOP News&Topics部分
==================================*/
/* 全体 */
.news {
  max-width: 800px;
  margin: 0 auto 150px;
}

/* ヘッダー */
.news-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	border-bottom: 1px solid #A6A6A6;
}

.news-header h2 {
	color: #EA8688;
	font-size: 2.0rem;
	margin-bottom: 10px;
}

a.news-more {
	color: #EA8688;
	font-size: 1.6rem;
}

/* リスト */
.news-list {
	padding: 0;
	margin: 0;
}

/* 各アイテム */
.news-list li a{
	display: block;
	display: flex;
	gap: 16px;
	padding: 16px;
	border-bottom: 1px dashed #e5e5e5;
	align-items: flex-start;
}

.news-list li a:hover {
	background: #fbfbfb;
	border-radius: 5px;
}

/* 画像 */
.news-list img {
	width: 90px;
	height: 90px;
	object-fit: cover;
	border-radius: 6px;
}
.news-list-right{
    
}
/* 日付 */
.news-date {
  font-size: 1.4rem;
  color: #EA8688;
  margin-bottom: 6px;
}

/* NEWバッジ */
.badge {
  font-size: 1.4rem;
  font-weight: bold;
  margin-left: 8px;
}
/* タイトル */
.news-title {
  font-size: 1.4rem;
}
@media only screen and (min-width:769px) /*769px以上*/ {
.news-header h2 {
	font-size: 2.2rem;
}
.news-list img {
	margin-right: 30px;
}
.news-date {
  font-size: 1.6rem;
  margin-bottom: 0;
}
/* タイトル */
.news-title {
  font-size: 1.6rem;
}
}
/*================================
フッター部分
==================================*/
.footer {
	position: relative;
	background-color: rgba(242, 242, 242, 0.7);
	padding: 40px 30px 20px;
	font-family: "Helvetica Neue", Arial, sans-serif;
	color: #333;
	z-index: -1;/* 2026.1.20追加 */
}
.footer-inner {
	max-width: 1000px;
	margin: 0 auto;
	text-align: left;
}
/* menu */
.footer-nav ul {
    margin-bottom: 40px;
}
.footer-nav li {
    padding: 10px 0;
}
.footer-nav a {
	text-decoration: none;
	color: #333;
	font-size: 1.6rem;
}
.footer-nav a:hover {
	opacity: 0.6;
}

 /* SNS */
.footer-sns {
     margin-bottom: 40px;
}
.sns-title {
	color:#ccc;
	font-weight: bold;
	margin-bottom: 12px;
}
.sns-links {
	display: flex;
	flex-direction: column;
    gap: 10px;
}
.sns-links a {
	display: block;
	text-decoration: none;
	color: #333;
	font-size: 1.6rem;
	margin-bottom: 10px;
}
.instagram{
	display: inline-flex;
	align-items: center;
}
img.icon {
	width: 25px;
	height: auto;
	margin-right: 15px;
}

 /* 会社情報 */
.footer-info {
	font-size: 2.0rem;
	margin-bottom: 35px;
  }
.footer-info p {
	font-size: 2.0rem;
	margin: 4px 0;
}
.footer-info p.tel{
	font-size: 1.4rem;	
}
 /* コピーライト */
.copyright {
	font-size: 12px;
	color: #777;
}

/* トップへ戻るボタン */
.back-to-top {
	position: fixed;
	right: 16px;
	bottom: 16px;
	width: 60px;
	height: 60px;
	opacity: 0.9;
}

@media screen and (min-width: 769px) {
.footer {
	padding: 60px 20px 20px;
  }

  /* ナビを横びに */
.footer-nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	list-style: none;
	padding: 0;
	margin-bottom: 55px;
  }
.footer-nav a {
	font-size: 1.6rem;
}
  /* SNSを横並びに */
.footer-sns {
	margin-bottom: 55px;

  }
.sns-title {
	margin-bottom: 18px;
}
.sns-links {
	flex-direction: row;
	gap: 40px;
	align-items: center;
  }

 /* 会社情報 */
.footer-info {
	margin-bottom: 40px;

}
  /* トップへ戻るボタン */
.back-to-top {
	right: 30px;
	bottom: 30px;
	width: 48px;
	height: 48px;  

  }
}
/*==========================================
左から出るナビ
===========================================*/
.sp-navi-wrapper{
	width:100%;
	height: calc(100% - 60px);
	overflow-y: auto;
	padding: 50px;
	box-sizing: border-box;
	position: fixed;
	z-index: 999;
	background-color: #fff;
	top: 60px;
	transform: translateX(-100%);
	transition: transform .5s ease-in-out;
}
@media only screen and (min-width:769px) /*769px以上*/ {
	.sp-navi-wrapper{
		height: calc(100% - 80px);
		max-width: 400px;
		top: 80px;
	}
}
#sp-navigation.open .sp-navi-wrapper {
	transform: translateX(0);
}
#sp-navigation.open .sp-navi-bg {
	opacity: 1;
}
.sp-navi-bg {
	width: 100%;
	height: 100%;
	backdrop-filter: blur(60px);
	background-color: rgba(255,255,255,0.1);
	z-index: 998;
	position: fixed;
	top: 60px;
	opacity: 0;
	transition: opacity 1s;
}
@media only screen and (min-width:769px) /*769px以上*/ {
	.sp-navi-bg {
		top: 80px;
	}
}
#sp-navigation.hidden {
	display: none;
}

.sp-navi ul{
	width: 100%;
	margin-bottom: 30px;
}
.sp-navi li{
    padding: 24px 0;
    font-size: 1.6rem;
    border-bottom: 1px solid #FFD4D5;
 }
.sp-navi li a{
    display: block;
    display: flex;
    align-items: center;
    position: relative;
    color: #7A7A7A;
}
.sp-navi li a:hover {
	opacity: 0.6;
}
.sp-navi li a:hover::after {
	content: url("../img/heart.png");
	font-size: 16px;
	position: absolute;
	right: 0;
	top: 60%;
	transform: translateY(-50%);
	color: #695f4a;
}
.sp-navi-footer{
	margin-top: auto;
	background: #fff;
	padding: 50px 0 0;
}
.sp-navi-footer .sns-links {
	display: flex;
	flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.sp-navi-footer .sns-links a {
	display: block;
	text-decoration: none;
	color: #333;
	font-size: 1.6rem;
	margin-bottom: 10px;
}
.sp-navi-footer .instagram{
	display: inline-flex;
	align-items: center;
}
.sp-navi-footer img.icon {
	width: 25px;
	height: auto;
	margin-right: 15px;
}
/*================================
下層ページヘッダー部分
==================================*/
.page-header{
	display: flex;
	align-items: center;
	background-size: cover; /* 縦横比を維持して全体を覆う */
	background-position: center; /* 画像を中央に配置 */
	background-repeat: no-repeat; /* 画像の繰り返しを防ぐ */
	width: 100%;
	height: 250px;
	transition: height 0.5s, opacity 1s;
	opacity :1;
	position: relative;
	z-index: -1;
}
.page-header.hide {
	opacity :0;
}

.page-title{
	margin-top: 20px;
	margin-left: 30px;
	text-align: center;
}
.page-title h1{
    font-size: 2.8rem;
    color: #fff;
    line-height: 1.2em;
    text-shadow: 1px 1px 5px #4A4A4A;
}
.page-title p{
    font-size: 1.2rem;
    color: #fff;
    text-shadow: 1px 1px 5px #4A4A4A;
}
@media only screen and (min-width:769px) /*769px以上*/ {
.page-header{
	background-size: cover; /* 縦横比を維持して全体を覆う */
	background-position: center; /* 画像を中央に配置 */
	background-repeat: no-repeat; /* 画像の繰り返しを防ぐ */
	width: 100%;
	height: 420px;
}
.page-title{
	margin-top: 20px;
	margin-left: 100px;
	text-align: center;
}
.page-title h1{
	font-size: 3.2rem;
}
.page-title p{
    font-size: 1.4rem;
}
}
/*================================
Coordinateページ
==================================*/
.header-coordinate{
    background-image: url("../img/header_coordinate.jpg");
}
.coordinate-wrapper{
    max-width: 1000px;
    padding: 50px 0;
    margin: 0 auto;
}
.coordinate-wrapper h1{
    font-size: 2.0rem!important;
    font-weight: 500;
    text-align: center;
    margin-bottom: 70px;
}
p.top-coorde-text{
    margin-top: 70px;
    margin-bottom: 100px;
    font-size: 1.4rem!important;
}
.coordinate {
    margin: 0 auto 150px;
    padding: 0 10px;
}
.coordinate-text {
	width: 100%;
	padding-top: 40px;
}
.coordinate-text p {
	font-size: 1.4rem;
    color: #555;
    text-align: left;
    line-height: 160%;
	margin-bottom: 20px;
}
.coordinate-img{
	width: 100%;
	text-align: center;
}
.coordinate-img img {
	width: 100%;
	height: auto;
}

@media only screen and (min-width:769px) /*769px以上*/ {
p.top-coorde-text{
    font-size: 1.6rem!important;
    margin-top: 100px;
    margin-bottom: 180px;
}
.coordinate {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	max-width: 1000px;
	margin: 0 auto 250px;
}

.coordinate-text {
	width: 50%;
	padding-top: 10px;
	padding-left: 50px;
	padding-right: 20px;
}
.coordinate-text p {
    line-height: 180%;
}
.coordinate-img{
	width: 50%;
    text-align: center;
}
.coordinate-img img {
	max-width: 450px;
	height: auto;
}
}
/*================================
Newsページ
==================================*/
.header-news{
    background-image: url("../img/header_news.jpg");
}
.page-news-wrapper{
    max-width:760px;
    margin: 50px auto;
}
.news-wrapper{
    padding: 20px 10px;
    margin: 0 auto;
}
.news-wrapper{
    margin-top:20px;
}
.page-news-date{
    font-size: 1.6rem;
    color: #e88f8f;
    margin-bottom: 30px;
}
/* タイトル */
.page-news-title {
    font-size: 1.8rem!important;
    font-weight: 600;
    color: #e88f8f;
}
.news-img{
    text-align: center;
}
.news-img img{
    width: 100%;
    max-width: 340px;
    height: auto;
    border-radius: 20px;
}
 /* テキスト */
.page-news-text {
    margin-top: 40px;
} 
/* なび */
.news-nav {
    width: 100%;
    max-width: 400px;
    list-style: none;
    padding: 0;
    margin: 50px auto;
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
}
.news-nav li {
    width: 33.3%;
    padding: 10px;
    text-align: center;
    font-size: 1.2rem;
    border-right: 1px solid #777;
    box-sizing: border-box;
}
.news-nav li a{
    display: block;
    color: #555;
}
.news-nav li a:hover{
    opacity: 0.5;
}
.news-nav li.disabled a{
	pointer-events: none;
	color: #cecece;
}

.news-nav li:last-child {
    border-right: none;
  }
/* news一覧　ページ送り */
nav.pagenation{
	padding: 30px 20px;
    margin: 50px 0;
}
ul.pagenation-list{
	display: flex;
	justify-content: center;
	margin: 0;
	padding: 0;
}
.pagenation-list li{
	margin: 0 5px;
}
.pagenation-list li a span{
	font-size: 1.4rem;
	color: #444;
}
.pagenation-list li a{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 38px;
	height: 38px;
	background: #fff;
	border: solid 1px #e88f8f;
	border-radius: 2px;
	font-size: 1.4rem;
	color: #444;
	transition: all 0.15s linear;
}
.pagenation-list li a:hover,
.pagenation-list li a:active{
	background: #FDEFEF;
	border-radius: 2px;
	border: 1px solid #e88f8f;
}
.pagenation-list li.selected a {
	background-color: #EA8688;
}
.pagenation-list li.selected a span {
	color: #ffffff;
}
@media only screen and (min-width:769px) /*769px以上*/ {
.page-news-wrapper{
    margin: 70px auto;
}
 .news-wrapper{
    width: 100%;
    display: flex;
    padding: 20px 10px;
    margin-top: 50px;
}
.news-img{
    width: 45%;
    text-align: center;
}
.news-img img{
    width: 100%;
    height: auto;
}
 /* テキスト */
.page-news-text {
    width: 55%;
    margin-top: 0;
    margin-left: 60px;
}
.page-news-text p{
    font-size: 1.6rem!important;
}
.news-nav li {
    font-size: 1.3rem;
}
nav.pagenation{
    margin: 50px 0 100px;
}
}
/*================================
shoplistページ
==================================*/
.header-shop{
    background-image: url("../img/header_shop.jpg");
}
.shop-wrapper{
    max-width: 800px;
    margin: 50px auto;
    padding: 0 5px;
}
h1.shop-title{
    font-size: 1.8rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 40px;
    text-align: center;
}
.shop-wrapper p{
    font-size: 1.4rem;
    color: #333;
}
.area-nav {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px; 
}
.area-nav {
    padding-top: 70px;
    padding-bottom: 50px;
}
.area-nav li {
    width: 50%;
    text-align: center;
    font-size: 1.3rem;
    border-right: 1px solid #ccc;
    box-sizing: border-box;
}
.area-nav li:nth-child(2n) {
    border-right: none;
}
.area-nav li a{
    display: block;
    padding: 10px;
}
.area-nav li a:hover{
    background: #FCEEEF;
    opacity: 0.8;
}
h2.area{
    max-width: 800px;
    font-size: 1.4rem;
    color:#7E7E7E;
    font-weight: 500;
    margin: 50px 0 30px;
}
.table-layout {
    width: 100%;
    border-collapse: collapse;
}
.table-layout tr {
    display: block;
    margin-bottom: 20px;
}

.table-layout th,
.table-layout td {
    display: block;
    width: 100%;
    padding: 6px 0;
    text-align: left;
    color: #333;
}

.table-layout th {
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 180%;
}
.table-layout td {
    font-size: 1.3rem;
    padding-bottom: 10px;
    line-height: 180%;
    border-bottom: 1px dotted #474747;
}
@media screen and (min-width: 769px){
.shop-wrapper{
    margin-top: 70px;
    padding-top: 40px;
    }
h1.shop-title{
    font-size: 2.0rem;
    margin-bottom: 60px;
}
.area-nav {
    padding-top: 80px;
    padding-bottom: 30px;
}
.area-nav li {
    width: 25%;
    font-size: 1.2rem;
    text-align: center;
    border-right: 1px solid #ccc;
    box-sizing: border-box;
}
.area-nav li:nth-child(2n) {
    border-right: 1px solid #ccc;
}
.area-nav li:nth-child(4n) {
    border-right: none;
}

h2.area{
    font-size: 1.6rem;
    margin: 80px 0 15px;
    margin-left: 10px;
}
.table-layout tr {
    display: table-row;
    margin-bottom: 0;
  }
.table-layout th,
.table-layout td {
    display: table-cell;
    padding: 40px 10px 15px;
    border-bottom: 1px dotted #474747;
  }
.table-layout th {
    width: 32%;
  }
}
@media screen and (min-width: 1024px) {
.area-nav {
    flex-wrap: nowrap;
    margin-bottom: 80px;
  }
.area-nav li {
    width: 14.3%;
  }
.area-nav li:nth-child(4n) {
    border-right: 1px solid #ccc;
}
.area-nav li:last-child {
    border-right: none;
  }
.area-nav li a{
    padding: 10px 16px;

}

}
/*================================
Aboutページ
==================================*/
.header-about{
    background-image: url("../img/header_about.jpg");
}
.about-title{
    font-size: 2.0rem!important;
    color: #333;
    font-weight: 500;
    margin-bottom: 20px;
}
.layout-about{
    max-width: 700px;
    margin: 0 auto;
}
.layout-about th,
.layout-about td{
   font-size: 1.4rem;
}
@media screen and (min-width: 769px) {
.about-title{
    font-size: 2.2rem!important;
}
.layout-about tr {
    display: table-row;
    margin-bottom: 20px;
  }
.layout-about th,
.layout-about td{
    display: table-cell;
    border-bottom: 1px dotted #474747;
    padding: 50px 15px 20px 20px;
}
.layout-about th {
    width: 25%;
  }
}
@media screen and (min-width: 1025px) {
.layout-about th,
.layout-about td{
   font-size: 1.6rem;
    }
}

/*================================
contactページ
==================================*/
.header-contact{
    background-image: url("../img/header_contact.jpg");
}
.bg-pink{
	background: linear-gradient(
	to bottom,
	#F9E1DF 5%,
	#FCEEEE 5%,
	#FFFFFF 100%
	);
}
.form-bg{
	max-width: 1000px;
	margin: 30px auto 0;
    padding: 40px 30px;
	background-color: #FFF;
	border-radius: 10px;
}
.form-bg p{
    font-size: 1.4rem;
}
.comp-text{
    padding: 50px 20px 10px;
    max-width: 770px;
}
.comp-text h1{
    font-size: 2.0rem;
    color: #E88F8F;
    text-align: center;
}
.comp-text p{
	font-size: 1.6rem;
}
@media only screen and (min-width:769px) /*769px以上*/ {
 .form-bg{
    padding: 80px 120px;
	border-radius: 20px;
}
.form-bg p{
    font-size: 1.6rem;
}
.comp-text{
    padding: 100px 0;
}
.comp-text h1{
    font-size: 2.6rem;
    color: #E88F8F;
}

.comp-text p{
    margin-top: 50px;
	font-size: 1.8rem;
}
}
/*==========================================
エラー
===========================================*/
.error {
	background-color: #ffeaea !important;
}
.error-message {
	color: #ff0000;
	font-size: 1.4rem;
	margin-top: 10px;
}

/*==========================================
スクロールトップボタン
===========================================*/
#scrollTopBtn {
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  z-index: 1000;
  position: fixed;
  transition: opacity .5s;
}

#scrollTopBtn.show {
  opacity: 1;
  pointer-events: auto;
}
