@charset "UTF-8";
/* CSS Document */

/*==============================
基本設定
==============================*/

html{
	width: 100%;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

/*ハンバーガーメニューをクリックしたとき*/
html.active{
	overflow: hidden;
}

body{
	width: 100%;
	font-size: 1.4rem;
	color: #505050;
	background: #FFF;
	overflow-x: clip;/*hiddenではスクロールがおかしくなるため入れた*/
	position: relative;
	-webkit-text-size-adjust: 100%;/*スマホで横持ちした時フォントサイズが変わらないように*/
}


/*リンク設定*/
a:link,
a:visited,
a:hover,
a:active{
	color: #505050;
	text-decoration: none;
	transition: 0.3s;
}

a.active{
	opacity: 0.8;
	transition: 0.5s;
}

/*イメージ設定*/
img{
	width: 100%;
	height: auto;
}

/*wrapper*/
#wrapper{
	width: 100%;
	position: relative;
}

/*==============================
ヘッダー設定
==============================*/

/*ヘッダー全体*/
#headerWrap{
	width: 100%;
	background: linear-gradient(112deg, rgba(238,204,213,0.8) 5%, rgba(247,240,216,1) 35%, rgba(105,160,186,0.6) 74%);
	background-size: 300% 300%;
	position: relative;
	animation: AnimeGradie 10s infinite;
	z-index: 999;
}

@keyframes AnimeGradie { 
	0%{background-position:100% 50%}
	50%{background-position:0% 50%}
	100%{background-position:100% 50%}
}

/*ヘッダー全体*/
#headerWrap::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

/*ヘッダートップ*/
#headerTop{
	padding: 33px 60px 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

/*ロゴ*/
#headerTop h1{
	width: 104px;
}

/*ロゴ*/
#headerWrap.inview #headerTop h1{
	transition: 1s 0.5s;
}

/*グローバルナビ*/
#globalNav{
	margin: 10px 0 0 0;
	width: 950px;
}

/*グローバルナビリスト*/
#globalNav ul{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

/*グローバルナビ リンク*/
#globalNav ul li a{
	color: #505050;
	font-size: 2rem;
	text-align: center;
	font-weight: 200;
	position: relative;
}

/*グローバルナビ リンク*/
#globalNav ul li a::after{
	content: "";
	display: block;
	width: 100%;
	height: 2px;
	background: #FFF;
	transform: scale(0,1);
	transform-origin: center center;
	position: absolute;
	bottom: -8px;
	left: 0;
	transition: 0.3s;
}

/*グローバルナビ リンク*/
#globalNav ul li a.active::after{
	transform: scale(1,1);
	transition: 0.5s;
}

/*------------------------------
ハンバーガーメニュー設定
------------------------------*/

.humbugurMenu{
	display: none;
	visibility: visible;
	overflow: visible;
	cursor: pointer;
	position: absolute;
	width: 30px;
	height: 26px;
	top: 20px;
	right: 20px;
	z-index: 999;
}

.humbugurMenu li {
	display: inline-block;
	transition: all 0.3s;
}

.humbugurMenu li {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #323232;
}

.humbugurMenu li:nth-of-type(1) {
	top: 0;
	
}
.humbugurMenu li:nth-of-type(2) {
	top: calc(50% - 2px / 2);
}

.humbugurMenu li:nth-of-type(3) {
	bottom: 0;
}

.humbugurMenu.active {
	position: fixed;
}

.humbugurMenu.active li:nth-of-type(1) {
	transform: translateY(12px) rotate(-45deg);
}

.humbugurMenu.active li:nth-of-type(2) {
	transform: translateY(0) rotate(45deg);
}

.humbugurMenu.active li:nth-of-type(3) {
	opacity: 0;
}


/*==============================
トップへボタン設定
==============================*/

/*トップへ*/
.pageTop{
	width: 90px;
	height: 90px;
	border-radius: 50%;
	background: url(../img/common/bg_arrow.svg) no-repeat center center / 54px,
				linear-gradient(0deg, rgba(247,240,216,1) 0%, rgba(238,204,213,1) 100%);
	position: fixed;
	right: 50px;
	bottom: 250px;
	z-index: 100;
	transition: 0.3s;
}

/*トップへ リンク*/
.pageTop a{
	display: block;
	width: 100%;
	height: 100%;
}

/*トップへ リンク*/
.pageTop.active{
	filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.15));
	transition: 0.5s 0.3s;
	animation: heart-efect 1.5s linear infinite;
}

@keyframes heart-efect {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(0.9);
  }
  21% {
    transform: scale(1.3) skew(0.004turn)
  }
  28% {
    transform: scale(1) skew(0.008turn);
  }
  35% {
    transform: scale(1) skew(0)
  }
}

/*==============================
フッター設定
==============================*/

