@charset "utf-8";
/* CSS Document */

body{
	margin: 0;
}

.sticky-container{
	margin: 0;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	font-weight: 600;
}

.sticky-container img{
	display: block;
	line-height: 0;
}

.pc-box{
	display: none;
}

.wrapper{
	width: 100%;
	margin: 0 auto;
	background-color: #fff;
}

.mv{
	margin: 0 auto 10%;
}

.mv p{
	text-align: center;
	font-size: 1.0rem;
	line-height: 2;
	margin: 8% auto;
}

.main-contents{
	margin: 0 auto;
}

.main-text{
	margin: 0 auto 10%;
}

.main-text p{
	text-align: center;
	margin: 2% auto;
	font-size: .9rem;
	line-height: 2;
}

.main-text .font-color__red{
	color: red;
	font-size: 1.2rem;
	font-weight: 600;
	line-height: 1.6;
	margin-bottom: 5%;
}

.main-text .font-color__red span{
	font-size: .85rem;
}

.main-text .font-color__blue{
	color: #2167b1;
	font-size: 1rem;
}

.main-text .font-color__yellow{
	color: #ffad21;
	font-size: 1rem;
}

.contents-out{
	background-color: #D9E1F2;
	padding-bottom: 5%;
}

.contents-out h1{
	text-align: center;
	background-color: #2167b1;
	color: #fff;
	font-size: 1.2rem;
	padding: 3% 0;
	margin-bottom: 7%;
}

.contents-in{
	background-color: #fff2cc;
	padding-bottom: 5%;
}

.contents-in h1{
	text-align: center;
	background-color: #f8cd4c;
	color: #fff;
	font-size: 1.2rem;
	padding: 3% 0;
	margin-bottom: 7%;
	margin-top: 0;
}

/* バナー全体の設定 */
.campaign-banner {
	display: flex;
	align-items: stretch;
	background-color: #f7f6f4;
	text-decoration: none;
	color: #222;
	width: 90%;
	margin: 0 auto 3%;
	border: 1px solid #eee;
}


/* 左側：商品画像エリアの設定 */
.banner-image {
	padding: 15px 10px;
	display: flex;
	align-items: center;
}

/* 画像のサイズ調整 */
.banner-image img {
	max-height: 120px;
	width: auto;
}

/* 中央：テキストエリアの設定 */
.banner-text {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* 見出し（① 日焼け止め）の設定 */
.banner-text h2 {
	font-size: 1.0rem;
	margin: 0;
	font-weight: 600;
}

/* 説明文の設定 */
.banner-text p {
	font-size: .8rem;
	margin: 2px 0;
	font-weight: normal;
}

/* 右側：黒い矢印エリアの設定 */
.banner-arrow {
	background-color: #2167b1;
	color: #fff;
	padding: 0 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.0rem;
}

.contents-in .banner-arrow{
	background-color: #f8cd4c;
}



@media(min-width:750px){
	.sticky-container{
		display: flex;
		justify-content: center;
		column-gap: 50px;
		background-color: #f9f9f9;
	}
	
	.pc-box{
		position: sticky;
        left: 0;
        top: 0;
        display: flex;
        width: 33%;
        height: 100vh;
        justify-content: center;
        align-items: center;
	}
	
	.pc-box__left{
		width: 90%;
		margin: 0 auto;
	}
	
	.pc-box__left img{
		width: 22vh;
		margin: 0 auto;
	}
	
	.pc-box__left a{
		display: block;
		width: 60%;
		margin: 0 auto;
		border: solid 1px #000;
		color: #000;
		text-decoration: none;
		font-size: 1.1rem;
		text-align: center;
		line-height: 3;
		position: relative;
	}
	
	.pc-box__left a:after{
		display: inline-block;
        position: absolute;
        top: 50%;
        right: 5%;
        right: 15px;
        width: 6px;
        height: 6px;
        border-top: 1px solid #282828;
        border-right: 1px solid #282828;
        content: "";
        transform: translateY(-50%) rotate(135deg);
    }
	
	.wrapper{
		width: 36%;
		margin: 0;
	}
	
	.mv p{
		font-size: 1.2rem;
	}

	.main-text p{
		font-size: 1.1rem;
	}

	.main-text .font-color__red{
		font-size: 1.5rem;
	}

	.main-text .font-color__red span{
		font-size: 1rem;
	}
	
	/* 見出し（① 日焼け止め）の設定 */
	.banner-text h2 {
		font-size: 1.2rem;
	}

	/* 説明文の設定 */
	.banner-text p {
		font-size: 1rem;
		margin: 2px 0;
	}

	
	}
		
