* {
  box-sizing: border-box;
  outline: none;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333;
  background: #F6FFF4;
}

html.is-fixed,
html.is-fixed body {
  height: 100%;
  overflow: hidden;
}

a {
  color: #333;
  text-decoration: none;
}
a:link, a:visited, a:active {
  color: #333;
  text-decoration: none;
}

li {
  list-style: none;
}

ul {
  margin: 0;
  padding: 0;
}

.sp_only {
  display: none;
}

.fadein {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1.5s;
}
.fadein.fadein-header {
  transform: translate(0, -70px);
}
.fadein.fadein-headerMenu {
  transform: translate(0, -50px);
}
.fadein.fadein-bottom {
  transform: translate(0, 30px);
}
.fadein.scrollin {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

header {
  position: fixed;
  width: 100%;
  height: 70px;
  z-index: 100;
}
header .header_flex {
  display: flex;
  justify-content: space-between;
  height: 100%;
}
header .header_flex .header_logo {
  display: inline-block;
  height: 100%;
  background: #BDDB6A;
  border-radius: 0 0 20px 0;
}
header .header_flex .header_logo a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 30px;
}
header .header_flex .header_logo a:hover {
  opacity: 0.7;
}
header .header_flex .header_logo a img {
  width: auto;
  height: 40px;
}
header .header_flex .header_menu {
  display: flex;
  align-items: center;
}
header .header_flex .header_menu ul {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 50px;
  padding: 0 24px;
  background: #fff;
  border-radius: 10px;
}
header .header_flex .header_menu ul li {
  overflow: hidden;
}
header .header_flex .header_menu ul li a {
  font-weight: bold;
  color: transparent;
  text-shadow: 0 -60px 0 #698321, 0 0 0 #698321;
  transition: text-shadow 0.3s;
}
header .header_flex .header_menu ul li a:hover {
  text-shadow: 0 0 0 #BDDB6A, 0 60px 0 #BDDB6A;
}
header .header_flex .header_contact {
  background: #BDDB6A;
  border-radius: 0 0 0 20px;
}
header .header_flex .header_contact a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 20px;
  color: #fff;
}
header .header_flex .header_contact a:hover {
  opacity: 0.7;
}
header .header_flex .header_contact a i {
  font-size: 32px;
}
header .header_flex .header_contact a span {
  font-size: 12px;
}

#g-nav {
  position: fixed;
  z-index: 999;
  top: -120%;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  transition: all 0.6s;
}
#g-nav ul {
  z-index: 999;
  margin: 100px 20px 0 20px;
}
#g-nav ul li {
  list-style: none;
  text-align: left;
  border-bottom: solid 1px #e3e9da;
}
#g-nav ul li:nth-child(1) {
  border-top: solid 1px #e3e9da;
}
#g-nav ul li a {
  display: block;
  padding: 10px;
  color: #667968;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

#g-nav.panelactive {
  top: 0;
}

.openbtn {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
  background: #BDDB6A;
  border-radius: 0 0 0 20px;
}
.openbtn span {
  display: inline-block;
  position: absolute;
  transition: all 0.4s;
  left: 17px;
  width: 45%;
  height: 3px;
  border-radius: 2px;
  background: #fff;
}
.openbtn span:nth-of-type(1) {
  top: 19px;
}
.openbtn span:nth-of-type(2) {
  top: 28.5px;
}
.openbtn span:nth-of-type(3) {
  top: 38px;
}

.openbtn.active span:nth-of-type(1) {
  top: 28.5px;
  left: 21px;
  transform: translateY(0) rotate(-45deg);
  width: 30%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 28.5px;
  left: 21px;
  transform: translateY(0) rotate(45deg);
  width: 30%;
}

main .top_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50vh;
  background-position: center;
  background-size: cover;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
}
main .top_wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50vh;
  background-color: rgba(255, 255, 255, 0.65);
  border-radius: 0 0 30px 30px;
}
main .top_wrapper h1 {
  margin: 0;
  color: #698321;
  font-size: 40px;
  z-index: 1;
}
main h1 {
  margin: 0 0 50px 0;
  font-size: 30px;
  text-align: center;
  color: #fff;
}
main .goods_wrapper .img_wrapper {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
}
main .goods_wrapper .img_wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  transition: transform 0.4s ease-in-out;
}
main .goods_wrapper p {
  text-align: left;
  margin: 5px 10px;
  font-weight: bold;
}
main .goods_wrapper a:hover img {
  transform: scale(1.1);
}
main .goods_wrapper a:hover p {
  opacity: 0.7;
}
main .policy_wrapper {
  width: 70%;
  max-width: 1000px;
  margin: 100px auto;
  line-height: 2;
}
main .policy_wrapper ol {
  margin: 50px 0 0 0;
  padding: 0 0 0 20px;
}
main .policy_wrapper ol li {
  margin: 0 0 30px 0;
  list-style-type: decimal;
}
main .policy_wrapper .ul_disc {
  list-style: disc inside;
}
main .policy_wrapper .txt_right {
  margin: 30px 0 0 0;
  text-align: right;
}
main .contact_wrapper {
  padding: 100px 0;
  background: #ABD373;
  border-radius: 50px 50px 0 0;
}
main .contact_wrapper h1 {
  color: #fff;
}
main .contact_wrapper .contact_ul {
  display: flex;
  justify-content: space-between;
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}
main .contact_wrapper .contact_ul li {
  display: inline-block;
  width: 30%;
  aspect-ratio: 1;
  text-align: center;
}
main .contact_wrapper .contact_ul li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  height: 100%;
  background: #fff;
  color: #BDDB6A;
  font-size: 20px;
  font-weight: bold;
  border-radius: 50%;
  transition: all 0.3s;
}
main .contact_wrapper .contact_ul li a i {
  font-size: 40px;
}
main .contact_wrapper .contact_ul li a:hover {
  transform: scale(1.1, 1.1);
}
main .btn {
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}

