@charset "UTF-8";
/*---------------------------------------*/
/* MIXIN
/*---------------------------------------*/
@import url("./normalize.css");
/* line 82, ../scss/style.scss */
.iteminfo {
  background-color: #DFDFDF;
  border: none;
  font-size: 0.8em;
  padding: 0.5em 15px;
  margin: 0 0 30px !important;
}

/* line 90, ../scss/style.scss */
h3 {
  font-size: 1.2em;
  font-weight: 600;
}

/*---------------------------------------*/
/* 変数宣言
/*---------------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
/*
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
*/
/* HTML5 display-role reset for older browsers */
/* line 32, ../scss/_reset.scss */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* line 36, ../scss/_reset.scss */
body {
  line-height: 1;
}

/* line 39, ../scss/_reset.scss */
ol, ul {
  list-style: none;
}

/* line 42, ../scss/_reset.scss */
blockquote, q {
  quotes: none;
}

/* line 45, ../scss/_reset.scss */
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

/* line 50, ../scss/_reset.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*ブランドベースカラー*/
/*背景色*/
/*中間色*/
/*文字色*/
/*アクセント*/
/* line 5, ../scss/_bscustom.scss */
.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

/* line 10, ../scss/_bscustom.scss */
p, h2 {
  line-height: 1.5;
  letter-spacing: .1em;
  text-align: justify;
}

/* line 15, ../scss/_bscustom.scss */
.btn-block + .btn-block {
  margin-top: 0;
}

/* line 19, ../scss/_bscustom.scss */
.bg-primary {
  background-color: #F39800 !important;
}

/*---------------------------------------*/
/* import宣言
/*---------------------------------------*/
/*@import url(//fonts.googleapis.com/css?family=Open+Sans:400,400italic,600,600italic,700,700italic);*/
/*---------------------------------------*/
/* style
/*---------------------------------------*/
/* line 116, ../scss/style.scss */
p, h2, h4, h1, figure {
  margin: 0;
}

/* line 123, ../scss/style.scss */
html, body {
  width: 100%;
  color: #2b2b2b;
}

/* line 128, ../scss/style.scss */
body {
  /*  フォントの種類  */
  font-family: "游ゴシック体","Yu Gothic",YuGothic,"ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,sans-serif;
  /* カーニングの設定 */
  /* 行間の設定 */
  line-height: 1.5;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: #464646;
}
/* line 146, ../scss/style.scss */
body a {
  text-decoration: none;
}
/* line 149, ../scss/style.scss */
body a:link {
  color: #4E97E5;
}
/* line 152, ../scss/style.scss */
body a:visited {
  color: #464646;
}
/* line 155, ../scss/style.scss */
body a:hover {
  text-decoration: underline;
}
/* line 158, ../scss/style.scss */
body a:active {
  color: color-5th;
  /*		background-color:$color-3rd;*/
}
/* line 162, ../scss/style.scss */
body ul {
  -webkit-padding-start: 0;
}

/* line 170, ../scss/style.scss */
#wrap {
  /*
  	min-width:$min-width;
  	overflow: hidden;
  	@media only screen and (max-width : $minmin-width ){
  		min-width:$minmin-width;
  	}
  */
  /*
  	h1{
  		display:block;
  		width:100%;
  		background-color:$color-base;
  		color:$color-2nd;
  
  		text-align:center; 
  		padding:10px 0;
  
  	}
  */
}

/* line 191, ../scss/style.scss */
.clear {
  clear: both;
}

/*---------------------------------------*/
/* 共通部品
/*---------------------------------------*/
/* bootstrapとの競合のため無効化
.btn{
	padding:10px 30px;
	margin:10px;
	border-radius:5px;
	border:solid 1px $color-4th;
	background-color:$color-2nd;
	float:left;
	position:relative;
	word-wrap: break-word;
	a{
		@include blocklink();
		p{
			display:block;
		}
	}
	a:hover{
		background-color:rgba(256,256,256,0.5);
	}
}
*/
/* line 218, ../scss/style.scss */
.category {
  padding: 5px;
  margin: 5px;
  border-radius: 3px;
}
/* line 222, ../scss/style.scss */
.category p:before {
  content: "#";
}

/* line 226, ../scss/style.scss */
.centering {
  width: 100%;
  overflow: hidden;
  position: relative;
}
/* line 230, ../scss/style.scss */
.centering ul {
  list-style-type: none;
  position: relative;
  float: left;
  left: 50%;
}
/* line 236, ../scss/style.scss */
.centering li {
  position: relative;
  float: left;
  left: -50%;
  /* -50%だったがなぜかずれるので調整*/
}

