/*======================================

	Structure Module

=======================================*/
html {
	font-size: 62.5%; /* remの基準となるサイズ｜10px */
	width: 100%;
}
body {
	font-family: noto-sans-cjk-jp, "游ゴシック", YuGothic, roboto,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Century Gothic",Helvetica,Arial, "Droid Sans", sans-serif;
	font-family: noto-sans-cjk-jp, "游ゴシック", YuGothic, roboto,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN", "メイリオ",Meiryo, sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.5;
	margin: 0;
	padding: 0;
	color: #231815;
	background: #fff;
	-webkit-text-size-adjust: 100%;
	width: 100%;
	font-feature-settings: "palt";
    letter-spacing: 0.1rem;
}
main h1,main h2,main h3,main h4,main h5,main h6,main form,main p {
	line-height: 1.8;
}
/* 追記 */
a, a:visited{text-decoration: none;color: #231815;}
img{vertical-align: bottom;}
/*======================================

	common

=======================================*/
main {
	display: block;
	position: relative;
}
@media only screen and (min-width: 651px) {
	a {transition: opacity .4s;}
	a:hover {opacity: .75;}
	.followBtn a:hover,.section_buy a:hover {opacity: .6;}

	img.sp {
		display: none;
	}
}
@media only screen and (max-width: 650px) {
	img.pc {
		display: none;
	}
}
/*======================================

	header

=======================================*/
header {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
}
header a:hover {opacity: 1;}
.headerIn {
	position: relative;
	height: 80px;
	margin: 0 auto;
	background: rgba(255,255,255,0.9);
	backdrop-filter: blur(3px);
	transition: background 1s;
}
header nav {
	font-weight: 500;
}
nav ul > li > a {
	transition: all .2s;
}
nav ul > li > a:hover {
	color: #0068b7;
}
nav ul > li > a img {
	margin-right: 10px;
}
.main_in {
	position: relative;
	width: 100%;
	top:0;
	left: 0;
}
.followBtn {
    position: fixed;
    z-index: 9;
    right: 0px;
    top: 160px;
    border-radius: 10px 0 0 10px;
	background: #f03838;
    padding: 0 20px;
	height: 220px;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	-o-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	text-align: center;
	font-weight: 700;
	box-shadow: 0 4px 0 0 rgba(34,25,21,.15);
	transition: right .6s, opacity .4s;
	color: #fff;
}
_::-webkit-full-page-media, _:future, :root .followBtn {
    right: 40px;
}
.followBtn span{
	display: block;
	position: relative;
	padding-top: 40px;
}
.followBtn span:before{
	content: "";
	display: block;
	position: absolute;
	width: 32px;
	height: 32px;
	background: url(../img/follow_icon.png) no-repeat center top;
	background-size: 32px 32px;
	top:12px;
	left: 50%;
	transform: translate(-50%,0)
}
h1 {
	position: absolute;
	left: 30px;
    top: 50%;
    transform: translate(0,-50%);
    transition: all .2s;
}
h1 img {
	width: 284px;
	height: 43px;
}
#section_hero {
	padding-top: 80px;
	position: relative;
	background: url('../img/bg_fv_pc.jpg') no-repeat top center;
	background-size: 2795px auto;
}

