@charset "UTF-8";
/* -------------------------------
 * google font
 * Signika
 * https://fonts.google.com/specimen/Signika
 * -------------------------------- */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans:400,700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700&display=swap&subset=japanese");
.en {
  font-family: 'Noto Sans', sans-serif;
}

.ja {
  font-family: 'Noto Sans JP', sans-serif;
}

.telphone {
  font-family: 'Noto Sans', sans-serif;
  letter-spacing: normal;
}
.telphone small {
  font-size: 0.75em;
}

/* -------------------------------
	default
-------------------------------- */
/* IE スクロールバーを外側へ */
@-ms-viewport {
  width: auto;
  initial-scale: 1;
}
@viewport {
  width: device-width;
  initial-scale: 1;
}
body {
  letter-spacing: 0.05em;
}

ul {
  padding-left: 1.5em;
}

p + h4, p + .h4, p + h5, p + .h5, p + h6, p + .h6, ul + h4, ul + .h4, ul + h5, ul + .h5, ul + h6, ul + .h6, ol + h4, ol + .h4, ol + h5, ol + .h5, ol + h6, ol + .h6, dl + h4, dl + .h4, dl + h5, dl + .h5, dl + h6, dl + .h6, table + h4, table + .h4, table + h5, table + .h5, table + h6, table + .h6 {
  margin-top: 1.5em;
}

@media (max-width: 1199px) {
  h1, .h1 {
    font-size: 26px;
    font-size: calc(26px + 14 * (100vw - 320px) / 880);
  }

  h2, .h2 {
    font-size: 22px;
    font-size: calc(22px + 13 * (100vw - 320px) / 880);
  }

  h3, .h3 {
    font-size: 20px;
    font-size: calc(20px + 10 * (100vw - 320px) / 880);
  }

  h4, .h4 {
    font-size: 18px;
    font-size: calc(18px + 6 * (100vw - 320px) / 880);
  }

  h5, .h5 {
    font-size: 16px;
    font-size: calc(16px + 2 * (100vw - 320px) / 880);
  }
}
/* ----- row ----- */
.row-10 {
  margin-left: -5px;
  margin-right: -5px;
}
.row-10 > [class^="col-"], .row-10 > [class*=" col-"] {
  padding-left: 5px;
  padding-right: 5px;
}

.row-20 {
  margin-left: -10px;
  margin-right: -10px;
}
.row-20 > [class^="col-"], .row-20 > [class*=" col-"] {
  padding-left: 10px;
  padding-right: 10px;
}

