@charset "UTF-8";
.faderight {
  opacity: 0;
  -webkit-transform: translateX(6vw);
  transform: translateX(6vw);
}

.faderight[data-scroll] {
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}

.faderight[data-scroll="in"] {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.faderight[data-scroll="out"] {
  opacity: 0;
  -webkit-transform: translateX(6vw);
  transform: translateX(6vw);
}

.fadeleft {
  opacity: 0;
  -webkit-transform: translateX(-6vw);
  transform: translateX(-6vw);
}

.fadeleft[data-scroll] {
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}

.fadeleft[data-scroll="in"] {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.fadeleft[data-scroll="out"] {
  opacity: 0;
  -webkit-transform: translateX(-6vw);
  transform: translateX(-6vw);
}

.fadeup {
  opacity: 0;
  -webkit-transform: translateY(5vh);
  transform: translateY(5vh);
}

.fadeup[data-scroll] {
  -webkit-transition: 0.6s ease-in;
  transition: 0.6s ease-in;
}

.fadeup[data-scroll="in"] {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.fadeup[data-scroll="out"] {
  -webkit-transform: translateY(5vh);
  transform: translateY(5vh);
}

.fadeOpa {
  opacity: 0;
}

.fadeOpa[data-scroll] {
  -webkit-transition: 0.8s ease-in;
  transition: 0.8s ease-in;
}

.fadeOpa[data-scroll="in"] {
  opacity: 1;
}

.fadeOpa2 {
  opacity: 0;
}

.fadeOpa2[data-scroll] {
  -webkit-transition: 1.3s cubic-bezier(0.4, 0, 0.2, 1) 700ms;
  transition: 1.3s cubic-bezier(0.4, 0, 0.2, 1) 700ms;
}

.fadeOpa2[data-scroll="in"] {
  opacity: 1;
}

.fadeBar {
  height: 1px;
  opacity: 0;
}

.fadeBar[data-scroll] {
  -webkit-transition: 0.8s ease-in;
  transition: 0.8s ease-in;
}

.fadeBar[data-scroll="in"] {
  height: 60px;
  opacity: 1;
}

.fadeBar2 {
  -webkit-transform: scale(0);
  transform: scale(0);
}

.fadeBar2[data-scroll] {
  -webkit-transition: 1s ease-in;
  transition: 1s ease-in;
}

.fadeBar2[data-scroll="in"] {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

@-webkit-keyframes updown {
  0%,
  40%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  70% {
    -webkit-transform: translateY(-2vh);
    transform: translateY(-2vh);
  }
}

@keyframes updown {
  0%,
  40%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  70% {
    -webkit-transform: translateY(-2vh);
    transform: translateY(-2vh);
  }
}

@-webkit-keyframes bigsmall {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  60% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

@keyframes bigsmall {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  60% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.bigsmall {
  -webkit-animation: bigsmall2 2s linear 1.6s infinite normal;
  animation: bigsmall2 2s linear 1.6s infinite normal;
}

@-webkit-keyframes rotate1 {
  0%,
  50%,
  100% {
    -webkit-transform: rotate(0deg) translateY(0) translateX(0);
    transform: rotate(0deg) translateY(0) translateX(0);
  }
  25% {
    -webkit-transform: rotate(-1deg) translateY(0.3vh) translateX(-1vw);
    transform: rotate(-1deg) translateY(0.3vh) translateX(-1vw);
  }
  75% {
    -webkit-transform: rotate(1deg) translateY(0.3vh) translateX(1vw);
    transform: rotate(1deg) translateY(0.3vh) translateX(1vw);
  }
}

@keyframes rotate1 {
  0%,
  50%,
  100% {
    -webkit-transform: rotate(0deg) translateY(0) translateX(0);
    transform: rotate(0deg) translateY(0) translateX(0);
  }
  25% {
    -webkit-transform: rotate(-1deg) translateY(0.3vh) translateX(-1vw);
    transform: rotate(-1deg) translateY(0.3vh) translateX(-1vw);
  }
  75% {
    -webkit-transform: rotate(1deg) translateY(0.3vh) translateX(1vw);
    transform: rotate(1deg) translateY(0.3vh) translateX(1vw);
  }
}

@-webkit-keyframes open {
  30% {
    opacity: 1;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  40%,
  60%,
  80% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes open {
  30% {
    opacity: 1;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  40%,
  60%,
  80% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.fade_open {
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-animation: open 2s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards;
  animation: open 2s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards;
}

@-webkit-keyframes open_opacity {
  100% {
    opacity: 1;
  }
}

@keyframes open_opacity {
  100% {
    opacity: 1;
  }
}

.open_opacity {
  opacity: 0;
  -webkit-animation: open_opacity 2s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards;
  animation: open_opacity 2s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards;
}

@-webkit-keyframes mergo {
  0% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  55% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  85% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes mergo {
  0% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  55% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  85% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.mergo[data-scroll="in"] {
  -webkit-animation: mergo 1.2s ease 0.5s 1 normal;
  animation: mergo 1.2s ease 0.5s 1 normal;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media screen and (max-width: 960px) {
  html {
    font-size: 50%;
  }
}

@media screen and (max-width: 599px) {
  html {
    font-size: 40%;
  }
}

body {
  font-size: 1.6em;
  width: 100%;
  margin: 0;
  padding: 0;
  color: #000;
  line-height: 1;
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic", "Yu Gothic UI",
    "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

.contents_wrap {
  width: 100%;
  overflow: hidden;
}

h1,
h2,
h3,
h4,
p {
  -webkit-margin-before: 0;
  margin-block-start: 0;
  -webkit-margin-after: 0;
  margin-block-end: 0;
  -webkit-margin-start: 0;
  margin-inline-start: 0;
  -webkit-margin-end: 0;
  margin-inline-end: 0;
  font-weight: 400;
}

a {
  text-decoration: none;
  cursor: pointer;
}

img {
  -webkit-backface-visibility: hidden;
}

.imgw {
  display: block;
  width: 100%;
  height: auto;
}

.imgh {
  display: block;
  width: auto;
  height: 100%;
}

.pc {
  display: block;
}

@media screen and (max-width: 960px) {
  .pc {
    display: none;
  }
}

@media screen and (max-width: 599px) {
  .pc {
    display: none;
  }
}

.tab {
  display: none;
}

@media screen and (max-width: 960px) {
  .tab {
    display: block;
  }
}

@media screen and (max-width: 599px) {
  .tab {
    display: none;
  }
}

.sp {
  display: none !important;
}

@media screen and (max-width: 960px) {
  .sp {
    display: none;
  }
}

@media screen and (max-width: 599px) {
  .sp {
    display: block !important;
  }
}

.no_pc {
  display: none;
}

@media screen and (max-width: 960px) {
  .no_pc {
    display: block !important;
  }
}

.no_sp {
  display: block;
}

@media screen and (max-width: 960px) {
  .no_sp {
    display: block;
  }
}

@media screen and (max-width: 599px) {
  .no_sp {
    display: none !important;
  }
}

.header {
  position: fixed;
  width: 100%;
  height: 100px;
  top: 0;
  left: 0;
  z-index: 100;
}

@media screen and (max-width: 599px) {
  .header {
    height: 70px;
  }
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 92%;
  height: 100%;
  -webkit-transition-duration: 600ms;
  transition-duration: 600ms;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  vertical-align: middle;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: right;
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
}

@media screen and (max-width: 599px) {
  .header__inner {
    display: block;
    position: fixed;
    opacity: 0;
    background-color: #faf7f7;
    width: 100%;
    height: 100vh;
    top: -100vh;
    left: 0;
    z-index: 50;
    padding-top: 17vh;
  }
  .header__inner.is-active {
    top: 0;
    opacity: 1;
  }
}

.header__logo {
  display: inline-block;
  margin-right: auto;
}

@media screen and (max-width: 599px) {
  .header__logo {
    display: none;
  }
}

.header__logoTit {
  font-size: 2.7rem;
  color: #2e2624;
  font-weight: 900;
  letter-spacing: 1px;
  text-align: left;
  margin: 0;
  line-height: 1;
}

.header__logoTit strong {
  font-size: 3rem;
  font-weight: 900;
}

.header__logoTxt {
  font-size: 0.8rem;
  text-align: center;
  margin-top: 10px;
}

.header__link {
  display: inline-block;
  color: #2e2624;
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-left: 30px;
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.header__link:first-child {
  margin-left: auto;
}

.header__link:hover {
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
}

@media screen and (max-width: 599px) {
  .header__link {
    font-size: 3rem;
    display: block;
    margin: 50px auto 0;
    text-align: center;
  }
}

.header__target {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 20px;
  top: 10px;
  z-index: 60;
}

.header__target span {
  position: absolute;
  content: "";
  top: 10px;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: #4e4846;
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
  -webkit-transition: 300ms;
  transition: 300ms;
}

.header__target span:nth-child(2) {
  top: 20px;
  width: 25px;
}

.header__target.is-active span {
  top: 15px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header__target.is-active span:nth-child(2) {
  top: 15px;
  width: 30px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.scroll {
  width: 20px;
  position: absolute;
  top: 20px;
  left: 15%;
}

@media screen and (max-width: 1500px) {
  .scroll {
    left: 10%;
  }
}

@media screen and (max-width: 1300px) {
  .scroll {
    left: 5%;
  }
}

@media screen and (max-width: 960px) {
  .scroll {
    left: unset;
    right: 5%;
  }
}

@media screen and (max-width: 599px) {
  .scroll {
    position: unset;
    width: 92%;
    margin: 0 auto;
  }
}

.scroll__txt {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  font-size: 1.4rem;
  text-align: center;
  color: #4e4846;
}

@media screen and (max-width: 599px) {
  .scroll__txt {
    -webkit-transform: unset;
    transform: unset;
    font-size: 3rem;
    text-align: left;
    letter-spacing: 2px;
    padding: 0 4px 8px;
    border-bottom: solid 1px #4e4846;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.scroll__bar {
  background-color: #4e4846;
  width: 1px;
  margin: 42px auto 0;
}

.scroll__bar.scroll__company {
  margin: 52px auto 0;
}

@media screen and (max-width: 599px) {
  .scroll__bar {
    display: none;
  }
}

.secTop {
  background-color: #faf7f7;
  padding: 18% 0 130px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

@media screen and (max-width: 960px) {
  .secTop {
    padding: 22% 0 130px;
  }
}

@media screen and (max-width: 599px) {
  .secTop {
    padding: 130px 0 60px;
  }
}

.secTop.secTop2 {
  padding: 160px 0 130px;
}

@media screen and (max-width: 960px) {
  .secTop.secTop2 {
    padding: 160px 0 130px;
  }
}

@media screen and (max-width: 599px) {
  .secTop.secTop2 {
    padding: 100px 0 60px;
  }
}

.secTop__bg1 {
  position: absolute;
  max-width: 1100px;
  width: 94%;
  top: 0;
  right: 0;
  z-index: -1;
}

.secTop__inner {
  width: 92%;
  max-width: 1100px;
  margin: 0 auto;
}

.secTop__company {
  font-size: 9rem;
  color: #2e2624;
  font-weight: 900;
  letter-spacing: 4px;
  text-align: left;
  margin: 0;
  line-height: 1;
}

.secTop__company strong {
  font-size: 10rem;
  font-weight: 900;
}

.secTop__company span {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateX(1vw);
  transform: translateX(1vw);
  -webkit-transition: 0.8s ease-out;
  transition: 0.8s ease-out;
}

@media screen and (max-width: 599px) {
  .secTop__company {
    font-size: 4.4rem;
    letter-spacing: 2px;
  }
  .secTop__company strong {
    font-size: 5rem;
  }
}

.secTop__wrap01 {
  margin-top: 30px;
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  display: -webkit-flex;
  display: flex;
  vertical-align: middle;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: left;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
}

@media screen and (max-width: 599px) {
  .secTop__wrap01 {
    margin-top: 25px;
    padding-left: 0;
  }
}

.secTop__bar {
  height: 1px;
  width: 60px;
  background-color: #2e2624;
  margin-right: 20px;
}

@media screen and (max-width: 599px) {
  .secTop__bar {
    display: none;
  }
}

.secTop__txt {
  font-size: 2.2rem;
  color: #2e2624;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: left;
  margin: 0;
  line-height: 1;
}

.secTop__aboutWrap {
  position: relative;
  margin-top: 18%;
}

@media screen and (max-width: 960px) {
  .secTop__aboutWrap {
    margin-top: 22%;
  }
}

@media screen and (max-width: 599px) {
  .secTop__aboutWrap {
    margin-top: 150px;
  }
}

.secTop__aboutInner {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 599px) {
  .secTop__aboutInner {
    width: 92%;
  }
}

.secTop__aboutTxt {
  font-size: 1.4rem;
  color: #4e4846;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: left;
  margin: 0;
  line-height: 2.1;
}

@media screen and (max-width: 599px) {
  .secTop__aboutTxt {
    text-align: justify;
    font-size: 2rem;
    line-height: 2;
  }
}

.secTop__aboutImg {
  position: absolute;
  max-width: 236px;
  width: 33%;
  top: -30px;
  left: 560px;
}

@media screen and (max-width: 960px) {
  .secTop__aboutImg {
    left: unset;
    right: 0;
  }
}

@media screen and (max-width: 599px) {
  .secTop__aboutImg {
    width: 25%;
    top: -7%;
  }
}

.secTop__completeInner {
  min-height: calc(100vh - 584px);
}

@media screen and (max-width: 599px) {
  .secTop__completeInner {
    min-height: calc(100vh - 341px);
  }
}

.secTop__completeHeader {
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  color: #4e4846;
}

.secTop__completeTxt {
  text-align: center;
  margin: 50px auto 0;
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 1px;
  color: #4e4846;
}

@media screen and (max-width: 599px) {
  .secTop__completeTxt {
    width: 92%;
    margin: 40px auto 0;
    font-size: 2rem;
  }
}

.secTop__completeBtn {
  display: block;
  margin: 50px auto 0;
  width: 400px;
  background-color: #4e4846;
  color: #fff;
  text-align: center;
  padding: 3px;
  font-size: 1.8rem;
  cursor: pointer;
}

@media screen and (max-width: 599px) {
  .secTop__completeBtn {
    font-size: 2.2rem;
    width: 68%;
  }
}

.secTop__completeBtnInner {
  padding: 18px 0;
  border: solid 1px #fff;
}

@media screen and (max-width: 599px) {
  .secTop__completeBtnInner {
    padding: 15px 0;
  }
}

.secService {
  position: relative;
  background-color: #efeded;
  padding: 30px 0 120px;
}

@media screen and (max-width: 599px) {
  .secService {
    padding: 60px 0 60px;
  }
}

.secService__wrap {
  width: 92%;
  max-width: 1000px;
  margin: 100px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  display: -webkit-flex;
  display: flex;
  vertical-align: middle;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 960px) {
  .secService__wrap {
    margin: 60px auto 0;
  }
}

@media screen and (max-width: 599px) {
  .secService__wrap {
    display: block;
    margin: 40px auto 0;
    padding-bottom: 40px;
    border-bottom: solid 1px #4e4846;
  }
  .secService__wrap:last-child {
    padding-bottom: 0;
    border-bottom: unset;
  }
}

.secService__bar {
  display: inline-block;
  width: 1px;
  height: auto;
  background-color: #4e4846;
  margin-right: 20px;
}

@media screen and (max-width: 960px) {
  .secService__bar {
    display: none;
  }
}

.secService__inner {
  margin: 0 auto 0 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

@media screen and (max-width: 960px) {
  .secService__inner {
    width: 65%;
  }
}

@media screen and (max-width: 599px) {
  .secService__inner {
    display: block;
    width: 100%;
    padding: 0;
    border-left: unset;
  }
}

.secService__innerTxtWrap {
  padding: 5px 0;
}

@media screen and (max-width: 599px) {
  .secService__innerTxtWrap {
    padding: 0;
  }
}

.secService__innerTit {
  font-size: 2.4rem;
  color: #2e2624;
  font-weight: 900;
  letter-spacing: 2px;
  text-align: left;
  margin: 0;
  line-height: 1;
}

@media screen and (max-width: 599px) {
  .secService__innerTit {
    margin-top: 20px;
  }
}

@media screen and (max-width: 599px) {
  .secService__innerTit {
    font-size: 2.6rem;
    font-weight: bold;
  }
}

.secService__innerTxt {
  font-size: 1.4rem;
  color: #4e4846;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: left;
  margin: 20px 0 0;
  line-height: 2.1;
}

@media screen and (max-width: 960px) {
  .secService__innerTxt {
    text-align: justify;
  }
}

@media screen and (max-width: 599px) {
  .secService__innerTxt {
    font-size: 2rem;
    margin-top: 15px;
  }
}

@media screen and (max-width: 599px) {
  .secService__img1 {
    width: 56%;
    margin: 0 auto;
  }
}

.secWorks {
  position: relative;
  background-color: #faf7f7;
  padding: 30px 0 120px;
}

@media screen and (max-width: 599px) {
  .secWorks {
    padding: 60px 0 80px;
  }
}

.secWorks__wrap {
  width: 92%;
  max-width: 900px;
  margin: 100px auto 0;
  position: relative;
}

@media screen and (max-width: 599px) {
  .secWorks__wrap {
    width: unset;
  }
}

@media screen and (max-width: 960px) {
  .secWorks__wrap {
    margin: 60px auto 0;
  }
}

@media screen and (max-width: 599px) {
  .secWorks__wrap {
    margin: 20px auto 0;
  }
}

.secWorks__tit {
  font-size: 2.4rem;
  color: #2e2624;
  font-weight: 900;
  letter-spacing: 2px;
  text-align: left;
  margin: 100px 0 0;
  line-height: 1;
}

@media screen and (max-width: 960px) {
  .secWorks__tit {
    margin: 60px auto 0;
  }
}

@media screen and (max-width: 599px) {
  .secWorks__tit {
    margin: 50px auto 0;
    width: 92%;
    font-size: 2.6rem;
    font-weight: bold;
  }
}

.secWorks__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

@media screen and (max-width: 599px) {
  .secWorks__inner {
    display: block;
    -webkit-flex-wrap: unset;
    -ms-flex-wrap: unset;
    flex-wrap: unset;
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
    -webkit-flex-direction: unset;
    -ms-flex-direction: unset;
    flex-direction: unset;
    overflow: hidden;
    margin: 40px auto 0;
    vertical-align: top;
  }
}

@media screen and (max-width: 599px) {
  .secWorks__inner .slick-track {
    vertical-align: top;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
  }
}

.secWorks__innerItem {
  display: inline-block;
  width: 42%;
  margin: 50px 0 0 16%;
}

.secWorks__innerItem:nth-child(2n + 1) {
  margin: 50px 0 0;
}

@media screen and (max-width: 599px) {
  .secWorks__innerItem {
    margin: 0 10px;
  }
  .secWorks__innerItem:nth-child(2n + 1) {
    margin: 0 10px;
  }
}

.secWorks__img {
  display: block;
  width: 100%;
  overflow: hidden;
  position: relative;
  border: solid 1px #2e2624;
}

.secWorks__imgInner {
  display: inline-block;
  position: relative;
}

.secWorks__innerTxt {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #2e2624;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 10px;
  font-size: 1.3rem;
  letter-spacing: 1px;
  text-align: center;
  z-index: 10;
}

.secWorks__txt {
  display: block;
  font-size: 1.8rem;
  color: #4e4846;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: left;
  margin: 12px 0 0;
  line-height: 1.4;
  text-align: center;
}

@media screen and (max-width: 599px) {
  .secWorks__txt {
    font-size: 2rem;
  }
}

.secWorks__detailTxt {
  display: block;
  font-size: 1.1rem;
  color: #4e4846;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: left;
  margin: 12px 0 0 20px;
  line-height: 1.8;
}

@media screen and (max-width: 599px) {
  .secWorks__detailTxt {
    font-size: 1.6rem;
    margin: 8px 0 0 10px;
  }
}

.secWorks__link {
  display: inline-block;
  text-decoration: underline;
  font-size: 1.4rem;
  color: #4e4846;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: left;
  margin: 10px 0 0;
  line-height: 1;
}

@media screen and (max-width: 599px) {
  .secWorks__link {
    font-size: 1.8rem;
  }
}

.secCompany {
  position: relative;
  background-color: #fff;
  padding: 30px 0 60px;
}

@media screen and (max-width: 599px) {
  .secCompany {
    padding: 60px 0;
  }
}

.secCompany__wrap {
  max-width: 1000px;
  width: 92%;
  margin: 100px auto 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

@media screen and (max-width: 599px) {
  .secCompany__wrap {
    margin: 30px auto 0;
  }
}

.secCompany__logo {
  width: 36%;
  margin: 0 0 0 10%;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  vertical-align: middle;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 960px) {
  .secCompany__logo {
    margin: 0 0 0 5%;
  }
}

@media screen and (max-width: 599px) {
  .secCompany__logo {
    display: none;
  }
}

.secCompany__table {
  width: 41%;
  margin: 0 0 0 auto;
  max-width: 860px;
}

@media screen and (max-width: 960px) {
  .secCompany__table {
    width: 50%;
  }
}

@media screen and (max-width: 599px) {
  .secCompany__table {
    width: 100%;
  }
}

.secCompany__tableRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 32px 0 30px;
  display: -webkit-flex;
  display: flex;
  vertical-align: middle;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: unset;
  -webkit-box-pack: unset;
  -ms-flex-pack: unset;
  justify-content: unset;
}

@media screen and (max-width: 599px) {
  .secCompany__tableRow {
    padding: 18px 0 15px;
  }
}

.secCompany__tableHeader {
  width: 20%;
  font-size: 1.4rem;
  color: #4e4846;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: left;
  margin: 0;
  line-height: 1.2;
}

@media screen and (max-width: 599px) {
  .secCompany__tableHeader {
    font-size: 2rem;
  }
}

.secCompany__tableBar {
  background-color: #aaa;
  height: 1px;
  width: 70px;
  margin-right: 30px;
}

@media screen and (max-width: 599px) {
  .secCompany__tableBar {
    width: 50px;
    margin-right: 20px;
  }
}

.secCompany__tableData {
  font-size: 1.4rem;
  color: #4e4846;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: left;
  margin: 0;
  line-height: 2;
}

@media screen and (max-width: 599px) {
  .secCompany__tableData {
    width: 60%;
    font-size: 2rem;
  }
}

.secContact {
  position: relative;
  background-color: #faf7f7;
  padding: 120px 0 120px;
}

@media screen and (max-width: 599px) {
  .secContact {
    padding: 60px 0;
  }
}

.secContact__headerTxt {
  font-size: 1.7rem;
  color: #4e4846;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: center;
  margin: 20px 0 0;
  line-height: 2.1;
}

@media screen and (max-width: 960px) {
  .secContact__headerTxt {
    text-align: justify;
    width: 90%;
    margin: 20px auto 0;
  }
}

@media screen and (max-width: 599px) {
  .secContact__headerTxt {
    font-size: 2rem;
    margin-top: 15px;
  }
}

.secContact__contactForm {
  background-color: #faf7f7;
  max-width: 1000px;
  margin: 60px auto 0;
  padding: 0;
  border-radius: 4px;
}

@media screen and (max-width: 599px) {
  .secContact__contactForm {
    margin: 30px auto 0;
    padding: 0;
  }
}

.secContact__contactLabel {
  display: inline-block;
  margin: 0 0 14px 0;
  font-size: 1.6rem;
  color: #4e4846;
}

@media screen and (max-width: 599px) {
  .secContact__contactLabel {
    margin: 0 0 8px 5px;
    font-size: 2rem;
  }
}

.secContact__contactLabel span {
  display: inline-block;
  margin-left: 8px;
  font-size: 1.4rem;
  color: red;
}

@media screen and (max-width: 599px) {
  .secContact__contactLabel span {
    font-size: 2rem;
  }
}

.secContact__contactRow {
  width: 80%;
  margin: 25px auto 0;
}

@media screen and (max-width: 599px) {
  .secContact__contactRow {
    margin: 10px auto 0;
    width: 90%;
  }
}

.secContact__contactRow input {
  border-radius: 1px;
  background-color: #fff;
  border: solid 1px #2f2725;
  padding: 10px 20px;
  width: calc(100% - 40px);
  font-size: 1.6rem;
}

@media screen and (max-width: 599px) {
  .secContact__contactRow input {
    padding: 10px 20px;
    font-size: 2.2rem;
  }
}

.secContact__contactRow textarea {
  border-radius: 1px;
  background-color: #fff;
  border: solid 1px #2f2725;
  padding: 10px 20px;
  width: calc(100% - 40px);
  height: 200px;
  resize: none;
  font-size: 1.6rem;
}

@media screen and (max-width: 599px) {
  .secContact__contactRow textarea {
    padding: 10px 20px;
    font-size: 2.4rem;
    height: 120px;
  }
}

.secContact__privacy {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  vertical-align: middle;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: unset;
  -webkit-box-pack: unset;
  -ms-flex-pack: unset;
  justify-content: unset;
}

@media screen and (max-width: 599px) {
  .secContact__privacy {
    margin: 20px auto 0;
  }
}

.secContact__checkInput {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 20px;
  width: 23px;
  margin: 0;
  background-color: #2f2725;
}

.secContact__checkInput:checked ~ .checkmark {
  background-color: #2f2725;
}

.secContact__checkBox {
  display: inline-block;
  margin-right: 8px;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: solid 1px #2f2725;
  border-radius: 0px;
}

@media screen and (max-width: 599px) {
  .secContact__checkBox {
    height: 18px;
    width: 18px;
  }
}

.secContact__checkBox:after {
  content: "";
  position: absolute;
  display: none;
  left: 8px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid #2f2725;
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (max-width: 599px) {
  .secContact__checkBox:after {
    width: 4px;
    height: 9px;
  }
}

.secContact :hover .secContact__checkInput ~ .secContact__checkBox {
  background-color: #fff;
}

.secContact .secContact__checkInput:checked ~ .secContact__checkBox:after {
  display: block;
}

.secContact__checkTxt {
  font-size: 1.5rem;
  color: #4e4846;
  letter-spacing: 1px;
}

.secContact__checkTxt a {
  color: #4e4846;
  text-decoration: underline;
}

@media screen and (max-width: 599px) {
  .secContact__checkTxt {
    font-size: 1.9rem;
  }
}

.secContact .contact_btn {
  width: 260px;
  background-color: #2e2624;
  color: #fff;
  text-align: center;
  margin: 30px auto 0;
  padding: 20px 0;
  border-radius: 4px;
  font-size: 1.6rem;
  letter-spacing: 2px;
  cursor: pointer;
}

@media screen and (max-width: 599px) {
  .secContact .contact_btn {
    font-size: 2rem;
    letter-spacing: 1px;
  }
}

.secContact #form_response {
  text-align: center;
  color: red;
  font-size: 1.4rem;
  margin: 20px auto 0;
}

@media screen and (max-width: 599px) {
  .secContact #form_response {
    font-size: 2rem;
  }
}

.footer {
  padding: 80px 0 100px;
  background-color: #2f2725;
  color: #fff;
}

.footer a {
  color: #fff;
}

@media screen and (max-width: 599px) {
  .footer {
    padding: 30px 0 60px;
  }
}

.footer__txt {
  font-size: 2rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: center;
  margin: 0;
  line-height: 1;
}

.footer__mail {
  display: block;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: center;
  margin: 20px auto 0;
  line-height: 1;
}

.footer__logo {
  font-size: 3rem;
  color: #fff;
  font-weight: 900;
  letter-spacing: 2px;
  text-align: center;
  margin: 30px auto 0;
  line-height: 1;
}

.secPrivacy {
  background-color: #faf7f7;
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: 160px 0 130px;
}

@media screen and (max-width: 960px) {
  .secPrivacy {
    padding: 160px 0 130px;
  }
}

@media screen and (max-width: 599px) {
  .secPrivacy {
    padding: 100px 0 60px;
  }
}

.secPrivacy__bg1 {
  position: absolute;
  max-width: 1100px;
  width: 94%;
  top: 0;
  right: 0;
  z-index: -1;
}

.secPrivacy__header {
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  color: #4e4846;
}

.secPrivacy__inner {
  max-width: 1000px;
  margin: 0 auto;
  width: 92%;
  min-height: calc(100vh - 584px);
}

@media screen and (max-width: 599px) {
  .secPrivacy__inner {
    min-height: calc(100vh - 341px);
  }
}

.secPrivacy__date {
  margin-top: 80px;
  letter-spacing: 1px;
  text-align: right;
  font-size: 2rem;
  font-weight: bold;
  color: #4e4846;
}

@media screen and (max-width: 599px) {
  .secPrivacy__date {
    margin-top: 50px;
    font-size: 2.4rem;
  }
}

.secPrivacy__headerTxt {
  margin-top: 60px;
  color: #4e4846;
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 1px;
  text-align: justify;
  padding: 0 30px;
}

@media screen and (max-width: 599px) {
  .secPrivacy__headerTxt {
    margin-top: 40px;
    padding: 0;
    font-size: 2rem;
  }
}

.secPrivacy__row {
  margin-top: 50px;
  padding: 10px 30px;
  border-left: solid 1px #2e2624;
}

@media screen and (max-width: 599px) {
  .secPrivacy__row {
    margin-top: 30px;
    padding: 5px 0;
    border-left: unset;
  }
}

.secPrivacy__rowHeader {
  letter-spacing: 1px;
  font-size: 2.2rem;
  font-weight: bold;
  color: #4e4846;
}

@media screen and (max-width: 599px) {
  .secPrivacy__rowHeader {
    font-size: 2.4rem;
  }
}

.secPrivacy__rowTxt {
  margin-top: 20px;
  color: #4e4846;
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 1px;
  text-align: justify;
}

@media screen and (max-width: 599px) {
  .secPrivacy__rowTxt {
    margin-top: 15px;
    font-size: 2rem;
  }
}

.secPrivacy__homeBtn {
  display: block;
  margin: 100px auto 0;
  width: 400px;
  background-color: #4e4846;
  color: #fff;
  text-align: center;
  padding: 3px;
  font-size: 1.8rem;
  cursor: pointer;
}

@media screen and (max-width: 599px) {
  .secPrivacy__homeBtn {
    margin: 50px auto 0;
    font-size: 2.2rem;
    width: 68%;
  }
}

.secPrivacy__homeBtnInner {
  padding: 18px 0;
  border: solid 1px #fff;
}

@media screen and (max-width: 599px) {
  .secPrivacy__homeBtnInner {
    padding: 15px 0;
  }
}
/*# sourceMappingURL=style.css.map */