@media screen and (min-width: 1230px) {
	nav {
		position: absolute;
		right: 30px;
	    top: 50%;
	    transform: translate(0,-50%);
	    transition: all .2s;
	}
	nav ul {
		display: flex;
		max-width: 870px;
		width: 100%;
		justify-content: space-between;
	}
	nav ul > li {
		margin-right: 40px;
	}
	nav ul > li:last-child {
		margin-right: 0;
	}
	.navbtnCont {
	  display: none;
	}
}
@media screen and (max-width: 1229px) {
	header nav {
		position: fixed;
		width: 100%;
		top: 80px;
		padding: 0;
		backdrop-filter: blur(3px);
	}
	header nav div {
		height: 0;
		width: 100%;
	    background: rgba(226,249,255,.98);
		transition: opacity .4s;
		opacity: 0;
		padding: 20px 0;
	}
	header nav.open div {
		height: 100%;
		opacity: 1;
	}
	header nav li {
		text-align: center;
	}
	header nav li a {
		display: block;
		padding: 20px 0;
		border-bottom: 2px dotted #94daf4;
		z-index: 999;
		font-weight: 400;
		width: 80%;
		margin: 0 auto;
	}
	header nav li:last-child a {
		border-bottom: none;
	}
	header nav ul {
		display: none;
	}
	header nav.open ul {
		display: block;
	}
  .nav-button,
  .nav-button span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }
    .navbtnCont {
    z-index: 20;  	
	position: absolute;
	right: 30px;
    top: 50%;
    transform: translate(0,-50%);
  }
  .nav-button {
    position: relative;
    width: 20px;
    height: 16px;
    margin-top: 5px;
  }
  .nav-button a:focus {
	outline: none;
  }
  .nav-button span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0068b7;
  }
  .nav-button span:nth-of-type(1) {
    top: 0;
  }
  .nav-button span:nth-of-type(2) {
    top: 7px;
  }
  .nav-button span:nth-of-type(3) {
    bottom: 0;
  }
  .nav-button.active span:nth-of-type(1) {
    -webkit-transform: translateY(7px) rotate(-45deg);
    transform: translateY(7px) rotate(-45deg);
  }
  .nav-button.active span:nth-of-type(2) {
    opacity: 0;
  }
  .nav-button.active span:nth-of-type(3) {
    -webkit-transform: translateY(-7px) rotate(45deg);
    transform: translateY(-7px) rotate(45deg);
  }
}
@media screen and (max-width: 1100px) {
	#section_hero {
		background-position-x: 65%;
	}
}
@media screen and (max-width: 840px) {
	#section_hero {
		background-position-x: 72%;
	}
}
@media screen and (max-width: 610px) {
	#section_hero {
		background-position-x: 100%;
	}
}
@media screen and (max-width: 690px) {
	#section_hero {
		background-position-x: 80%;
	}
}
@media screen and (min-width: 651px) {
	nav li br.sp {
		display: none;
	}
}
@media screen and (max-width: 650px) {
	.headerIn {
		height: 50px;
	}
	h1 {
		left: 16px;
	}
    .navbtnCont {
		right: 16px;
	}
	h1 img {
		width: 199px;
		height: 30px;
	}
	.followBtn {
		font-size: 14px;
		font-size: 1.4rem;
	    padding: 0 14px;
		height: 190px;
		top: 42vh;
		width: 49px;
		padding: 10px 14px;
		box-sizing: border-box;
		transition: top 1s;
	}
	_::-webkit-full-page-media, _:future, :root .followBtn {
	    right: 28px;
	}
	#section_hero {
		margin-top: 50px;
		padding-top: 0;
		background: url('../img/bg_fv_sp.png') no-repeat top center;
		background-size: 100% auto;
	}
	header nav {
		top: 50px;
	}
	.followBtn span{
		display: block;
		position: relative;
		padding-top: 32px;
	}
	.followBtn span:before{
		content: "";
		display: block;
		position: absolute;
		width: 28px;
		height: 28px;
		background: url(../img/follow_icon.png) no-repeat center top;
		background-size: 28px 28px;
		top:0px;
		left: 50%;
		transform: translate(-50%,0)
	}
}
#section_hero .sectionIn {
	padding: 0 20px;
	position: relative;
	z-index: 1;
	max-width: 940px;
	margin-right: auto;
	margin-left: auto;
}
#section_hero .sectionIn .bookImg img {
	width: 100%;
}	
#section_hero .bookDetail {
	color: #333;
}
#section_hero .bookDetail li {
	text-indent: -1.4em;
	padding-left: 1.4em;
	font-weight: 300;
	font-size: 14px;
	font-size: 1.4rem;
}
#section_hero .bookDetail i {
	font-style: normal;
	color: #343f5f;
}
#section_hero .txt {
	text-align: center;
}
#section_hero .txt a {
	width: 100%;
	border-radius: 40px;
	text-align: center;
	font-weight: 700;
	box-shadow: 0 8px 0 0 rgba(34,25,21,.15);
	background: #f03838;
	font-size: 24px;
	display: block;
	vertical-align: middle;
	padding: 16px 0;
	line-height: 1rem;
	color: #fff;
}
#section_hero .txt a .icon {
	background: #fff;
	position: relative;
	box-shadow: 0 4px 0 0 rgba(34,25,21,.1) inset;
	display: inline-block;
	border-radius: 100%;
	width: 48px;
	height: 48px;
	margin-right: 20px;
}
#section_hero .txt a .btntxt {
	vertical-align: text-top;
}
#section_hero .txt a img {
	width: 30px;
	height: 27px;
	display: block;
	position: absolute;
	top: 54%;
	left: 48%;
	transform: translate(-50%,-50%);
}
#section_hero .txt p img {
	width: 88%;
}
#section_hero .illust {
	width: 90%;
	display: inline-block;
	margin-left: 2%;
	margin-top: 2%;
}
#section_hero .illust img {
	width: 100%;
}
@media screen and (min-width: 651px) {
	#section_hero .sectionIn .flex {
		display: flex;
		justify-content: space-between;
		padding-top: 50px;
		margin-bottom: 60px;
	}
	#section_hero .bookImg {
		width: 40%;
	}	
	#section_hero .txt {
		width: 56%;
	}
	#section_hero .txt h2 .read {
		width: 100%;
		margin-bottom: 20px;
		margin-top: 15px;
	}
	#section_hero .txt h2 .ttl {
		width: 96%;
	}
	#section_hero .txt p {
		margin-top: 3vw;
	}
	#section_hero .pclist {
		margin-top: 20px;
	}
	#section_hero .splist {
		display: none;
	}
	#section_hero .txt a .btntxt {
	    vertical-align: top;
	    display: inline-block;
	    margin-top: 20px;
	}
	.followBtn.scroll {
		right: -64px;
	}
    .book_img_sp {
	    display: none;
    }
}
@media screen and (min-width: 1360px) {
	#section_hero .txt p {
		margin-top: 100px;
	}
}
@media screen and (max-width: 768px) {

}
@media screen and (max-width: 650px) {
	#section_hero .sectionIn {
		padding: 0 16px;
	}
	#section_hero .pclist {
		display: none;
	}
	#section_hero .sectionIn .flex {
		padding-top: 4px;
		margin-bottom: 45px;
	}
	#section_hero .bookImg {
		width: 60%;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 15px;
	}	
	#section_hero .txt h2 .read {
		width: 98%;
		margin-bottom: 3px;
	}
	#section_hero .txt h2 .ttl {
		width: 90%;
	}
	#section_hero .txt p {
		margin-top: 8vw;
	}
	#section_hero .txt p img {
		width: 86%;
	}
	#section_hero .splist {
	    width: 200px;
	    margin: 0 auto 45px;
	}
	#section_hero .bg-pattern {
	    max-height: none;
	    height: 138vw;
	}
	#section_hero .txt a {
		margin-top: 0;
		font-size: 22px;
	    padding: 15px 0;
        box-shadow: 0 6px 0 0 rgba(34,25,21,.15);
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
	}
	#section_hero .txt a .icon {
	    width: 40px;
	    height: 40px;
	}
	#section_hero .txt a img {
	    width: 25px;
	    height: 23px;
    }
    .book_img_pc {
	    display: none;
    }
    #section_hero .sectionIn .bookImg {
	    margin-top: 14px;
    }
}
.section_outline h3 {
	margin-left: 4vw;
	width: 380px;
	height: 220px;
	position: relative;
	z-index: 1;
}
.section_outline h3 .ttlin {
	margin-top: 40px;
	display: flex;
	justify-content: center;
	width: 110%;
	height: 220px;
	box-shadow: 6px 6px 20px 10px rgba(32,126,206,.2);
	background: #fff;
	align-items: center;
}
.section_outline h3 i {
	display: block;
	width: 48px;
	height: 48px;
	margin-right: 20px;
}
.section_outline h3 i img {
	width: 48px;
	height: 48px;
}
.section_outline h3 .txt strong {
	color: #1363aa;
	font-size: 40px;
	font-size: 4.0rem;
}
.section_outline h3 .txt,
.section_outline h3 .txt small {
	font-size: 30px;
	font-size: 3.0rem;
	line-height: 1.6em;
}
.section_outline p {
	background: #e2f9ff;
	width: calc(100vw - 360px);
	box-sizing: border-box;
	padding: 7vw 9vw;
	line-height: 4rem;
	font-size: 18px;
	font-size: 1.8rem;
}
.section_outline .bg img {
	height: 580px;
	width: auto;
}
@media screen and (min-width: 861px) {
	.section_outline .sectionIn {
		display: flex;
		position: relative;
		justify-content: space-between;
	}
	.section_outline .bg {
		position: absolute;
		bottom: 0;
		right: calc(99.9vw - 390px);
		z-index: 0;
	}
}
@media screen and (max-width: 860px) {
	.section_outline h3 {
		margin-left: auto;
		margin-right: auto;
		width: 600px;
		margin-bottom: -60px;
	}
	.section_outline h3 br.pc{
		display: none;
	}
	.section_outline h3 .ttlin {
		width: 100%;
	}
	.section_outline p {
		width: 100%;
		line-height: 3.6rem;
		font-size: 16px;
		font-size: 1.6rem;
		padding: 12vw 9vw 7vw;
	}
	.section_outline .bg {
		display: none;
	}
	.section_outline h3 .txt strong {
		font-size: 32px;
		font-size: 3.2rem;
	}
	.section_outline h3 .txt,
	.section_outline h3 .txt small {
		font-size: 24px;
		font-size: 2.4rem;
		line-height: 1.6em;
	}
}
@media screen and (max-width: 760px) {
	.section_outline h3 {
		width: calc(100% - 32px);
		margin-bottom: -42px;
		height: auto;
		text-align: center;
	}	
	.section_outline h3 .ttlin {
		padding: 32px 10px 39px;
		height: auto;
		flex-wrap: wrap;
		box-shadow: 6px 6px 10px 5px rgba(32,126,206,.2);
		max-width: 400px;
		margin-right: auto;
		margin-left: auto;
	}
	.section_outline h3 i {
		display: block;
		width: 100%;
		height: 35px;
		margin-right: 0;
		margin-bottom: 10px;
	}
	.section_outline h3 i img {
		width: 35px;
		height: 35px;
	}
	.section_outline h3 .txt strong {
		font-size: 30px;
		font-size: 3.0rem;
	}
	.section_outline h3 .txt,
	.section_outline h3 .txt small {
		font-size: 22px;
		font-size: 2.2rem;
		line-height: 1.8em;
	}
	.section_outline p {
		padding-top: 80px;
	}
}