#main_top {
  overflow: hidden;
}
#main_top #top_movie {
  position: relative;
  width: 70%;
  margin: 0 auto 200px auto;
  padding: 90px 0 0 0;
  text-align: center;
}
#main_top #top_movie.fadein {
  transition: all 1.5s 1s;
}
#main_top #top_movie video {
  display: block;
  width: 100%;
  aspect-ratio: 2;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}
#main_top #top_movie .top_title {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 10px 20px;
  font-size: 30px;
  font-weight: bold;
  color: #698321;
  background: rgba(246, 255, 244, 0.9);
  border-radius: 30px 0;
}
#main_top #top_aboutus {
  margin: 100px 0 600px 0;
}
#main_top #top_aboutus .inner_aboutus {
  position: relative;
  width: 70%;
}
#main_top #top_aboutus .inner_aboutus .aboutus_img img {
  width: 100%;
  aspect-ratio: 2;
  border-radius: 0 30px 30px 0;
}
#main_top #top_aboutus .inner_aboutus .aboutus_txt {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  right: -400px;
  bottom: -400px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: #BCD454;
  color: #fff;
  overflow: hidden;
}
#main_top #top_aboutus .inner_aboutus .aboutus_txt .top_title {
  text-align: left;
}
#main_top #top_aboutus .inner_aboutus .aboutus_txt .top_title span {
  display: block;
  font-size: 14px;
}
#main_top #top_aboutus .inner_aboutus .aboutus_txt .aboutus_detail {
  margin: 30px 0;
}
#main_top #top_aboutus .inner_aboutus .aboutus_txt a {
  padding: 0 0 3px 0;
  font-size: 18px;
  color: #fff;
  background-image: linear-gradient(#fff, #fff);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 100% 1px;
  transition: background-size 0.3s;
}
#main_top #top_aboutus .inner_aboutus .aboutus_txt a:hover {
  background-position: bottom right;
  background-size: 0 1px;
}
#main_top #top_feature {
  margin: 100px 0 0 0;
}
#main_top #top_feature .inner_feature {
  position: relative;
  width: 90%;
  margin: 0 0 0 auto;
  background: #EDFFDE;
  border-radius: 30px 0 0 30px;
}
#main_top #top_feature .inner_feature .feature_title {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -100px;
  left: -140px;
  width: 220px;
  height: 220px;
  background: #ABD373;
  border-radius: 50%;
}
#main_top #top_feature .inner_feature .feature_title h1 {
  margin: 0;
  color: #fff;
}
#main_top #top_feature .inner_feature ul {
  width: 80%;
  margin: 0 auto;
  padding: 100px 0;
}
#main_top #top_feature .inner_feature ul li {
  display: flex;
  justify-content: space-between;
}
#main_top #top_feature .inner_feature ul li .li_left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  width: 48%;
}
#main_top #top_feature .inner_feature ul li .li_left h4 {
  font-size: 32px;
}
#main_top #top_feature .inner_feature ul li .li_left p {
  line-height: 2;
}
#main_top #top_feature .inner_feature ul li .li_left a {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  padding: 12px 0;
  background: #ABD373;
  color: #fff;
  text-align: center;
  border: 1px solid #ABD373;
  border-radius: 50px;
}
#main_top #top_feature .inner_feature ul li .li_left a:hover {
  background: #fff;
  color: #ABD373;
}
#main_top #top_feature .inner_feature ul li .li_right {
  display: flex;
  align-items: center;
  width: 48%;
}
#main_top #top_feature .inner_feature ul li .li_right img {
  width: 100%;
  border-radius: 30px;
}
#main_top #top_feature .inner_feature ul li:nth-child(1) {
  margin: 0 0 80px 0;
}
#main_top #top_goods {
  width: 80%;
  max-width: 1200px;
  margin: 100px auto;
  text-align: center;
}
#main_top #top_goods h1 {
  color: #BDDB6A;
}
#main_top #top_goods .swiper_container {
  position: relative;
}
#main_top #top_goods .swiper_container .swiper {
  width: 100%;
}
#main_top #top_goods .swiper_container .swiper-button-prev,
#main_top #top_goods .swiper_container .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: #BDDB6A;
  border-radius: 50%;
  z-index: 10;
}
#main_top #top_goods .swiper_container .swiper-button-prev::after,
#main_top #top_goods .swiper_container .swiper-button-next::after {
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  color: #fff;
  font-size: 1.5rem;
}
#main_top #top_goods .swiper_container .swiper-button-prev:hover,
#main_top #top_goods .swiper_container .swiper-button-next:hover {
  opacity: 0.8;
}
#main_top #top_goods .swiper_container .swiper-button-prev {
  left: -25px;
}
#main_top #top_goods .swiper_container .swiper-button-prev::after {
  content: "\f060";
}
#main_top #top_goods .swiper_container .swiper-button-next {
  right: -25px;
}
#main_top #top_goods .swiper_container .swiper-button-next::after {
  content: "\f061";
}
#main_top #top_goods .btn {
  display: inline-block;
  width: 350px;
  max-width: 100%;
  margin: 50px auto 0 auto;
  padding: 12px 0;
  background: #BDDB6A;
  color: #fff;
  border: 2px solid #BDDB6A;
  border-radius: 50px;
}
#main_top #top_goods .btn:hover {
  background: #fff;
  color: #BDDB6A;
}

