@charset "utf-8";
html {
	color: #fff;
	font-size: 16px;
	scroll-behavior: smooth;
	touch-action: manipulation;
}

body {
	font-family: "Noto Sans JP", serif;
	background-color: #4FA3FD;
	text-align: left;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

a {
	text-decoration: none;
	color: #fff;
}

a:link {
	color: #fff;
}

a:visited {
	color: #fff;
}

.flex {
	display: flex;
}

.inner {
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
}

/* ここからスマホ表示用CSS　768px以下 ---------------- */
@media screen and (max-width: 768px) {
	.inner {
		margin: 0 5%;
	}
}

/* 共通
----------------------------------------- */
h2 {
	font-size: 3rem;
}

.spbr {
	display: none;
}

/* ここまで　共通
----------------------------------------- */

/* footer
----------------------------------------- */
footer {
	margin-top: 100px;
	padding-top: 100px;
	padding-bottom: 70px;
	background: transparent linear-gradient(180deg, #4FA3FD 0%, #77B6FC 17%, #94C4F800 100%) 0% 0% no-repeat padding-box;
	opacity: 1;

	& .footer {
		max-width: 520px;
		margin: 0 auto;

		& p {
			text-align: center;
			font-size: 1.25rem;
		}

		& img.logo {
			margin-top: 30px;
		}

		& ul {
			display: flex;
			justify-content: center;
			margin-top: 30px;
			margin-bottom: 16px;
			
			& li {
				margin-right: 40px;
			}

			& li:last-child {
				margin-right: 0;
			}
		}
	}
}

/* ここからスマホ表示用CSS　768px以下 ---------------- */
@media screen and (max-width: 768px) {
	footer .footer {
		padding: 0 5%;
	}
}

/* ここまで　footer
----------------------------------------- */

/* メインビジュアル
----------------------------------------- */
.mainvisual {
	background-image: url(../img/bg_mainvisual.png);
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 850px;
	position: relative;
}

.mainvisual {
	& .header {
		& h1.logo-title {
			position: absolute;
			top: 87px;
			left: -67px;
			font-size: 2.5rem;
		}
	
		& div.logo {
			position: absolute;
			top: 87px;
			right: -67px;
		}
	
	}
	
	& div.campaignday {
		position: absolute;
		top: 600px;
		left: -67px;
	}

	& div.menu {
		& ul.bland {
			display: flex;
			position: absolute;
			top: 710px;
			left: 50%;
			transform: translateX(-50%);
	
			& li {
				margin-right: 40px;
			}
	
			& li:last-child {
				margin-right: 0;
			}
		}
	}
}

.confirm .logo-title,
.thanks .logo-title {
	margin-top: 40px;
	position: static;
}

@media screen and (max-width: 768px) {
	.confirm .logo-title,
	.thanks .logo-title {
		transform: translateX(0);
	}
}

/* ここからスマホ表示用CSS　768px以下 ---------------- */
@media screen and (max-width: 768px) {
	.mainvisual {
		background-image: url(../img/bg_mainvisual_sp.png);
		height: 550px;

		& .header {
			& h1.logo-title {
				font-size: 1.75rem;
				left: 0;
				line-height: 1.4;

				& .spbr {
					display: block;
				}
			}
			
			& div.logo {
				width: 100px;
				right: 0;
			}
		}

		& div.campaignday {
			top: 400px;
			left: 0;

			& img {
				width: 250px;
			}
		}

		& div.menu {
			& ul.bland {
				top: 460px;
				flex-wrap: wrap;
				left: 50%;
				transform: translateX(-50%);
				justify-content: center;
		
				& li {
					margin-right: 0;
					width: 50%;
					padding: 10px;
					text-align: center;
					display: flex;
					justify-content: center;
					align-items: center;
				}
			}
		}		
	}
}
/* ここまで　メインビジュアル
----------------------------------------- */

/* info 情報エリア
----------------------------------------- */
.area-info {
	padding: 0 50px;
	border: solid 1px #fff;
	margin-top: -40px;

	& dl {
		width: 100%;
		flex-wrap: wrap;
		justify-content: space-between;

		& h2 {
			font-size: 1.75rem;
		}

		& h2.subtxt::after {
			content: "※数に限りがございます。";
			display: block;
			font-size: 0.75rem;
			text-align: center;
			margin-top: 8px;
		}
	}

	& dt {
		width: 40%;
		padding-top: 30px;
		padding-bottom: 30px;
	}

	& dd {
		width: 60%;
		padding-top: 30px;
		padding-bottom: 30px;

		& p {
			line-height: 1.5;
		}

		& p.txt {
			font-size: 0.75rem;
			margin: 20px 0;
		}
	}
}

.area-info dl dt:first-child,
.area-info dl dt:first-child + dd {
	border-bottom: solid 1px #fff;
}

/* ここからスマホ表示用CSS　768px以下 ---------------- */
@media screen and (max-width: 768px) {
	.area-info {
		padding: 30px 20px;
		text-align: center;
		margin-top: 20px;

		& p {
			font-size: 0.875rem;
			text-align: left;
		}

		& p.txt {
			font-size: 0.625rem;
			margin: 20px 0;
		}

		& dl {
			display: block;
		}
	}

	.area-info dt,
	.area-info dd {
		width: 100%;
		padding: 0;
	}

	.area-info dl dt:first-child {
		border-bottom: 0;
	}

	.area-info dl dt:first-child + dd {
		padding-bottom: 30px;
	}

	.area-info dl dd {
		margin-top: 20px;
	}

	.area-info dl dt:nth-of-type(2) h2 {
		margin-top: 30px;
	}
}

/* ここまで　info
----------------------------------------- */

/* area-belief　信念エリア
----------------------------------------- */
.area-belief {
	margin-top: 220px;

	& h2 {
		position: relative;
	}
	
	& h2::before {
		position: absolute;
		content: "BETTER STARTS NOW";
		display: block;
		font-size: 90px;
		color: rgba(255, 255, 255, 0.3);
		margin-left: -45px;
		margin-right: -200px;
		top: -70px;
	}

	& h3 {
		margin-top: 20px;
		font-size: 1.5rem;
		font-weight: bold;
		line-height: 1.7;
	}

	& .flex {
		justify-content: space-between;
		margin-top: 50px;

		& .txt {
			width: 650px;

			& p {
				margin-bottom: 20px;
				line-height: 1.75;
			}
		}

		& img {
			width: 180px;
		}
	}
}

/* ここからスマホ表示用CSS　768px以下 ---------------- */
@media screen and (max-width: 768px) {
	.area-belief {
		margin-top: 75px;

		& h2 {
			font-size: 1.75rem;
		}

		& h2::before {
			font-size: 2rem;
			margin-left: -16px;
			margin-right: 0;
			top: -20px;
		}

		& h3 {
			font-size: 1rem;
		}

		& .flex {
			flex-direction: column;

			& .txt {
				width: 100%;

				& .txt p {
					font-size: 0.75rem;
				}
			}

			& img {
				margin: 70px auto 0;
			}
		}
	}
}

/* ここまで　belief
----------------------------------------- */

/* area-blandimage　ブランドイメージエリア
----------------------------------------- */
.area-blandimage {
	margin-top: 100px;
	text-align: center;
	
	& div.introduction {
		& h2 {
			position: relative;
			display: inline-block;
		}
	
		& h2::after {
			position: absolute;
			content: "";
			display: block;
			width: 100%;
			height: 25px;
			background-color: #047DFF;
			bottom: -7px;
			z-index: -1;
		}
	
		& p {
			margin-top: 50px;
			line-height: 1.5;
			letter-spacing: .1em;
		}
	}

	& div.bar {
		width: 75%;
		height: 3px;
		background-color: #047DFF;
		margin: 50px auto;
	}

	& div.catchcopy {
		margin-left: auto;
		margin-right: auto;
		text-align: left;
		width: 75%;

		& h2 {
			font-size: 1.5rem;
		}

		& p {
			line-height: 2;
		}
	}

	& div.video {
		margin-top: 40px;
		
		& video {
			width: 75%;
		}
	}
}

@media screen and (max-width: 768px) {
	.area-blandimage {
		margin-top: 40px;

		& div.introduction {
			& h2 {
				width: 80%;
			}

			& h2::after {
				height: 10px;
			}
		
			& p {
				margin-top: 28px;
				font-size: 0.875rem;
			}
		}

		& div.bar {
			width: 90%;
		}
	
		& div.catchcopy {
			width: 85%;
	
			& h2 {
				font-size: 1.5rem;
			}
	
			& p {
				margin-top: 20px;
				line-height: 1.5;
				font-size: 0.875rem;
			}
		}

		& div.video {
			& video {
				width: 90%;
			}
		}
	}
}

/* ここまで　area-blandimage　ブランドイメージエリア
----------------------------------------- */


div.texttitle {
	margin-top: 100px;
	font-size: 2.5rem;

	& p {
		position: relative;
	}

	& p::after {
		content: "";
		display: inline-block;
		width: calc(100% - 7.5rem);
		height: 3px;
		background-color: #047DFF;
		position: absolute;
		top: 50%;
		margin-left: 20px;
	}
}

@media screen and (max-width: 768px) {
	div.texttitle {
		margin-top: 60px;
		font-size: 1.5rem;
	
		& p::after {
			width: calc(100% - 7.5rem);
		}
	}
}

/* 商品紹介エリア　area-product
----------------------------------------- */
.product {
	margin-top: 100px;
	color: #333;
	line-height: 2;
}

.product-introduction {
	padding-top: 100px;
	padding-bottom: 100px;
	background: transparent linear-gradient(180deg, #C5D1EA 0%, #E7D7E9 31%, #E7D7E9 67%, #B7CAE5 81%, #7AB9E0 100%) 0% 0% no-repeat padding-box;
	clip-path: polygon(0 70px, 100% 0%, 100% calc(100% - 70px), 0% 100%);
	
	& .box {
		& .box-left {
			width: 50%;
			flex-direction: column;
			justify-content: space-between;

			& p.txt {
				margin-top: 20px;
			}

			& .product-detail {
				justify-content: space-between;
				padding-right: 40px;

				& .bottan {
					margin-top: auto;
					
					& p.link {
						font-size: 0.875rem;
						padding: 8px 24px;
						border: solid 1px #333;

						& a {
							color: #333;
						}
					}
				}
			}
		}

		& .box-right {
			width: 50%;
		}
	} 
}

.product-introduction .product-image {
	justify-content: space-between;
	margin-top: 40px;

	& div {
		width: 31%;
	}
}

.product-modelvariations {
	margin-top: -70px;
	padding-top: 120px;
	padding-bottom: 120px;
	background-color: #fff;
	clip-path: polygon(0 70px, 100% 0%, 100% calc(100% - 70px), 0% 100%);

	& h3 {
		font-size: 2rem;
	}

	& .variations {
		justify-content: space-between;
		margin-top: 40px;
		text-align: center;

		& div {
			width: 31%;

			& h4 {
				margin-top: 16px;
			}

			& p.money {
				font-size: 1.5rem;
				font-weight: bold;
			}

			& p.tax::after {
				content: "（税込）";
				display: block;
				font-size: .875rem;
				font-weight: normal;
				text-align: center;
				margin-top: -10px;
			}

			& .bottan {
				width: 100%;
				margin-top: 20px;

				& p {
					& a {
						display: inline-block;
						color: #333;
						font-size: 0.875rem;
						border: solid 1px #333;
						padding: 4px 20px;
					}
				}
			}
		}
	}
}

.exceed,
.citizencollection {
	margin-top: -70px;
}

.xc {
	& .product-modelvariations {
		& .variations  {
			justify-content: flex-start;

			& div:first-child {
				margin-right: 3.5%;
			}
		}
	}
}


/* ここからスマホ表示用CSS　768px以下 ---------------- */
@media screen and (max-width: 768px) {
	.product {
		margin-top: 40px;
	}

	.product-introduction {
		padding-top: 20px;
		clip-path: polygon(0 40px, 100% 0%, 100% calc(100% - 40px), 0% 100%);
		
		& .box {
			flex-direction: column;

			& .box-left {
				width: 100%;
	
				& .product-detail {
					flex-direction: column-reverse;
					justify-content: space-between;
					padding-right: 0px;
	
					& .bottan {
						margin-top: 20px;
						
						& p.link {
							display: inline-block;
							font-size: 0.875rem;
							padding: 8px 24px;
							border: solid 1px #333;
						}
					}

					& .amount {
						margin-top: 40px;
						& p {
							line-height: 1.75;
						}
					}
				}
			}
	
			& .box-right {
				width: 100%;
				margin-top: 20px;
			}
		} 
	}

	.product-introduction .product-image {
		flex-wrap: wrap;

		& div {
			width: 48%;

			& p {
				font-size: 0.75rem;
				line-height: 1.75;
			}
		}

		& div:last-child {
			margin-top: 20px;
		}
	}

	.product-modelvariations {
		margin-top: -70px;
		padding-top: 80px;
		padding-bottom: 80px;
		clip-path: polygon(0 40px, 100% 0%, 100% calc(100% - 40px), 0% 100%);
	
		& h3 {
			font-size: 1.25rem;
		}
	
		& .variations {
			flex-wrap: wrap;
	
			& div {
				width: 46%;
	
				& h4 {
					font-size: 0.75rem;
				}
	
				& p.money {
					font-size: 1.25rem;
				}

				& p.tax::after {
					font-size: .75rem;
				}

				& p.count {
					font-size: 0.75rem;
				}
	
				& .bottan {
					margin-top: 10px;
	
					& p {
						& a {
							font-size: 0.75rem;
						}
					}
				}
			}
		}

		& .variations > div:last-child {
			margin-top: 40px;
		}
	}

	& .exceed,
	  .citizencollection {
		margin-top: -40px;
	}

	& .exceed,
	  .xc {
		& .product-modelvariations {
			& .variations > div:last-child {
				margin-top: 0;
			}
		}
	}
}


/***** ここまで　product *****/

/* ここまで　area-newmodel
----------------------------------------- */

/* area-store 店舗情報
----------------------------------------- */
.area-store {
	margin-top: 150px;

	& img {
		margin-top: 40px;
	}

	& .logo {
		width: 100%;
		margin-top: 60px;
		display: flex;
		justify-content: center;

		& img {
			display: block;
			width: 380px;
		}
	}

	& .flex {
		align-items: center;
		justify-content: center;
		margin-top: 60px;

		& div {
			width: 50%;
			text-align: center;

			& p {
				display: inline-block;
				text-align: left;
				line-height: 2;
				font-size: 1.125rem;
			}
		}
	}
}

/* ここからスマホ表示用CSS　768px以下 ---------------- */
@media screen and (max-width: 768px) {
	.area-store {
		margin-top: 70px;

		& h2 {
			font-size: 1.5rem;
			margin-bottom: 0;
		}

		& img {
			margin-top: 20px;
		}

		& .logo {
			width: 200px;
			margin: 30px auto 0;
		}

		& .flex {
			flex-direction: column;
			margin-top: 20px;

			& div {
				width: 100%;
				height: auto;
			}

			& div:nth-child(2) {
				margin-top: 40px;
			}

			& div iframe {
				width: 100%;
				height: auto;
				aspect-ratio: 1 / 1;
			}
		}
	}
}

/* ここまで　area-store 店舗情報
----------------------------------------- */

/* form エリア
----------------------------------------- */
.area-form {
	margin-top: 100px;
}

.area-form p {
	line-height: 1.875;
}

.area-form > p {
	margin-top: 40px;
	margin-bottom: 40px;
	padding-left: 50px;
}

/* form ---------------- */
form {
	padding: 0 50px;
	display: flex;
	flex-direction: column;
	row-gap: 30px;
}

form input,
form textarea {
	color: #10182d;
	border-radius: 5px;
}

form input[type="text"],
form input[type="tel"],
form input[type="mail"],
form textarea {
	width: 500px;
	height: 40px;
}

form input[type="date"],
form input[type="time"] {
	width: 150px;
}

form input[type="radio"] {
	margin-bottom: 10px;
}

form input[type="radio"]#noanswer,
form input[type="radio"]#other {
	margin-bottom: 30px;
}

form textarea {
	height: 100px;
	margin-bottom: 50px;
}

form label {
	display: block;
	margin-bottom: 10px;
}

form label.required::after {
	content: "必須";
	color: #fff;
	background-color: #f00;
	font-size: 0.625rem;
	margin-left: 10px;
	padding: 2px 8px;
}

form label.initial {
	display: initial;
}

form input[type="submit"] {
	width: 300px;
	font-size: 1.125rem;
	color: #fff;
	text-align: center;
	border-radius: 28px;
	border-color: #14559A;
	height: 55px;
	background: #14559A;
	box-shadow: 2px 3px 9px #000000;
	opacity: 1;
	transition: 0.3s;
}

form input[type="submit"]:hover {
	background: #fff;
	color: #14559A;
	box-shadow: 2px 3px 9px #14559a;
}

form .form-confirm {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	row-gap: 20px;
}

form .error {
	margin-top: 10px;
	color: #f00;
}

.thanks a {
	text-decoration: none;
}

.thanks a:hover {
	text-decoration: underline;
}

/* ここからスマホ表示用CSS　768px以下 ---------------- */
@media screen and (max-width: 768px) {
	.area-form {
		margin-top: 80px;
	}

	.area-form h2 {
		font-size: 1.5rem;
	}

	.area-form p {
		padding-left: 0;
	}

	form {
		padding: 0;
	}

	form input[type="text"],
	form input[type="tel"],
	form input[type="mail"],
	form textarea {
		width: 100%;
	}

	form input[type="radio"] {
		margin-bottom: 16px;
	}

	form input[type="submit"],
	form input[type="button"] {
		width: 100%;
	}
}

/* ここまで　formエリア
----------------------------------------- */

/*===ジェイクエリー==========================*/
/* フェードイン前 */
.element {
	/* 最初は非表示 */
	opacity: 0;
	visibility: hidden;
	transform: translateY(30px);
	transition: opacity 1s, visibility 1s, transform 1s;
}

.fade {
	/* 最初は非表示 */
	opacity: 0;
	visibility: hidden;
	transform: translateY(50px);
	transition: opacity 1.5s, visibility 1s, transform 1.5s;
}

/* フェードイン時に入るクラス */
.is-fadein {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

.textfadeArea h2 span {
	color: transparent;
	display: inline-block;
	position: relative;
}

.textfadeArea h2 span::before {
	content: "";
	display: inline-block;
	width: 0;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	background: #047DFF;
}

.textfadeArea h2.move span {
	animation: textAnime forwards 1s 1 ease 0.3s normal;
}

.textfadeArea h2.move span::before {
	animation: barAnime forwards 0.7s 1 ease 0.5s normal;
}

@keyframes barAnime {
	0% {
		left: 0;
		width: 0;
	}
	50% {
		left: 0;
		width: 100%;
	}
	51% {
		left: 0;
		width: 100%;
	}
	68% {
		left: 0;
		width: 100%;
	}
	100% {
		left: 100%;
		width: 0;
	}
}
@keyframes textAnime {
	0% {
		color: transparent;
	}
	50% {
		color: transparent;
	}
	100% {
		color: #fff;
	}
}
