*,
*:before,
*:after {
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}

html {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 62.5%;
}
body {
	margin: 0;
	padding: 0;
	font-family: "New_Tegomin variant0", Tofu;
}

/*========= レイアウトのためのCSS ===============*/

h1,h1 a,h1 a:visited,h1 a:active {
	margin: 0;
	padding: 0;
	font-size:2.0rem;
	line-height: 1.5;
	display: inline-block;
	text-align: center;
	color: #fff;
	position: fixed;
	top: 1.375rem;
	left: 1.375rem;
	z-index: 999;
	text-decoration: none;
}

h1 a:hover,
h1 a:focus {
	color: #fff;
	text-decoration: underline;
}

.mainArea {
	width: 100%;
	max-width: 1000px;
	margin: 80px auto 0;
	box-sizing: border-box;
}
.mainArea > section {
	padding: 20px 20px 3.2rem;
	background: #fff;
}
section {
	margin: 0 0 50px;
}
section section:last-child {
	margin: 0;
}
.mainArea h2 {
	margin: 0 0 3.2rem;
	font-size: 3.2rem;
	line-height: 1.6;
	padding: 0 0 1.375rem;
	border-bottom: 0.125rem dashed #ef95a1;
	color: #A81F31;
}
h3 {
	margin: 2.4rem 0;
	font-size:2.4rem;
	line-height:1.3;
	padding: 0 0 0 40px;
	position: relative;
}
h3::before {
	content: "";
	position: absolute;
	left: 15px; /* x位置 */
	top: 0; /* y位置 */
	width: 15px; /* 幅 */
	height: 25px; /* 高さ */
	border-radius: 25px 15px 0 0; /* 丸み */
	transform: rotate(-45deg); /* 角度調整 */
	transform-origin: 0 100%; /* 回転の基準点 */
}
h3::after {
	content: "";
	position: absolute;
	left: 0; /* x位置 */
	top: 0; /* y位置 */
	width: 15px; /* 幅 */
	height: 25px; /* 高さ */
	border-radius: 15px 25px 0 0; /* 丸み */
	transform: rotate(45deg); /* 角度調整 */
	transform-origin: 100% 100%; /* 回転の基準点 */
}
h4 {
	margin:2.2rem 0;
	font-size:2.2rem;
	font-weight: bold;
}
p,ol,table {
	margin: 0 0 2.0rem;
	font-size: 2.0rem;
	letter-spacing: 0.05em;
	line-height: 1.5555555556;
}
ol li:not(:first-child) {
	margin-top: 1.0rem;
}
ul.center {
	list-style: none;
	padding: 0;
}
ul.center li:not(:last-child) {
	margin-bottom: 10px;
}

