@charset "UTF-8";
/*共通*/
body{
    margin: 0;
    padding: 0;
    line-height: 0;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.container{
    margin-left: auto;
    margin-right: auto;
    max-width: 750px;
}

img{
    width:100%;
}

a{
    text-decoration:none;
    color: #192839;
}

.iframe,section,.relative{
    position: relative;
}

video{
    width: 100%;
}

.sp-none{
    display: none;
}

/*----- header -----*/
.header-wrap{
    background-color: #cbcac8;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    width: 50%;
    position: relative;
    z-index: 999;
}

/*ハンバーガーヘッダー*/

  .header__title {
    width:100%;
    text-align: center;
  }


.nav-items__item :hover{
  opacity: 0.5;
}

.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 50vh;
  transform: translateX(100%);
  background-color: #cbcac8;
  transition: ease .4s;
  z-index: 99;
  display: none;
}

.nav-items {
    display: block;
    font-weight: 500;
    text-align: left;
    padding: 20% 0 0 12%;
    line-height: 2.2;
}


/* ハンバーガーメニュー */

.header__hamburger {
  width: 48px;
  height: 100%;
}

.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}

.hamburger span {
  width: 100%;
  height: 1px;
  background-color: #000;
  position: relative;
  transition: ease .4s;
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}


/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
  display: block;
}

.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;

}

.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
} 

.sec-img_wrap{
  margin: auto;
}


/*----- btn -----*/
.btn-wrap{
    position: absolute;
    right: 3%;
    bottom: 7%;
    width: 47%;
}

.btn-sticky-wrap{
    background-color: #e5dfd4;
}

.btn-sticky{
    position: sticky;
    bottom: 1%;
    z-index: 999;
    width: 86%;
    margin: 0 auto;
}

/*--- スライダー -----*/
.slick-prev:before, .slick-next:before{
  color: #fff;
  font-size: 20px;
}

.slick-prev {
    left: 10px;
    z-index: 999;
}

.slick-next {
    right: 10px;
}

.slick-dotted.slick-slider{
    margin-bottom: 0px;
}

.slick-dots{
    bottom: 0;
}

/*----- scroll -----*/
.scroll {
    overflow-x: scroll;
    position: absolute;
    top: 24.6%;
    left: 57%;
}

.scroll-img{
    width: 410%;
}

/*-----iframe-----*/
.iframe-wrap{
    width: 90%;
    margin: 0 auto;
    position: absolute;
    top: 38%;
    left: 5%;
    height: 54%;
}

iframe{
    width: 100%;
    height: 100%;
}

@media screen and (min-width:767px){/*-----pc-----*/
.pc-none{
    display: none;
}

.sp-none{
    display: block;
}

.container{
    margin-left: auto;
    margin-right: auto;
    max-width: 2000px;
}

.header-wrap {
    background-color: #cbcac8;
    padding: 10px;
    display: grid;
    grid-template-columns: 10% 90%;
    align-items: center;
}

.header-logo{
    width: 80%;
    padding-left: 10%;
}

/* ハンバーガーメニュー */
.hamburger {
    display: none;
  }

.header__nav{
  position: relative;
  width: 100%;
  padding: 20px 0px;
  height: auto;
  transform: none;
  display: block;
}

.nav-items{
        display: flex;
        gap: 2.5%;
        justify-content: center;
        font-weight: 500;
        padding: 0;
        font-size: 100%;
}

.nav-items__item{
  position: relative;
  padding: 0px 5px;
  line-height: 1;
}

/*-----btn-----*/
.btn-wrap {
  position: absolute;
  right: 28%;
  bottom: 15%;
  width: 15%;
}

.btn-sticky{
    width: 500px;
    bottom: 1.5%;
    margin: 0 auto
}

/*--- スライダー -----*/
.slider{
    width: 29%;
    position: absolute;
    top: 61%;
    left: 22.5%;
    z-index: 100;
}

/*-----iframe-----*/
.iframe {
    width: 40%;
}

/*-----iframe-----*/
.iframe-wrap{
    width: 30%;
    margin: 0 auto;
    position: absolute;
    top: 34%;
    left: 35%;
    height: 57%;
}

iframe{
    width: 100%;
    height: 100%;
}
}

@media screen and (min-width: 767px) and (max-width: 925px){/*-----pc-----*/
.nav-items {
        gap: 2%;
        font-size: 84%;
}
}