@charset "UTF-8";

/* general style */

/* header */

.c-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100px;
  padding-right: 50px;
  padding-left: 50px;
  background: #ffffff;
}

.c-header .l-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1600px;
}

.c-header.fixed {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
}

.c-header.fixed + .clear {
  margin-top: 120px;
}

.c-header.transparent {
  background: transparent;
}

.c-header .l-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.c-header .c-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.c-header .c-header__logo:hover {
  opacity: 0.5;
}

.c-header .c-header__logo .logo {
  width: auto;
  height: 53px;
}

.c-header .c-header__logo .slogan {
  margin-left: 30px;
  font-size: 1.3rem;
  font-family: A-OTF-R;
}

.c-header .c-header_action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-header .c-header_action > *:not(:last-child) {
  margin-right: 30px;
}

.c-header .c-header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: wrap;
  -ms-flex: wrap;
  flex: wrap;
}

.c-header .c-header__menu li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 100px;
  height: 100%;
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.4;
  font-family: A-OTF-R;
}
.c-header .c-header__menu li.sp1024 {
  display: none;
}

.c-header .c-header__menu li:not(:last-child) {
  margin-right: 30px;
}

.c-header .c-header__menu a {
  position: relative;
}

.c-header .c-header__menu a span {
  width: 100%;
  margin-top: 5px;
  float: left;
}

.c-header .c-header__menu a::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 1px;
  -webkit-transform: scale(0);
  transform: scale(0);
  background: #225b26;
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-header .c-header__menu a:hover {
  color: #225b26;
}

.c-header .c-header__menu a:hover::after {
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* mainvisual */

.c-mainvisual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  height: 100vh;
  padding: 90px 0 0px 0;
}

.c-mainvisual__bg {
  position: relative;
  width: 90%;
  max-width: 1400px;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  border-radius: 10px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.c-mainvisual__bg > img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.c-mainvisual__bg > video {
  position: unset;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.c-mainvisual__cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 3;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.c-mainvisual__cnt img {
  width: 80%;
  max-width: 528px;
}

.c-mainvisual__cnt p {
  width: 80%;
  max-width: 680px;
  margin-top: 27px;
  padding-top: 27px;
  border-top: 1px solid;
  color: white;
  font-size: 3.6rem;
  font-family: A-OTF-R;
  text-align: center;
}

.c-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* position: absolute; */
  position: fixed;
  /* right: calc((100% - 1720px) / 2 - 40px); */

  right: 0;
  /* bottom: calc(50% - 174.375px); */
  top: 100px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 80px;
  z-index: 9;
  transition: 0.4s;
}

.c-action.r {
  right: 0 !important;
}

.c-action li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.c-action li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #225b26;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  color: #fff;
  font-size: 1.4rem;
  font-family: A-OTF-R;
  letter-spacing: 0.1em;
  line-height: 1.3;
  height: 220px;
  position: relative;
}

.c-action li a::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../img/common/fix-menu-bg.png");
  background-size: auto;
  position: absolute;
}

.c-action li a:hover {
  background: #173e1a;
  /* background: rgba(23, 62, 26, 90%); */
}

.c-action li a i {
  margin-bottom: 10px;
  background-size: contain;
  background-repeat: no-repeat;
}

.c-action li:first-of-type a {
  /* border-radius: 10px 10px 0 0; */
  border-radius: 10px 0 0 0;
}

.c-action li:last-of-type a {
  /* border-radius: 0 0 10px 10px; */
  border-radius: 0 0 0 10px;
}

.c-action li:first-of-type a::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  background-color: #fff;
  bottom: 0;
}

.c-action li:first-of-type a i {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%23FFFFFF"><path d="M4.558 7l4.701-4.702c.199-.198.46-.298.721-.298.613 0 1.02.505 1.02 1.029 0 .25-.092.504-.299.711l-3.26 3.26h-2.883zm12.001 0h2.883l-4.702-4.702c-.198-.198-.459-.298-.72-.298-.613 0-1.02.505-1.02 1.029 0 .25.092.504.299.711l3.26 3.26zm7.441 2v2h-.642c-.534 0-1.022.305-1.257.786l-4.101 10.214h-12l-4.101-10.216c-.234-.48-.722-.784-1.256-.784h-.643v-2h24zm-15 4c0-.552-.448-1-1-1s-1 .448-1 1v5c0 .552.448 1 1 1s1-.448 1-1v-5zm4 0c0-.552-.448-1-1-1s-1 .448-1 1v5c0 .552.448 1 1 1s1-.448 1-1v-5zm4 0c0-.552-.447-1-1-1s-1 .448-1 1v5c0 .552.447 1 1 1s1-.448 1-1v-5z"/></svg>');
  width: 18px;
  height: 18px;
}

