
img {
	max-width: 100%;
}
.center {
	text-align: center!important;
}
@media screen and (max-width: 768px) {
	.center {
		text-align: left!important;
	}
}
.wrapper-active::before {
	content: '';
	background: rgba(0, 0, 0, 0.3);
	width: 100vw;
	height: 100%;
	position: absolute;
	top: 0;
	z-index: 30;
	overflow-y: hidden;
}
/*トグルボタンのスタイルを指定*/
.Toggle {
    display: block;
    position: fixed;    /* bodyに対しての絶対位置指定 */
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 500;
  right:15px;
  bottom: 15px;
  background: #FFFCBE;
  border-radius: 100px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
}
@media screen and (min-width: 750px) {
	.Toggle {
		display: none;
	}
}
.Toggle span {
    display: block;
    position: absolute;
    width: 30px;
	right: 15px;
    border-bottom: solid 4px #703A0E;
    -webkit-transition: .35s ease-in-out;	/*変化の速度を指定*/
    -moz-transition: .35s ease-in-out;		/*変化の速度を指定*/
    transition: .35s ease-in-out;			/*変化の速度を指定*/
}
.Toggle-menu {
	font-size: 12px;
	color: #70390E;
	font-weight: bold;
	position: absolute;
	bottom: 5px;
	left:0;
	right: 0;
}
 /*各ボーダー少しずつずらす*/
