@charset "UTF-8";
/* レスポンシブ用（pxを1/10に・_base.scssに計算を入れている場合限定） */
/* デザインカンプのwidthやpadding、font-sizeなどのpxをそのまま記入すればOK */
/*  */
/***** 単位を取り除く *****/
/***** 上下中央に配置 *****/
/***** 画像を擬似要素で表示 *****/
/* includeで呼び出す前に$img-path: "img/◯◯◯/"で画像のルートパスを指定 */
/* 呼び出す時はbeforeかafterで */
/***** マーカー *****/
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
figure,
figcaption {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: bottom;
  height: auto;
  border: 0;
}

a {
  text-decoration: none;
}
a:focus {
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    text-decoration: underline;
  }
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 769px) {
  a:hover {
    opacity: 0.8;
  }
}

li {
  list-style: none;
  list-style-position: inside;
}

header a,
footer a {
  text-decoration: none;
}

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

* {
  box-sizing: border-box;
}

/* レスポンシブ用 */
html {
  font-size: 62.5%;
}

@media screen and (min-width: 769px) and (max-width: 1440px) {
  html {
    font-size: 0.625vw;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  margin: auto;
  width: 100%;
  overflow-x: hidden;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /*Chrome,Safari*/
  -ms-text-size-adjust: 100%; /*EgdeMobile*/
  -moz-text-size-adjust: 100%; /*firefox*/
  font-family: ten-mincho, serif, "KozGoPro-Light", "小塚ゴシック Pro L", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
}

section {
  margin: 50px auto;
  scroll-margin-top: 100px;
}

/**
 * 引数のfontSizeをremに変換する関数
 * @param fontSize フォントサイズ
 *
 * 例）18pxをremに変換
 * font-size: fz(18);
 */
/**
 * 引数のfontSizeを元に指定されたpx数をemに変換する関数
 * @param px 変換するpx数
 * @param fontSize フォントサイズ
 *
 * 例）font-sizeが24pxの要素の下に80pxのmarginをem換算で設定する
 * margin-bottom: em(80, 24);
 * 
 * font-sizeが16pxであれば第２引数は省略可能
 * margin-bottom: em(40);
 */
/**
 * 引数の最大画面サイズから指定されたpx数を元にvwに変換する関数
 * @param maxScreenSize 最大画面サイズ
 * @param px 変換するpx数
 * 
 * 例）720pxの幅に対して560pxの要素を可変させる
 * width: vw(720, 560);
 */
/*==========================================================
# vw変換
==========================================================*/
.footer {
  width: 100%;
}
.footer p {
  color: #11220f;
  background-color: #aadd80;
  text-align: center;
  padding: 100px;
}

#header {
  width: 100%;
  background-image: url(../img/pc/fv.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 80px;
  position: relative;
}
@media screen and (max-width: 769px) {
  #header {
    background-image: url(../img/sp/fv.jpg);
  }
}
#header .header__wrapper {
  margin-right: 30px;
  display: flex;
  align-items: flex-end;
  flex-direction: row-reverse;
}
#header .header__wrapper img {
  width: 80%;
  margin-bottom: 50px;
}
#header .header__navi {
  color: #fff;
  background-color: rgba(17, 34, 15, 0.8);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 25px 25px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding: 100px 10px;
}
#header .header__menu ul li {
  list-style: none;
  width: fit-content;
  margin: auto;
  padding: 5px;
}
#header .header__menu ul li a {
  color: #fff;
}
#header .header__explain {
  -webkit-writing-mode: vertical-rl; /* Chrome、Safari用 */
  -moz-writing-mode: vertical-rl; /* Firefox用 */
  -ms-writing-mode: tb-rl; /* IE用 */
  writing-mode: vertical-rl;
  color: #fff;
  background-color: rgba(17, 34, 15, 0.8);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 25px 25px;
  padding: 50px 30px;
  letter-spacing: 0.2em;
}