#main_feature .top_wrapper {
  background-image: url(../img/feature.jpg);
}
#main_feature h3 {
  margin: 100px 0 150px 0;
  font-size: 32px;
  text-align: center;
  color: #BDDB6A;
}
#main_feature h3 span {
  font-size: 20px;
}
#main_feature .feature_contents {
  overflow: hidden;
}
#main_feature .feature_contents .feature_wrapper {
  position: relative;
  width: 70%;
  max-width: 1200px;
}
#main_feature .feature_contents .feature_wrapper .feature_txt {
  background: #EDFFDE;
}
#main_feature .feature_contents .feature_wrapper .feature_txt h4 {
  font-size: 32px;
  margin: 0 0 20px 0;
}
#main_feature .feature_contents .feature_wrapper .feature_txt p {
  font-size: 18px;
}
#main_feature .feature_contents .feature_wrapper .big_img {
  position: absolute;
  top: -80px;
}
#main_feature .feature_contents .feature_wrapper .big_img img {
  width: 500px;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}
#main_feature .feature_contents .feature_wrapper .small_img {
  position: absolute;
  bottom: -100px;
}
#main_feature .feature_contents .feature_wrapper .small_img img {
  width: 300px;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
#main_feature .feature_contents .feature_wrapper:nth-child(2n+1) {
  margin: 0 0 300px 0;
}
#main_feature .feature_contents .feature_wrapper:nth-child(2n+1) .feature_txt {
  padding: 50px 20% 150px 50px;
  border-radius: 0 30px 30px 0;
}
#main_feature .feature_contents .feature_wrapper:nth-child(2n+1) .big_img {
  right: -400px;
}
#main_feature .feature_contents .feature_wrapper:nth-child(2n+1) .small_img {
  left: 150px;
}
#main_feature .feature_contents .feature_wrapper:nth-child(2n) {
  margin: 0 0 300px auto;
}
#main_feature .feature_contents .feature_wrapper:nth-child(2n) .feature_txt {
  padding: 50px 50px 150px 150px;
  border-radius: 30px 0 0 30px;
}
#main_feature .feature_contents .feature_wrapper:nth-child(2n) .big_img {
  left: -400px;
}
#main_feature .feature_contents .feature_wrapper:nth-child(2n) .small_img {
  right: 150px;
}
#main_feature #feature_cut h3 {
  margin: 0 0 150px 0;
}

#main_goodsAll .top_wrapper {
  background-image: url(../img/product_lineup.jpg);
}
#main_goodsAll #goodsAll_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
  width: 80%;
  max-width: 1200px;
  margin: 100px auto 50px auto;
}
#main_goodsAll #goodsAll_wrapper li {
  width: 30%;
  margin: 0 0 50px 0;
}

