@charset "utf-8";

:root {
    --text-color: #333;
    --main-color: #3ea141;
    --sub-color: #ea4334;
    --bg-green: #43ba47;
    --border-color: #a4d6a4;
    --bg-white: rgba(255, 255, 255, 0.2);
    --bg-grad: linear-gradient(0deg, rgba(67, 186, 71, 1) 0%, rgba(146, 210, 125, 1) 30%, rgb(139, 212, 117) 70%, rgba(125, 219, 133, 1) 100%);
    --bg-grad-s: linear-gradient(0deg, rgba(67, 186, 71, 1) 0%, rgba(123, 201, 126, 1) 100%);
    --space-xs: 0.5rem;
    /* 8px */
    --space-sm: 1rem;
    /* 16px */
    --space-md: 1.5rem;
    /* 24px */
    --space-lg: 2.5rem;
    /* 40px */
    --space-xl: 5rem;
    /* 80px */
    --font-p: clamp(1rem, 0.167rem + 3.556vw, 1.5rem);
    --font-h4: clamp(2rem, 0.333rem + 7.111vw, 3rem);
    --font-h5: clamp(1.5rem, 1.236rem + 1.127vw, 2.25rem);
}

/* ================================
   Reset & Base
================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    /* iOS文字拡大防止 */
}

/* ================================
   common
================================ */

body {
    font-family: "Noto Sans JP", "Outfit", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    font-weight: 200;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a{
  color: #040404;
  text-decoration: none;
}

.sp_only{
  display: block;
}

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

/* ================================
   Typography
================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.3;
    text-align: center;
}

h1 {
   font-size: clamp(3rem, 2.400rem + 3vw, 6rem);
    font-weight: 100;
    text-align: left;
    letter-spacing: 1rem;
    line-height: 1.5;

}

h2 {
    font-size: clamp(2.625rem, 0.750rem + 8vw, 3.75rem);
    font-weight: 900;
}

h2 img {
    width: clamp(20.938rem, 14.167rem + 28.889vw, 25rem);
    display: inline-block;
}

h3 {
    font-size: clamp(2.5rem, 0.833rem + 7.111vw, 3.5rem);
}

h4 {
    font-size: var(--font-h4);
    line-height: 1.2;
}

h5 {
    font-size: clamp(1.5rem, 1.236rem + 1.127vw, 2.25rem)
}

p {
    font-size: 16px;
}

ul,
ol {
    list-style: none;
}

.en_text {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.text_large {
    color: var(--main-color);
    font-size: clamp(3.25rem, 0.333rem + 12.444vw, 5rem);
    white-space: nowrap;
}

/* ================================
   ハンバーガーボタン*
================================ */
/*ハンバーガーボタン*/
.el_humburger {
  position: fixed;
  top: 45px;
  right: 60px;
  width: 46px;
  height: 25px;
  padding-top: 1px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 0px;
  z-index: 20;
  cursor: pointer;
  pointer-events: auto;
  color: #000;
  text-align: center;}

@media screen and (max-width: 840px) {
  .el_humburger {
    display: block;
    right: 0;
    top: 0;
    padding-top: 20px;
    width: 70px;
    height: 70px;}
    #factory .el_humburger {
      display: none; } }

.el_humburger_wrapper {
  margin-bottom: 5px;
  width: 42px;
  display: inline-block; }

@media screen and (max-width: 840px) {
  .el_humburger_wrapper {
    margin-bottom: 5px;
    width: 30px; } }

.el_humburger_text {
  font-size: 12px;
  letter-spacing: 0.1em;
  font-family: "游ゴシック Medium", YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif; }

.js_humburgerOpen .el_humburger_text.el_humburger_text__menu {
  display: none; }

.el_humburger_text.el_humburger_text__close {
  display: none; }

.js_humburgerOpen .el_humburger_text.el_humburger_text__close {
  display: block; }

@media screen and (max-width: 840px) {
  .el_humburger_text {
    font-size: 10px;
    padding-top: 2px; } }