/* .c-action li:nth-of-type(2) a i {
  background-image: url('data:image/svg+xml;utf8,<svg version="1.1" id="_x32_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="512px" height="512px" viewBox="0 0 512 512" style="width: 32px; height: 32px; opacity: 1;" xml:space="preserve"><path class="st0" d="M477.984,39.203H34.016C15.219,39.203,0,54.438,0,73.219v283.969c0,18.781,15.219,34.016,34.016,34.016H220v7.578c0,18.781-15.219,34.016-34.016,34.016H136v40h73.188h93.625H376v-40h-49.984c-18.797,0-34.016-15.234-34.016-34.016v-7.578h185.984c18.797,0,34.016-15.234,34.016-34.016V73.219C512,54.438,496.781,39.203,477.984,39.203z M464,315.859c0,6.266-5.078,11.344-11.344,11.344H59.344c-6.266,0-11.344-5.078-11.344-11.344V98.547c0-6.266,5.078-11.344,11.344-11.344h393.313c6.266,0,11.344,5.078,11.344,11.344V315.859z" style="fill: rgb(255, 255, 255);"></path></svg>');
  width: 18px;
  height: 18px;
} */

.c-action li:nth-of-type(2) a i {
  background-image: url("../img/common/ic-insta.svg");
  width: 18px;
  height: 18px;
}

.c-mainvisual .swiper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.c-mainvisual .swiper .image-container {
  height: 100%;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: 10s ease-out;
  transition: 10s ease-out;
}

.c-mainvisual .swiper .swiper-slide.swiper-slide-active .image-container {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.c-mainvisual .swiper-pagination {
  bottom: 48px !important;
  left: 50px !important;
  max-width: 1330;
  padding-bottom: 30px;
  border-bottom: 1px solid white;
  text-align: left;
}

.c-mainvisual .swiper-pagination ::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 270px;
  border-bottom: 1px solid #111111;
  content: "";
}

#Y_sclorebox {
  z-index: 100;
  position: absolute;
  bottom: 89px;
  left: calc(50% - 50px);
  width: 100px;
}

#Y_sclore {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

#Y_sclore div {
  display: block;
  width: 1px;
  height: 80px;
  background: white;
}

#Y_sclore span {
  -webkit-animation: sdb 1.5s infinite;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 2px;
  height: 20px;
  margin: 0 auto;
  background: #225b26;
  text-align: center;
  animation: sdb 1.5s infinite;
}

#Y_sclore p {
  z-index: 99;
  width: 100px;
  margin-top: 17px;
  color: white;
  font-size: 10px;
  letter-spacing: 2px;
  text-align: center;
  font-family: A-OTF-R;
}

@-webkit-keyframes sdb {
  0% {
    -webkit-transform: rotate(0deg) translate(0, 0);
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(0deg) translate(0, 60px);
    opacity: 1;
  }
}

@keyframes sdb {
  0% {
    -webkit-transform: rotate(0deg) translate(0, 0);
    transform: rotate(0deg) translate(0, 0);
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(0deg) translate(0, 60px);
    transform: rotate(0deg) translate(0, 60px);
    opacity: 1;
  }
}

/* mainvisual */

.c-bl-ins {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  padding: 50px 0 110px 0;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: white;
}

.c-bl-ins .l-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.c-bl-ins__left {
  width: 360px;
  padding: 50px 30px;
  border-radius: 5px;
  background: #225b26;
  color: white;
}

.c-bl-ins__left .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 18px;
}

.c-bl-ins__left .icon img {
  width: 20px;
  margin-bottom: 1px;
}

.c-bl-ins__left .icon span {
  color: white;
  font-size: 1.5rem;
  font-family: A-OTF-R;
}

.c-bl-ins__left h3 {
  margin-bottom: 21px;
  font-size: 2.3rem;
  line-height: 1.6;
  font-family: A-OTF-R;
  text-align: center;
}