.main_goodsDetail .top_wrapper {
  background-image: url(../img/goods.jpg);
}
.main_goodsDetail .goodsDetail_wrapper {
  width: 50%;
  margin: 100px auto;
  text-align: center;
}
.main_goodsDetail .goodsDetail_wrapper img {
  width: 100%;
  height: auto;
  border-radius: 30px;
}
.main_goodsDetail .goodsDetail_wrapper .detail_title {
  margin: 30px 0;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.main_goodsDetail .goodsDetail_wrapper .detail_txt {
  text-align: left;
}
.main_goodsDetail .goodsDetail_wrapper .detail_btn {
  display: inline-block;
  width: 100%;
  max-width: 500px;
  margin: 100px auto 0 auto;
  padding: 20px 0;
  background: #BDDB6A;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  border-radius: 50px;
  border: 2px solid #BDDB6A;
}
.main_goodsDetail .goodsDetail_wrapper .detail_btn:hover {
  background: #fff;
  color: #BDDB6A;
}

#main_company .top_wrapper {
  background-image: url(../img/company.jpg);
}
#main_company .company_wrapper h3 {
  margin: 0 0 50px 0;
  font-size: 32px;
  text-align: center;
  color: #BDDB6A;
}
#main_company .company_wrapper dl {
  font-size: 20px;
}
#main_company .company_wrapper dl dt {
  padding: 20px 0 20px 20px;
}
#main_company .company_wrapper dl dd {
  padding: 20px 20px 20px 0;
}
#main_company #company_vision {
  width: 80%;
  max-width: 1200px;
  margin: 100px auto;
}
#main_company #company_vision .vision_contents {
  position: relative;
}
#main_company #company_vision .vision_contents p {
  padding: 50px 0;
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  color: #555;
  line-height: 2.3;
}
#main_company #company_vision .vision_contents img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  height: 100%;
  width: auto;
  z-index: -1;
}
#main_company #company_history {
  position: relative;
  width: 90%;
  margin: 200px 0 30px auto;
}
#main_company #company_history h3 {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -100px;
  left: -140px;
  width: 220px;
  height: 220px;
  background: #ABD373;
  border-radius: 50%;
  color: #fff;
}
#main_company #company_history .history_wrapper {
  padding: 100px 50px;
  background: #EDFFDE;
  border-radius: 30px 0 0 30px;
}
#main_company #company_history .history_wrapper dl {
  display: flex;
  line-height: 2;
}
#main_company #company_history .history_wrapper dl dt {
  width: 200px;
  border-bottom: 1px solid #CEE298;
}
#main_company #company_history .history_wrapper dl dd {
  width: calc(100% - 200px);
  border-bottom: 1px solid #D9D9D9;
}
#main_company #company_overview {
  width: 80%;
  max-width: 1200px;
  margin: 100px auto;
}
#main_company #company_overview .overview_wrapper dl {
  display: flex;
  line-height: 2;
  width: 60%;
  margin: 0 auto;
  background-image: repeating-linear-gradient(90deg, #98B449, #98B449 8px, transparent 8px, transparent 14px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
}
#main_company #company_overview .overview_wrapper dl dt {
  width: 150px;
}
#main_company #company_overview .overview_wrapper dl dd {
  width: calc(100% - 150px);
}

#main_safetyPolicy .top_wrapper {
  background-image: url(../img/goods.jpg);
}

#main_antisocialPolicy .top_wrapper {
  background-image: url(../img/antisocial_policy.jpg);
}

#main_privacyPolicy .top_wrapper {
  background-image: url(../img/privacy_policy.jpg);
}