/* line 244, ../scss/style.scss */
.blocklink a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 90;
}
/* line 248, ../scss/style.scss */
.blocklink a:hover {
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 20;
}

/*---------------------------------------*/
/* セクション定義
/*---------------------------------------*/
/* bxslider 設定 start */
/*まわりの余白消す、ページャーを上にのせる。*/
/* line 260, ../scss/style.scss */
.bx-wrapper {
  margin: 0;
  display: block;
  overflow: hidden;
}
/* line 264, ../scss/style.scss */
.bx-wrapper .bx-viewport {
  -moz-box-shadow: 0;
  -webkit-box-shadow: 0;
  box-shadow: 0;
  border: none;
  left: 0;
  overflow: visible !important;
  /* 両サイドに前後の画像を表示させる */
  margin: 0 auto;
  /* 画面中央にする */
  max-width: 800px;
  width: 100%;
}
/* line 278, ../scss/style.scss */
.bx-wrapper .bx-viewport ul.bxslider li a img {
  max-width: 800px;
  width: 100%;
}
/* line 286, ../scss/style.scss */
.bx-wrapper .bx-pager {
  float: left;
  position: absolute;
  bottom: 45px;
  font-size: 200%;
}
/* line 293, ../scss/style.scss */
.bx-wrapper .bx-pager-link {
  background-color: #ffffff;
  display: block;
  width: 20px;
  height: 10px;
  margin: 5px;
  padding-top: 10px;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
}
/* line 305, ../scss/style.scss */
.bx-wrapper .active {
  background-color: #FFF33F;
}

/* line 310, ../scss/style.scss */
.section {
  overflow: hidden;
}

/*---------------------------------------*/
/* Newsリスト
/*---------------------------------------*/
/*---------------------------------------*/
/* 商品リスト
/*---------------------------------------*/
/*---------------------------------------*/
/* item_detail
/*---------------------------------------*/
/* line 327, ../scss/style.scss */
.italic {
  font-style: italic;
}