.c-bl-ins__left p {
  margin-bottom: 23px;
  font-size: 1.2rem;
  line-height: 1.8;
}

.c-bl-ins__left .c-button {
  height: 61px;
}

.c-bl-ins__right {
  width: calc(100% - 400px);
}

.c-bl-ins__right .list-imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: -20px;
}

.c-bl-ins__right .list-imgs li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: calc((100% - 80px) / 5);
  height: 184px;
  margin-bottom: 20px;
}

.c-bl-ins__right .list-imgs li:not(:nth-of-type(5n)) {
  margin-right: 20px;
}

.c-bl-ins__right .list-imgs li img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

/* block web */

.c-bl-web {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  min-height: 500px;
  padding: 79px 0 110px 0;
}

/* .c-bl-web .c-title {
    margin-bottom: 70px;
} */

.c-title-container {
  margin-bottom: 40px;
}

.c-title-container p {
  margin-top: 20px;
  font-size: 1.5rem;
  line-height: 1.8;
}

.c-title-container .text-green {
  font-size: 2.2rem;
  font-family: A-OTF-R;
}

.c-bl-web__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.c-bl-web__main a,
.c-bl-web__main a:hover {
  transition: 0.4s;
}

.c-bl-web__main a:hover {
  opacity: 0.8;
}

.c-bl-web__content {
  width: calc(100% - 720px);
}

.c-bl-web__content h3 {
  margin-bottom: 54px;
  font-family: A-OTF-R;
}

.c-bl-web__content p {
  font-size: 1.5rem;
  line-height: 1.8;
}

.c-bl-web__content .content {
  margin-bottom: 46px;
}

.c-bl-web__content a:not(.c-button) {
  margin-left: 20px;
  font-size: 2.2rem;
  font-family: A-OTF-R;
}

.c-bl-web__content .c-button {
  max-width: 350px;
  height: 80px;
  margin-top: 50px;
  font-size: 1.6rem;
}

.c-bl-web__content .c-button img,
.c-bl-web__content .c-button i {
  width: 20px;
  height: 24px;
}

.c-bl-web__thumb {
  width: 680px;
  height: 510px;
}

.c-bl-web__thumb img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

/* block banner */

.c-bl-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  padding-bottom: 40px;
}

.c-bl-banner .banner {
  position: relative;
  width: 100%;
  height: 690px;
}

.c-bl-banner .banner img {
  object-fit-position: center;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-bl-banner .banner::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 17, 17, 0.2);
  content: "";
}

.c-bl-banner .banner.no-shadow::before {
  content: none;
}

.c-bl-banner .c-title {
  position: relative;
  margin: -45px auto 0 auto;
}

/* footer */

.c-info-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.c-info-footer .item {
  position: relative;
  width: 33.3333333333%;
  overflow: hidden;
}

.c-info-footer .item .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 17, 17, 0.29);
}

.c-info-footer .item .content .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 25px 25px 30px 25px;
  color: white;
}

.c-info-footer .item .content .btn::before,
.c-info-footer .item .content .btn::after {
  position: absolute;
  width: 0%;
  height: 0%;
  content: "";
  opacity: 0;
  -webkit-transition: width 0.2s linear, height 0.15s 0.2s ease-out,
    opacity 0s 0.35s;
  transition: width 0.2s linear, height 0.15s 0.2s ease-out, opacity 0s 0.35s;
}

.c-info-footer .item .content .btn::before {
  bottom: 0;
  left: -2px;
  border-top: 2px solid rgb(255, 255, 255);
  border-left: 2px solid rgb(255, 255, 255);
}

.c-info-footer .item .content .btn::after {
  top: 0;
  right: 0;
  border-right: 2px solid rgb(255, 255, 255);
  border-bottom: 2px solid rgb(255, 255, 255);
}

.c-info-footer .item .content strong {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 2.8rem;
}

