@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Klee+One:wght@600&display=swap');
html{font-size: 62.5%;

}

/*========= レイアウトのためのCSS ===============*/
body{
width: 100%;
    font-size: clamp(1rem, 2vw + 1rem, 3rem);
    text-align: center;
    font-family: 'Klee One', serif;
    color: #000000;
	line-height: 1.5;
}

h2,p {
    text-align:center;
    padding:5px;
}

ul{
	margin:0;
	padding: 0;
	list-style: none;
}

a{
	color: #333;
}

a:hover,
a:active{
	text-decoration: none;
}
		.shadow {
  box-shadow : 10px 10px 10px 3px rgba(102, 51, 0, 0.59);  /* 画像の影 */
}

.span{display:block;}


/*エリア全体を中央寄せ*/
.wrapper{
  overflow: hidden;
	text-align:center;
	width:100%;
	max-width:800px;
	margin:0 auto;
}

h1{
	text-align: center;
	font-size:6vw;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin:30px 0;
}

p{
	font-size: clamp(0.688rem, 1vw + 1rem, 1.75rem);
	line-height: 1.2;
	text-align:center;
	padding-top: 15px;
	word-wrap : break-word;
}

.flex{
  display:flex;
  flex-wrap: wrap;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {
    position:relative;
	z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
 width: 100%;
	height: auto;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}


.slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:auto;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
	z-index: 3;
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #ccc;/*矢印の色*/
    border-right: 2px solid #ccc;/*矢印の色*/
    height: 25px;
    width: 25px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left:2%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right:2%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
	position: relative;
	z-index: 3;
    text-align:center;
	margin:10px 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
===================================*/

/*画像の横幅を100%にしてレスポンシブ化*/
img{
	width: 100%;
	height: auto;
	vertical-align: bottom;/*画像の下にできる余白を削除*/
}

/*メイン画像下に余白をつける*/
.gallery{
	margin:30px;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
	z-index: 3;
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #000000;/*矢印の色*/
    border-right: 2px solid #000000;/*矢印の色*/
    height: 25px;
    width: 25px;

}

.slick-prev {/*戻る矢印の位置と形状*/
    left:2.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right:2.5%;
    transform: rotate(45deg);
}

/*選択するサムネイル画像の設定*/

.choice-btn li{
	cursor: pointer;
	outline: none;
	background:#333;
}

.choice-btn li img{
	opacity: 0.4;/*選択されていないものは透過40%*/
}

.choice-btn li.slick-current img{
	opacity: 1;/*選択されているものは透過しない*/
}

/* みぎよせ */
.parcent_l {
margin-left: 50%;
}
.pixel_l {
margin-left: 500px;
}

/* ひだりよせ */
.parcent_r {
margin-right: 30%;
}
.pixel_r {
margin-right: 500px;
}



.text {
	z-index: 2;
  margin: 0; /* 見出しのマージンを消しておく */
  position: absolute; /* 絶対配置で画像の中央に配置 */
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: #FFF;
  font-weight: 800;
  font-size: 30px;
	font-family:Georgia, Times, 'Times New Roman', serif;
}

.two-calm{
	display: flex;
	flex-wrap:wrap;
	align-items: center;
}
.two-calm li {
	width: calc(100%/2);/*←画像を横に4つ並べる場合*/
	padding:0 5px;/*←画像の左右に5pxの余白を入れる場合*/
	box-sizing:border-box;
}
.two-calm li img {
	max-width:100%; /*画像のはみだしを防ぐ*/
	height: auto; /*画像の縦横比を維持 */
}

.two-calms{
	display: flex;
	flex-wrap:wrap;
}
.two-calms li {
	width: calc(100%/3);/*←画像を横に4つ並べる場合*/
	padding:3px;/*←画像の左右に5pxの余白を入れる場合*/
	box-sizing:border-box;
}
.two-calms li img {
	max-width:100%; /*画像のはみだしを防ぐ*/
	height: auto; /*画像の縦横比を維持 */
}

.four-calm{
	display: flex;
	flex-wrap:wrap;
	align-items: center;
}
.four-calm li {
	width: calc(100%/4);/*←画像を横に4つ並べる場合*/
	padding:0 5px;/*←画像の左右に5pxの余白を入れる場合*/
	box-sizing:border-box;
}
.four-calm li img {
	max-width:100%; /*画像のはみだしを防ぐ*/
	height: auto; /*画像の縦横比を維持 */
}


    .container {
      width: 100%;
      display: block;
      margin: 0 auto;
      text-align: center;
    }
    .container>img {
      width: 200px;
      margin: 15px;
    }

    .container2 {
      width: 800px;
		max-width: 100%;
      display: block;
      margin: 0 auto;
      text-align: center;
    }
    .container2>img {
      width: 200px;
      margin: 15px;
    }


/*==================================================
ふわっ
===================================*/

/* その場で */
.fadeIn{
animation-name:fadeInAnime;
animation-duration:2s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeInTrigger{
    opacity: 0;
}

    /* box-shadowとdrop-shadow */
    .box-and-drop .box-shadow {
      box-shadow: 10px 10px 5px 0 rgb(61, 61, 63, 0.5);
    }
    .box-and-drop .drop-shadow {
      filter: drop-shadow(10px 10px 5px rgb(61, 61, 63, 0.5));
		transform: translateZ(0);
    }

/* ぼかしから出現 */
.blur{
	animation-name:blurAnime;
	animation-duration:3s;
	animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
	filter: blur(10px);
	transform: scale(1.02);
  }

  to {
	filter: blur(0);
	transform: scale(1);
  }
}

.nega_m {
  margin-top: -55%; /* 上方向にネガティブマージンを取る */
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}

/* ボタン共通設定 */
.btn03{
    /*影の基点とするためrelativeを指定*/
    position: relative;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
    text-align: center;
    background: transparent;
	border-radius: 25px;
	border: solid 1px #333;
    outline: none;
	width: 80%;
    /*アニメーションの指定*/
    transition: all 0.1s ease;
	-webkit-transition: -webkit-transform 0.1s;
	transform: translateZ(0);
}

/*hoverをした後のボタンの形状*/
.btn03:hover{
	border-color:transparent !important;	
}

/*ボタンの中のテキスト*/
.btn03 span {
	position: relative;
	z-index: 2;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
    /*テキストの形状*/
	display: block;
    padding: 10px 5px;
	background:#fff;
	border-radius: 25px;
	color:#333;
    /*アニメーションの指定*/
    transition: all 0.3s ease;
	-webkit-transition: -webkit-transform 0.3s;
}

/*== 右下に押し込まれる（立体が平面に） */

/*影の設定*/
.pushright:before {
    content: "";
    /*絶対配置で影の位置を決める*/
    position: absolute;
	z-index: -1;
    top: 4px;
    left: 4px;
    /*影の形状*/
    width: 100%;
    height: 100%;
	border-radius: 25px;
    background-color: #333;
}

/*hoverの際にX・Y軸に4pxずらす*/
.pushright:hover span {
	background-color: #333;
	color: #fff;
	transform: translate(4px, 4px);
}


/*矢印が右に移動する*/
.btnarrow4{
    /*矢印と下線の基点とするためrelativeを指定*/
	position: relative;
    /*形状*/
    display: inline-block;
	padding: 0 20px;
    color: #333;
    text-decoration: none;
    outline: none;
}

/*矢印と下線の形状*/
.btnarrow4::before{
    content: '';
    /*絶対配置で下線の位置を決める*/
	position: absolute;
    bottom:-8px;
    left:15%;
    /*下線の形状*/    
    width: 85%;
    height: 1px;
	background:#333;
    /*アニメーションの指定*/
    transition: all .3s;
		transform: translateZ(0);
}

.btnarrow4::after{
    content: '';
    /*絶対配置で矢印の位置を決める*/
	position: absolute;
    bottom:-3px;
    right:0;
    /*矢印の形状*/    
    width: 15px;
    height:1px;
	background:#333;
    transform: rotate(35deg);
    /*アニメーションの指定*/
    transition: all .3s;
}

/*hoverした際の移動*/
.btnarrow4:hover::before{
    left:20%;
}

.btnarrow4:hover::after{
    right:-5%;
}

.flex{
    display: flex;
    justify-content: space-between;
}
.flex>p{
    width: 49%;
}

