@charset "UTF-8" ;

/* 共通項目 */
body{
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    color: #584630;/* フォント色指定 */
    font-size: 1rem;
    line-height: calc(40 / 23); /* デザインカンプより行間40 文字サイズ23 */
}
.wrapper1{
    width: 79.166vw;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
}
.wrapper2{
    width: 1170px;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
}
.img{
    display: block;/* 保険 */
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}
.section-head{
    font-size: 2rem;
    font-weight: bold;
    color: #8b6c46;
    text-align: center;
    padding: 10.42vw 0 5.21vw 0;
    /* paddingを優先して使用。TOPかBOTTOM。paddingが効かない場合はmargin */
    font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}
.box-head{
    color: #8b6c46;
    padding: 4vw 20px 20px 0;
    font-size: 2rem;
    font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
    font-weight: bold;
}

/* ヘッダー */
.header{
    width: 100%;
    position: absolute;
    z-index: 9999;
}
.header .gnav ul{
    color: #8b6c46;
    font-size: 1.25vw;
    width: 38vw;
    top: 4vw;
    right: 4vw;
    display: flex;
    justify-content: space-between;
    position: absolute;
}
/* ホバー */
.menu-btn {
    position: relative;
    text-decoration: none;
    transition: 0.3s;
}
.menu-btn:hover{
    color: #584630;
}
.menu-btn::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #584630;
    transition: 0.3s;
}
.menu-btn:hover::before{
    width: 100%;
}

/* TOPへ戻る */
.pagetop {
    display: none;
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 9999;
    /* ボタンの位置 */
	right: 20px;
	bottom: 20px;
}
.pagetop a {
    position: relative;
    display: block; /* aはインライン要素 */
    width: 50px;
    height: 50px;
    background-color: #8b6c46;
    border-radius:50%;
    opacity: 1;
}
.pagetop a:before {
    position: absolute;
    content: ""; /* コンテンツ中身なし */
    height: 10px;
    width: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff; /* カギ括弧の枠を作成（上と合わせて） */
    translate: 0 20%; /* 回転させる */
    rotate: -45deg; /* 切れた部分の調整 */
    top: calc(50% - 5px); /* 真ん中に合わせる */
    left: calc(50% - 5px); /* 真ん中に合わせる */
}
.pagetop a:hover{
    /* display: block;
    text-align: center;
    color: #fff;
    font-size: 12px;
    text-decoration: none; 浮き出るラインを消す
    ↑フォントオーサムを使用する場合には記述 */
    opacity: 0.7;
    transition: all 0.7s;
}
/* .pagetop a:link,
.pagetop a:visited {color: #fff;}
フォントオーサムを使用する場合には記述 */


/* セクション01 */
.section01 h2{
    padding: 10.42vw 0 0 0;
}
.lead{
    text-align: center;
    padding: 1.93vw 0 10.42vw 0;
    margin: 0 auto;
}
.container01{
    display: flex;
}
.box01-text{
    padding: 8vw 0 0 3.28vw;
    width: 35%;
}
.section01 img{
    width: 100%;
    height: 100%;
}

/* セクション02 */
.container02{
    padding-top: 10.42vw;
}
.box02-1{
    display: flex;
}
.box02-text{
    width: 66%;
    padding-right: 65px;
}
.box-text span,
.box02-text3 span{
    font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #8b6c46;
}
.box02-img{
    width: 100%;
    height: auto;
}
.box02-2{
    display: flex;
    padding-top: 10.42vw;
}
.box02-text2{
    width: 66%;
    padding-left: 65px;
}
.box02-text2 h3{
    width: 100%;
}
.box02-img2{
    width: 100%;
}
.box02-3{
    padding-top: 10.42vw;
    text-align: center;
}
.box02-img3{
    width: 80%;
}
.box02-text3{
    text-align: left;
    padding: 20px 0 10.42vw 0;
    /* display: flex; */
    justify-content: center;
    width: 600px;
    margin: 0 auto;
}
.section02 h3{
    border-bottom: 3px solid #b90d0d;
}
/* ヘッドボーダー */
.head-border {
    position: relative;
    display: inline-block;
    padding-right: 55px;
}
/* .head-border:before, */
.head-border:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 50px;
    height: 1px;
    background-color: #8b6c46;
}
/* .head-border:before {
    left: 0;
} */
.head-border:after {
    right: 0;
}