table {
	width: 80%;
	margin: 10px auto;
}
table th,table td {
	padding: 10px;
}
.flex_test-box {
	display: flex;
}
.flex_test-box__cute-what {
	align-items: baseline;
}
.flex_test-box__cute-what .flex_test-item:nth-child(1) {
	flex-basis: 30%;
	align-self: stretch;
}
.flex_test-box__cute-what .flex_test-item:nth-child(1) img {
	width: 100%;
	height: auto;
	padding: 0 20px 0 0;
}
.flex_test-box__cute-what .flex_test-item:nth-child(2) {
	flex-basis: 70%;
	align-self: center;
	text-align: center;
}
.flex_test-box__cute-what .flex_test-item:nth-child(2) p {
	text-align: left;
}
.flex_test-box__cute-where {
	align-items: baseline;
}
.flex_test-box__cute-where .flex_test-item {
	flex-basis: 50%;
	margin: 0;
}
.flex_test-box__cute-where .flex_test-item:nth-child(1) {
	padding: 0 20px 0 0;
	border-right: 0.125rem dashed #ef95a1;
}
.flex_test-box__cute-where .flex_test-item:nth-child(2) {
	padding: 0 0 0 20px;
}
.flex_test-box__cute-where .flex_test-item iframe,
 iframe{
	max-width: 100%;
}
.flex_test-box__cute-where h4 {
	text-align: center;
}
.flex_test-box__instagram {
	justify-content: space-around;
}
.flex_test-box__instagram h4 {
	text-align: center;
}
.flex_test-box__instagram a {
	border-radius: 50%;
	display: block;
	overflow: hidden;
	line-height: 1;
	height: 320px;
	width: 320px;
}
.flex_test-box__instagram a:hover img {
	opacity: 0.7;
}
a.btn {
	font-size: 2.0rem;
	font-weight: 700;
	line-height: 1.5;
	position: relative;
	display: inline-block;
	padding: 1rem 4rem;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	letter-spacing: 0.1em;
	border-radius: 0.5rem;
	color: #fff;
}
a.btn:hover {
	color: rgba(255,255,255,0.4);
}
a.btn.btn--raised.fa-angle-left {
	padding: 1rem 1rem 1rem 4rem;
}
a.btn.btn--raised.fa-angle-right {
	padding: 1rem 4rem 1rem 1rem;
}
a.btn--pink {
	background-color: #eb6877;
}
a.btn--pink:hover {
	background:#ec717f
}
a.btn--brown {
	background-color: #837061;
}
a.btn--brown:hover {
	background-color: #998271;
}
a.btn--yellow {
	background-color: #FDB532;
}
a.btn--yellow:hover {
	background-color:#fdcb6f;
}
a.btn--raised {
	margin: 0 auto;
	color:#fff;
	display: inline-block;
	position: relative;
	text-align: center;
	vertical-align: middle;
}
a.btn--raised.fa-angle-left:before,
a.btn--raised.fa-angle-right:after {
	content: "";
	width: 1em;
	height: 1em;
	display:inline-block;
	background-position: center;
	position: absolute;
	top: 50%;
	margin-top: -0.5em;
}
a.btn--raised.fa-angle-left:before {
	left: 1rem;
}
a.btn--raised.fa-angle-right:after {
	right: 1rem;
}
a.btn--raised.fa-angle-left:before {
	background-image: url("/love-prinoco/shared/svg/left_arrow.svg");
}
a.btn--raised.fa-angle-right:after {
	background-image: url("/love-prinoco/shared/svg/right_arrow.svg");
}
a.btn--red.btn--cubic {
	border-bottom: 5px solid #9f000c;
}
a.btn--red.btn--cubic:hover {
	margin-top: 3px;
	border-bottom: 2px solid #9f000c;
}
.center {
	text-align: center;
	margin-top: 30px;
}
@media screen and (max-width: 1000px) {
	.mainArea {
		margin: 20px auto 0;
	}
	.mainArea h2 {
		margin: 0 0 2.6rem;
		font-size: 2.6rem;
	}
	h3 {
		margin: 2.4rem 0;
		font-size:2.4rem;
	}
	h4 {
		margin: 2.0rem 0;
		font-size:2.0rem;
	}
	p {
		margin: 0 0 1.8rem;
		font-size: 1.8rem;
	}
	section {
		margin: 0 0 20px;
	}
	.mainArea > section {
		padding: 20px 16px 3.2rem;
	}
	.flex_test-box__cute-where {
		flex-wrap: wrap;
	}
	.flex_test-box__cute-where .flex_test-item {
		flex-basis: 100%;
	}
	.flex_test-box__cute-where .flex_test-item:first-child {
		margin: 0 0 30px;
	}
	.flex_test-box__cute-where .flex_test-item:nth-child(1),
	.flex_test-box__cute-where .flex_test-item:nth-child(2) {
		padding: 0;
		border: 0;
	}
	.flex_test-box__suzuri {
		flex-wrap: wrap;
	}
	.flex_test-box__suzuri .flex_test-item {
		margin: 0 auto 30px;
	}
	.flex_test-box__instagram {
		flex-wrap: wrap;
	}
}