.row-gallery {
  margin-left: -5px;
  margin-right: -5px;
}
.row-gallery > [class^="col-"], .row-gallery > [class*=" col-"] {
  padding-left: 5px;
  padding-right: 5px;
}
@media print, screen and (min-width: 768px) {
  .row-gallery {
    margin-left: -10px;
    margin-right: -10px;
  }
  .row-gallery > [class^="col-"], .row-gallery > [class*=" col-"] {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media print, screen and (min-width: 1200px) {
  .row-gallery {
    margin-left: -15px;
    margin-right: -15px;
  }
  .row-gallery > [class^="col-"], .row-gallery > [class*=" col-"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* -------------------------------
	form
-------------------------------- */
/* form */
input[type="text"], input[type="tel"], input[type="password"], textarea {
  width: 100%;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 0px;
  vertical-align: middle;
}
input[type="text"]:-moz-placeholder, input[type="tel"]:-moz-placeholder, input[type="password"]:-moz-placeholder, textarea:-moz-placeholder {
  color: #aaa;
}
input[type="text"]::-webkit-input-placeholder, input[type="tel"]::-webkit-input-placeholder, input[type="password"]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #aaa;
}
input[type="text"]:-ms-input-placeholder, input[type="tel"]:-ms-input-placeholder, input[type="password"]:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #aaa;
}

input:focus[type="text"], input:focus[type="tel"], input:focus[type="password"], textarea:focus {
  padding: 5px;
  border: 1px solid #3d3d3d;
  background-color: #FFFFF7;
  outline: none;
}

input[type="radio"], input[type="checkbox"] {
  position: relative;
  top: 2px;
}

button {
  outline: none;
}
button:hover, button:focus {
  outline: none;
}

/* ラジオボタン */
.label-radio {
  cursor: pointer;
  color: #111;
  font-weight: normal;
  letter-spacing: 0;
  display: inline-block;
  position: relative;
  margin-right: 15px;
}
.label-radio input[type="radio"] {
  display: none;
}
.label-radio .lever:before {
  content: '';
  border: 1px solid #957A68;
  width: 0.9em;
  height: 0.9em;
  margin-right: 5px;
  top: -0.1em;
  display: inline-block;
  vertical-align: middle;
  border-radius: 10px;
  position: relative;
  -moz-transition: all 800ms cubic-bezier(1, 0, 0, 1);
  -webkit-transition: all 800ms cubic-bezier(1, 0, 0, 1);
  transition: all 800ms cubic-bezier(1, 0, 0, 1);
}
.label-radio .lever:after {
  content: '';
  opacity: 0;
  position: absolute;
  left: 0.25em;
  top: 0px;
  width: 0.5em;
  height: 0.75em;
  border-right: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
  transform: rotate(-200deg);
  -moz-transition: all 400ms cubic-bezier(1, 0, 0, 1);
  -webkit-transition: all 400ms cubic-bezier(1, 0, 0, 1);
  transition: all 400ms cubic-bezier(1, 0, 0, 1);
}
.label-radio input[type="radio"]:checked + .lever:after {
  opacity: 1;
  position: absolute;
  left: 0.25em;
  top: 0.25em;
  width: 0.5em;
  height: 0.75em;
  border-right: 2px solid #392f28;
  border-bottom: 2px solid #392f28;
  -moz-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
}

/* チェックボックス */
.label-checkbox {
  cursor: pointer;
  color: #111;
  font-weight: normal;
  letter-spacing: 0;
  display: inline-block;
  position: relative;
  margin: 3px 20px 3px 0px;
}
.label-checkbox input[type="checkbox"] {
  display: none;
}
.label-checkbox .lever:before {
  content: '';
  border: 1px solid #aaa;
  width: 1.2em;
  height: 1.2em;
  margin-right: 5px;
  top: -0.1em;
  display: inline-block;
  vertical-align: middle;
  border-radius: 0px;
  position: relative;
  -moz-transition: all 800ms cubic-bezier(1, 0, 0, 1);
  -webkit-transition: all 800ms cubic-bezier(1, 0, 0, 1);
  transition: all 800ms cubic-bezier(1, 0, 0, 1);
}
.label-checkbox .lever:after {
  content: '';
  opacity: 0;
  position: absolute;
  left: 0.5em;
  top: 0px;
  width: 0.65em;
  height: 1.25em;
  border-right: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
  -moz-transform: rotate(-200deg);
  -ms-transform: rotate(-200deg);
  -webkit-transform: rotate(-200deg);
  transform: rotate(-200deg);
  -moz-transition: all 400ms cubic-bezier(1, 0, 0, 1);
  -webkit-transition: all 400ms cubic-bezier(1, 0, 0, 1);
  transition: all 400ms cubic-bezier(1, 0, 0, 1);
}
.label-checkbox input[type="checkbox"]:checked + .lever:after {
  opacity: 1;
  position: absolute;
  left: 0.5em;
  top: -.2em;
  width: 0.65em;
  height: 1.25em;
  border-right: 2px solid #222;
  border-bottom: 2px solid #222;
  -moz-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
}

/* -------------------------------
	header
-------------------------------- */
#header {
  background-color: #ffe244;
}
#header h1 {
  font-size: 14px;
  line-height: 1.2;
  margin: 0;
  width: 210px;
}
@media print, screen and (min-width: 768px) {
  #header .row-flex {
    min-height: 100px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  #header h1 {
    width: auto;
  }
}