/*フッター全体*/
#footerWrap{
	padding: 15px 0 66px 0;
	width: 100%;
	background: linear-gradient(-112deg, rgba(238,204,213,1) 17%, rgba(247,240,216,1) 42%, rgba(105,160,186,1) 74%);
	background-size: 300% 300%;
	position: relative;
	z-index: -2;
	animation: AnimeGradie 15s infinite;
}

/*フッター全体*/
#footerWrap::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

/*フッターロゴ*/
#footerWrap h2{
	margin: 0 auto;
	width: 104px;
}

/*コピーライト*/
#footerWrap small{
	display: block;
	margin: 50px 0 0 0;
	color: #505050;
	font-size: 1.4rem;
	font-weight: 100;
	text-align: center;
}

/*==============================
レスポンシブ設定
==============================*/

/*1980px以下の場合*/
@media screen and (max-width:1980px){

	/*==============================
	ヘッダー設定
	==============================*/

	/*グローバルナビ*/
	#globalNav{
		width: 750px;
	}

	/*グローバルナビ リンク*/
	#globalNav ul li a{
		font-size: 1.6rem;
	}


}


/*1000px以下の場合*/
@media screen and (max-width:1000px){

	/*==============================
	ヘッダー設定
	==============================*/

	/*ヘッダートップ*/
	#headerTop{
		padding: 30px 40px 0;
	}

	/*ロゴ*/
	#headerTop h1{
		width: 90px;
	}

	/*グローバルナビ*/
	#globalNav{
		margin: 0;
		width: 100dvw;
		height: 100dvh;
		background: #FFF;
		display: flex;
		align-items: center;
		justify-content: center;
		position: fixed;
		top: 0;
		left: -100%;
		z-index: 999;
		transition: 0.3s;
	}

	/*グローバルナビ*/
	#globalNav.active{
		left: 0;
		transition: 0.5s;
	}

	/*グローバルナビリスト*/
	#globalNav ul{
		margin: 0 auto;
		width: 600px;
		flex-direction: column;
	}

	/*グローバルナビリスト*/
	#globalNav ul li{
		padding: 30px 0;
		text-align: center;
	}

	/*グローバルナビ リンク*/
	#globalNav ul li a{
		font-size: 2rem;
	}

	/*------------------------------
	ハンバーガーメニュー設定
	------------------------------*/

	.humbugurMenu{
		display: block;
	}

	/*==============================
	トップへボタン設定
	==============================*/

	/*トップへ*/
	.pageTop{
		width: 75px;
		height: 75px;
		background: url(../img/common/bg_arrow.svg) no-repeat center center / 40px,
								linear-gradient(0deg, rgba(247,240,216,1) 0%, rgba(238,204,213,1) 100%);
								right: 20px;
								bottom: 100px;
	}

	/*==============================
	フッター設定
	==============================*/

	/*フッターロゴ*/
	#footerWrap h2{
		width: 90px;
	}

}

/*768px以下の場合*/
@media screen and (max-width:768px){

	/*==============================
	ヘッダー設定
	==============================*/

	/*ヘッダートップ*/
	#headerTop{
		padding: 30px 30px 0;
	}

	/*ロゴ*/
	#headerTop h1{
		width: 80px;
	}

	/*==============================
	トップへボタン設定
	==============================*/

	/*トップへ*/
	.pageTop{
		width: 60px;
		height: 60px;
		background: url(../img/common/bg_arrow.svg) no-repeat center center / 30px,
								linear-gradient(0deg, rgba(247,240,216,1) 0%, rgba(238,204,213,1) 100%);
								right: 20px;
								bottom: 100px;
	}


	/*==============================
	フッター設定
	==============================*/

	/*フッターロゴ*/
	#footerWrap h2{
		width: 80px;
	}

}

/*600px以下の場合*/
@media screen and (max-width:600px){

	/*==============================
	ヘッダー設定
	==============================*/

	/*ヘッダートップ*/
	#headerTop{
		padding: 15px 20px 0;
	}

	/*ロゴ*/
	#headerTop h1{
		width: 70px;
	}

	/*------------------------------
	ハンバーガーメニュー設定
	------------------------------*/

	.humbugurMenu{
		right: 15px;
	}

	/*==============================
	トップへボタン設定
	==============================*/

	/*トップへ*/
	.pageTop{
		width: 60px;
		height: 60px;
		background: url(../img/common/bg_arrow.svg) no-repeat center center / 30px,
					linear-gradient(0deg, rgba(247,240,216,1) 0%, rgba(238,204,213,1) 100%);
					right: 20px;
					bottom: 100px;
	}


	/*==============================
	フッター設定
	==============================*/

	/*フッターロゴ*/
	#footerWrap h2{
		width: 70px;
	}

}


































