/* https://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, textarea, select, button {
  letter-spacing: inherit;
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

input {
  outline: none;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

@keyframes lineAnime {
  0% {
    transform: translateY(-100%);
  }
  10% {
    transform: translateY(0%);
  }
  55% {
    transform: translateY(0%);
  }
  65% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(100%);
  }
}

@keyframes lineAnime_horizontal {
  0% {
    transform: translateX(-100%);
  }
  10% {
    transform: translateX(0%);
  }
  55% {
    transform: translateX(0%);
  }
  65% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes scroll {
  0% {
    height: 100%;
    transform: translateY(-100%);
  }
  10% {
    height: 100%;
    transform: translateY(0%);
  }
  55% {
    height: 100%;
    transform: translateY(0%);
  }
  65% {
    height: 0;
    transform: translateY(0%);
  }
  100% {
    height: 0;
    transform: translateY(0%);
  }
}

body {
  padding-right: 40px;
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  line-height: 2;
  color: #333333;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 1000px) {
  body {
    padding-right: 0;
    font-size: 14px;
    line-height: 2.14;
  }
}

main {
  display: block;
}

select::-ms-expand {
  display: none;
}

@media (max-width: 1000px) {
  .tbHide {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .spHide {
    display: none !important;
  }
}

.tb {
  display: none;
}

@media (max-width: 1000px) {
  .tb {
    display: block;
  }
}

.sp {
  display: none;
}

@media (max-width: 767px) {
  .sp {
    display: block;
  }
}

a {
  display: inline-block;
  vertical-align: top;
  color: inherit;
  text-decoration: none;
}

html.is-pc a[href^="tel:"] {
  pointer-events: none;
}

img,
span {
  display: inline-block;
  vertical-align: top;
}

button {
  padding: 0;
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
  border: none;
  outline: none;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
}

button:active > *,
button:focus > * {
  position: relative;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.btn {
  position: relative;
  display: block;
  min-width: 312px;
  margin: 0 auto;
  padding: 11px 75px 11px 32px;
  border-radius: 47px;
  font-size: 20px;
  color: #FFFFFF;
  background: #AD8F61;
  overflow: visible;
}

@media (max-width: 1000px) {
  .btn {
    display: block;
    width: 300px;
    min-width: 300px;
    padding: 8px 75px 8px 28px;
    font-size: 18px;
    text-align: left;
  }
}

.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  z-index: 2;
  width: 40px;
  height: 7px;
  margin-top: 1px;
  background: url("/common/img/icon-link.png") center right/contain no-repeat;
  transform: translateY(-100%);
  transition: 0.3s ease-in-out;
}

.is-pc .btn {
  transition: 0.3s ease-in-out;
}

.is-pc .btn:hover {
  background: #333333;
}

.is-pc .btn:hover::after {
  right: -25px;
}

.backBtn {
  position: relative;
  display: inline-block;
  min-width: 312px;
  margin: 0 auto;
  padding: 11px 32px 11px 75px;
  border-radius: 47px;
  font-size: 20px;
  color: #FFFFFF;
  text-align: right;
  background: #AD8F61;
}

@media (max-width: 1000px) {
  .backBtn {
    display: block;
    width: 300px;
    min-width: 300px;
    padding: 8px 28px 8px 75px;
    font-size: 18px;
    text-align: right;
  }
}

.backBtn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 25px;
  z-index: 2;
  width: 40px;
  height: 7px;
  margin-top: 1px;
  background: url("/common/img/icon-link-back.png") center right/contain no-repeat;
  transform: translateY(-100%);
  transition: 0.3s ease-in-out;
}

.is-pc .backBtn {
  transition: 0.3s ease-in-out;
}

.is-pc .backBtn:hover {
  background: #333333;
}

.is-pc .backBtn:hover::after {
  left: -25px;
}

.smallBtn {
  position: relative;
  display: block;
  width: 140px;
  margin: 35px auto 0;
  padding: 4px 35px 4px 22px;
  border: 1px solid #333333;
  border-radius: 21px;
  background: #FFFFFF;
}

@media (max-width: 767px) {
  .smallBtn {
    width: 122px;
    padding: 3px 25px 3px 20px;
  }
}

.smallBtn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -15px;
  z-index: 2;
  width: 40px;
  height: 7px;
  margin-top: 1px;
  background: url("/common/img/icon-link.png") center right/contain no-repeat;
  transform: translateY(-100%);
  transition: 0.3s ease-in-out;
}

@media (max-width: 767px) {
  .smallBtn::after {
    width: 36px;
    height: 6px;
  }
}

.is-pc .smallBtn {
  transition: 0.3s ease-in-out;
}

.is-pc .smallBtn:hover {
  color: #FFFFFF;
  background: #AD8F61;
}

.is-pc .smallBtn:hover::after {
  right: -50px;
}

.redTxt {
  color: #F23A3A;
}

.header__logo {
  position: fixed;
  z-index: 600;
  top: 23px;
  left: 50%;
  width: 175px;
  margin-left: -108px;
}

@media (max-width: 1000px) {
  .header__logo {
    top: 10px;
    width: 146px;
    margin-left: -73px;
  }
}

.header__logo img {
  width: 100%;
}

.nav {
  position: fixed;
  top: 0;
  right: -337px;
  z-index: 700;
  width: 377px;
  height: 100%;
  text-align: center;
  color: #FFFFFF;
  background: #333333;
  overflow: auto;
  transition: 0.3s ease-in-out;
}

@media (max-width: 1000px) {
  .nav {
    position: static;
    width: auto;
    height: auto;
    transform: none;
  }
}

.nav.is-active {
  transform: translateX(-337px);
}

@media (max-width: 1000px) {
  .nav.is-active {
    transform: none;
  }
}

.is-pc .nav a {
  transition: 0.3s ease-in-out;
}

.is-pc .nav a:hover {
  opacity: 0.6;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 680px;
}

@media (max-width: 1000px) {
  .nav__inner {
    position: fixed;
    top: 0;
    right: -480px;
    z-index: 690;
    width: 480px;
    min-height: 0;
    font-size: 16px;
    background: #333333;
    overflow: auto;
    transition: 0.3s ease-in-out;
  }
}

@media (max-width: 767px) {
  .nav__inner {
    right: -100%;
    width: 100%;
  }
}

@media (max-width: 1000px) {
  .nav.is-active .nav__inner {
    transform: translateX(-100%);
  }
}

.nav__item:nth-child(n + 2) {
  margin-top: 20px;
}

@media (max-width: 1000px) {
  .nav__item:nth-child(n + 2) {
    margin-top: 17px;
  }
}

.nav__sns {
  width: 263px;
  margin-top: 150px;
  padding-top: 15px;
  border-top: 1px solid #FFFFFF;
}

@media (max-width: 1000px) {
  .nav__sns {
    margin-top: 120px;
    padding-bottom: 20px;
  }
}

.nav__snsCol2 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.nav__snsCol2 li {
  margin: 0 20px;
}

.nav__row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.nav__insta {
  display: block;
  width: 25px;
  margin-top: 21px;
  line-height: 1;
}

.nav__insta img {
  width: 100%;
}

.nav__base {
  display: block;
  width: 50px;
  margin-left: 10px;
  line-height: 1;
}

.nav__base img {
  width: 100%;
}

.nav__btn {
  position: absolute;
  top: 50%;
  left: 10px;
  z-index: 1;
  width: 22px;
  height: 22px;
  margin-top: -11px;
}

.is-pc .nav__btn {
  transition: 0.3s ease-in-out;
}

.is-pc .nav__btn:hover {
  opacity: 0.6;
}

@media (max-width: 1000px) {
  .nav__btn {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    z-index: 700;
    width: 40px;
    height: 38px;
    margin-top: 0;
    background: #333333;
  }
}

.nav__btn::before, .nav__btn::after {
  content: "";
  position: absolute;
  left: 1px;
  width: 20px;
  height: 1px;
  background: #FFFFFF;
  transition: transform 0.3s ease-in-out;
}

@media (max-width: 1000px) {
  .nav__btn::before, .nav__btn::after {
    left: 10px;
  }
}

.nav__btn::before {
  top: 5px;
  transform-origin: left top;
}

@media (max-width: 1000px) {
  .nav__btn::before {
    top: 12px;
  }
}

.nav__btn::after {
  top: auto;
  bottom: 4px;
  transform-origin: left bottom;
}

@media (max-width: 1000px) {
  .nav__btn::after {
    bottom: 11px;
  }
}

.nav__btn span {
  position: absolute;
  top: 50%;
  left: 1px;
  width: 20px;
  height: 1px;
  background: #FFFFFF;
  transition: 0.3s ease-in-out;
}

@media (max-width: 1000px) {
  .nav__btn span {
    left: 10px;
  }
}

.nav.is-active .nav__btn {
  left: 22px;
}

@media (max-width: 1000px) {
  .nav.is-active .nav__btn {
    left: auto;
  }
}

.nav.is-active .nav__btn span {
  opacity: 0;
}

.nav.is-active .nav__btn::before, .nav.is-active .nav__btn::after {
  width: 30px;
}

.nav.is-active .nav__btn::before {
  top: 0;
  transform: rotate(45deg);
}

@media (max-width: 1000px) {
  .nav.is-active .nav__btn::before {
    top: 8px;
  }
}

.nav.is-active .nav__btn::after {
  bottom: 0;
  transform: rotate(-45deg);
}

@media (max-width: 1000px) {
  .nav.is-active .nav__btn::after {
    bottom: 8px;
  }
}

.scroll {
  position: fixed;
  right: 17px;
  bottom: 22px;
  z-index: 701;
  width: 5px;
  height: 54px;
  overflow: hidden;
}

@media (max-width: 1000px) {
  .scroll {
    display: none;
  }
}

.scroll::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/common/img/icon-scroll.png") center bottom/100% auto no-repeat;
  transform: translateY(-100%);
  animation: scroll 5s ease-in-out 0s infinite;
}

.links {
  margin-top: 60px;
}

@media (max-width: 767px) {
  .links {
    padding: 0 20px;
  }
}

.links__item {
  position: relative;
  display: block;
  width: 440px;
  margin: 20px auto 0;
  padding: 22px 20px 22px 103px;
  font-size: 20px;
  border: 1px solid #333333;
  border-radius: 68px;
}

.is-pc .links__item {
  transition: 0.3s ease-in-out;
}

.is-pc .links__item:hover {
  opacity: 0.6;
}

@media (max-width: 767px) {
  .links__item {
    width: 100%;
    margin: 30px 0 0;
    padding: 17px 5px 17px 72px;
    font-size: 16px;
  }
}

.links__icon {
  position: absolute;
  top: 50%;
  left: 34px;
  z-index: 1;
  width: 60px;
  margin-top: -30px;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .links__icon {
    left: 25px;
    width: 40px;
    margin-top: -20px;
    border-radius: 5px;
  }
}

.links__base {
  position: absolute;
  top: 50%;
  left: 34px;
  z-index: 1;
  width: 60px;
  margin-top: -30px;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .links__base {
    left: 15px;
  }
}

.contactInfo {
  text-align: center;
  margin-top: 65px;
}

@media (max-width: 1000px) {
  .contactInfo {
    margin-top: 70px;
  }
}

@media (max-width: 767px) {
  .contactInfo {
    margin-top: 40px;
  }
}

.contactInfo__telWrap {
  margin-bottom: 35px;
}

@media (max-width: 767px) {
  .contactInfo__telWrap {
    display: none;
  }
}

.contactInfo__tel {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin: 5px 0 12px;
  font-size: 30px;
  line-height: 1;
}

.contactInfo__num {
  margin-left: 15px;
  font-size: 42px;
}

.contactInfo .btn {
  display: inline-block;
  text-align: left;
  margin: 0 30px;
}

@media (max-width: 1000px) {
  .contactInfo .btn {
    margin: 0 20px;
  }
}

@media (max-width: 767px) {
  .contactInfo .btn {
    display: block;
    margin: 30px auto 0;
  }
}

.contactInfo .sp {
  display: none;
}

@media (max-width: 767px) {
  .contactInfo .sp {
    display: block;
  }
}

.footer {
  margin-top: 92px;
  color: #FFFFFF;
  background: #333333;
}

@media (max-width: 1000px) {
  .footer {
    margin-top: 84px;
  }
}

@media (max-width: 767px) {
  .footer {
    margin-top: 50px;
  }
}

.footer__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 20px;
}

@media (max-width: 767px) {
  .footer__inner {
    display: block;
    max-width: 100%;
    padding: 34px 15px 18px 28px;
  }
}

.footer__right {
  margin-right: 5px;
}

@media (max-width: 767px) {
  .footer__right {
    margin-right: 0;
  }
}

.footer__logo {
  width: 205px;
}

.footer__logo img {
  width: 100%;
}

.footer__info {
  margin-top: 20px;
  font-size: 14px;
}

@media (max-width: 1000px) {
  .footer__info {
    font-size: 12px;
    line-height: 2.08;
  }
}

@media (max-width: 767px) {
  .footer__info {
    margin-top: 5px;
  }
}

.footer__tel {
  margin-right: 1em;
}

.footer__sns {
  display: flex;
  align-items: center;
  max-width: 294px;
  margin-top: 15px;
  padding-top: 5px;
  font-size: 14px;
  border-top: 1px solid #FFFFFF;
}

@media (max-width: 767px) {
  .footer__sns {
    display: inline-flex;
    margin-top: 8px;
    font-size: 12px;
  }
}

.footer__sns a {
  display: inline-flex;
  align-items: center;
}

.is-pc .footer__sns a {
  transition: 0.3s ease-in-out;
}

.is-pc .footer__sns a:hover {
  opacity: 0.6;
}

.footer__sns a:nth-child(2) {
  margin-left: 24px;
}

@media (max-width: 767px) {
  .footer__sns a:nth-child(2) {
    margin-left: 16px;
  }
}

.footer__instaIcon {
  width: 25px;
  margin-right: 8px;
}

@media (max-width: 767px) {
  .footer__instaIcon {
    width: 20px;
  }
}

.footer__baseIcon {
  width: 100px;
}

.footer__copyright {
  position: absolute;
  bottom: 36px;
  right: 20px;
  z-index: 1;
  font-size: 12px;
  text-align: right;
}

@media (max-width: 1000px) {
  .footer__copyright {
    font-size: 10px;
  }
}

@media (max-width: 767px) {
  .footer__copyright {
    position: static;
    display: block;
    width: 100%;
    margin-top: 26px;
    font-size: 8px;
  }
}

.footerLinks {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  line-height: 1.5;
  width: 597px;
  height: 72px;
  margin-top: 6px;
}

@media (max-width: 1000px) {
  .footerLinks {
    width: 450px;
    font-size: 12px;
    overflow: hidden;
  }
}

@media (max-width: 767px) {
  .footerLinks {
    flex-direction: row;
    width: 100%;
    height: auto;
    margin-top: 15px;
  }
}

@media (max-width: 767px) {
  .footerLinks li {
    width: 50%;
  }
}

.footerLinks li:nth-child(-n + 2) a {
  margin-left: 0;
}

.footerLinks a {
  position: relative;
  margin: 12px 0 0 5px;
  padding-right: 50px;
  padding-left: 7px;
  border-radius: 30px;
}

@media (max-width: 1000px) {
  .footerLinks a {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .footerLinks a {
    margin: 10px 0 0 0;
    padding: 0 25px 0 0;
    border-radius: 0;
  }
}

.footerLinks a::before {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  width: 17px;
  height: 7px;
  margin-top: -3px;
  background: url("/common/img/icon-link-footer.png") center right/contain no-repeat;
  transform: translateY(-50%);
  transition: 0.3s ease-in-out;
}

@media (max-width: 767px) {
  .footerLinks a::before {
    right: 0;
  }
}

.footerLinks a::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 35px;
  height: 7px;
  margin-top: -3px;
  background: url("/common/img/icon-link-footer-white.png") center right/contain no-repeat;
  transform: translateY(-50%);
  transition: 0.3s ease-in-out;
  opacity: 0;
}

.is-pc .footerLinks a {
  transition: 0.3s ease-in-out;
}

.is-pc .footerLinks a:hover {
  color: #333333;
  background: #FFFFFF;
}

.is-pc .footerLinks a:hover::before {
  opacity: 0;
}

.is-pc .footerLinks a:hover::after {
  opacity: 1;
}

.footerLinks__txt {
  position: relative;
  z-index: 3;
}

.generalSection {
  display: flex;
  align-items: flex-start;
}

@media (max-width: 1000px) {
  .generalSection {
    display: block;
  }
}

.generalSection--osake {
  flex-direction: row-reverse;
}

@media (max-width: 1000px) {
  .generalSection--osake {
    margin-top: 60px;
  }
}

@media (max-width: 767px) {
  .generalSection--osake {
    margin-top: 0;
  }
}

.generalSection__visualWrap {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 50%;
  overflow: hidden;
}

@media (max-width: 1000px) {
  .generalSection__visualWrap {
    position: relative;
    width: 100%;
  }
}

.generalSection__visual {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("/common/img/bg-okome.jpg") center center/cover no-repeat;
}

@media (max-width: 1000px) {
  .generalSection__visual {
    height: 660px;
  }
}

@media (max-width: 767px) {
  .generalSection__visual {
    height: 500px;
  }
}

.generalSection__visual::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #AD8F61;
  transition: 0.5s ease-in-out;
}

.generalSection__visual.is-show::after {
  transform: translateX(-100%);
}

.generalSection--osake .generalSection__visual {
  background-image: url("/common/img/bg-osake.jpg");
}

.generalSection--osake .generalSection__visual.is-show::after {
  transform: translateX(100%);
}

@media (max-width: 1000px) {
  .generalSection--osake .generalSection__visual.is-show::after {
    transform: translateX(-100%);
  }
}

.generalSection--factory .generalSection__visual {
  background-image: url("/factory/img/bg-factory.jpg?0324");
}

@media (max-width: 1000px) {
  .generalSection--factory .generalSection__visual {
    height: 1254px;
  }
}

@media (max-width: 767px) {
  .generalSection--factory .generalSection__visual {
    height: 490px;
  }
}

.generalSection__heading {
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  font-size: 36px;
  color: #FFFFFF;
  transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
  .generalSection__heading {
    font-size: 34px;
  }
}

.generalSection__contents {
  width: 50%;
}

@media (max-width: 1000px) {
  .generalSection__contents {
    width: 100%;
    padding: 0 60px;
  }
}

@media (max-width: 767px) {
  .generalSection__contents {
    padding: 0;
  }
}

.generalSection__firstUnit {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  margin-top: 10vh;
  padding: 0 13%;
  text-align: center;
}

@media (max-width: 1000px) {
  .generalSection__firstUnit {
    height: auto;
    margin: 80px 0 70px;
    padding: 0 25px;
  }
}

@media (max-width: 767px) {
  .generalSection__firstUnit {
    margin: 90px 0;
  }
}

.generalSection--factory .generalSection__firstUnit {
  margin-top: 0;
}

@media (max-width: 1000px) {
  .generalSection--factory .generalSection__firstUnit {
    margin: 70px 0 80px;
  }
}

@media (max-width: 767px) {
  .generalSection--factory .generalSection__firstUnit {
    margin: 24px 0 50px;
  }
}

.generalSection__title {
  position: relative;
  margin-top: 27px;
  font-size: 32px;
  line-height: 1.7;
}

@media (max-width: 1000px) {
  .generalSection__title {
    margin-top: 22px;
  }
}

@media (max-width: 767px) {
  .generalSection__title {
    margin-top: 11px;
  }
}

.generalSection--factory .generalSection__title {
  margin-top: 0;
}

.generalSection--factory .generalSection__title::before {
  content: none;
}

.generalSection__icon {
  width: 122px;
}

.generalSection--osake .generalSection__icon {
  width: 96px;
}

.generalSection__txt {
  max-width: 100%;
  margin-top: 30px;
}

@media (max-width: 1000px) {
  .generalSection__txt {
    line-height: 2.29;
  }
}

.generalSection--factory .generalSection__txt {
  margin-top: 10px;
  text-align: left;
}

.is-IE-sticky .generalSection {
  align-items: stretch;
}

.is-IE-sticky .generalSection__visualWrap {
  position: relative;
}

.is-IE-sticky .generalSection__visual.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
}

@media (max-width: 767px) {
  .is-IE-sticky .generalSection__visual.is-fixed {
    position: relative;
  }
}

.is-IE-sticky .generalSection__visual.is-absolute {
  position: absolute;
  top: auto;
  left: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .is-IE-sticky .generalSection__visual.is-absolute {
    position: relative;
  }
}

.is-IE-sticky .generalSection--osake .generalSection__visual.is-fixed {
  left: auto;
  right: 40px;
}

.is-IE-sticky .generalSection--osake .generalSection__visual.is-absolute {
  left: auto;
  right: 0;
}

.card__imgWrap, .card__imgWrap--left {
  position: relative;
  overflow: hidden;
}

.card__imgWrap::before, .card__imgWrap--left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  background: #AD8F61;
  transition: transform 0.5s ease-in-out,
 opacity 0.5s 0.5s ease-in-out;
}

.card__imgWrap.is-show::before, .card__imgWrap--left.is-show::before {
  opacity: 0;
  transform: translateX(100%);
}

@media (max-width: 1000px) {
  .card__imgWrap.is-show::before, .card__imgWrap--left.is-show::before {
    transform: translateX(-100%);
  }
}

.card__imgWrap--left.is-show::before {
  transform: translateX(-100%);
}

.card__img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
}

.card__txtArea {
  padding: 43px 13% 50px;
  text-align: center;
}

@media (max-width: 1000px) {
  .card__txtArea {
    padding: 75px 0;
  }
}

@media (max-width: 767px) {
  .card__txtArea {
    padding: 33px;
  }
}

.card__txtArea.cream {
  background: #F4F0EA;
}

.card__title {
  display: inline-block;
  font-size: 26px;
  line-height: 1.7;
}

@media (max-width: 1000px) {
  .card__title {
    font-size: 20px;
    line-height: 1.5;
  }
}

.card__txt {
  margin: 14px auto 0;
  text-align: left;
}

@media (max-width: 1000px) {
  .card__txt {
    max-width: 580px;
    margin-top: 25px;
  }
}

@media (max-width: 767px) {
  .card__txt {
    max-width: 100%;
    margin-top: 18px;
  }
}

.lineTxt,
.lineTxt--hasPeriod {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.lineTxt.sp,
.lineTxt--hasPeriod.sp {
  display: none;
}

@media (max-width: 767px) {
  .lineTxt.sp,
  .lineTxt--hasPeriod.sp {
    display: inline-block;
  }
}

.lineTxt::before,
.lineTxt--hasPeriod::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 1px;
  transform: translateX(-100%);
  background: #707070;
}

.lineTxt[data-line="2"]::before,
.lineTxt--hasPeriod[data-line="2"]::before {
  animation-delay: 0.5s !important;
}

.lineTxt--hasPeriod::before {
  width: calc(100% - 0.5em);
}

.lineTxt--hasPeriod::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  height: 2px;
  width: 0.5em;
  background: #FFFFFF;
}

.cream .lineTxt--hasPeriod::after {
  background: #F4F0EA;
}

.generalSection__title.is-show .lineTxt::before,
.generalSection__title.is-show .lineTxt--hasPeriod::before,
.card__title.is-show .lineTxt::before,
.card__title.is-show .lineTxt--hasPeriod::before {
  animation: lineAnime_horizontal 5s ease-in-out 0.01s infinite;
}
