@charset "UTF-8";

/* reset */

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

html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-style: normal;
  list-style: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}

body {
  font-family: serif;
  font-feature-settings: palt;
  color: #231815;
  line-height: 1.5;
  font-size: 16px;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch;
  text-align: start;
  text-indent: 0;
  text-transform: none;
  vertical-align: baseline;
  white-space: normal;
  word-spacing: 0;
  padding: 0;
  overflow-x: hidden;
}

img {
  border: 0;
  width: auto;
  height: auto;
  max-width: 100%;
}

a {
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
  cursor: pointer;
  color: inherit;
}

a, a:hover {
  text-decoration: none;
}

a:hover, a:hover img {
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  opacity: 0.6;
}


/* common */

.container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}

.mt-30 {
  margin-top: 30px;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media only screen and (max-width: 750px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}


/* slick */

.slick-dots {
  bottom: 20px!important;
}

.slick-dots li.slick-active button:before {
  font-size: 15px!important;
  color: #fff;
  opacity: 1;
}

.slick-dots li button:before {
  font-size: 6px!important;
  width: 24px!important;
  color: #fff!important;
  opacity: 1;
}
@media only screen and (max-width: 750px) {
.slick-dots {
  bottom: 2%!important;
}
}
/* header */

header {
  position: fixed;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
}

.header-area {
  display: flex;
  justify-content: space-between;
  height: 150px;
  padding: 20px 35px;
}

.hamburger {
  width: 40px;
  height: 25px;
  position: relative;
  margin-top: 20px;
}

.hamburger span {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #a50d05;
  transition: .5s;
  right: 0;
}

.hamburger span:first-of-type {
  top: 0;
}

.hamburger span:nth-of-type(2) {
  top: 50%;
}

.hamburger span:last-of-type {
  top: 100%;
}
.hamburger:hover {
  cursor: pointer;
}

h1 img {
  width: 270px;
}

.slide-menu {
  background-color: #fff;
  position: fixed;
  top: 150px;
  width: 100%;
  height: 100vh;
  padding: 5% 15px;
  left: 0;
  transform: translateX(100%);
  transition: .5s;
  z-index: 1000;
}

.slide-menu-list {
  border-bottom: 1px solid #666;
  margin: 3rem 1rem 0;
}

.slide-menu ul {
  display: flex;
  flex-wrap: wrap;
}

.slide-menu li {
  font-size: 1rem;
  width: calc(50% - 2rem);
  color: #000;
  padding: 1rem;
  margin: 0 1rem;
  border-bottom: 1px solid #666;
}

.slide-menu li a {
  display: block;
}

.slide-menu li.here {
  background-color: rgba(0, 0, 0, .15);
}

.slide-menu li span {
  font-size: .7em;
}

.slide-menu .bt-area {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 40px;
  text-align: center;
  margin: 40px auto 0;
}

.slide-menu .bt-area .btn1, .btn2 {
  display: block;
  font-size: 1rem;
  letter-spacing: 2px;
  padding: 1rem 0;
  width: 20vw;
  color: #fff;
  border-radius: 5px;
}

.slide-menu .bt-area .btn1 {
  background: linear-gradient(to bottom, rgba(171, 138, 111, 1), rgba(104, 74, 59, 1));
}

.slide-menu .bt-area .btn2 {
  background: linear-gradient(to bottom, rgba(171, 138, 111, .4), rgba(104, 74, 59, .4));
}

.hamburger.active span:first-of-type {
  top: 50%;
  transform: rotate(45deg);
}

.hamburger.active span:nth-of-type(2) {
  opacity: 0;
}

.hamburger.active span:last-of-type {
  top: 50%;
  transform: rotate(-45deg);
}

.slide-menu.active {
  transform: translateX(0);
}

@media only screen and (max-width: 750px) {
  .header-area {
    padding: 20px 10px;
    align-items: flex-start;
  }
  h1 img {
    width: 33vw;
  }

  .slide-menu {
    height: auto;
    padding: 5px 15px;
  }
  .slide-menu-list {
    margin: 2rem 0 0;
  }
  .slide-menu ul {
    display: block;
  }
  .slide-menu li {
    width: 100%;
    padding: 5px 1rem;
    margin: 0;
    line-height: 1.2;
  }
  .slide-menu .bt-area {
    display: block;
    margin: 15px auto 40px;
  }
  .slide-menu .bt-area .btn1 {
    width: 70%;
    margin: 0 auto;
  }
  .slide-menu .bt-area .btn2 {
    width: 70%;
    margin: 10px auto 0;
  }
}


/* slider */

.slider-wrap {
  max-width: 1280px;
  width: 100%;
  overflow:hidden; 
  margin: 0 auto;
  position: relative;
  padding-top: 15%;
  text-align: center;
  aspect-ratio: 8 / 5;
}

.slider-wrap>div {
  width: 100%;
  height: 100%;
  max-height: 800px;
  position: absolute;
  top: 0;
  left: 0;

}

.slick-animation .anime01+p {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3vw;
  font-weight: 500;
  color: #fff;
  text-shadow: -5px -5px 8px #000, 5px 5px 8px #000;
  animation-name: anime11;
  animation-duration: .5s;
  animation-delay: 3s;
  animation-fill-mode: both;
}

.slick-animation .anime02+p {
  position: absolute;
  width: 100%;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3vw;
  font-weight: 500;
  color: #fff;
  text-shadow: -5px -5px 8px #000, 5px 5px 8px #000;
  animation-name: anime11;
  animation-duration: .5s;
  animation-delay: 3s;
  animation-fill-mode: both;
}

.slick-animation .anime03+p {
  position: absolute;
  white-space: nowrap;
  width: 100%;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.2vw;
  font-weight: 500;
  color: #fff;
  text-shadow: -2px -2px 6px #000, 2px 2px 6px #000;
  animation-name: anime11;
  animation-duration: .5s;
  animation-delay: 3s;
  animation-fill-mode: both;
}


.slick-animation .anime01 {
  animation-name: anime1;
  animation-duration: 3.5s;
  animation-delay: .5s;
  animation-fill-mode: both;
}

@keyframes anime1 {
  from {
    transform: translateX(80px) scale(1.5);
  }
  to {
    transform: translateX(-80px) scale(1.5);
  }
}

@keyframes anime11 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.slick-animation .anime02 {
  animation-name: anime2;
  animation-duration: 3.5s;
  animation-delay: .5s;
  animation-fill-mode: both;
}

@keyframes anime2 {
  from {
    transform: scale(1.2);
  }
  to {
    transform: scale(1.5);
  }
}

.slick-animation .anime03 {
  animation-name: anime3;
  animation-duration: 3.5s;
  animation-delay: .5s;
  animation-fill-mode: both;
  transform-origin: left bottom;
}

@keyframes anime3 {
  from {
    transform: scale(1.2);
  }
  to {
    transform: scale(1);
  }
}
p.slider_cap1 {
  position: absolute;
  font-size: 1rem;
  color: #fff;
  right: 15px;
  bottom: -24%;
  z-index: 1;
}
p.slider_cap2 {
  position: absolute;
  font-size: 1rem;
  color: #fff;
  right: 15px;
  bottom: -11%;
  z-index: 1;
}
p.slider_cap3 {
  position: absolute;
  font-size: 1rem;
  color: #fff;
  right: 15px;
  bottom: 2%;
  z-index: 1;
}
@media only screen and (max-width: 750px) {
  .slick-animation .anime01+p {
    font-size: 8vw;
  }
  .slick-animation .anime02+p {
    font-size: 7vw;
  }
  .slick-animation .anime03+p {
    font-size: 5.5vw;
  }

p.slider_cap1 {
  font-size: .7rem;
  right: 2%;
  bottom: -24%;
}
p.slider_cap2 {
  font-size: .7rem;
  right: 2%;
  bottom: -10%;
}
p.slider_cap3 {
  font-size: .7rem;
  right: 2%;
  bottom: 2%;
}
}
/* body */

.sect_1 {
  width: 100%;
  padding: 150px 0 0;
  margin: 0;
  overflow:hidden;
}

.sect_2 {
  padding: 40px 0 80px;
}

.sect_2 .text {
  padding: 80px 15px 40px;
}

.sect_2 .text h2 {
  font-size: calc(1.25vw + .6rem);
  text-align: center;
  font-weight: 500;
  line-height: 2;
}

.sect_2 .text h2 span {
  font-size: .5em;
}

.sect_2 .text p {
  font-size: 1rem;
  text-align: center;
  line-height: 2.5;
  padding: 40px 0;
}

.sect_2 .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 20px;
}

.sect_2 .wrap>div {
  position: relative;
}

.sect_2 .wrap p {
  position: absolute;
  text-shadow: -4px -4px 6px #000, 4px 4px 6px #000;
  font-size: 1rem;
  color: #fff;
  right: 15px;
  bottom: 15px;
  z-index: 1;
}

.sect_2 .wrap .col1 {
  flex: 1;
}

.sect_2 .wrap .col2 {
  flex: 2;
}

.img-heigt img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: 50% 50%;
}

@media only screen and (max-width: 750px) {

  .sect_2 .text {
    padding: 40px 15px 20px;
  }
  .sect_2 .text h2 {
    font-size: calc(0.25vw + .8rem);
  }

  .sect_2 .text h2 span {
    font-size: .7em;
  }
  .sect_2 .text p {
    text-align: left;
    line-height: 2;
  }
  .sect_2 .wrap p {
    font-size: .8rem;
    right: 10px;
    bottom: 10px;
  }
  .img-heigt img {
    height: 37.5vh;
  }
}