.section_point {
	margin-top: 90px;
}
.section_point .sectionIn,
.section_buy .sectionIn {
	margin: 0 20px;
}
.section_point h3 {
	text-align: center;
	position: relative;
	z-index: 1;
}
.section_point h3 .ttlin {
	box-shadow: 6px 6px 20px 10px rgba(32,126,206,.2);
	width: 600px;
	height: 220px;
	margin: 0 auto 80px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.section_point h3 i {
	display: block;
	width: 44px;
	height: 44px;
	margin-right: 30px;
}
.section_point h3 i img {
	width: 44px;
	height: 44px;
}
.section_point h3 .txt strong {
	color: #1363aa;
	font-size: 40px;
	font-size: 4.0rem;
}
.section_point h3 .txt,
.section_point h3 .txt small {
	font-size: 30px;
	font-size: 3.0rem;
	line-height: 1.6em;
}
.section_point .pagelist {
	max-width: 1100px;
	padding: 0 40px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	box-sizing: content-box;
}
.section_point .pagelist li {
	width: 46%;
	display: block;
	position: relative;
}
.section_point .pagelist li .pageicon {
	width: 120px;
	height: 120px;
	display: block;
	position: absolute;
	top: -42px;
	z-index: 2;
}
.section_point .pagelist li .pageillust {
	position: absolute;
	top: -220px;
	display: block;
}
.section_point .pagelist li .pageimg{
	width: 100%;
}
.section_point .pagelist li a {
    width: 54%;
    border-radius: 40px;
    text-align: center;
    font-weight: 700;
    background: #f03838;
    font-size: 24px;
    display: block;
    vertical-align: middle;
    line-height: 60px;
    font-size: 18px;
    font-size: 1.8rem;
    padding: 0 10px;
    box-shadow: 0 6px 0 0 rgba(34,25,21,.15);
    margin-left: auto;
    margin-right: auto;
    color: #fff;
}
@media screen and (max-width: 1100px) {
	.section_point .pagelist li .pageillust.pc {
		display: none;
	}
}
@media screen and (max-width: 860px) {
	.section_point h3 .txt strong {
		font-size: 32px;
		font-size: 3.2rem;
	}
	.section_point h3 .txt,
	.section_point h3 .txt small {
		font-size: 24px;
		font-size: 2.4rem;
		line-height: 1.6em;
	}
}
@media screen and (min-width: 761px) {
	.section_point .pagelist li:first-child .pageicon {
		left: -42px;
	}
	.section_point .pagelist li:last-child .pageicon {
		right: -42px;
	}
	.section_point .pagelist li:first-child .pageillust {
		width: 142px;
		left: 0;
	}
	.section_point .pagelist li:last-child .pageillust {
		width: 177px;
		right: 0;
	}
	.section_point .pagelist li .pageillust.sp {
		display: none;
	}
}
@media screen and (max-width: 760px) {
	.section_point {
		margin-top: 35px;
	}
	.section_point h3 {
		width: 100%;
		height: auto;
		text-align: center;
	}	
	.section_point h3 .ttlin {
		padding: 32px 10px 39px;
		height: auto;
		width: 100%;
		flex-wrap: wrap;
		box-shadow: 6px 6px 10px 5px rgba(32,126,206,.2);
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}
	.section_point h3 i {
		display: block;
		width: 100%;
		height: 35px;
		margin-right: 0;
		margin-bottom: 10px;
	}
	.section_point h3 i img {
		width: 35px;
		height: 35px;
	}
	.section_point .pagelist {
		display: block;
		padding: 0;
		max-width: 500px;
	}
	.section_point .pagelist li {
		width: 100%;
		margin-top: 180px;
	}
	.section_point .pagelist li .pageimg{
		display: block;
		position: relative;
		z-index: 1;
	}
	.section_point .pagelist li .pageicon {
		top: -90px;
	}
	.section_point .pagelist li .pageillust {
		top: -125px;
	}
	.section_point .pagelist li:first-child {
		margin-top: 160px;
	}
	.section_point .pagelist li:last-child {
	}
	.section_point .pagelist li:first-child .pageicon {
		left: auto;
		right: -10px;
	}
	.section_point .pagelist li:last-child .pageicon {
		right: -10px;
	}
	.section_point .pagelist li:first-child .pageillust {
		width: 233px;
		left: 3%;
	}
	.section_point .pagelist li:last-child .pageillust {
		width: 261px;
		right: auto;
		left: 3%;
	}
	.section_point .pagelist li a {
	    width: 90%;
	    max-width: 380px;
	    margin-left: auto;
	    margin-right: auto;
	}
	.section_point h3 .txt strong {
		font-size: 30px;
		font-size: 3.0rem;
	}
	.section_point h3 .txt,
	.section_point h3 .txt small {
		font-size: 22px;
		font-size: 2.2rem;
		line-height: 1.8em;
	}
}
@media screen and (max-width: 650px) {
	.section_point .sectionIn,
	.section_buy .sectionIn {
		margin: 0 16px;
	}
	.section_point .pagelist {
		max-width: 400px;
	}
}

.contentlist {
	max-width: 940px;
	border: 4px solid #0068b7;
	padding: 4px;
	box-sizing: content-box;
	margin: 80px auto 0;
}
.contentlist_in {
	border: 2px solid #0068b7;
	padding: 3vw 4vw;
}
.contentlist_in h4 {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 40px;
}
.contentlist_in h4 .logo {
	padding-right: 30px;
	border-right: 1px solid #0068b7;
	margin-right: 30px;
}
.contentlist_in h4 .logo img {
	width: 140px;
}
.contentlist_in h4 .txt {
	color: #0068b7;
	font-size: 22px;
	font-size: 2.2rem;
	font-weight: 700;
}
.contentlist_in h4 .txt small {
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 400;
}
.contentlist_in ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.contentlist_in ul li {
	width: 33%;
	display: block;
	margin-bottom: 4px;
}
.contentlist_in ul li i {
	font-style: normal;
	color: #187fc4;
	font-size: 4px;
	font-size: 0.4rem;
	vertical-align: middle;
	padding-right: 4px;
}
.contentlist_in .etc {
	text-align: right;
}
@media screen and (max-width: 980px) {
	.contentlist_in ul li {
		width: 48%;
	}
}
@media screen and (max-width: 680px) {
	.contentlist {
		max-width: 480px;
	}
	.contentlist_in h4 {
		display: block;
	}
	.contentlist_in h4 .logo {
		border-right: none;
	}
	.contentlist_in h4 .logo:after {
		content: "";
		display: block;
		padding-bottom: 18px;
		margin-bottom: 8px;
		border-bottom: 1px solid #187fc4;
		width: 50px;
	}
	.contentlist_in h4 .logo img {
		width: 120px;
	}
	.contentlist_in h4 {
		margin-bottom: 20px;
	}
	.contentlist_in ul li {
		width: 100%;
	}
	.contentlist_in {
		padding: 6vw;
	}
}
.section_buy {
	padding-top: 80px;
}
.section_buy h3 {
	font-size: 28px;
	font-size: 2.8rem;
	margin-bottom: 40px;
	color: #0068b7;
	text-align: center;
}
.section_buy h3 img {
	width: 35px;
	height: 32px;
	padding-right: 16px;
	box-sizing: content-box;
	padding-bottom: 10px;
}
.section_buy ul li img {
	width: 100%;
}
footer {
	background: #0068b7;
}
footer .contact {
	background: #fff;
	border-radius: 24px;
	color: #0068b7;
	display: block;
	padding: 17px 25px;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1em;
	font-weight: 500;
}
footer .contact span {
	display: block;
	position: relative;
	padding-left: 10px;
}
footer .contact span:before {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 4px 0 4px 6px;
	border-color: transparent transparent transparent #0068b7;
	display: block;
	content: "";
	left: 0;
	top: 50%;
	transform: translate(0,-50%);
	position: absolute;
}
.modal_img_in {
	text-align: center;
}
.modal_img img {
	height: 90vh;
}
.iziModal {
	background: none;
	box-shadow: none;
}
.close {
    position: absolute;
    display: block;
    top: -10px;
    right: 25px;
    width: 54px;
    height: 54px;
    border: 0;
    margin: 0;
    padding: 0;
    cursor: pointer;
}
.close:before {
    content: "";
    position: absolute;
    display: inline-block;
    top: 4px;
    left: 26px;
    width: 1px;
    height: 46px;
    border: 0;
    margin: 0;
    padding: 0;
    background-color: white;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.close:after {
    content: "";
    position: absolute;
    display: inline-block;
    top: 4px;
    left: 26px;
    width: 1px;
    height: 46px;
    border: 0;
    margin: 0;
    padding: 0;
    background-color: white;
    -moz-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.pagetop {
	display: block;
	position: fixed;
	z-index: 8;
	bottom: 20px;
	right: 20px;
    transition: right .6s, opacity .4s;
}
.pagetop i {
	display: block;
	background: #0068b7;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	position: relative;	
}
.pagetop i:after {
    content: "";
    width: 0;
    height: 0;
    margin-top: 4px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%,-50%) rotate(315deg);
}
@media screen and (min-width: 761px) {
	.section_buy ul {
		display: flex;
		justify-content: space-between;
		margin-bottom: 70px;
		flex-wrap: wrap;
		max-width: 940px;
		margin-left: auto;
		margin-right: auto;
	}
	.section_buy .sectoinIn {
		margin: 0 20px;
	}
	.section_buy ul li {
		width: 32%;
		margin-bottom: 12px;	
	}
	.section_buy ul li .sp {
		display: none;
	}
}
@media screen and (min-width: 501px) and  (max-width: 760px)  {
	.section_buy ul {
		display: flex;
		justify-content: space-between;
		margin-bottom: 70px;
		flex-wrap: wrap;
		max-width: 600px;
		margin-left: auto;
		margin-right: auto;
	}
	.section_buy .sectoinIn {
		margin: 0 20px;
	}
	.section_buy ul li {
		width: 48%;
		margin-bottom: 12px;	
	}
}
@media screen and (min-width: 651px) {
	footer {
		padding: 25px;
		display: flex;
		justify-content: space-between;
	}
	.fukuzou .sp {
		display: none;
	}
	.pagetop.visible {
		right: -40px;
	}
}
@media screen and (max-width: 500px) {
	.section_buy h3 {
		font-size: 24px;
		font-size: 2.4rem;
		margin-bottom: 30px;
	}
	.section_buy .sectoinIn {
		margin: 0 16px;
	}
	.section_buy ul {
		margin-bottom: 60px;
	}
	.section_buy ul li {
		width: 90%;
		max-width: 360px;
		margin-bottom: 10px;
		margin-left: auto;
		margin-right: auto;
	}
	.section_buy h3 img {
		width: 31px;
		height: 29px;
		padding-right: 10px;
	}
}
@media screen and (max-width: 650px) {
	.section_buy ul li .pc {
		display: none;
	}
	footer {
		padding: 40px 10%;
		text-align: center;
	}
	footer .contact {
		margin-bottom: 30px;
		margin-left: auto;
		margin-right: auto;
		max-width: 320px;
	}
	footer .contact span{
		width: 115px;
		margin: 0 auto;
	}
	footer .contact span:before {
	}
	.modal_img_in {
		height: 60vh !important;		
		overflow-y: scroll;
		position: relative;
	}
	.modal_img img {
		height: auto;
		width: 90vw;
	}
	.close {
	    top: -60px;
		right: 10px;
    }
    footer {
	    overflow: hidden;
    }
	.pagetop {
		position: absolute;
		opacity: 1;
		bottom: -40px;
	}
}