.head_content {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  margin: 0 -10px;
}
.head_content > div {
  padding: 0 10px;
}
.head_content .telphone {
  font-size: 15px;
}
.head_content .sns {
  font-size: 18px;
}
.head_content .sns a {
  color: #000;
  text-decoration: none;
}
.head_content .sns a:hover {
  color: #00a7e6;
}
.head_content .search {
  -webkit-flex: 0 0 282px;
  flex: 0 0 282px;
  max-width: 282px;
}

.head_navi {
  float: right;
  margin-top: 12px;
}
.head_navi > ul {
  list-style: none;
  padding: 0;
  margin: 0 -8px;
}
.head_navi > ul > li {
  font-size: 13px;
  float: left;
  padding: 0 8px;
}
.head_navi > ul > li > a {
  color: #000;
  font-weight: bold;
  text-decoration: none;
  display: block;
  position: relative;
}
.head_navi > ul > li > a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  background-color: #000;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  visibility: hidden;
}
.head_navi > ul > li.active > a:after, .head_navi > ul > li > a:hover:after {
  transform: scaleX(1);
  visibility: visible;
}
@media print, screen and (min-width: 992px) {
  .head_navi > ul {
    margin: 0 -15px;
  }
  .head_navi > ul > li {
    font-size: 16px;
    padding: 0 15px;
  }
}

/* -------------------------------
	gNavi
-------------------------------- */
#gNavi {
  height: 60px;
  background-color: #ffe244;
  position: relative;
  z-index: 9999;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: none;
}
#gNavi .list-gnav {
  list-style: none;
  padding: 0;
  margin: 0 -10px;
  display: -webkit-flex;
  display: flex;
}
#gNavi .list-gnav a {
  text-decoration: none;
}
#gNavi .list-gnav > li {
  font-size: 13px;
  font-weight: bold;
  padding: 0 10px;
  position: relative;
}
#gNavi .list-gnav > li > a {
  color: #000;
  display: block;
  position: relative;
}
#gNavi .list-gnav > li > a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  background-color: #000;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  visibility: hidden;
}
#gNavi .list-gnav > li > a:hover:after, #gNavi .list-gnav > li.active > a:after {
  transform: scaleX(1);
  visibility: visible;
}
@media print, screen and (min-width: 768px) {
  #gNavi {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -moz-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    -webkit-transform: translate(0, -100%);
    transform: translate(0, -100%);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 10;
    visibility: hidden;
  }
}
@media print, screen and (min-width: 992px) {
  #gNavi .list-gnav {
    margin: 0 -15px;
  }
  #gNavi .list-gnav > li {
    font-size: 16px;
    padding: 0 15px;
  }
}

.fixed-top #gNavi {
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  visibility: visible;
}

@media print {
  #gNavi {
    display: none;
  }
}
/* -------------------------------
 スマホ用　サイドメニュー
-------------------------------- */
.menuWrapper {
  display: none;
  position: fixed;
  right: 5px;
  top: 5px;
  z-index: 9999;
  width: 50px;
  height: 50px;
}

#menuButton {
  overflow: hidden;
  display: block;
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
#menuButton span, #menuButton:before, #menuButton:after {
  display: block;
  position: absolute;
  top: -8px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 36px;
  height: 3px;
  margin: auto;
  background: #FF9600;
}
#menuButton span {
  overflow: hidden;
  z-index: 1;
  color: #FF9600;
}
#menuButton:before {
  z-index: 2;
  transform: translate(0, -10px);
  content: "";
}
#menuButton:after {
  z-index: 2;
  transform: translate(0, 10px);
  content: "";
}
#menuButton small {
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  color: #FF9600;
  font-family: 'Noto Sans', sans-serif;
  font-size: 10px;
  line-height: normal;
  text-align: center;
  display: block;
}

/* アニメーション */
#menuButton span {
  opacity: 1;
  transition: opacity 150ms 50ms;
}
#menuButton::before, #menuButton::after {
  transition: transform 200ms;
}
.side-open #menuButton span {
  opacity: 0;
  transition: opacity 150ms;
}
.side-open #menuButton::before {
  transform: rotate(45deg);
}
.side-open #menuButton::after {
  transform: rotate(-45deg);
}