.c-info-footer .item .content span {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.c-info-footer .item .content img {
  width: 15px;
}

.c-info-footer .item .content p {
  display: none;
  font-weight: bold;
  font-size: 2.8rem;
}

.c-info-footer .item .content + img {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.c-info-footer .item:hover strong,
.c-info-footer .item:hover span {
  display: none;
}

.c-info-footer .item:hover p {
  display: block;
}

.c-info-footer .item:hover .btn::before,
.c-info-footer .item:hover .btn::after {
  width: 100%;
  height: 99%;
  opacity: 1;
  -webkit-transition: width 0.2s 0.15s ease-out, height 0.15s ease-in,
    opacity 0s;
  transition: width 0.2s 0.15s ease-out, height 0.15s ease-in, opacity 0s;
}

.c-info-footer .item:hover .content + img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.c-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  min-height: 500px;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #225b26;
  color: white;
  font-family: A-OTF-R;
}

.c-footer a {
  color: white;
}

.c-footer a:hover {
  opacity: 0.5;
}

.c-footer .l-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1500px;
  padding: 87px 0 50px 0;
}

.c-footer .c-ls-footers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0 60px;
  width: 100%;
}
.c-footer .c-ls-footers > .item:last-child {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 700px;
  gap: 0 40px;
}
.c-footer .c-ls-footers > .item:last-child .c-footer__menu {
  max-width: 260px;
}
.c-footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 17px;
}

.c-footer__logo h3 {
  font-weight: bold;
  font-size: 3.4rem;
}

.c-footer__logo img {
  -ms-flex-item-align: start;
  align-self: flex-start;
  width: auto;
  height: 65px;
}

.c-footer__slogan {
  margin-bottom: 64px;
}

.c-footer__slogan p {
  margin-bottom: 5px;
  font-size: 1.6rem;
  line-height: 1.4;
}

.c-footer__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 25px;
}

.c-footer__contacts .item {
  margin-bottom: 30px;
  font-size: 1.5rem;
}

.c-footer__contacts .item span {
  font-size: 1.5rem;
}

.c-footer__contacts .item a {
  font-weight: bold;
  font-size: 2.8rem;
}

.c-footer__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  font-size: 1.5rem;
}

.c-footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.c-footer__menu li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin-bottom: 23px;
  font-size: 1.8rem;
  line-height: 1.4;
}

.c-footer__menu li::before {
  margin-right: 18px;
  float: left;
  content: "─";
  font-size: 1rem;
}

.c-footer .c-lt-store {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  max-width: 370px;
  margin-bottom: 47px;
}

.c-footer .c-lt-store .item {
  width: 100%;
  margin-bottom: 30px;
}
/* 
.c-footer .c-lt-store .item:not(:nth-of-type(2n)) {
    margin-right: 30px;
} */

.c-footer .c-lt-store .item .content {
  width: 100%;
  padding: 0 0;
}

.c-footer .c-lt-store .item figure {
  width: 100%;
  height: 282px;
  margin-bottom: 27px;
  overflow: hidden;
  border-radius: 5px;
}

.c-footer .c-lt-store .item figure img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.c-footer .c-lt-store .item h3 {
  margin-bottom: 13px;
  font-weight: bold;
  font-size: 1.7rem;
}

.c-footer .c-lt-store .item p {
  font-size: 1.5rem;
  line-height: 1.8;
}

.c-footer .c-lt-store .item .c-button {
  max-width: 280px;
  height: 80px;
  margin-top: 36px;
  font-size: 1.6rem;
}

.c-footer .c-lt-store .item .c-button img,
.c-footer .c-lt-store .item .c-button i {
  width: 20px;
  height: 24px;
}

.c-footer .c-copy-right {
  font-size: 0.9rem;
}

/* breadcrumb */

.c-breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.c-breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 40px;
  font-size: 1.2rem;
  line-height: 1.4;
}

.c-breadcrumbs li {
  float: left;
}

.c-breadcrumbs li:not(:last-child) {
  margin-right: 15px;
}

.c-breadcrumbs li:not(:last-child)::after {
  margin-left: 15px;
  float: right;
  content: ">";
}

/* list about */

.c-ls-about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  padding: 100px 0 0 0;
}

.c-ls-about .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.c-ls-about .item:not(:last-child) {
  margin-bottom: 80px;
}

.c-ls-about .item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
}

.c-ls-about .item:nth-child(even) .c-text-ver {
  right: calc(-80px + -30px);
  left: unset;
}

.c-ls-about .item:nth-child(even) .c-text-ver-2 {
  right: unset;
  left: calc(-80px + -23px);
}

.c-ls-about__content {
  width: 640px;
}