.main_contact .top_wrapper {
  background-image: url(../img/contact.jpg);
}
.main_contact .contact_txt {
  margin: 100px 0;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
}
.main_contact .contact_txt i {
  font-size: 50px;
  color: #ABD373;
}
.main_contact .confirm_txt {
  margin: 100px 0;
  text-align: center;
}
.main_contact .contact_form {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}
.main_contact .contact_form .contact_contents {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 700px;
  margin: 0 auto 20px auto;
}
.main_contact .contact_form .contact_contents label {
  display: inline-flex;
  align-items: center;
  margin: 0 0 10px 0;
  gap: 5px;
}
.main_contact .contact_form .contact_contents label span {
  padding: 2px 6px;
  background: #333;
  color: #fff;
  font-size: 12px;
  border-radius: 5px;
}
.main_contact .contact_form .contact_contents .error {
  color: red;
  font-size: 12px;
}
.main_contact .contact_form .contact_contents .input_wrapper {
  margin: 0 0 10px 0;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #E1E1E1;
  background: #F4F4F5;
}
.main_contact .contact_form .contact_check {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 0;
  text-align: center;
}
.main_contact .contact_form .contact_check input {
  width: 20px;
  height: 20px;
  margin: 0 10px 0 0;
}
.main_contact .contact_form .contact_check input:hover {
  cursor: pointer;
}
.main_contact .contact_form .contact_check a {
  text-decoration: underline;
}
.main_contact .contact_form .contact_check a:hover {
  color: #BDDB6A;
}
.main_contact .btnBlock {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 0 100px 0;
  text-align: center;
}
.main_contact .btnBlock input,
.main_contact .btnBlock a {
  display: inline-block;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  padding: 12px 0;
  border-radius: 100px;
  font-size: 18px;
  color: #fff;
  border: 1px solid #fff;
}
.main_contact .btnBlock input:hover,
.main_contact .btnBlock a:hover {
  cursor: pointer;
  opacity: 0.8;
}
.main_contact .btnBlock #submit,
.main_contact .btnBlock #send {
  background: #BDDB6A;
}
.main_contact .btnBlock #return {
  background: #888;
}
.main_contact .btnBlock #submit:disabled {
  background: #ccc;
  color: #666;
}
.main_contact .btnBlock #submit:disabled:hover {
  cursor: not-allowed;
  opacity: 1;
}
.main_contact .dataChk .confirm_table {
  width: 70%;
  margin: 0 auto;
}
.main_contact .dataChk .confirm_table tr th {
  width: 35%;
  padding: 20px 0;
  text-align: left;
  border-bottom: 2px dotted #ccc;
}
.main_contact .dataChk .confirm_table tr th p {
  color: #BDDB6A;
}
.main_contact .dataChk .confirm_table tr td {
  width: 65%;
  padding: 20px 0;
  border-bottom: 2px dotted #ccc;
}
.main_contact .dataChk .confirm_table tr td input,
.main_contact .dataChk .confirm_table tr td textarea {
  width: 100%;
  border: none;
  background: none;
  pointer-events: none;
  resize: none;
}
.main_contact .dataChk .confirm_table tr .zip_td {
  border-bottom: 1px dotted #ccc;
}
.main_contact .dataChk .btnBlock {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 100px auto;
}
.main_contact .dataChk .btnBlock input {
  width: 250px;
  max-width: 100%;
  margin: 0;
}
.main_contact #thanks {
  width: 70%;
  max-width: 1000px;
  margin: 100px auto;
  text-align: center;
}
.main_contact #thanks p {
  margin: 0 0 30px 0;
  line-height: 2;
}
.main_contact #thanks .btnBlock {
  margin: 100px auto;
}
.main_contact #thanks .btnBlock a {
  display: inline-block;
  width: 250px;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 0;
}

#main_contact {
  position: relative;
  background: url(../img/contact_back.png);
  background-size: 100%;
}
#main_contact .contact_wrapper {
  background: none;
  border-radius: 0;
}
#main_contact .contact_wrapper li a {
  background: #ABD373;
  color: #fff;
  border: 1px solid #fff;
}

footer {
  padding: 50px 0 20px 0;
  text-align: center;
  border-top: 1px solid #ABD373;
}
footer .footer_inner {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}
footer .footer_inner .footer_logo a img {
  width: 200px;
  height: auto;
}
footer .footer_inner .footer_logo a:hover {
  opacity: 0.7;
}
footer .footer_inner .footer_contents {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 50px 0;
}
footer .footer_inner .footer_contents .footer_left {
  text-align: left;
}
footer .footer_inner .footer_contents .footer_left .footer_company {
  font-size: 20px;
}
footer .footer_inner .footer_contents .footer_left .footer_address {
  margin: 10px 0;
}
footer .footer_inner .footer_contents .footer_right {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 45%;
}
footer .footer_inner .footer_contents .footer_right li {
  overflow: hidden;
}
footer .footer_inner .footer_contents .footer_right li a {
  color: transparent;
  font-weight: bold;
  text-shadow: 0 -60px 0 #333, 0 0 0 #333;
  transition: text-shadow 0.3s;
}
footer .footer_inner .footer_contents .footer_right li a:hover {
  text-shadow: 0 0 0 #999, 0 60px 0 #999;
}
footer .copyright {
  font-size: 10px;
}

#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  opacity: 0;
  transform: translateX(100px);
}
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #BDDB6A;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s;
}
#page-top a:hover {
  transform: translateY(-5px);
}
#page-top a i {
  color: #fff;
}

#page-top.LeftMove {
  animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
#page-top.RightMove {
  animation: RightAnime 0.5s forwards;
}

