@charset "UTF-8";
/*===============================
	Base
================================*/
* {
	box-sizing: border-box;
}
html {
	height: 100%;
	font-size: 62.5%;
	scroll-behavior:smooth;
	overflow-y: scroll;
}
body {
	display: block;
	margin: 0 auto;
	color: #FFF;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.6rem;
	font-weight: normal;
	line-height: 1.5;
	animation: bgchange 15s ease infinite;
}
@keyframes bgchange{
    0%   {background: #eb9b97;}/*変化させたい色*/
    25%  {background: #f4c2be;}/*変化させたい色*/
    50%  {background: #fce6e4;}/*変化させたい色*/
    75%  {background: #F7C8D6;}/*変化させたい色*/
    90%  {background: #c59484;}/*変化させたい色*/
    100% {background: #d8908e;}/*変化させたい色*/
}

ul {
	list-style: none;
	padding: 0;
}
a{
	color: #190e0d;
	text-decoration: none;
	pointer-events: auto;
}
p {
	text-align: center;
}
img {
	display: block;
	width:100%;
	max-width: 100%;
	height: auto;
	object-fit: cover;
}



/* レイアウト */
.container {
	background-color: #190e0d;
	width: 400px;
	height: auto;
	margin: 0 auto;
	padding-top: 50px;
}
.name {
	margin-bottom: 40px;
}

.name .icon {
	border-radius: 50%;
	width: 50%;
	margin: 0 auto 40px;
}

.button {
	text-align: center;
	margin-bottom: 24px;
}

.btn {
	background-color: #FFF;
	width: 90%;
}
/*== ボタン共通設定 */
.btn{
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
	overflow: hidden;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
	border: 3px solid #eb9b97;
    padding: 20px 30px;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/   
    transition: ease .2s;
}

/*ボタン内spanの形状*/
.btn span {
	position: relative;
	z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
	color:#333;
}

.btn:hover span{
	color:#fff;
}

/*== 背景が流れる（斜め） */
.bgskew::before {
	content: '';
    /*絶対配置で位置を指定*/
	position: absolute;
	top: 0;
	left: -130%;
    /*色や形状*/
	background:#333;
	width:120%;
	height: 100%;
	transform: skewX(-25deg);
}
.line::before {
	background:#06c755;
}
.web::before {
	background-image: linear-gradient(150deg, rgba(117, 0, 219, 1) 13%, rgba(14, 0, 107, 1) 68%);;
}
.instagram::before {
	background-image: linear-gradient(150deg, rgba(247, 166, 12, 1) 10%, rgba(255, 34, 87, 1) 40%, rgba(154, 39, 238, 1) 68%, rgba(35, 102, 247, 1) 90%);
}
.twitter::before {
	background:#1d9bf0;
}

/*hoverした時のアニメーション*/
.bgskew:hover::before {
	animation: skewanime .5s forwards;/*アニメーションの名前と速度を定義*/
}

@keyframes skewanime {
	100% {
		left:-10%;/*画面の見えていない左から右へ移動する終了地点*/
	}
}

/* デバイス表示・非表示 */
.pc-only {
	display: none;
}

@media (max-width: 768px) {

	.container {
		width: 100%;
	}
	.sp-only {
		display: none;
	}
	.pc-only {
		display: inherit;
	}
}