.products__bg-left, .products__bg-right {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -30px;
  background-color: #aadd80;
  z-index: -100;
}
.products__bg-left {
  left: -30px;
}
.products__bg-right {
  right: -30px;
}
.products__box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 50px auto;
  position: relative;
  line-height: 2;
}
.products__box::before, .products__box::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
}
.products__box::before {
  margin-top: calc((1 - 2) * 0.5em);
}
.products__box::after {
  margin-bottom: calc((1 - 2) * 0.5em);
}
@media screen and (max-width: 769px) {
  .products__box {
    width: 90vw;
  }
}
.products__box:nth-child(odd) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 769px) {
  .products__box {
    display: block;
  }
}
.products__img {
  width: 100%;
}
.products__text {
  width: 45%;
}
.products__img, .products__text {
  font-size: 1.8rem;
}
@media screen and (max-width: 769px) {
  .products__img, .products__text {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 769px) {
  .products__img, .products__text {
    width: 90vw;
    padding: 10px 1%;
    font-size: 1.6rem;
  }
}

.concept img {
  width: 100%;
}

.concept__explain {
  width: 70%;
  margin: 30px auto;
  letter-spacing: 0.04rem;
  font-size: 2rem;
  line-height: 1.6;
}
.concept__explain::before, .concept__explain::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
}
.concept__explain::before {
  margin-top: calc((1 - 1.6) * 0.5em);
}
.concept__explain::after {
  margin-bottom: calc((1 - 1.6) * 0.5em);
}
@media screen and (max-width: 769px) {
  .concept__explain {
    width: 90vw;
    font-size: 1.6rem;
  }
}

.access {
  z-index: 20;
  font-size: 3.2rem;
}
.access__content {
  margin: 100px auto;
  text-align: center;
}
.access__adress {
  margin: 20px;
}
.access__contact {
  margin: 30px;
}

.bg {
  background: url("../img/pc/bg.jpg") center center repeat !important;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -10;
  display: none;
}

@media screen and (max-width: 769px) {
  .sp_only {
    display: block;
  }
}
@media screen and (min-width: 769px) {
  .sp_only {
    display: none;
  }
}

/* 製造の流れ */
.flow04 {
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}
.flow04 > li {
  list-style-type: none;
  width: 100%;
  max-width: 350px;
  display: flex;
}
.flow04 > li .icon04 {
  line-height: 2;
  width: 2em;
  height: 2em;
  text-align: center;
  color: #fff;
  background: #11220f;
  margin: 0 auto 10px;
  display: block;
  border-radius: 100vh;
  position: relative;
}
.flow04 > li .icon04::before {
  content: "";
  border: solid transparent;
  border-width: 7px;
  border-top-color: #11220f;
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.flow04 > li dl {
  padding: 30px 20px;
  margin: 0;
  border: 3px solid #aadd80;
  position: relative;
}
.flow04 > li:not(:first-child) dl::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-right: 10px;
  display: inline-block;
  border-top: 4px solid #f60;
  border-right: 4px solid #f60;
  position: absolute;
  top: calc(50% - 14px);
  left: -45px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.flow04 > li dl dt {
  font-size: 1.3em;
  font-weight: 600;
  color: #11220f;
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  margin-bottom: 10px;
  text-align: center;
}
.flow04 > li dl dd {
  margin-left: 0;
}

@media (max-width: 767px) {
  .flow04 {
    gap: 20px;
  }
  .flow04 > li {
    max-width: unset;
    display: block;
  }
  .flow04 > li:not(:first-child) dl::before {
    display: none;
  }
}
.c-btn {
  width: 100px;
  margin: 10px auto;
  padding: 10px;
  color: #fff;
  background-color: #11220f;
  font-size: 2.4rem;
  border: 1px solid #aadd80;
  cursor: pointer;
}
@media screen and (hover: hover) and (min-width: 769px) {
  .c-btn:hover {
    opacity: 0.8;
  }
}

.c-scrolltop {
  width: 120px;
  margin: 20px 20px 10px auto;
  font-size: 2.4rem;
  font-weight: bold;
  padding: 20px;
  background-color: #aadd80;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 769px) {
  .c-scrolltop {
    width: 30vw;
    font-size: 2rem;
  }
}
@media screen and (hover: hover) and (min-width: 769px) {
  .c-scrolltop:hover {
    opacity: 0.8;
  }
}
.c-scrolltop a {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 3rem;
  transform: translateY(-50%);
  color: #11220f;
}
.c-scrolltop a:focus {
  color: #f60;
}
@media (hover: hover) and (pointer: fine) {
  .c-scrolltop a:hover {
    color: #f60;
  }
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 769px) {
  .c-scrolltop a:hover {
    opacity: 1;
  }
}
.c-scrolltop a::before {
  content: "";
  position: absolute;
  top: 45%;
  left: -1rem;
  border-style: solid;
  border-width: 0 2px 2px 0;
  content: "";
  display: inline-block;
  position: absolute;
  height: 10px;
  width: 10px;
  transform: rotate(225deg);
}
@media screen and (max-width: 480px) {
  .c-scrolltop a::before {
    height: 5px;
    width: 5px;
  }
}

.c-midashi {
  color: #11220f;
  font-size: 3.6rem;
  font-weight: bold;
  text-align: center;
  margin: 10rem auto 10px auto;
  padding: 10px;
  border-width: 1px 0 1px 0;
  border-color: #11220f;
  border-style: solid;
}

@media screen and (min-width: 769px) {
  .products__box > .c-imgandtext {
    width: 45vw;
  }
}

.concept .c-imgandtext {
  margin-top: 50px;
}

.c-imgandtext {
  position: relative;
}
.c-imgandtext p {
  position: absolute;
  font-size: 2.4rem;
  color: #11220f;
  font-weight: 700;
  background-color: #fff;
  border: 1px solid #f60;
  padding: 10px;
  -webkit-writing-mode: vertical-rl; /* Chrome、Safari用 */
  -moz-writing-mode: vertical-rl; /* Firefox用 */
  -ms-writing-mode: tb-rl; /* IE用 */
  writing-mode: vertical-rl;
  top: -10px;
  left: 10%;
}

.p-contact {
  display: flex;
  flex-direction: column;
  width: 50%;
  margin: 50px auto;
  font-size: 1.8rem;
}
.p-contact input,
.p-contact textarea {
  font-family: Yu Gothic;
  color: #000;
  margin: 10px;
  border: 1px solid #11220f;
}
@media screen and (max-width: 769px) {
  .p-contact {
    width: 80%;
  }
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}

.scroll_up.active {
  transform: translateY(0);
  opacity: 1;
}

/*----------------------------
  scroll_left ｜左から出現
  ----------------------------*/
.scroll_left {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_left.active {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  transform: translateX(0);
}

/*----------------------------
  scroll_right ｜右から出現
  ----------------------------*/
.scroll_right {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_right.active {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  transform: translateX(0);
}

.c-midashi {
  opacity: 0;
}
.c-midashi.active {
  opacity: 1;
  transition-delay: 0.3s;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.j-imgWiper {
  position: relative;
  width: 100%;
  height: 300px;
}
.j-imgWiper.active .inner {
  width: 100%;
}
.j-imgWiper .inner {
  width: 0;
  height: 300px;
  overflow: hidden;
  transition: 2s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  left: 0;
}
.j-imgWiper .inner img {
  position: absolute;
  left: 0;
}

/* レスポンシブ */
html {
  font-size: 62.5%;
}

@media screen and (min-width: 769px) and (max-width: 1440px) {
  html {
    font-size: 0.625vw;
  }
}
/* ↑mixin rem()用 */
.hoge {
  padding: 3rem;
  color: #11220f;
}

.toggle_btn {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 10px 0 10px;
  border-color: #11220f transparent transparent transparent;
}

.hoge {
  line-height: 1.5833333333;
}
.hoge::before, .hoge::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
}
.hoge::before {
  margin-top: calc((1 - 1.5833333333) * 0.5em);
}
.hoge::after {
  margin-bottom: calc((1 - 1.5833333333) * 0.5em);
}/*# sourceMappingURL=style.css.map */