.Toggle span:nth-child(1) {
    top:12px;
}
 .Toggle span:nth-child(2) {
    top: 22px;
}
 .Toggle span:nth-child(3) {
    top: 32px;
}
.Toggle.active span:nth-child(1) {
    top: 38px;
/* 1番目のspanをマイナス45度に */
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
 
/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
    top: 38px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
.Toggle.active {
	background: none;
	box-shadow: none;
}
.Toggle-close {
	overflow-x: hidden;
	-webkit-transform: translateY(300%);/*画面より100%外へ押し出し非表示にさせる*/
}
.Toggle.active .Toggle-menu {
	opacity: 0;
}
.Toggle.active .Toggle-close {
	position: absolute;
	top: 28px;
	right: 38px;
	width: 70px;
	font-family: "M PLUS Rounded 1c", sans-serif;
	color: #703A0E;
	font-weight: 600;
	display: flex;
	-webkit-transform: translateY(0);/*画面より100%外へ押し出し非表示にさせる*/
	-webkit-transition: 0.5s ease-in-out;	/*変化の速度を指定*/
    -moz-transition: 0.5s ease-in-out;		/*変化の速度を指定*/
    transition: 0.5s ease-in-out;	
}

.gnav {
	width: 100%;
	text-align: center;
	position: relative;
	z-index:100;
}
	.gnav ul {
		width: 100%;
		display: flex;
		justify-content:space-around;
		justify-content: center;
		background-color: #FFFCBE;
		font-family: "M PLUS Rounded 1c", sans-serif;
		font-weight: 600;
		color: #703A0E;
	}
	.gnav ul ul {
		display: block;
	}
	.gnav ul li {
		width: 100%;
		position: relative;
	}

	.gnav ul .gnav-bg {
		border-right: 1px solid #BA7A4F;
	}
	.gnav ul .gnav-bg a {
		width: 100%;
		height: 52px;
		padding: 14px 0;
		vertical-align: middle;
	}
	@media screen and (max-width: 750px) {
		.gnav ul {
			align-content: flex-start;
		}
		.gnav ul .gnav-bg {
			border-right: none;
		}
		.gnav ul .gnav-bg a {
			height: 70px;
			border-bottom: 1px solid #A3866F;
		}
	}
	.gnav ul .gnav-bg:last-child {
		border: none;
	}
	.gnav ul .gnav-bg::after {
		content:'';
		position: absolute;
		z-index: -1;
		width: 100%;
		height: 33px;
		left: 0;
		bottom: -30px;
		background: url(../img/purchase/nav-bg.png) no-repeat;
		background-size: 100%;
	}
	@media screen and (min-width: 1250px) {
		.gnav ul .gnav-bg::after {
			bottom: -28px;
		}
	}
	@media screen and (max-width: 750px) {
		.gnav ul .gnav-bg::after {
			background: none;
		}
	}
	.gnav ul li li a{
		padding:10px 35px;
	  }
	  nav ul li.list-child::before{
		content:'';
		position: absolute;
		right:30px;
		top:17px;
		width:10px;
		height:10px;
		border-top: 2px solid #703A0E;
		border-right:2px solid #703A0E;
		transform: rotate(135deg);
	}
	.gnav ul > li{
		display: block;
	}
	.gnav ul > li > a{
		padding: 15px 30px;
		display: block;
		text-transform: uppercase;
	}
	
	/*Sub menu*/
	.gnav ul li ul{
		position: absolute;
		top: 50px;
		left: 0;
	}
	.gnav ul li ul li{
		display: block;
	}
	.gnav ul li ul li a{
		background-color: #FFFCBE;
		border-top: 1px solid rgba(163,134,111,0.3);
		color: #703A0E;
	}
	.gnav ul li ul li.list-child a:hover{
		background-color: rgba(255, 255, 255, 0.8);
	}
	.gnav ul li ul{
		display: none;
	}
	.gnav ul li:hover ul{
		display: block;
		z-index:1;
	}
	@media screen and (max-width: 750px) {
		nav  {
			overflow-x: hidden;
		}
		.menu{
			text-align:center;
			background-color:rgba(255,255,255,0.5);
			transition: 0.5s ease;/*滑らかに表示*/
			-webkit-transform: translateY(300%);/*画面より100%外へ押し出し非表示にさせる*/
			z-index:100;
		  }
		  /*OPEN時の動き*/
		  .menu.open {
			-webkit-transform: translateX(0%);
			transform: translateX(0%);/*メニューを元の位置へ戻す*/
		}
		.gnav .menu {
			position: fixed;
			bottom: 0;
			z-index: 100;
		}
		.gnav ul {
			flex-direction: column;
			width: 100vw;
			text-align: left;
			padding-bottom: 70px;
		}
		.gnav ul li {
			border-bottom: solid 1px #A3866F;
		}
		.gnav ul li:hover ul{
			display:flex;
		}
		.gnav ul .gnav-bg:last-child {
			border-bottom: solid 1px #A3866F;
		}
		.gnav ul .gnav-bg a {
			height: auto;
			padding: 24px 16px;
			border: none;
		}
		nav ul li::before {
			content:'';
			position: absolute;
			right:20px;
			top: 43%;
			width:10px;
			height:10px;
			border-top: 2px solid #703A0E;
			border-right:2px solid #703A0E;
			transform: rotate(45deg);
		}
		nav ul li.list-child::before{
			right:30px;
			top: 45%;
			transform: rotate(45deg);
		}
		.gnav ul li ul{
			position: relative;
			display: flex;
			flex-direction: row;
			flex-wrap: wrap;
			justify-content: space-between;
			background: #fffddc;
			top: 0;
			left: 0;
			padding: 8px;
		}
		.gnav ul li ul li {
			width: 60%;
			border-bottom: none;
			white-space: nowrap;
		}
		.gnav ul li ul li:nth-child(odd) {
			width: 40%;
		}
		.gnav ul li ul li a {
			padding: 16px 0 16px 16px!important;
			background: #fffddc;
		}
	}

.c-mv {
	width: 930px;
	margin: 0 auto;
	display: flex;
	position: relative;
}
.c-mv__logo {
	padding: 100px 0 0;
	width: 50vw;
}
.c-mv picture {
	width: 60vw;
	z-index: -1;
	right: 0;
	top: 10px;
}
@media screen and (max-width: 750px) {
	.c-mv {
		width: 100vw;
		height: 520px;
		overflow: hidden;
	}
	.c-mv__logo {
		width: 90vw;
		max-width: 300px;
		margin: 0 auto;
		padding: 32px 0 0;
	}
	.c-mv picture {
		width: 100%;
		max-width: 400px;
		position: absolute;
		z-index: -1;
		right: 0;
		left: 0;
		top: 180px;
		margin: 0 auto;
	}
}
.c-contents__text-red {
	text-align: center;
	color: #FF1D25;
}

h2 {
	width: 100%;
	padding: 5px 0;
	background: #FFFCBE;
	text-align: center;
	display: inline-block;
	font-family: "M PLUS Rounded 1c", sans-serif;
	color: #703A0E;
	margin-bottom: 35px	;
}
h2 span {
	width: 200px;
	border-radius: 30px;
	background: #E95C7B;
	display: block;
	margin: 0 auto;
	color: #fff;
}
.l-content {
	width: 760px;
	margin: 0 auto;
	padding-bottom: 50px;
	text-align: center;
	color: #333;
}
@media screen and (max-width: 750px) {
	.l-content {
		width: 100%;
	}
}
.l-content-bg {
	width: 100%;
	background: url(../img/purchase/contents-bg.png) repeat;
	padding-top: 70px;
	background-size: 200px;
}
h3 {
	font-size: 1.25rem;
	font-family: "M PLUS Rounded 1c", sans-serif;
	color: #703A0E;
	margin-bottom: 8px;
}
.c-button a {
	background-color: #5a2800;
	border-radius: 0.5rem;
	color: #fff;
	display: inline-block;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.25;
	padding: 0.75rem 80px;
	text-align: left;
	box-shadow: 0 0.4rem #BA7A4F ;
	position: relative;
}
.intro .c-button a {
	padding: 0.75rem 6vw;
}
@media screen and (max-width: 768px) {
	.c-button a {
		padding: 0.75rem 60px;
	}
	.intro .c-button a {
		padding: 0.75rem 10vw;
	}
}
	.c-button a::after {
		content: '';
		width: 12px;
		height: 12px;
		border-top: solid 3px #fff;
		border-right: solid 3px #fff;
		position: absolute;
		right: 30px;
		top:0;
		bottom:0;
		margin: auto 0;
		transform: rotate(45deg);
	}
.l-content-purchase p {
	margin-bottom: 20px;
}
.l-content-purchase img {
	margin: 0 auto;
}
.l-content-purchase__buttons {
	width: 600px;
	margin:  0 auto;
	font-family: "M PLUS Rounded 1c", sans-serif;
}
@media screen and (max-width: 768px) {
	.l-content-purchase__buttons {
		width: 90vw;
		height: auto;
	}
	.l-content-purchase__buttons img {
		width: 120px;
	}
	.l-content-purchase__buttons ul {
		gap:12px
	}
	.l-content-purchase__buttons ul li {
		width: 50%;
	}
	.l-content-purchase__buttons li a {
		background-color: #5a2800;
		border-radius: 0.375rem;
		color: #fff;
		display: inline-block;
		font-size: 0.875rem;
		font-weight: 600;
		line-height: 1;
		padding: 0.75rem 0;
		text-align: center;
		width: 100%;
		position: relative;
		box-shadow: 0 4px #BA7A4F ;
	}

}
.l-content-purchase__buttons::after {
	content: '';
	display: block;
	clear: both;
	zoom: 1;
}
	.l-content-purchase__buttons ul {
		display: flex;
		justify-content: space-evenly;
		align-items: center;
		font-size: 0.875rem;
		padding: 30px 0 10px;
	}
	.l-content-purchase__buttons a {
		background-color: #5a2800;
		border-radius: 0.375rem;
		color: #fff;
		display: inline-block;
		font-size: 1rem;
		font-weight: 600;
		line-height: 1;
		padding: 0.75rem 0;
		text-align: center;
		width: 13rem;
		position: relative;
		box-shadow: 0 4px #BA7A4F ;
	}
	.l-content-purchase__buttons .c-contents__link a {
		background-color: #FF6754;
		border-radius: 0.375rem;
		color: #fff;
		display: inline-block;
		font-size: 1rem;
		font-weight: 600;
		line-height: 1;
		padding: 0.75rem 0;
		text-align: center;
		width: 13rem;
		position: relative;
		box-shadow: 0 4px #FFAFAB;
	}
	.l-content-purchase__buttons a::after {
		content: '';
		width: 8px;
		height: 8px;
		border-top: solid 2px #fff;
		border-right: solid 2px #fff;
		position: absolute;
		right: 12px;
		top:0;
		bottom:0;
		margin: auto 0;
		transform: rotate(45deg);
	}
	.l-content-purchase__buttons ul li span {
		background: #F7E8DF;
		border-radius: 20px;
		font-size: 0.75rem;
		padding: 2px 8px;
		position: relative;
		display: inline-block;
		margin-bottom: 12px;
		line-height: 1.3;
	}
	.l-content-purchase__buttons ul li span::after {
		content: '▲';
		color: #F7E8DF ;
		position: absolute;
		rotate: 60deg;
		bottom: -10px;
		left: 0;
		right:0;
	}
	.l-content-purchase__buttons p {
		display: block;
	}
	.l-content-purchase-book {
		width: 150px;
		float: left;
	}
	@media screen and (max-width: 768px) {
		.l-content-purchase-book {
			float: none;
			width: 90vw;
		}
	}
	
.l-content-set {
	text-align: center;
}
.l-content-setbg {
	width: 100%;
	background: url(../img/purchase/set-bg.png) repeat;
	padding: 70px 0 0;
	background-size: 140px;
}
	.l-content-setbg h2 {
		background: none;
		color: #333333;
	}
	.l-content-setbg p {
		margin-bottom: 20px;
	}
	.l-content-setbg img {
		margin: 0 auto 20px;
	}
	.l-content-setbg p.set-title {
		border-radius: 30px;
		background: #60A8D8;
		display: inline-block;
		color: #fff;
		padding: 2px 24px 3px;
		margin-top: 24px;
		font-size: 1.25rem;
		font-weight: bold;
	}
	.l-content-setbg .set-comment {
		width: 80%;
		margin: 0 auto;
		color: #4373E8;
		font-family: "M PLUS Rounded 1c", sans-serif;
		font-weight: bold;
		font-size: 2rem;
		position: relative;
	}
	.l-content-setbg .set-comment::before {
		content: "";
		width: 30px;
		height: 62px;
		display: block;
		position: absolute;
		background: url(../img/purchase/set-comment-bg.png) left top / contain no-repeat;
		left: 0;
		top: 0;
	}
	.l-content-setbg .set-comment::after {
		content: "";
		width: 30px;
		height: 62px;
		display: block;
		position: absolute;
		background: url(../img/purchase/set-comment-bg.png) right top / contain no-repeat;
		transform: scale(-1, 1);
		right: 0;
		top: 0;
	}
	.l-content-setbg ul {
		display: grid;
		gap: 24px;
		justify-items: center;
		grid-template-columns: repeat(2, 1fr);
	}
	.intro .l-content-setbg ul {
		grid-template-columns: repeat(3, 1fr);
		justify-items: stretch;
		gap: 16px;
	
	}
	@media screen and (max-width: 768px) {
		.l-content-setbg ul {
			display: initial;
		}
		.l-content-setbg ul li {
			width: 90%;
			margin: 0 auto;
		}
		.l-content-setbg .set-comment {
			width: 90%;
			padding: 0 2.5rem;
			font-size: 1.5rem;
		}
		.l-content-setbg .set-comment::before {
			left: 10%;
			top: 30%;
		}
		.l-content-setbg .set-comment::after {
			right: 10%;
			top: 30%;
		}
	
	
	}
	.l-content-setbg ul li {
		color:#703A0E;
		font-size: 1.125rem;
		font-weight: bold;
		font-family: "M PLUS Rounded 1c", sans-serif;
	}
	.l-content-setbg ul li img {
		margin: 8px 0 32px;
	}
.l-content-banner img {
	width: 90%;
	height: auto;
}

.l-content-shirotanbg {
	position: relative;
	width: 100%;
	background: url(../img/purchase/shirotan-bg2.png) repeat;
	padding-top: 40px;
	background-size: 90px;
	text-align: center;
}
.l-content__title {
	padding-bottom: 24px;
	text-shadow: 2px 2px 0 #fff;
}
	.l-content-shirotanbg::before {
		content:'';
		position: absolute;
		width: 100%;
		height: 90px;
		left: 0;
		top:-20px;
		background: url(../img/purchase/shirotan-bg1.png) repeat-x;
		background-size: 180px;
	}
	.l-content-shirotanbg p {
		font-size: 1.3rem;
		font-family: "M PLUS Rounded 1c", sans-serif;
		color: #333;
		margin-bottom: 8px;
		font-weight: bold;
		text-align: center;
	}
	.l-content-shirotan {
		width: 754px;
		padding: 24px 40px;
		border-radius: 18px;
		background-color: #fff;
		border: 6px solid #75ACDB;
		margin:  0 auto;
		position: relative;
	}
	.l-content-shirotan ul::before {
		content: '';
		position: absolute;
		width: 210px;
		height: 214px;
		background: url(../img/purchase/pattern.png) no-repeat;
		background-size: contain;
		top: -60px;
		left: -150px;
		z-index: 80;
	}
	.l-content-shirotan ul::after {
		content: '';
		position: absolute;
		width: 210px;
		height: 214px;
		background: url(../img/purchase/pattern2.png) no-repeat;
		background-size: contain;
		bottom: -10px;
		right: -180px;
		z-index: 100;
	}
	.l-content-shirotan::before {
		content: '';
		position: absolute;
		top: -180px;
		right: 160px;
		margin: 0 auto;
		background: url(../img/purchase/set-arrow.png) no-repeat;
		background-size: cover;
		width: 93px;
		height: 106px;
	}
	@media screen and (max-width: 750px) {
		.l-content-shirotan {
			width: 90vw;
			padding: 24px 10px;
		}
		.l-content-shirotan ul::before,
		.l-content-shirotan ul::after {
			content: none;
		}
		.l-content-shirotan::before {
			right: 100px;
		}
	}
	.l-content-shirotan img {
		margin:  0 auto;
	}
	.l-content-shirotan h4 {
		display: inline-block;
		font-family: "M PLUS Rounded 1c", sans-serif;
		border: 2px solid #60A8D8;
		border-radius: 5px;
		padding:  2px 10px;
		margin: 10px 0;
	}
	.l-content-shirotan p {
		font-size: 1rem;
	}
	.l-content-shirotan ul li {
		margin-bottom: 56px;
	}
	.l-content-shirotan .l-content-shirotan__text {
		font-size: 1.3rem;
		color: #60A8D8;
	}
	.l-content-shirotan .l-content-shirotan-campaign {
		display: flex;
		margin: 24px 0 0;
	}
	.l-content-shirotan .l-content-shirotan-campaign li {
		margin: 0;
	}

	.l-content-shirotan ul li:nth-child(3) {
		margin-bottom: 0;
	}
.l-content-shirotan-link {
	width: 760px;
	padding: 32px;
	margin: 0 auto;
	position: relative;
}
	.l-content-shirotan-link img {
		margin-bottom: 24px;
	}
.credit {
	width:162px;
	position: absolute;
	right: 0;
	bottom: -50px;

}
@media screen and (max-width: 768px) {
	.l-content-shirotan img {
		width: 260px;
	}
	.l-content-shirotan-link {
		width: 90vw;
		padding: 32px 0;
	}
	.l-content-shirotan .l-content-shirotan-campaign {
		flex-direction: column;
	}
	.sp_br {
		display: block;
	}
	.sp-img {
		width: 100%;
	}
	}
	.d-none {
		display: none;
	}
	@media screen and (max-width: 575px) {
		.d-sm {
			display: block;
		}
	
		.d-sm-none {
			display: none;
		}
	}