.c-ls-about__content h3 {
  margin-bottom: 46px;
  font-size: 3.4rem;
  line-height: 1.4;
  font-family: A-OTF-R;
}

.c-ls-about__content h3 strong {
  color: #225b26;
  font-size: 4.4rem;
}

.c-ls-about__content p {
  font-size: 1.5rem;
  line-height: 1.8;
}

.c-ls-about__thumb {
  width: 720px;
  height: 405px;
  overflow: hidden;
  border-radius: 5px;
}

.c-ls-about__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.c-ls-about__thumb video {
  position: unset;
  width: 100%;
  height: 100%;
}

.c-imgs {
  display: inline-block;
  width: 100%;
}

.c-imgs img {
  width: 50%;
  float: left;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-bl-maps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.c-ls-maps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.c-ls-maps .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.c-ls-maps .item:not(:last-child) {
  margin-bottom: 80px;
}

.c-ls-maps .c-title-4 {
  margin-bottom: 40px;
}

.c-ls-maps__thumb {
  width: 670px;
  height: 520px;
  overflow: hidden;
  border-radius: 5px;
}

.c-ls-maps__thumb img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.c-ls-maps__content {
  width: 670px;
}

.c-ls-maps__content h3 {
  margin-bottom: 46px;
  font-size: 3.4rem;
  line-height: 1.4;
  font-family: A-OTF-R;
}

.c-ls-maps__content h3 strong {
  color: #225b26;
  font-size: 4.4rem;
}

.c-ls-maps__content p {
  font-size: 1.5rem;
  line-height: 1.8;
}

.c-ls-maps__map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  max-width: 1280px;
  margin: 40px auto 0 auto;
}

.c-ls-maps__map h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 35px;
  font-size: 2.8rem;
  font-family: A-OTF-R;
}

.c-ls-maps__map iframe {
  position: relative;
  width: 1280px;
  height: 420px;
}

.c-text-ver {
  position: absolute;
  top: 0;
  left: calc(-80px + -30px);
  padding-top: 75px;
  color: #111111;
  font-size: 3.2rem;
  font-family: A-OTF-R;
  direction: rtl;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: bt-rl;
  writing-mode: vertical-rl;
}

.c-text-ver::before {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 60px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-left: 1px solid #111111;
  content: "";
}

.c-text-ver-2 {
  position: absolute;
  top: calc(50% - 100px);
  right: calc(-80px + -23px);
  height: 200px;
  color: #dddddd;
  font-size: 1.2rem;
  font-family: A-OTF-R;
  direction: rtl;
  text-align: center;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: bt-rl;
  writing-mode: vertical-rl;
}

.c-products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
}

.c-products .item figure {
  width: 100%;
  height: 240px;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 5px;
  background-color: #fef4e8;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
  box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
}

.c-products .item img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-products .item:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.c-products .item h3 {
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
}

/* .c-products .item:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
} */

.c-products .swiper {
  width: 1300px;
}

.c-products .swiper-button-prev,
.c-products .swiper-button-next {
  top: 40%;
}

.c-products .swiper-button-prev::after,
.c-products .swiper-button-next::after {
  display: none;
}

.c-products .swiper-button-prev img,
.c-products .swiper-button-next img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.c-products .swiper-button-prev {
  left: 0;
}

.c-products .swiper-button-next {
  right: 0;
}

