@charset "utf-8";
/* common.css */

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* reset    　　　　　　　　　                                            */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
body, div, textarea, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
dl, dt, dd, ol, ul, li, form, label, table, tr, th, td {
	padding: 0;
	font-weight: normal;
	font-size: 100%;
	margin-bottom: 0px;
	margin-left: 0;
	margin-right: 0;
	margin-top: 0;
}
body {
	-webkit-text-size-adjust: 100%;
}
img {
	vertical-align: bottom;
	border: 0;
}
ol,
ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
* {
  -webkit-box-sizing:border-box;
  -moz-box-sizing:border-box;
  box-sizing:border-box;
}
p,li,th,td,dt,dd,span {
	font-weight: 700;
}
*, *::before, *::after {
  box-sizing: border-box;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* clear fix 　　　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.row:before,
.doc_set:before,
.inner:before,
.cf:before,
.row:after,
.doc_set:after,
.inner:after,
.cf:after {
	content: "";
	display: table;
}

.row:after,
.doc_set:after,
.inner:after,
.cf:after {
	clear: both;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* 基本あれこれ　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
body {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	line-height: 1.8em;
	color: #875921;
}
body:before{
	content: "";
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100vh;
	background-image: url(../images/bg.jpg);
	background-repeat: repeat;
}

/* -- ボックス ----------------------------------------------- */
.inner {
	width: 1100px;
	margin-left: auto;
	margin-right: auto;
}
.doc_set {
	padding-left: 30px;
	padding-right: 30px;
}

/* -- フォント ----------------------------------------------- */
.font_noto-suns {
	font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}
.font_m-plus {
	font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 500; /*500,700,800,900*/
    font-style: normal;
}
.font_roboto {
	font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-variation-settings:
    "wdth" 100;
}

/* -- テキスト ----------------------------------------------- */
.text_cl_pink {
	color: #FF828C;
}
.link_pdf {
	padding-left: 23px;
	min-height: 21px;
	background-image: url(../images/icon_pdf.png);
	background-repeat: no-repeat;
	background-position: left 4px;
	background-size: 17px auto;
}

/* -- フェードイン ----------------------------------------------- */
/* 下から上 */
.fadein_up {
    opacity : 0;
    transform : translate(0px, 100px);
    transition : all 500ms;
}
.fadein_up.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}

/* 左から右 */
.fadein_lr {
    opacity : 0;
    transform : translate(-200px, 0px);
    transition : all 500ms;
}
.fadein_lr.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}

/* 右から左 */
.fadein_rl {
    opacity : 0;
    transform : translate(200px, 0px);
    transition : all 500ms;
}
.fadein_rl.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}

/* その場で */
.fadein_stay {
    opacity : 0;
    transition : all 1000ms;
}
.fadein_stay.scrollin {
    opacity : 1;
}

/* -- 画面開いてすぐにフェードイン ----------------------------------------------- */
/* その場で */
.op_fadeIn{
animation-name:fadeInAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 下から */
.op_fadeUp{
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* 上から */
.op_fadeDown{
animation-name:fadeDownAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeDownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* 左から */
.op_fadeLeft{
animation-name:fadeLeftAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeLeftAnime{
  from {
    opacity: 0;
  transform: translateX(-100px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* 右から */
.op_fadeRight{
animation-name:fadeRightAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
  transform: translateX(100px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* -- マウスオンでフェード ----------------------------------------------- */
a.over {
	webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
a.over:hover {
	opacity: 0.7;
}

/* -- PC・スマホ 表示、非表示 ----------------------------------------------- */
.pc_none {
	display: none;	
}
.sp_none {	
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* 大枠ボックス　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#container {
	display: flex;
	min-height: 100vh;
}
#menu_area {
	width: 550px;
	color: #875921;
	padding-right: 30px;
	display: flex;
	flex-flow: column;
	justify-content: space-around;
	height: 100vh;
	padding-bottom: 20px;
	padding-top: 20px;
	position: fixed;
}
#contents_area {
	width: 550px;
	background-color: #FFFFFF;
	margin-left: 550px;
	padding-bottom: 30px;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* ナビエリア　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#gv_nav {
    margin-left: auto;
}	
#gv_nav ul {
	text-align: center;
}
#gv_nav ul li {
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 900;
	font-size: 20px;
	margin-bottom: 20px;
}
#gv_nav ul li:last-child {
	margin-bottom: 0px;
}
#gv_nav ul li span {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 900;
	font-size: 14px;
	color: rgba(135,89,33,0.60);
	display: block;
	line-height: 1.2em;
	webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
#gv_nav ul li a {
	color: #875921;
	text-decoration: none;
	webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
#gv_nav ul li a:hover {
	opacity: 0.8;
}


/* -- ハンバーガーボタン ----------------------------------------------- */
#navbtn{
    display:none;
}

/* -- ロゴ ----------------------------------------------- */
#logo {
	font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 800;
	text-align: center;
}
#logo img {
	width: 300px;
	height: auto;
}

/* -- SHOPインフォ ----------------------------------------------- */
#shop_info {
	border-top: 1px solid #875921;
	border-bottom: 1px solid #875921;
	padding-top: 20px;
	padding-bottom: 20px;
	display: flex;
}
.shop_box {
	width: 50%;
	padding-left: 20px;
	position: relative;
}
.shop_box:first-child {
	border-right: 1px solid #875921;
}
.shop_box h2 {
	font-size: 20px;
	font-weight: 800;
	margin-bottom: 12px;
}
.shop_box li {
	line-height: 1.6em;
	font-family: "Roboto", sans-serif;
	font-weight: 700;
}
.shop_box li:first-child {
	margin-bottom: 8px;
}
.shop_box li img {
	width: 16px;
	height: auto;
	margin-right: 10px;
	vertical-align: middle;
}
.shop_box li span {
	font-size: 14px;
	font-family: "Noto Sans JP", sans-serif;
}