/*---------------------------------------*/
/* news_content
/*---------------------------------------*/
/* line 336, ../scss/style.scss */
.news_contents_wrap {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
}
/* line 344, ../scss/style.scss */
.news_contents_wrap h2 {
  font-size: 1em;
  font-weight: 600;
}
/* line 348, ../scss/style.scss */
.news_contents_wrap .news_contents_topimg {
  width: 100%;
  height: 80vh;
  background-position: center;
  background-size: cover;
}
/* line 355, ../scss/style.scss */
.news_contents_wrap .news_contents_title {
  font-size: 1.625em;
  font-weight: 600;
}
/* line 359, ../scss/style.scss */
.news_contents_wrap .news_contents_date {
  font-size: 0.7em;
  /*		background-color:$color-4th;*/
  /*		color:$color-2nd;*/
  padding: 3px;
  margin-top: 20px;
  /*text-align:right;*/
  margin-bottom: 5px;
}
/* line 368, ../scss/style.scss */
.news_contents_wrap .news_contents_main {
  line-height: 1.5em;
}
/* line 21, ../scss/style.scss */
.news_contents_wrap .news_contents_main h1 {
  font-size: 1.8em;
  font-weight: 800;
  letter-spacing: 0.1em;
  font-family: Avenir , "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
/* line 27, ../scss/style.scss */
.news_contents_wrap .news_contents_main h2 {
  font-size: 1.5em;
  font-weight: 600;
  margin: 0 0 30px;
  padding-bottom: 10px;
}
/* line 36, ../scss/style.scss */
.news_contents_wrap .news_contents_main h3 {
  font-size: 1.2em;
  margin: 30px 0;
  font-weight: 600;
  background-color: #EDEAE0;
  padding: 0.5em 15px;
  border: none;
  font-weight: 600;
}
/* line 45, ../scss/style.scss */
.news_contents_wrap .news_contents_main h4 {
  font-weight: 600;
  font-size: 1em;
  border-left: 5px solid #FFF33F;
  padding-left: 10px;
  margin-bottom: 15px;
}
/* line 52, ../scss/style.scss */
.news_contents_wrap .news_contents_main p {
  margin-bottom: 40px;
}
/* line 56, ../scss/style.scss */
.news_contents_wrap .news_contents_main figure.wp-block-table {
  margin-bottom: 30px;
}
/* line 61, ../scss/style.scss */
.news_contents_wrap .news_contents_main figure.wp-block-table table tbody tr td {
  border: 1px solid #C1C1C1;
  padding: 0.5em 10px;
}
/* line 69, ../scss/style.scss */
.news_contents_wrap .news_contents_main figcaption {
  padding: 3px 10px;
  margin-top: 0;
  font-size: smaller;
  background-color: #f5f5f5;
}
/* line 75, ../scss/style.scss */
.news_contents_wrap .news_contents_main figcaption:before {
  content: '▲ ';
  background-color: #f5f5f5;
}
/* line 372, ../scss/style.scss */
.news_contents_wrap .news_contents_main .contentbtn {
  margin: 20px 0;
  text-align: center;
  padding: 20px 30px;
  display: inline-block;
  background-color: #FFF33F;
  color: #ffffff;
  border-radius: 40px;
}
/* line 382, ../scss/style.scss */
.news_contents_wrap .news_contents_footer {
  width: 80%;
  margin: 10px auto;
  border: solid #C8C8C8 1px;
  padding: 10px;
}
/* line 387, ../scss/style.scss */
.news_contents_wrap .news_contents_footer ul {
  margin: 0;
  padding: 0;
}
/* line 391, ../scss/style.scss */
.news_contents_wrap .news_contents_footer li {
  display: inline;
  width: auto;
  padding: 2px;
  margin: 2px;
  color: #464646;
}
/* line 397, ../scss/style.scss */
.news_contents_wrap .news_contents_footer li:before {
  content: "#";
}

/* line 407, ../scss/style.scss */
ul.bxslider {
  padding: 0;
  /* または padding-left: 0; */
  margin: 0;
}

/*---------------------------------------*/
/* top画面バナー
/*---------------------------------------*/
/* line 415, ../scss/style.scss */
.honbun {
  line-height: 1.5em;
  /*
  	p{
  		display:block;
  		width:90%;
  		padding:0 5%;
  		margin:20px 0;
  	}
  
  	img{
  		width:96%;
  		height:auto;
  		//max-width:70%;
  		margin:10px 0;
  		padding:2%;
  		border:solid $color-3rd 1px;
  		//float:left;
  	}
  */
}
/* line 21, ../scss/style.scss */
.honbun h1 {
  font-size: 1.8em;
  font-weight: 800;
  letter-spacing: 0.1em;
  font-family: Avenir , "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
/* line 27, ../scss/style.scss */
.honbun h2 {
  font-size: 1.5em;
  font-weight: 600;
  margin: 0 0 30px;
  padding-bottom: 10px;
}
/* line 36, ../scss/style.scss */
.honbun h3 {
  font-size: 1.2em;
  margin: 30px 0;
  font-weight: 600;
  background-color: #EDEAE0;
  padding: 0.5em 15px;
  border: none;
  font-weight: 600;
}
/* line 45, ../scss/style.scss */
.honbun h4 {
  font-weight: 600;
  font-size: 1em;
  border-left: 5px solid #FFF33F;
  padding-left: 10px;
  margin-bottom: 15px;
}
/* line 52, ../scss/style.scss */
.honbun p {
  margin-bottom: 40px;
}
/* line 56, ../scss/style.scss */
.honbun figure.wp-block-table {
  margin-bottom: 30px;
}
/* line 61, ../scss/style.scss */
.honbun figure.wp-block-table table tbody tr td {
  border: 1px solid #C1C1C1;
  padding: 0.5em 10px;
}
/* line 69, ../scss/style.scss */
.honbun figcaption {
  padding: 3px 10px;
  margin-top: 0;
  font-size: smaller;
  background-color: #f5f5f5;
}
/* line 75, ../scss/style.scss */
.honbun figcaption:before {
  content: '▲ ';
  background-color: #f5f5f5;
}

/* line 444, ../scss/style.scss */
.ggmap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

/* line 452, ../scss/style.scss */
.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* line 463, ../scss/style.scss */
.fb_iframe_widget,
.fb_iframe_widget span,
.fb_iframe_widget iframe[style] {
  width: 100% !important;
}

/* line 470, ../scss/style.scss */
#content img {
  width: 100%;
  height: auto;
}

/* line 476, ../scss/style.scss */
.twitter-widget-wrapper iframe {
  width: 740px !important;
}

/* line 482, ../scss/style.scss */
#navbarNavAltMarkup i {
  margin-top: 6px;
}