/* フェードアップ */
.fadeup{
    animation-name:fadeupanime;
    animation-duration:2s;
    animation-fill-mode:forwards;
    opacity:0;
}
@keyframes fadeupanime{
    from {
        opacity: 0;
    transform: translateY(100px);
    }
    
    to {
        opacity: 1;
    transform: translateY(0);
    }
}
/* 左から */
.fadeLeft{
    animation-name:fadeLeftAnime;
    animation-duration:2s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    @keyframes fadeLeftAnime{
      from {
        opacity: 0;
      transform: translateX(-100px);
      }
    
      to {
        opacity: 1;
      transform: translateX(0);
      }
    }
    /* 右から */
    .fadeRight{
    animation-name:fadeRightAnime;
    animation-duration:2s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    @keyframes fadeRightAnime{
      from {
        opacity: 0;
      transform: translateX(100px);
      }
    
      to {
        opacity: 1;
      transform: translateX(0);
      }
    }
.fadeuptrigger{
    /* クラス名が長いので自分で分かるように略してもOK 例).futrg .fadeuptrg等 */
    opacity: 0;
}

/* セクション03 */
.section03{
    /* height: 100vh; */
    width: 100%;
    background-image: url(../img/sec03_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
}
.youtube {
    text-align: center;
    padding: 5.21vw 0 10.42vw 0;
}
.youtube iframe {
	width: 960px;
	height: 540px;
	border-radius: 10px;
}


/*==================================================
スライダーのためのcss
===================================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
    width:94%;
    margin:0 auto;
}

.slider img {
    width:30vw;
    height:auto;
}

.slider .slick-slide {
  transform: scale(0.8);/*左右の画像のサイズを80%に*/
  transition: all .5s;/*拡大や透過のアニメーションを0.5秒で行う*/
}

.slider .slick-slide.slick-center{
  transform: scale(1);/*中央の画像のサイズだけ等倍に*/
  opacity: 1;/*透過なし*/
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    display: none;
  /* margin:20px 0 0 0; */
}

.slick-dots li {
    display:inline-block;
  margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}

/*========= レイアウトのためのCSS ===============*/
.section03 li{
    width: 30vw;
}
p {
    padding:20px;
}

ul{
  margin:0;
  padding: 0;
  list-style: none;
}

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

/* セクション04 */
.box04{
    display: flex;
    justify-content: space-between; 
    padding-bottom: 10.42vw;
}
.box04-2{
    text-align: center;
    width: calc(50% - 15px);
}
.tac{
    text-align: center;
    padding-bottom: 50px;
}
.btn:hover{
    background-color: antiquewhite;
}
.btn{
    border-bottom: 1px solid #000;
    display: inline-block;
}
.section04 .slick-prev {/*戻る矢印の位置と形状*/
    left: 1.5%;
    transform: rotate(-135deg);
    z-index: 2;
}

.section04 .slick-next {/*次へ矢印の位置と形状*/
    transform: rotate(45deg);
}
.section04 .slick-slide {
    height: 500px;
}
.section04 .slick-slide img {
    height: 100%;
    padding: 0 23px 20px 23px;
}

/* フッター */
.footer{
    text-align: center;
    background-color: antiquewhite;
    padding-bottom: 2.6vw;
}
.footer img{
    width: 10.94vw;
    padding-top: 5.21vw;
    padding-bottom: 1.56vw;
}
.footer .gnav ul{
    color: #8b6c46;
    font-size: 1.25vw;
    width: 38vw;
    padding-top: 5.21vw;
    padding-bottom: 5.21vw;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.page-link{
    display: flex;
    margin: 0 auto;
    width: 100px;
    justify-content: center;
}
.insta-icon{
    padding-right: 5px;
    font-size: 20px;
}
.youtube-icon{
    padding-left: 5px;
    font-size: 20px;
}
small{
    margin-bottom: 100px;
}

/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background:#fff;
  text-align:center;
  color:#fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width:50%;
}

/* fadeUpをするアイコンの動き */

.fadeUp{
animation-name: fadeUpAnime;
animation-duration:0.2s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* お問合せ */
h2 {
    padding: 15vw 0 5vw 0;
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: #8b6c46;
}

.cf-area {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 2em 0;
	border-bottom: 1px dashed #8b6c46;
	transition: all .3s;
}

.cf-area:last-child {
	border-bottom: none;
}

.cf-area dt {
  width: 200px;
  padding-right: 30px;
  text-align: right;
	line-height:1.5em;
}

.cf-area dd {
    flex: 1;
}

.cf-area input, .cf-area textarea {
  width: 100%;
  padding: 0.8em;
  border: none;
  background-color: #eeee;
  font-size: 16px;
	resize: vertical;
	transition: all .3s;
}

.cf-area input:focus,.cf-area textarea:focus {
	outline: none;
	background: #fff4e8;
}

.cf-required {
	background: #b90d0d;
	color: #fff;
	font-size: 0.8em;
	padding: 0 5px 2px;
	border-radius: 2px
}

.cf-send input {
	display: block;
	background: linear-gradient(135deg, #d5bea1 0%, #8b6c46 100%);
	width: 300px;
	height: 60px;
	margin: 30px auto 0;
	border: none;
	border-radius: 10px;
	color: #fff;
	box-shadow: 2px 5px 15px 0 rgba(0, 0, 0, .2);
	font-size: 1.3em;
	font-weight: bold;
	transition: all .3s;
    text-align: center;
}

.cf-send input:hover {
	filter: brightness(1.25);
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
	background-color: #fce3e3;
	border: none;
	text-align: center;
}


@media screen and (max-width:768px){
	.cf-area {
		display: block;
	}

	.cf-area dt {
    width: 100%;
		margin-bottom: 5px;
    padding-right: 0;
    text-align: left;
		line-height:1.5em;
	}
    .h2{
        font-size: 1.4rem;
    }
}

/* タブレット */
@media (min-width: 768px) and (max-width: 1169px){
    /* 1169px以下768px以上のCSSを書く */
    /* 共通項目 */
    body{
        overflow-x: hidden; /* 要素を勝手に浮かさない */
    }
    .wrapper1{
        width:768px; /* min-widthと同じ数字 */
    }
    .wrapper2{
        width:768px; /* min-widthと同じ数字 */
        padding: 0 15px 0 15px;
    }
    .box-head{
        padding: 0 0 20px 0;
    }

    /* ヘッダー */
    .header .gnav ul {
        font-size: 14px;
        width: 50vw;
    }
    
    /* セクション01 */
    .container01 {
        display: block;
    }
    .section01 img {
        width: 100%;
    }
    .box01-text {
        padding: 7vw 0 0 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    /* セクション02 */
    .box02-1 {
        display: block;
    }
    .box02-img {
        width: 100%;
        height: auto;
    }
    .box02-2 {
        flex-direction: column-reverse;
    }
    .box02-img2 {
        width: 100%;
        height: auto;
    }
    .box02-text {
        width: 100%;
    }
    .box02-text2 {
        width: 100%;
        padding-left: 0;
        display: flex;
        justify-content: flex-end;
    }
    .section02 .box-text{
        width: 700px;
        text-align: start;
    }
    .box02-img3 {
        width: 100%;
        height: auto;
    }
    .box02-3-img3{
        margin: 0 -15px;
    }

    /* セクション03 */
    .youtube iframe {
        width: 560px;
        height: 315px;
        border-radius: 20px;
    }

    /* セクション04 */
    .box04{
        display: block;
    }
    .box04-2{
        margin: 0 auto;
        width: 100%;
    }
    .section04 .slick-slide img {
        height: 100%;
        padding: 0 80px 20px 80px;
    }
    .section04 .slick-prev {/*戻る矢印の位置と形状*/
        left: 20%;
    }
    .section04 .slick-next {/*次へ矢印の位置と形状*/
        right: 20%;
    }
    /* フッター */
    .footer .gnav ul {
        font-size: 16px;
        width: 50vw;
    }    
}

/* スマホ */
@media(max-width: 767px){
    /* 767px以下のCSSを書く */
    /* 共通項目 */
    body{
        overflow-x: hidden;
        font-size: 0.81rem;
    }
    .section-head{
        font-size: 1.5rem;
    }
    .wrapper1{
        width: 100%;
    }
    .wrapper2{
        width: 100%;
    }
    .visual{
        height: 180vw;
        object-fit: cover;
    }

    /* ヘッダー */
    .pagetop {
        /* ボタンの位置 */
        right: -10px;
        bottom: -10px;
    }
    .header .gnav{
        height: 100%;
        display: none;
    }
    .header .gnav ul{
        width: 100%;
        flex-direction: column; /* 縦並びに戻す */
        padding-top: 50px;
        top: 0;
        right: 0;
        padding: 10vw 10vw 10vw 0;
        background-color: #ffffffe0;
    }
    .header .gnav li {
        width: 100%;
        margin: 0 auto;
        text-align: center;
        font-size: 1rem;
        padding-left: 30px;
        padding-bottom: 10px;
    }
    .header .menu{ /* ハンバーガーメニュー */
        display: block;
        /* 右端に固定 */
        position: absolute;
        top: 10px;
        right: 10px;
        width: 40px;
        height: 30px;
    }
    .header .menu div{
        position: relative;
        width: 30px;
        margin: 0 auto;
    }
    .header .menu span {
        display: block; /* ブロック要素に切り替え */
        height: 3px;
        background: #8b6c46;
        position: absolute;
        width: 100%;
        left: 0;
        transition: 0.5s ease-in-out; /* 動き */
        border-radius: 3px;
    }
    .header .menu span:nth-child(1){ /* nth-child 模擬要素 */
        top: 5px; /**/
    }
    .header .menu span:nth-child(2) {
        top: 15px; /**/
    }
    .header .menu span:nth-child(3) {
        top: 25px; /**/
    }
    .open .menu span:nth-child(1) {
        top: 12px; /**/
        rotate: 135deg; /* 135度回転 */
    }
    .open .menu span:nth-child(2) { /* 消えながらいなくなる */
        width: 0;
        left: 50%;
    }
    .open .menu span:nth-child(3) { /* 動きの制限 */
        top: 12px; /**/
        rotate: -135deg;
    }


    /* セクション01 */
    .container01 {
        display: block;
    }
    .section01 img {
        width: 100%;
    }
    .box01-text {
        padding: 10vw 5vw;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    /* セクション02 */
    .section02 .box-text{
        padding: 20px 20px 20px 40px;
    }
    .box02-1 {
        display: block;
    }    
    .box02-img {
        width: 100%;
        height: auto;
        padding-right: 20px;
        
    }
    .box02-2 {
        flex-direction: column-reverse;
    }
    .box02-img2 {
        width: 100%;
        height: auto;
        padding-left: 20px;
    }
    .box02-text {
        width: 100%;
        padding-right: 20px;
    }
    .box02-text2 {
        width: 100%;
        padding-left: 20px;
        display: flex;
        justify-content: flex-end;
    }
    .box02-img3 {
        width: 100%;
    }
    .section02 h3 {
        padding-left: 20px;
        font-weight: 400;
        font-size: 1.5rem;
    }
    .box02-text3 {
        padding: 5vw 10vw 20.84vw 10vw;
        width: 100%;
    }
    .box-text span,
    .box02-text3 span {
        font-size: 1.2rem;
    }  
    .head-border {
        padding-right: 50px;
    }
    .head-border:after {
        width: 40px;
    }

    /* セクション03 */
    .youtube iframe {
        width: 340px;
        height: 191px;
    }
    .slider img{
        width: 90vw;
    }
    .section03 li{
        width: 90vw;
    }
    .slick-prev, .slick-next {
    top: 35%;
    }
    
    /* セクション04 */
    .box04{
        display: block;
    }
    .box04-2{
        margin: 0 auto;
        width: 100%;
    }
    .section04 .slick-slide img {
        padding: 0 80px 20px 80px;
    }
    .section04 .slick-slide {
        height: 200px;
    }
    .section04 .slick-prev {/*戻る矢印の位置と形状*/
        left: 20%;
    }
    .section04 .slick-next {/*次へ矢印の位置と形状*/
        right: 20%;
    }

    /* フッター */
    .footer .gnav{
        display: none;
    }
    .footer img {
        width: 21.88vw;
        padding: 10vw 0 5vw 0;
    }
    .page-link {
        padding: 4vw 0 5vw 0;
    }

    #splash_logo img {
        width:100%;
      }


}