/* インスタ */
.insta_bt {
	width: 30px;
	position: absolute;
	top: 0px;
	right: 20px;

}
.insta_bt img {
	width: 100%;
	height: auto;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* ボトムリンク　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#bottom_link {
	margin-top: 80px;
	margin-bottom: 40px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
#bottom_link li {
	border-right: 1px solid #875921;
	padding-left: 10px;
	padding-right: 10px;
	line-height: 1.2em;
	font-size: 12px;
	font-weight: 500;
}
#bottom_link li:last-child {
	border-right-style: none;
}
#bottom_link li a {
	color: #875921;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* 米永バナー　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#yonenaga_banner {
	width: 300px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
}
#yonenaga_banner img {
	width: 100%;
	height: auto;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* コピーライト　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#copy {
	text-align: center;
	font-size: 11px;
	font-weight: 500;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* PAGE TOP            　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#page_top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 99;
	margin-left: auto;
	margin-right: auto;
}
#page_top img {
	width:80px;
	height: auto;
}
#page_top:hover {
	animation: poyo .6s ease 0s 1 normal running none;
}
@keyframes poyo {
	from, to { transform: none; }
	10% { transform: scale(1.2); }
	40% { transform: scale(.9); }
	60% { transform: scale(1.04); }
	80% { transform: scale(.98); }
}
#page_top:active {
	animation: push .6s;
}
@keyframes push {
	from, to { transform: none; }
	10% { transform: scale(.8); }
	40% { transform: scale(1.1); }
	60% { transform: scale(.96); }
	80% { transform: scale(1.02); }
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* スマホFIXメニュー　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#sp_fix_contact {
	display: none;
}



















/* ↓↓↓↓↓↓↓↓↓↓ ---以下スマホ--- ↓↓↓↓↓↓↓↓↓↓ */


@media screen and (max-width: 768px) {

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* 基本あれこれ　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
body {
	font-size: 14px;
	line-height: 1.8em;
}
	
/* -- ボックス ----------------------------------------------- */
.inner {
	width: 100%;
}
.doc_set {
	padding-left: 20px;
	padding-right: 20px;
}
	
/* -- PC・スマホ 表示、非表示 ----------------------------------------------- */
.pc_none {
	display: inherit;
}
.sp_none {
	display: none;
}
	
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* 大枠ボックス　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#container {
	display: flex;
	flex-flow: column;
}
#menu_area {
	width: 100%;
	padding-right: 0px;
	display: inherit;
	height: auto;
	order: 2;
	position: static;
}
#contents_area {
	width: calc(100% - 30px);
	margin-left: 15px;
	margin-right: 15px;
	order: 1;
	margin-top: 200px;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* ナビエリア　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#gv_nav {
	position: fixed;
	top: 0;
	left: 0;
	width: calc(100% - 40px);
	height: calc(100vh - 90px);
	background-color: rgba(85,85,85,0.95);
	color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	visibility: hidden;
	opacity: 0;
	/* ふわっと表示 */
	transition: 0.5s ease-in-out;
	margin-top: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
	border-radius: 20px;
}
#gv_nav ul {
	list-style: none;
	text-align: center;
	display: block;
}
#gv_nav ul li {
	margin-left: 0px;
	margin-bottom: 30px;
}
#gv_nav ul li a {
    color: #ffffff;
}
#gv_nav ul li span {
	color: rgba(255,255,255,0.60);
}