@keyframes RightAnime {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 1;
    transform: translateX(100px);
  }
}
@media screen and (max-width: 1024px) {
  main h1 {
    font-size: 24px;
  }
  main .contact_wrapper .contact_ul li a {
    font-size: 16px;
  }
  #main_top #top_movie {
    width: 80%;
  }
  #main_top #top_aboutus {
    margin: 100px 0 550px 0;
  }
  #main_top #top_aboutus .inner_aboutus .aboutus_txt {
    right: -300px;
    width: 500px;
    height: 500px;
  }
  #main_top #top_aboutus .inner_aboutus .aboutus_txt .top_title {
    margin: 0 0 30px 0;
  }
  #main_top #top_feature .inner_feature .feature_title {
    left: -100px;
    width: 200px;
    height: 200px;
  }
  #main_top #top_feature .inner_feature ul {
    width: 90%;
  }
  #main_top #top_feature .inner_feature ul li .li_left {
    gap: 20px;
  }
  #main_top #top_feature .inner_feature ul li .li_left h4 {
    font-size: 24px;
  }
  #main_top #top_feature .inner_feature ul li .li_left p {
    font-size: 14px;
  }
  #main_company .company_wrapper h3 {
    font-size: 24px;
  }
  #main_company .company_wrapper dl {
    font-size: 18px;
  }
  #main_company #company_vision .vision_contents p {
    font-size: 32px;
  }
  #main_company #company_history h3 {
    left: -100px;
    width: 200px;
    height: 200px;
  }
  #main_company #company_history ul {
    width: 90%;
  }
  #main_company #company_history ul li .li_left {
    gap: 20px;
  }
  #main_company #company_history ul li .li_left h4 {
    font-size: 24px;
  }
  #main_company #company_history ul li .li_left p {
    font-size: 14px;
  }
  #main_company #company_overview .overview_wrapper dl {
    width: 80%;
  }
  #main_feature h3 {
    font-size: 24px;
  }
  #main_feature h3 span {
    font-size: 16px;
  }
  #main_feature .feature_contents .feature_wrapper .feature_txt h4 {
    font-size: 24px;
  }
  #main_feature .feature_contents .feature_wrapper .big_img img {
    width: 400px;
  }
  #main_feature .feature_contents .feature_wrapper .small_img {
    bottom: -80px;
  }
  #main_feature .feature_contents .feature_wrapper .small_img img {
    width: 240px;
  }
  #main_feature .feature_contents .feature_wrapper:nth-child(2n+1) .feature_txt {
    padding: 50px 20% 130px 50px;
  }
  #main_feature .feature_contents .feature_wrapper:nth-child(2n+1) .big_img {
    right: -300px;
  }
  #main_feature .feature_contents .feature_wrapper:nth-child(2n+1) .small_img {
    left: 100px;
  }
  #main_feature .feature_contents .feature_wrapper:nth-child(2n) .feature_txt {
    padding: 50px 50px 130px 130px;
  }
  #main_feature .feature_contents .feature_wrapper:nth-child(2n) .big_img {
    left: -300px;
  }
  #main_feature .feature_contents .feature_wrapper:nth-child(2n) .small_img {
    right: 100px;
  }
  #main_goodsAll #goodsAll_wrapper {
    width: 90%;
  }
  footer .footer_inner {
    width: 90%;
  }
}
@media screen and (min-width: 769px) {
  #g-nav,
  .openbtn {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .sp_only {
    display: block;
  }
  a:hover {
    opacity: 1;
  }
  header {
    height: 60px;
  }
  header .header_flex .header_menu,
  header .header_flex .header_contact {
    display: none;
  }
  main .top_wrapper {
    height: 30vh;
  }
  main .top_wrapper::before {
    height: 30vh;
  }
  main .goods_wrapper a:active img {
    transform: scale(1.1);
  }
  main .goods_wrapper a:active p {
    opacity: 0.7;
  }
  main .contact_wrapper .contact_ul {
    flex-direction: column;
  }
  main .contact_wrapper .contact_ul li {
    width: 70%;
    max-width: 350px;
    margin: 0 auto 20px auto;
  }
  main .contact_wrapper .contact_ul li a {
    font-size: 20px;
  }
  main .policy_wrapper {
    width: 80%;
  }
  #main_top #top_movie {
    width: 90%;
  }
  #main_top #top_movie video {
    height: calc(100vh - 200px);
  }
  #main_top #top_movie .top_title {
    font-size: 20px;
  }
  #main_top #top_aboutus {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 100px 0 300px 0;
  }
  #main_top #top_aboutus .inner_aboutus {
    display: flex;
    justify-content: center;
    width: 1200px;
  }
  #main_top #top_aboutus .inner_aboutus .aboutus_txt {
    position: unset;
    justify-content: flex-start;
    width: 1200px;
    height: 600px;
    margin: 0 auto;
    padding: 100px 0 0 0;
  }
  #main_top #top_aboutus .inner_aboutus .aboutus_txt a:active {
    background-position: bottom right;
    background-size: 0 1px;
  }
  #main_top #top_aboutus .inner_aboutus .aboutus_img {
    position: absolute;
    left: 50%;
    bottom: calc(-40vw + 150px);
    width: 100vw;
    z-index: 2;
  }
  #main_top #top_aboutus .inner_aboutus .aboutus_img.fadein {
    transform: translate(-50%, 0);
  }
  #main_top #top_aboutus .inner_aboutus .aboutus_img.fadein.scrollin {
    transform: translate(-50%, 0) !important;
  }
  #main_top #top_aboutus .inner_aboutus .aboutus_img img {
    width: 80%;
  }
  #main_top #top_feature .inner_feature ul {
    width: 70%;
  }
  #main_top #top_feature .inner_feature ul li {
    flex-direction: column-reverse;
    gap: 20px;
  }
  #main_top #top_feature .inner_feature ul li .li_left,
  #main_top #top_feature .inner_feature ul li .li_right {
    width: 100%;
  }
  #main_top #top_feature .inner_feature ul li a:active {
    background: #fff;
    color: #ABD373;
  }
  #main_top #top_goods .swiper_container .swiper-button-prev:hover:not(.swiper-button-disabled),
  #main_top #top_goods .swiper_container .swiper-button-next:hover:not(.swiper-button-disabled) {
    opacity: unset;
  }
  #main_top #top_goods .swiper_container .swiper-button-prev.swiper-button-disabled,
  #main_top #top_goods .swiper_container .swiper-button-next.swiper-button-disabled {
    opacity: 0.35;
  }
  #main_top #top_goods .btn:active {
    background: #fff;
    color: #BDDB6A;
  }
  #main_company .company_wrapper h3 {
    margin: 0 auto 20px auto;
  }
  #main_company #company_vision {
    margin: 50px auto 100px auto;
  }
  #main_company #company_vision .vision_contents p {
    font-size: 24px;
  }
  #main_company #company_history .history_wrapper dl {
    flex-direction: column;
  }
  #main_company #company_history .history_wrapper dl dt {
    width: 100%;
    padding: 20px 0 10px 0;
    border: none;
    font-weight: bold;
  }
  #main_company #company_history .history_wrapper dl dd {
    width: 100%;
    padding: 0 0 20px 0;
  }
  #main_company #company_overview {
    margin: 50px auto 100px auto;
  }
  #main_company #company_overview .overview_wrapper dl {
    flex-direction: column;
    width: 90%;
  }
  #main_company #company_overview .overview_wrapper dl dt {
    width: 100%;
    padding: 20px 0 10px 0;
    font-weight: bold;
  }
  #main_company #company_overview .overview_wrapper dl dd {
    width: 100%;
    padding: 0 0 20px 0;
  }
  #main_feature h3 {
    margin: 50px 0;
  }
  #main_feature #feature_cut h3 {
    margin: 0 0 50px 0;
  }
  #main_feature .feature_contents .feature_wrapper {
    width: 90%;
  }
  #main_feature .feature_contents .feature_wrapper .big_img {
    top: 100%;
  }
  #main_feature .feature_contents .feature_wrapper .big_img img {
    width: 400px;
  }
  #main_feature .feature_contents .feature_wrapper .feature_txt {
    padding: 50px 50px 120px 50px !important;
  }
  #main_feature .feature_contents .feature_wrapper:nth-child(2n) {
    margin: 0 0 400px auto;
  }
  #main_feature .feature_contents .feature_wrapper:nth-child(2n) .feature_txt {
    margin: 0 0 0 auto;
  }
  #main_feature .feature_contents .feature_wrapper:nth-child(2n) .big_img {
    left: -10%;
  }
  #main_feature .feature_contents .feature_wrapper:nth-child(2n) .small_img {
    right: 0;
  }
  #main_feature .feature_contents .feature_wrapper:nth-child(2n+1) {
    margin: 0 auto 400px 0;
  }
  #main_feature .feature_contents .feature_wrapper:nth-child(2n+1) .big_img {
    right: -10%;
  }
  #main_feature .feature_contents .feature_wrapper:nth-child(2n+1) .small_img {
    left: 0;
  }
  #main_goodsAll #goodsAll_wrapper {
    flex-direction: column;
    width: 80%;
  }
  #main_goodsAll #goodsAll_wrapper li {
    width: 100%;
  }
  .main_goodsDetail .goodsDetail_wrapper {
    width: 70%;
  }
  .main_goodsDetail .goodsDetail_wrapper .detail_btn:active {
    background: #fff;
    color: #BDDB6A;
  }
  .main_contact .contact_txt {
    font-size: 24px;
  }
  .main_contact .confirm_txt {
    margin: 50px 0;
  }
  .main_contact .dataChk {
    width: 80%;
    margin: 0 auto;
  }
  .main_contact .dataChk .confirm_table {
    width: 100%;
  }
  .main_contact .dataChk .confirm_table tr th {
    display: block;
    width: 100%;
    padding: 20px 0 0 0;
    border: none;
  }
  .main_contact .dataChk .confirm_table tr td {
    display: block;
    width: 100%;
    padding: 10px 0 20px 0;
  }
  #main_contact .contact_form .dataChk .confirm_table {
    width: 100%;
  }
  #main_contact .contact_form .dataChk .confirm_table tr th {
    display: block;
    width: 100%;
    padding: 20px 0 0 0;
    border: none;
  }
  #main_contact .contact_form .dataChk .confirm_table tr td {
    display: block;
    width: 100%;
    padding: 10px 0 20px 0;
  }
  footer .footer_inner .footer_contents {
    flex-direction: column;
    gap: 50px;
  }
  footer .footer_inner .footer_contents .footer_left,
  footer .footer_inner .footer_contents .footer_right {
    width: 80%;
    margin: 0 auto;
  }
  #page-top {
    bottom: 20px;
  }
  .fadein.fadein-header {
    transform: translate(0, -60px);
  }
}
@media screen and (max-width: 480px) {
  header .header_flex .header_logo a {
    padding: 0 20px;
  }
  header .header_flex .header_logo a img {
    height: 32px;
  }
  main .top_wrapper h1 {
    font-size: 30px;
  }
  main .contact_wrapper {
    padding: 60px 0;
  }
  main .contact_wrapper .contact_ul li {
    width: 100%;
    margin: 0 0 20px 0;
  }
  main .policy_wrapper {
    width: 90%;
    margin: 50px auto;
  }
  #main_top #top_movie .top_title {
    font-size: 16px;
  }
  #main_top #top_aboutus .inner_aboutus .aboutus_img {
    bottom: calc(-40vw + 100px);
  }
  #main_top #top_aboutus .inner_aboutus .aboutus_img img {
    width: 90%;
    aspect-ratio: 3/2;
  }
  #main_top #top_feature .inner_feature .feature_title {
    top: -90px;
    left: -70px;
    width: 180px;
    height: 180px;
  }
  #main_top #top_feature .inner_feature ul {
    width: 80%;
  }
  #main_top #top_goods .btn {
    padding: 10px 0;
    font-size: 16px;
  }
  #main_company #company_vision .vision_contents p {
    font-size: 20px;
  }
  #main_company #company_vision .vision_contents img {
    width: 100%;
    height: auto;
  }
  #main_company #company_history h3 {
    top: -90px;
    left: -70px;
    width: 180px;
    height: 180px;
  }
  #main_company #company_history .history_wrapper {
    padding: 100px 5% 50px 5%;
  }
  #main_company #company_history .history_wrapper dl {
    font-size: 14px;
  }
  #main_company #company_history .history_wrapper dl dt {
    padding: 20px 0 0 0;
  }
  #main_company #company_overview {
    width: 90%;
  }
  #main_company #company_overview .overview_wrapper dl {
    font-size: 14px;
  }
  #main_company #company_overview .overview_wrapper dl dt {
    padding: 20px 0 0 0;
  }
  #main_feature .feature_contents .feature_wrapper {
    width: 95%;
  }
  #main_feature .feature_contents .feature_wrapper .big_img {
    top: calc(100% + 40px);
  }
  #main_feature .feature_contents .feature_wrapper .big_img img {
    width: 80vw;
  }
  #main_feature .feature_contents .feature_wrapper .small_img {
    bottom: -70px;
  }
  #main_feature .feature_contents .feature_wrapper .small_img img {
    width: 210px;
  }
  #main_feature .feature_contents .feature_wrapper .feature_txt {
    padding: 32px 32px 102px 32px !important;
  }
  #main_feature .feature_contents .feature_wrapper .feature_txt h4 {
    font-size: 20px;
  }
  #main_feature .feature_contents .feature_wrapper .feature_txt p {
    font-size: 16px;
  }
  #main_feature .feature_contents .feature_wrapper:nth-child(2n) {
    margin: 0 0 320px auto;
  }
  #main_feature .feature_contents .feature_wrapper:nth-child(2n) .big_img {
    left: -5%;
  }
  #main_feature .feature_contents .feature_wrapper:nth-child(2n+1) {
    margin: 0 auto 320px 0;
  }
  #main_feature .feature_contents .feature_wrapper:nth-child(2n+1) .big_img {
    right: -5%;
  }
  #main_goodsAll #goodsAll_wrapper {
    width: 90%;
  }
  .main_goodsDetail .goodsDetail_wrapper {
    width: 80%;
  }
  .main_goodsDetail .goodsDetail_wrapper .detail_title {
    font-size: 20px;
  }
  .main_goodsDetail .goodsDetail_wrapper .detail_btn {
    margin: 50px auto 0 auto;
    padding: 10px 0;
    font-size: 16px;
  }
  .main_contact .contact_txt {
    font-size: 20px;
  }
  .main_contact .confirm_txt {
    font-size: 14px;
  }
  .main_contact .contact_form {
    width: 90%;
  }
  .main_contact .dataChk {
    width: 90%;
  }
  .main_contact label {
    font-size: 14px;
  }
  .main_contact .btnBlock input,
  .main_contact .btnBlock a {
    padding: 10px 0;
    font-size: 16px;
  }
  .main_contact #thanks {
    width: 90%;
    margin: 50px auto;
  }
  .main_contact #thanks p {
    font-size: 14px;
  }
  footer .footer_inner .footer_contents .footer_left,
  footer .footer_inner .footer_contents .footer_right {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */