html {
  font-size: 12px;
}

@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

a {
  color: #fb6e14;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

a:hover,
a:focus,
a:active {
  color: #bf4c03;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  line-height: 1.5;
}


/*メインイメージ*/

.main-text-outer {
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
  -webkit-transition: .5s ease;
  transition: .5s ease;
  background-color: rgba(0, 0, 0, 0.5);
}

.main-text {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  color: #fff;
  padding: 0 20px;
  text-shadow: 2px 2px 10px #000000;
}

.main-text h1 {
  font-size: 8rem;
  font-family: 'Roboto', sans-serif;
}

.main-text h2 {
  font-size: 3rem;
}


/*ナビ（PC）*/

.main-nav {
  position: relative;
  background: #fff;
}

.main-nav.shadow {
  -webkit-box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.3);
  -ms-box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.3);
}

.main-nav:before,
.main-nav:after {
  content: "";
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background: #e6e6e6;
}

.main-nav:before {
  top: 2px;
}

.main-nav:after {
  bottom: 2px;
}

.main-nav .menu-1,
.main-nav .menu-2,
.main-nav .logo {
  vertical-align: middle;
  float: left;
  line-height: 0;
}

.main-nav .menu-1 a,
.main-nav .menu-2 a,
.main-nav .logo a {
  padding: 35px 10px;
  color: #130d08;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.main-nav .menu-1 a:hover,
.main-nav .menu-1 a:focus,
.main-nav .menu-1 a:active,
.main-nav .menu-2 a:hover,
.main-nav .menu-2 a:focus,
.main-nav .menu-2 a:active,
.main-nav .logo a:hover,
.main-nav .logo a:focus,
.main-nav .logo a:active {
  outline: none;
  text-decoration: none;
}

.main-nav .menu-1 a.active,
.main-nav .menu-2 a.active,
.main-nav .logo a.active {
  color: #fb6e14;
}

.main-nav .menu-1 {
  text-align: right;
  width: 40.33%;
}

.main-nav .menu-1 a {
  vertical-align: middle;
}

.main-nav .logo {
  text-align: center;
  width: 19.33%;
  font-size: 40px;
  font-family: 'Roboto', sans-serif;
}

.main-nav .logo a {
  position: relative;
  top: 0px;
  display: inline-block;
}

.main-nav .menu-2 {
  text-align: left;
  width: 40.33%;
}


/*ナビ（SP）*/

#offcanvas,
#container,
.nav-toggle,
#footer {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#container,
.nav-toggle,
#footer {
  z-index: 2;
  position: relative;
}

#offcanvas {
  display: block;
  height: 100%;
  left: 0;
  overflow-y: auto;
  position: fixed;
  z-index: 1;
  top: 0;
  width: 275px;
  background: rgba(0, 0, 0, 0.9);
  padding: 0.75em 1.25em;
  -webkit-transform: translateX(-275px);
  transform: translateX(-275px);
  -webkit-transition: 0.9s;
  transition: 0.9s;
}

#offcanvas a {
  display: block;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  padding: 7px 0;
}

#offcanvas a:hover,
#offcanvas a:focus,
#offcanvas a:active {
  outline: none;
  text-decoration: none;
  color: #fb6e14;
}

#offcanvas a.active {
  color: #fb6e14;
}

@media screen and (max-width: 768px) {
  #offcanvas {
    display: block;
  }
}

.offcanvas-visible #offcanvas {
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media screen and (max-width: 768px) {
  #container,
  #footer,
  .nav-toggle {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

.offcanvas-visible #container,
.offcanvas-visible #footer,
.offcanvas-visible .nav-toggle {
  -webkit-transform: translateX(275px);
  transform: translateX(275px);
}

.js-sticky {
  display: block;
}

@media screen and (max-width: 768px) {
  .js-sticky {
    display: none;
  }
}

.nav-toggle {
  cursor: pointer;
  text-decoration: none;
}

.nav-toggle.active i::before,
.nav-toggle.active i::after {
  background: #fff;
}

.nav-toggle:hover,
.nav-toggle:focus,
.nav-toggle:active {
  outline: none;
  border-bottom: none !important;
}

.nav-toggle i {
  position: relative;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  width: 30px;
  height: 2px;
  color: #fff;
  font: bold 14px/.4 Helvetica;
  text-transform: uppercase;
  text-indent: -55px;
  background: #fff;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.nav-toggle i::before,
.nav-toggle i::after {
  content: '';
  width: 30px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.nav-toggle i::before {
  top: -7px;
}

.nav-toggle i::after {
  bottom: -7px;
}

.nav-toggle:hover i::before {
  top: -10px;
}

.nav-toggle:hover i::after {
  bottom: -10px;
}

.nav-toggle.active i {
  background: transparent;
}

.nav-toggle.active i::before {
  top: 0;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.nav-toggle.active i::after {
  bottom: 0;
  -webkit-transform: rotateZ(-45deg);
  transform: rotateZ(-45deg);
}

.nav-toggle {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 9999;
  display: block;
  margin: 0 auto;
  display: none;
  border-bottom: none !important;
  background: rgba(0, 0, 0, 0.7);
  padding: 0px 10px 10px 10px;
  cursor: pointer;
  border-radius: 4px;
}

@media screen and (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
}

.offcanvas-visible #offcanvas {
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media screen and (max-width: 768px) {
  #container,
  #footer,
  .nav-toggle {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

.offcanvas-visible #container,
.offcanvas-visible #footer,
.offcanvas-visible .nav-toggle {
  -webkit-transform: translateX(275px);
  transform: translateX(275px);
}

.js-sticky {
  display: block;
}

@media screen and (max-width: 768px) {
  .js-sticky {
    display: none;
  }
}

.nav-toggle {
  cursor: pointer;
  text-decoration: none;
}

.nav-toggle.active i::before,
.nav-toggle.active i::after {
  background: #fff;
}

.nav-toggle:hover,
.nav-toggle:focus,
.nav-toggle:active {
  outline: none;
  border-bottom: none !important;
}

.nav-toggle i {
  position: relative;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  width: 30px;
  height: 2px;
  color: #fff;
  font: bold 14px/.4 Helvetica;
  text-transform: uppercase;
  text-indent: -55px;
  background: #fff;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.nav-toggle i::before,
.nav-toggle i::after {
  content: '';
  width: 30px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.nav-toggle i::before {
  top: -7px;
}

.nav-toggle i::after {
  bottom: -7px;
}

.nav-toggle:hover i::before {
  top: -10px;
}

.nav-toggle:hover i::after {
  bottom: -10px;
}

.nav-toggle.active i {
  background: transparent;
}

.nav-toggle.active i::before {
  top: 0;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.nav-toggle.active i::after {
  bottom: 0;
  -webkit-transform: rotateZ(-45deg);
  transform: rotateZ(-45deg);
}

.nav-toggle {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 9999;
  display: block;
  margin: 0 auto;
  display: none;
  border-bottom: none !important;
  background: rgba(0, 0, 0, 0.7);
  padding: 0px 10px 10px 10px;
  cursor: pointer;
  border-radius: 4px;
}

@media screen and (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
}


/*フッター*/

footer {
  background: rgba(0, 0, 0, 0.9);
  color: rgba(255, 255, 255, 0.5);
}

footer ul li {
  font-size: 3rem;
}


/*トップページ*/

.top-about {
  padding: 50px 0;
}

.top-about-in {
  background: rgba(255, 255, 255, 0.7);
  padding: 50px;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}

.top-list {
  padding: 50px 0;
  color: #696A5B;
}

.top-list h1 {
  font-size: 4rem;
  font-weight: bold;
  color: #314032;
}

.top-list h1>small{
  font-size: 50%;
}

/*生産者*/

.card-header a {
  display: block;
}

a[aria-expanded="false"]:after {
  font-family: FontAwesome;
  content: "\f107";
  float: right;
  color: inherit;
}

a[aria-expanded="true"]:after {
  font-family: FontAwesome;
  content: "\f106";
  float: right;
}


/*Bootstrap*/

.container-fluid {
  padding: 0;
}

.flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.under-line {
  border-bottom: solid 3px #fff;
}

.under-line-dot {
  border-bottom: dotted 3px #314032;
}

.card {
  border: 1px solid rgba(0, 0, 0, .9);
  border-radius: 0;
}

.card-header:first-child {
  border-radius: 0;
}

.card-header {
  background-color: rgba(0, 0, 0, .9);
  border-bottom: 1px solid rgba(0, 0, 0, .125);
}

.btn-primary {
  background: #fb6e14;
  color: #fff;
  border: 2px solid #fb6e14;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background: #f16104 !important;
  border-color: #f16104 !important;
}


/*文字の色*/

.white {
  color: #fff;
}

.orange {
  color: #fcb03f;
}

.green {
  color: #8dc63f;
}

.red {
  color: #9D1D2B;
}

.blue {
  color: #005F67;
}

.radio1 label,
.checkbox1 label {
  cursor: pointer;
}

.radio {
  display: none;
}

.radio+.radio_image {
  border: 3px #ffffff solid;
  background-color: #ffffff;
  cursor: pointer;
}

.radio:checked+.radio_image {
  border: 3px #fb6e14 solid;
  background-color: #ffeeee;
  cursor: pointer;
}

.foodid-image {
  display: inline-block;
}