/* -- ハンバーガーボタン ----------------------------------------------- */
/* 開く */
#navbtn {
	display: inherit;
	position: fixed;
	top: 0px;
	right: 0px;
	padding-top: 13px;
	padding-right: 13px;
	padding-left: 13px;
	padding-bottom: 15px;
	outline: none;
	border: none;
	background-image: none;
	width: 24px;
	height: 22px;
	cursor: pointer;
	background-color: #333333;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	z-index: 9999;
}
#navbtn::before,
#navbtn::after {
  content : '';
  display: block;
  height: 2px;
  background-color: #ffffff;
  transform: translateY(10px);
  transition: 0.3s ease-in-out;
}
#navbtn::before {
  transform: translateY(-8px);
  box-shadow: 0 10px #ffffff;
}

/* 閉じる */
.open #navbtn {
  z-index: 9999;
}
.open #navbtn::before {
  transform: rotate(-45deg);
  box-shadow: none;
  background-color: #FFFFFF;
}
.open #navbtn::after {
	transform: rotate(45deg);
	box-shadow: none;
	background-color: #FFFFFF;
	margin-top: -1px;
}
	
/* ナビゲーションメニュー 開いた時*/
.open #gv_nav {
  visibility: visible;
  opacity: 1;
  z-index: 9998;
}
	
/* -- ロゴ ----------------------------------------------- */
#logo {
	font-size: 12px;
	margin-bottom: 20px;
	position: absolute;
	top: 50px;
	left: 0px;
	right: 0px;
}
#logo img {
	width: 300px;
}

/* -- SHOPインフォ ----------------------------------------------- */
#shop_info {
	display: flex;
	flex-flow: column;
	padding-top: 0px;
	padding-bottom: 30px;
	margin-bottom: 10px;
	margin-left: 15px;
	margin-right: 15px;
}
.shop_box {
	width: 100%;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 20px;
	padding-bottom: 20px;
}
.shop_box:first-child {
	border-right-style: none;
	border-bottom: 1px solid #875921;
}
.shop_box h2 {
	font-size: 18px;
	margin-bottom: 12px;
}
.shop_box li img {
	width: 14px;
	margin-right: 8px;
}
.shop_box li span {
	font-size: 12px;
}
	
/* インスタ */
.insta_bt {
	width: 30px;
	position: absolute;
	top: 20px;
	right: 20px;

}
	
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* ボトムリンク　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#bottom_link {
	margin-top: 80px;
	margin-bottom: 30px;
	display: inherit;
	border-top: 1px solid #875921;
	margin-left: 20px;
	margin-right: 20px;
}
#bottom_link li {
	border-right-style: none;
	padding-left: 0px;
	padding-right: 0px;
	border-bottom: 1px solid #875921;
	text-align: center;
}
#bottom_link li a {
	color: #875921;
	display: block;
	padding-top: 12px;
	padding-bottom: 12px;
	text-decoration: none;
}
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* 米永バナー　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#yonenaga_banner {
	width: 100%;
	padding-left: 20px;
	padding-right: 20px;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* コピーライト　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#copy {
	font-size: 10px;
}

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* PAGE TOP            　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#page_top {
	bottom: 80px;
	right: 10px;
}
#page_top img {
	width:60px;
}
	
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* スマホFIXメニュー　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#sp_fix_contact {
	background-color: #875921;
	color: #FFFFFF;
	position: fixed;
	z-index: 999;
	bottom: 0px;
	left: 0px;
	right: 0px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
}
.sp_contact {
	width: 50%;
	height: 50px;
	display: flex;
	align-items: center;	
}
.sp_contact:nth-child(1) {
	border-right: 1px solid #FFFFFF;
}
.sp_contact p {
	width: 40%;
	text-align: center;
}
.sp_contact ul {
	width: 60%;
	display: flex;
	justify-content: right;
	padding-right: 10px;
}
.sp_contact li {
}
.sp_contact li img {
	width: 30px;
	height: auto;
	margin-right: 5px;
}
}