.c-products2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}
.c-products2 .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: baseline;
  align-content: space-between;
  padding: 20px;
  background: #fff;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
}
.c-products2 a.item {
  align-content: baseline;
}
.c-products2 .item > a {
  display: flex;
  flex-wrap: wrap;
}
.c-products2 .item figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  height: 210px;
  margin-bottom: 16px;
  overflow: hidden;
  background-color: #eeeeee;
}
.c-products2 .item figure img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.c-products2 .item .sticky {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 60px;
  min-height: 50px;
  padding: 19px 15px 16px 15px;
  background: #d90000;
  color: white;
  font-size: 1rem;
  line-height: 1.4;
  text-transform: uppercase;
}
.c-products2 .item .info {
  width: 100%;
  padding: 0 10px 0 10px;
}
.c-products2 .item .date {
  display: block;
  min-width: 100px;
  margin-bottom: 11px;
  color: #999999;
  font-size: 1.1rem;
  line-height: 1.4;
}
.c-products2 .item .cates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}
.c-products2 .item .cates .cate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: auto;
  min-width: 80px;
  min-height: 26px;
  margin-bottom: 26px;
  padding: 2px 10px 1px 10px;
  background: #065b8e;
  color: white;
  font-size: 1.1rem;
  line-height: 1;
  text-align: center;
}
.c-products2 .item .cates .cate:not(:last-child) {
  margin-right: 10px;
}
.c-products2 .item .cates .cate:not(:first-child) {
  display: none;
}
.c-products2 .item .title {
  width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.8;
}
.c-products2 .item .price {
  font-size: 1.3rem;
  line-height: 1.8;
}
.c-products2 .item .description {
  width: 100%;
  font-size: 1.3rem;
  line-height: 1.8;
}
.c-products2 .item .description p {
  font-size: 1.3rem;
}
.c-products2 .item .description p:last-child {
  margin-bottom: 0;
}
.c-products2 .item .c-showmore2 {
  margin: 0;
}
.c-products2 .item form {
  width: calc(100% + 40px);
  margin: 20px -20px -20px -20px;
}
.c-products2 .item .btn-cart {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px 20px 20px 20px;
  background: #225b26;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  text-align: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.c-products2 .item .btn-cart .c-icon {
  width: 25px;
  height: 23px;
  margin-right: 10px;
}

.c-products2 .item:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.c-products2--center .item .info {
  text-align: center;
}
.c-products2--box .item {
  padding: 20px;
  background: white;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
}
.c-products2.sliders {
  position: relative;
}
.c-products2.sliders .swiper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  padding: 0 50px;
  overflow: unset;
}
.c-products2.sliders .swiper-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.c-products2.sliders .swiper-slide {
  height: auto;
}
.c-products2.sliders .swiper-button-prev,
.c-products2.sliders .swiper-button-next {
  top: 32%;
}
.c-products2.sliders .swiper-button-prev::after,
.c-products2.sliders .swiper-button-next::after {
  display: none;
}
.c-products2.sliders .swiper-button-prev img,
.c-products2.sliders .swiper-button-next img {
  width: 16px;
  height: 26px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.c-products2.sliders .swiper-button-prev {
  left: 0;
}
.c-products2.sliders .swiper-button-next {
  right: 0;
}
.c-products2.sliders .swiper-pagination {
  bottom: -8px !important;
}
.c-products2.sliders .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #707070;
  opacity: 1;
}
.c-products2.sliders .swiper-pagination-bullet-active {
  background: #065b8e;
}

.c-tabs-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  margin-bottom: -20px;
}
.c-tabs-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 180px;
  height: 54px;
  margin-bottom: 20px;
  padding: 12px 10px 10px 10px;
  border: 2px solid #225b26;
  background: 0 0;
  color: #225b26;
  font-weight: 700;
  font-size: 1.4rem;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-tabs-list li:last-child {
  margin-right: 0 !important;
}
.c-tabs-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #225b26;
  line-height: 1;
}
.c-tabs-list li.is-active,
.c-tabs-list li:hover {
  border-color: #225b26;
  background: #225b26;
  color: #fff;
}
.c-tabs-list li.is-active a,
.c-tabs-list li:hover a {
  color: #fff;
}
.c-tabs-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto -20px auto;
}
.c-tabs-child .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #191219;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.5;
}
.c-tabs-child .item span {
  position: relative;
  padding-left: 30px;
}
.c-tabs-child .item span::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  padding: 1px 0 0 1px;
  border: 1px solid #fc7316;
  border-radius: 20px;
  content: "+";
  color: #fc7316;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}