@media screen and (max-width: 840px) {
  .el_humburger_text svg path {
    -webkit-transition: all 200ms cubic-bezier(0.16, 0.52, 0.25, 1);
    -o-transition: all 200ms cubic-bezier(0.16, 0.52, 0.25, 1);
    transition: all 200ms cubic-bezier(0.16, 0.52, 0.25, 1);
    fill: #000; } }

@media screen and (max-width: 840px) {
  .js_humburgerOpen .el_humburger_text svg path {
    fill: #000; } }

.el_humburger span.el_humburger_bar {
  display: block;
  width: 100%;
  margin: 0 auto 9px;
  height: 1px;
  background: #000;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out; }

.el_humburger span.el_humburger_bar:last-child {
  margin-bottom: 0; }

.js_humburgerOpen .el_humburger span.el_humburger_bar {
  background: #000; }

@media screen and (max-width: 840px) {
  .el_humburger span.el_humburger_bar {
    left: 0;
    top: 0;
    background: #000; } }

.js_humburgerOpen .el_humburger span.el_humburger_bar.top {
  -webkit-transform: translateY(9px) rotate(-45deg);
  -ms-transform: translateY(9px) rotate(-45deg);
  transform: translateY(9px) rotate(-45deg); }

.js_humburgerOpen .el_humburger span.el_humburger_bar.middle {
  opacity: 0; }

.js_humburgerOpen .el_humburger span.el_humburger_bar.bottom {
  -webkit-transform: translateY(-11px) rotate(45deg);
  -ms-transform: translateY(-11px) rotate(45deg);
  transform: translateY(-11px) rotate(45deg); }

.el_humburgerButton.el_humburgerButton__close {
  top: 2%;
  right: 2%; }

.el_humburgerButton__close span.el_humburger_bar {
  display: block;
  width: 35px;
  margin: 0 auto;
  height: 4px;
  background: #000; }

.el_humburgerButton__close span.el_humburger_bar.top {
  -webkit-transform: translateY(5px) rotate(-45deg);
  -ms-transform: translateY(5px) rotate(-45deg);
  transform: translateY(5px) rotate(-45deg); }

.el_humburgerButton__close span.el_humburger_bar.bottom {
  -webkit-transform: translateY(-6px) rotate(45deg);
  -ms-transform: translateY(-6px) rotate(45deg);
  transform: translateY(-6px) rotate(45deg); }

.navi {
  position: fixed;
  right: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  width: 450px;
  z-index: 3;
  padding-top: 100px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 600ms ease-out;
  -o-transition: all 600ms ease-out;
  transition: all 600ms ease-out;
  transform:translateZ(0) translateX(100%);
  overflow: auto; }
  .js_humburgerOpen .navi {
    right: auto;
    transform:translateZ(0) translateX(0); }
    @media screen and (max-width: 840px) {
      .navi {
        padding: 100px 5% 0; }
      .js_humburgerOpen .navi {
        width: 100%;} }

.navi_item {
  margin-bottom: 28px;
  font-size: 20px;
  font-family: "Marcellus", serif !important;
  white-space: nowrap;
  margin-left: 90px; }
  .navi_item.op_innerLink {
    cursor: pointer; }
  @media screen and (max-width: 840px) {
    .navi_item {
      margin-left: 0;
      font-size: 18px; } }

/* ================================
    video
================================ */
.video-wrap {
    position: fixed;
    width: 100vw;
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    top: 0;
    z-index: -1;
}

video {
    position: absolute;
    display: block;
    width: 100vw;
    height: 100vh;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -999;
    opacity: 0.8;
}

/* ================================
    container
================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* ================================
    main
================================ */
.fv{
  width: 100vw;
  height: 100vh;
  padding: 8% 0 8% 8%;
  position: relative;
  margin-bottom: var(--space-xl);
}

.fv .logo{
position: absolute;
bottom:0;
right: 30px;
width: 100px;
}

.about{
    width: 100%;
  max-width: 1200px;
 padding: 8% 0 8% 8%;
  margin-bottom: var(--space-xl);
  line-height: 2;
}