/* ----- 初期設定 ----- */
.overlay {
  content: '';
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 3;
}

/* 開閉用ボタンの位置 */
.menuWrapper {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/**/
#sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 260px;
  height: 100%;
  text-align: left;
  background: #ffe244;
  display: none;
  -webkit-transform: translate3d(260px, 0, 0);
  transform: translate3d(260px, 0, 0);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow-y: auto;
  z-index: 990;
}

/* サイドメニューオープン */
.side-open #sidebar {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.side-open .menuWrapper {
  -webkit-transform: translate3d(-260px, 0, 0);
  transform: translate3d(-260px, 0, 0);
}
.side-open .overlay {
  visibility: visible;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.7);
}

/* 768以上で解除 */
@media (max-width: 767px) {
  #sidebar, .menuWrapper, .overlay {
    display: block;
  }
}
@media print {
  #sidebar, .menuWrapper, .overlay {
    display: none !important;
  }
}
/* ----- design ----- */
#sidebar .search {
  padding: 10px 10px;
}

.side-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.side-menu .navmenu a {
  color: #000;
  text-decoration: none;
  display: block;
  padding: 5px 15px;
  position: relative;
}
.side-menu .navmenu a:before {
  content: "";
  position: absolute;
}
.side-menu .navmenu a:hover {
  text-decoration: none;
}
.side-menu .navmenu > li {
  border-bottom: solid 1px #fff;
}
.side-menu .navmenu > li > a {
  padding: 15px 30px 15px 15px;
  display: block;
  position: relative;
}
.side-menu .navmenu > li > a:before {
  right: 10px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.side-menu .navmenu > li.active > a, .side-menu .navmenu > li > a:hover {
  background-color: #FFF08D;
}
.side-menu .submenu > a:before {
  display: none;
}
.side-menu .submenu > a .plus {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 14px;
  height: 14px;
  display: block;
  margin-top: -1px;
}
.side-menu .submenu > a .plus:before, .side-menu .submenu > a .plus:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.side-menu .submenu > a .plus:before {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}
.side-menu .submenu > a .plus:after {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}
.side-menu .submenu > a.sub-open .plus:before {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  opacity: 0;
}
.side-menu .submenu > a.sub-open .plus:after {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.side-menu .submenu ul {
  display: none;
}
.side-menu ul ul .submenu > a .plus {
  position: absolute;
  top: 50%;
  right: 6px;
  width: 10px !important;
  height: 10px !important;
  margin-top: -1px;
}

/* -------------------------------
	footer
-------------------------------- */
#footer {
  position: relative;
  overflow: hidden;
}

.foot_content {
  color: #333;
  font-size: 14px;
  padding: 30px 0 15px;
  background-color: #ffe244;
}
.foot_content .mb {
  margin-bottom: 15px;
}
.foot_content h3 {
  font-size: 14px;
  line-height: normal;
  margin-bottom: 20px;
}
.foot_content h4 {
  font-size: 14px;
  font-weight: bold;
}
.foot_content .telphone {
  font-size: 20px;
  margin-bottom: 10px;
}
.foot_content .foot_box_a {
  font-size: 13px;
  padding: 10px;
  background-color: #fff;
}
.foot_content .foot_box_a .img {
  width: 120px;
  display: block;
  margin-bottom: 10px;
}
@media print, screen and (min-width: 768px) {
  .foot_content {
    padding: 60px 0 30px;
  }
  .foot_content .mb {
    margin-bottom: 30px;
  }
}
@media print, screen and (min-width: 992px) {
  .foot_content .foot_box_a {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .foot_content .foot_box_a .img {
    width: auto;
    -webkit-flex: 0 0 150px;
    flex: 0 0 150px;
    max-width: 150px;
    margin-bottom: 0;
  }
  .foot_content .foot_box_a .in {
    display: block;
    -webkit-flex: 1;
    flex: 1;
    padding-left: 20px;
  }
}

/**/
.foot_content_b {
  color: #fff;
  padding: 30px 0;
  background-color: #000;
}
.foot_content_b .foot_navi {
  display: none;
  text-align: center;
}
.foot_content_b .foot_navi ul {
  list-style: none;
  padding: 0;
  margin: 0 -1em;
}
.foot_content_b .foot_navi ul li {
  display: inline;
  margin: 0 1em;
}
.foot_content_b .foot_navi ul li a {
  color: #fff;
  text-decoration: none;
}
.foot_content_b .foot_navi ul li a:hover {
  text-decoration: underline;
}
.foot_content_b .copyright {
  color: #666;
  font-size: 12px;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .foot_content_b .foot_navi {
    display: block;
  }
  .foot_content_b .copyright {
    margin-top: 25px;
  }
}

/* -------------------------------
	main
-------------------------------- */
#wrapper {
  overflow: hidden;
}

/* -------------------------------
	main title
-------------------------------- */
.main_ttl {
  height: 320px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  background-color: #ccc;
  position: relative;
  z-index: 0;
}
.main_ttl > img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover; object-position: 50% 50%;';
  object-position: 50% 50%;
  /* 中央寄せ　横/縦 */
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.main_ttl .container {
  text-align: center;
}
.main_ttl .container h2 {
  color: #fff;
  margin: 0;
  text-shadow: 0 0 5px #000, 0 0 3px #000, 0 0 1px #000;
}
.main_ttl .container h2 .en {
  font-size: 0.4em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-top: 0.5em;
}
.main_ttl.main_ttl_product {
  height: 250px;
  background-color: #030900;
}
@media (max-width: 1199px) {
  .main_ttl {
    height: calc(120px + 200 * (100vw - 320px) / 880);
  }
  .main_ttl.main_ttl_product {
    height: calc(120px + 130 * (100vw - 320px) / 880);
  }
}

/* -------------------------------
	title
-------------------------------- */
.hh_ttl_1 {
  text-align: center;
  margin-bottom: 1.5em;
}
.hh_ttl_1 .en {
  font-size: 16px;
  letter-spacing: 0.1em;
  display: block;
}

.hh_ttl_2 {
  border-bottom: solid 1px #ddd;
  padding-bottom: 1em;
  margin-bottom: 1.5em;
}

.hh_ttl_3 {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.hh_ttl_3:after {
  content: "";
  -webkit-flex: 1;
  flex: 1;
  height: 1px;
  background: #444;
  display: block;
  margin-left: .8em;
}
.hh_ttl_3 .in {
  display: block;
}

.hh_ttl_4 {
  border-left: solid 5px #ffe244;
  padding-left: 15px;
}

/* -------------------------------
	pagetop
-------------------------------- */
#pagetop {
  position: fixed;
  right: 20px;
  bottom: 0px;
  display: none;
}
@media (max-width: 767px) {
  #pagetop {
    right: 0;
    bottom: 0;
  }
  #pagetop img {
    width: 56px;
  }
}