.c-tabs-child .item.is-active {
  color: #fc7316;
}
.c-tabs-child .item.is-active span::before {
  background: #fc7316;
  color: #fff;
}
.c-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  margin-bottom: -8px;
}
.c-pagination .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
  border-radius: 50px;
  font-size: 1.2rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-pagination .item:not(:last-child) {
  margin-right: 8px;
}
.c-pagination .item i {
  width: 17px;
  height: 17px;
}
.c-pagination .item.current,
.c-pagination .item:hover {
  background: #225b26;
  color: #fff;
}
.c-historys {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}
.c-historys .item-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 500px;
  height: 645px;
  padding: 20px;
  border: 1px solid #707070;
  border-radius: 10px;
  background: white;
}
.c-historys .item-main h3 {
  font-weight: 500;
  font-size: 4.4rem;
  line-height: 1.8;
  font-family: "A-OTF-R";
}
.c-historys .item-main span {
  margin-top: 17px;
  color: #cccccc;
  font-size: 1.3rem;
  line-height: 1.4;
  font-family: "A-OTF-R";
}
.c-historys .item-main p {
  max-width: 324px;
  margin: 34px 0 63px 0;
  font-size: 1.5rem;
  line-height: 1.8;
}
.c-historys .control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 500px;
  margin-bottom: 12px;
}
.c-historys .control > [class*="swiper-button-"]:not(:last-child) {
  margin-left: 20px;
}
.c-historys .item {
  width: 860px;
}
.c-historys .item figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  height: 645px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #cccccc;
}
.c-historys .item figure img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.c-historys .item .info {
  width: 100%;
  padding: 0 0;
}
.c-historys .item h3 {
  display: flex;
  align-items: center;
  padding: 0 10px 26px 10px;
  margin-bottom: 32px;
  border-bottom: 1px solid #111111;
  font-weight: 500;
  font-size: 2.8rem;
  line-height: 1.8;
  font-family: "A-OTF-R";
  position: relative;
}
.c-historys .item h3 span {
  min-width: 74px;
  min-height: 31px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  padding: 3px 5px 5px 5px;
  background: #225b26;
  float: left;
  font-size: 1.5rem;
  line-height: 1;
  color: white;
}
.c-historys .item .description {
  font-size: 1.5rem;
  line-height: 1.8;
}
.c-historys .item .description p {
  font-size: 1.5rem;
  line-height: 1.8;
}
.c-historys .item .description p:last-child {
  margin-bottom: 0;
}
.c-historys .swiper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  overflow: unset;
}
.c-historys .swiper .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  align-content: flex-start;
  width: calc((100% - 1400px) / 2 + 550px);
  padding-right: 50px;
}
.c-historys .swiper .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: calc(100% - ((100% - 1400px) / 2 + 550px));
}
.c-historys .swiper-container {
  width: 100%;
  overflow: hidden;
}
.c-historys .swiper-button-next,
.c-historys .swiper-button-prev {
  position: unset;
  width: 41px;
  height: 41px;
}
.c-historys .swiper-button-next::after,
.c-historys .swiper-button-prev::after {
  display: none;
}
.c-historys .swiper-button-next img,
.c-historys .swiper-button-prev img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
.c-historys .swiper-pagination {
  position: unset;
}
.c-historys .swiper-pagination-fraction {
  font-size: 1.8rem;
}
.c-historys .swiper-pagination-fraction span {
  color: #111111;
  font-size: 1.8rem;
}

.c-historys .swiper-pagination strong {
  font-size: 75px;
  font-weight: 500;
  font-family: "A-OTF-R";
}

.c-historys .swiper-pagination span {
  margin-left: 5px;
  font-size: 28px;
  font-weight: 500;
  font-family: "A-OTF-R";
}

.c-historys .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: baseline;
  line-height: 1.4;
  margin-top: 40px;
  margin-bottom: 20px;
}

.c-historys .control > [class*="swiper-button-"] {
  transform: translateY(50%);
}