/* -------------------------------
	anchor
-------------------------------- */
.anchor {
  margin-top: -60px;
  padding-top: 60px;
}

/* -------------------------------
	背景固定
	iPhon, iPadは不具合がある為、jQueryで解除する
-------------------------------- */
.fixed-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
}

/* -------------------------------
	box
-------------------------------- */
.box-padding-a {
  padding-top: 30px;
  padding-bottom: 15px;
}
.box-padding-a .mb {
  margin-bottom: 15px;
}

.box-padding-b {
  padding: 3.448%;
}

.box-padding-c {
  padding-top: 20px;
  padding-bottom: 10px;
}
.box-padding-c .mb {
  margin-bottom: 10px;
}

@media print, screen and (min-width: 768px) {
  .box-padding-a {
    padding-top: 60px;
    padding-bottom: 30px;
  }
  .box-padding-a .mb {
    margin-bottom: 30px;
  }

  .box-padding-c {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  .box-padding-c .mb {
    margin-bottom: 20px;
  }
}
/* -------------------------------
	hr
-------------------------------- */
.hr_style_a {
  margin: 20px 0;
  border-top: dotted 3px #000;
}
@media print, screen and (min-width: 768px) {
  .hr_style_a {
    margin: 40px 0;
  }
}

/* -------------------------------
	画像
-------------------------------- */
/* 画像を枠に収める */
.photo-ofi {
  height: 0;
  display: block;
  padding-bottom: 75%;
  background-color: #333;
  overflow: hidden;
  position: relative;
}
.photo-ofi img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  font-family: 'object-fit: scale-down; object-position: 50% 50%;';
  object-position: 50% 50%;
  /* 中央寄せ　横/縦 */
  position: absolute;
  left: 0;
  top: 0;
}
.photo-ofi a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.photo-ofi a.swipe {
  z-index: 0;
}
.photo-ofi a.swipe:after {
  content: "\f00e";
  position: absolute;
  left: 50%;
  top: 50%;
  color: #fff;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 15px;
  line-height: 2;
  text-align: center;
  width: 2em;
  margin: -1em 0 0 -1em;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.7);
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -moz-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  -webkit-transform: scale(0, 0);
  transform: scale(0, 0);
  z-index: 10;
}
.photo-ofi a.swipe:hover:after {
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

/* トリミング */
.cover img {
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

/* -------------------------------
	googleカレンダー
-------------------------------- */
.googlecalendar {
  width: 100%;
  margin: 0;
}
.googlecalendar .googlecal {
  position: relative;
  padding-bottom: 100%;
  height: 0;
}
.googlecalendar .googlecal iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.apple .googlecalendar .googlecal iframe {
  width: calc(100vw - 80px);
}
@media only screen and (min-width: 768px) {
  .googlecalendar .googlecal {
    padding-bottom: 82%;
  }
}

/* -------------------------------
	googlemap
-------------------------------- */
.googlemap {
  position: relative;
  padding-bottom: 66.666%;
  /*これが縦横比*/
  height: 0;
  background-color: #f8f8f8;
  overflow: hidden;
  z-index: 0;
}
.googlemap:before {
  color: #ccc;
  font-size: 43px;
  content: "google map";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}
.googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
@media print, screen and (min-width: 768px) {
  .googlemap {
    padding-bottom: 480px;
  }
}

/* -------------------------------
	検索フォーム
-------------------------------- */
.form_group {
  position: relative;
}
.form_group input {
  line-height: 36px;
  height: 36px;
}
.form_group input[type="text"] {
  color: #333;
  width: 100%;
  padding: 5px 46px 5px 10px;
  border: none;
  border-radius: 0 !important;
}
.form_group input[type="text"]:-moz-placeholder {
  color: #999;
  font-size: 15px;
}
.form_group input[type="text"]::-webkit-input-placeholder {
  color: #999;
  font-size: 15px;
}
.form_group input[type="text"]:-ms-input-placeholder {
  color: #999;
  font-size: 15px;
}
.form_group input:focus[type="text"] {
  border-color: #ccc;
  background-color: #FFFEF6;
}
.form_group .btn {
  color: #999;
  font-size: 18px;
  line-height: 36px;
  text-align: center;
  height: 36px;
  border-radius: 0;
  padding: 0;
  -webkit-flex: 0 0 46px;
  flex: 0 0 46px;
  width: 46px;
  background-color: rgba(255, 255, 255, 0);
  position: absolute;
  right: 0;
  top: 0;
}
.form_group .btn:hover {
  color: #333;
}

/* -------------------------------
	商品一覧
-------------------------------- */
.product_lists {
  margin: 0 -10px;
  *zoom: 1;
}
.product_lists:after {
  content: "";
  display: table;
  clear: both;
}
.product_lists .col {
  float: left;
  width: 50%;
  padding: 0 10px;
  margin-bottom: 15px;
}
.product_lists .col figure {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  position: relative;
}
.product_lists .col figure .photo-ofi {
  background-color: #333;
}
.product_lists .col figure .photo-ofi img {
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.product_lists .col figure figcaption {
  padding-top: 5px;
  margin-bottom:40px;
}
.product_lists .col figure figcaption .title {
  font-size: 13px;
  font-weight: bold;
  line-height: 1.5;
  margin: 0;
  /*overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;*/
}
.product_lists .col figure figcaption .maker {
  font-size: 12px;
  font-weight: normal;
  line-height: 1.5;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.product_lists .col figure figcaption .teido {
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  font-size: 12px;
  line-height: 1.3333;
  padding: 5px 10px;
  background-color: rgba(223, 187, 0, 0.9);
}
.product_lists .col figure figcaption .price {
  color: #cc0000;
  font-family: 'Noto Sans', sans-serif;
  font-size: 20px;
  text-align: right;
  line-height: 1.2;
  position:absolute;
  bottom:-40px;
  right:0;
}
@media print, screen and (min-width: 768px) {
.product_lists .col figure figcaption .price {
  color: #cc0000;
  font-family: 'Noto Sans', sans-serif;
  font-size: 20px;
  text-align: right;
  line-height: 1.2;
  position:absolute;
  bottom:-35px;
  right:0;
}
}


.product_lists .col figure figcaption .price small {
  font-size: 13px;
}
.product_lists .col figure figcaption > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  opacity: 0;
}
.product_lists .col figure:hover .photo-ofi img {
  opacity: 0.6;
}
@media print, screen and (min-width: 544px) {
  .product_lists .col {
    width: 33.3333%;
  }
}
@media print, screen and (min-width: 768px) {
  .product_lists .col {
    width: 25%;
  }
}
@media print, screen and (min-width: 992px) {
  .product_lists .col {
    width: 20%;
  }
}

/* -------------------------------
	table
-------------------------------- */
.table-style-a {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  margin-bottom: 1em;
}
.table-style-a > tbody > tr > th, .table-style-a > tbody > tr > td {
  padding: 10px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
}
.table-style-a > tbody > tr > th {
  color: #fff;
  background-color: #222;
}
.table-style-a > tbody > tr > td {
  background-color: #fff;
}

@media only screen and (max-width: 640px) {
  .table-inline tr {
    width: 100%;
    display: inline-block;
  }
  .table-inline tr th, .table-inline tr td {
    width: 100% !important;
    display: block;
  }
}
/* -------------------------------
	list
-------------------------------- */
.list-icon {
  list-style: none;
  padding: 0;
}
.list-icon li {
  line-height: 1.334;
  padding-left: 1.2em;
  margin-bottom: 0.8em;
  position: relative;
}
.list-icon li:last-child {
  margin-bottom: 0;
}
.list-icon li i {
  line-height: 1.334;
  position: absolute;
  left: 0;
}

.list-inline-slash {
  list-style: none;
  letter-spacing: -.4em;
  padding: 0;
}
.list-inline-slash li {
  letter-spacing: 0.05em;
  display: inline-block;
}
.list-inline-slash li:after {
  content: "／";
  padding: 0 0.5em;
}
.list-inline-slash li:last-child:after {
  content: "";
}

/**/
.list-line-a {
  list-style: none;
  padding: 0;
}
.list-line-a li {
  padding-left: 1.5em;
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: dotted 1px #ccc;
  position: relative;
}
.list-line-a li:before {
  content: "\f105";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0.5em;
}

/**/
.list-kome {
  list-style: none;
  padding: 0;
}
.list-kome li {
  line-height: 1.5;
  padding-left: 1em;
  margin: 3px 0;
  position: relative;
}
.list-kome li:before {
  content: "※";
  position: absolute;
  left: 0;
}

/* -------------------------------
	dl
-------------------------------- */
.dl_style_a {
  border-top: dotted 1px #ccc;
  overflow: hidden;
}
.dl_style_a dt, .dl_style_a dd {
  padding-top: 0.2em;
  padding-bottom: 0.2em;
}
.dl_style_a dt {
  float: left;
  width: 6em;
  text-align: center;
  background-color: #ccc;
}
.dl_style_a dd {
  padding-left: 7em;
  border-bottom: dotted 1px #ccc;
}

/* -------------------------------
	btn
-------------------------------- */
.btn-zip {
  font-size: 11px;
  letter-spacing: normal;
  padding: 5px 10px;
  margin: 5px 0;
}

.btn-news {
  color: #000;
  font-family: 'Noto Sans', sans-serif;
  font-weight: bold;
  font-size: 10px;
  line-height: 1.5;
  padding: 2px 10px;
  border-radius: 3em;
  background-color: #ccc;
}
.btn-news:hover {
  color: #000;
  background-color: #F4DC00;
}

.btn-ww200 {
  width: 200px;
}

/* -------------------------------
	flex
-------------------------------- */
.box-flex {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-wrap-nowrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

/* 縦中央 */
.flex-items-center {
  align-items: center;
}

/* 寄せ */
.flex-content-center {
  justify-content: center;
}

.flex-content-right {
  justify-content: flex-end;
}

/* 右から */
.flex-direction-right {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

/**/
.c-flex-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: auto;
}

/* 余白 */
.box-flex-30 {
  margin: 0 -15px;
}
.box-flex-30 > div {
  padding: 0 15px;
}

/* -------------------------------
	common
-------------------------------- */
.htmlarea {
  line-height: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: hidden;
}

.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.ov_hi {
  overflow: hidden;
}

.in-bk {
  display: inline-block;
}

.clear {
  clear: both;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

/* 画像回り込み */
img.aligncenter, img.alignright, img.alignleft {
  display: block;
  margin: 0 auto 15px;
}

@media print, screen and (min-width: 480px) {
  img.alignright {
    max-width: 38%;
    margin-left: 30px;
    display: inline;
  }
  img.alignleft {
    max-width: 38%;
    margin-right: 30px;
    display: inline;
  }

  .alignright {
    float: right;
  }

  .alignleft {
    float: left;
  }
}
@media print, screen and (min-width: 1200px) {
  /* 画像回り込み */
  img.alignright {
    max-width: 100%;
  }
  img.alignleft {
    max-width: 100%;
  }
}
/* --▼color-- */
.text-red {
  color: #ff0000 !important;
}

.bg_cr_1 {
  background-color: #f2dd67 !important;
}

.bg_cr_2 {
  background-color: #f3f3f3 !important;
}

.bg_cr_3 {
  background-color: #ffe244 !important;
}

.bg_cr_4 {
  background-color: #E9E9E9 !important;
}

/* --▼font-- */
.fs13 {
  font-size: 13px !important;
}

.fwn {
  font-weight: normal !important;
}

.fwb {
  font-weight: bold !important;
}

/* --▼text-- */
.text-justify {
  text-align: justify;
  text-justify: inter-ideograph;
}

/* --▼padding-- */
.pt00 {
  padding-top: 0 !important;
}

.pp00 {
  padding: 0 !important;
}

/* --▼margin-- */
.mtb10 {
  margin: 10px 0 !important;
}

.mt00 {
  margin-top: 0 !important;
}

/*bottom*/
.mb00 {
  margin-bottom: 0 !important;
}

.mb05 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb-sm {
  margin-bottom: 15px !important;
}

.margin-bottom {
  margin-bottom: 30px !important;
}

@media print, screen and (min-width: 768px) {
  /* --▼margin-- */
  .mb-sm {
    margin-bottom: 30px !important;
  }

  .margin-bottom {
    margin-bottom: 60px !important;
  }

  /* --▼align-- */
  .text-sm-center {
    text-align: center;
  }
}
/* 印刷用 */
@media print {
  /* スクロールバー非表示 */
  html {
    -ms-overflow-style: none;
    /* ie */
  }
}

.kakaku{}

.tac{ text-align:center;}
.fs12e{ font-size:1.2em;}