.l-info {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.l-info .left,
.l-info .right {
  width: calc((100% - 40px) / 2);
  display: flex;
  flex-wrap: wrap;
}

.l-info .left .swiper,
.l-info .right .swiper {
  width: 100%;
}

.thumbs {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.thumbs .swiper-main .swiper-slide {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.thumbs .swiper-main .swiper-slide figure {
  width: 100%;
  height: 510px;
}

.thumbs .swiper-main .swiper-slide h3 {
  width: 100%;
  margin-top: 20px;
  padding: 0 20px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.8;
}

.thumbs .swiper-thumbs .swiper-slide {
  width: 100%;
  height: 165px;
  margin-top: 34px;
}

.thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.thumbs .slick-slider {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.thumbs .slider-for .slick-list {
  width: 100%;
}

.thumbs .slider-for .slick-slide figure {
  width: 100%;
  /* height: 510px; */
  height: 31vw;
  max-height: 510px;
  margin-bottom: 0;
}

.thumbs .slider-for .slick-slide h3 {
  width: 100%;
  margin-top: 20px;
  padding: 0 20px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.8;
}

.thumbs .slider-for .slick-track {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}

.thumbs .slider-nav .slick-slide {
  /* width: 100%; */
  /* height: 165px; */
  height: 12vw;
  max-height: 165px;
  margin-top: 34px;
  padding: 0 5px;
}

/* .thumbs .slider-nav .slick-list {
    padding-left: 0 !important;
    padding-right: 0 !important;
} */

.thumbs .slick-slide:focus-visible {
  outline: none;
}

.thumbs .slick-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.thumbs.min-thumbs .slider-nav .slick-list {
  width: 100%;
}

.thumbs.min-thumbs .slider-nav .slick-track {
  width: 100% !important;
  transform: none !important;
}

.thumbs.min-thumbs .slider-nav .slick-slide {
  width: calc(100% / 3);
}

.l-info .right .cates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}
.l-info .right .cates .cate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: auto;
  min-width: 180px;
  min-height: 54px;
  margin-bottom: 20px;
  padding: 18px 10px 16px 10px;
  border: 1px solid;
  color: #225b26;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
.l-info .right .cates .cate:not(:last-child) {
  margin-right: 10px;
}
.l-info .right .cates .cate:not(:first-child) {
  display: none;
}

.l-info .right .title {
  width: 100%;
  margin-bottom: 21px;
  font-size: 4.4rem;
  font-weight: 500;
  line-height: 1.4;
  font-family: "A-OTF-R";
}

.l-info .right .price::before {
  content: "";
  width: 5px;
  height: 100%;
  max-height: 50px;
  background: #225b26;
  position: absolute;
  top: 0;
  left: 0;
}

.l-info .right .price strong {
  font-size: 4.4rem;
  font-weight: 500;
  line-height: 1;
}

.l-info .right .price small {
  font-size: 2.8rem;
  font-weight: 500;
}

.l-info .right .price {
  max-height: 50px;
  display: block;
  margin-bottom: 26px;
  padding-left: 25px;
  line-height: 1.5;
  font-family: "A-OTF-R";
  position: relative;
}

.l-info .right .post-content p:last-child {
  margin-bottom: 0;
}

.l-info .right .post-content p {
  font-size: 1.5rem;
  line-height: 1.8;
}

.l-info .right .post-content {
  width: 100%;
  margin-bottom: 38px;
}

.l-info .right .amount {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
  font-size: 2.3rem;
  font-family: "A-OTF-R";
}

.l-info .right .amount input {
  width: 90px;
  height: 41px;
  margin: 0 30px;
  border: 1px solid #dddddd;
  box-shadow: none;
  border-radius: 3px;
  text-align: center;
  font-size: 2.3rem;
  font-weight: 500;
  font-family: "A-OTF-R";
}

.l-info .right .amount {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
  font-size: 2.3rem;
  font-family: "A-OTF-R";
}

.l-info .right .amount input {
  width: 90px;
  height: 41px;
  margin: 0 30px;
  border: 1px solid #dddddd;
  box-shadow: none;
  border-radius: 3px;
  text-align: center;
  font-size: 2.3rem;
  font-weight: 500;
  font-family: "A-OTF-R";
}

.l-info .right > form > .c-button {
  height: 80px;
  font-size: 1.5rem;
  font-family: "font-mei";
}

.l-info .right > form > .c-button .c-icon {
  width: 24px;
  height: 24px;
}

.l-info .right .c-gr-button [class*="c-button"] {
  padding: 20px 10px;
}

.l-info .right .c-list-btn,
.l-info .right .c-gr-button {
  margin-top: 20px;
}

.l-info .right .c-gr-button [class*="c-button"] strong {
  font-size: 1.6rem;
  font-weight: 500;
}

.l-dl > dt {
  cursor: pointer;
}

.l-dl > dd {
  display: none;
}

/* ============================================ */
.c-btn1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 290px;
  height: 59px;
  background-color: #225b26;
  border: 2px solid #225b26;
  color: #fff;
  font-weight: 700;
  font-size: 26px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 70px;
  transition: 0.4s;
}
.c-btn1:hover {
  background-color: #fff;
  color: #225b26;
}
/* ============================================ */
/* ============================================ */
/* ============================================ */
/* ============================================ */
/* ============================================ */
