/* ALL CONTENTS -------------------------------------------------------------------------*/

/* layout */
#contents {
	display: flex;
	justify-content: space-between;
}
#main {
	width: 77%;
	order: 1;
}
#sidebar {
	width: 20%;
}
/* mimg */
#sub_mimg {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 170px;
	margin-bottom: 3rem;
	background: #F5F7F8;
	border-radius: 5px;
}
#sub_mimg .mimg_txt {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}
#sub_mimg .mimg_txt:before,
#sub_mimg .mimg_txt:after {
	display: inline-block;
	width: 123px;
	height: 27px;
	content: "";
	vertical-align: middle;
}
#sub_mimg .mimg_txt:before {
	margin-right: 3%;
	background: url('https://lakulaku-life.jp/images/common/sub_mimg_bg_01.png') no-repeat center center;
}
#sub_mimg .mimg_txt:after {
	margin-left: 3%;
	background: url('https://lakulaku-life.jp/images/common/sub_mimg_bg_02.png') no-repeat center center;
}
#sub_mimg .mimg_txt h1 {
	font-size: 30px;
	font-weight: 700;
	line-height: 1.4;
	margin-right: 3%;
}
#sub_mimg .mimg_txt h1 span {
	display: block;
	font-size: 18px;
	font-weight: 500;
	color: #808080;
	letter-spacing: .1rem;
}
/* menu */
.sub_menu {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 3rem;
}
.sub_menu li {
	width: 32%;
	margin-right: 2%;
}
.sub_menu.type1 li {
	width: 23.5%;
	margin-right: 2%;
}
.sub_menu li:nth-child(3n) {
	margin-right: 0;
}
.sub_menu.type1 li:nth-child(3n) {
	margin-right: 2%;
}
.sub_menu.type1 li:nth-child(4n) {
	margin-right: 0;
}
.sub_menu li:nth-child(n+4) {
	margin-top: 1rem;
}
.sub_menu.type1 li:nth-child(4) {
	margin-top: 0;
}
.sub_menu.type1 li:nth-child(n+5) {
	margin-top: 1rem;
}
.sub_menu li a {
	display: block;
	font-size: 16px;
	color: #000;
	text-align: center;
	padding: 1rem 2rem 1rem .5rem;
	background: url('https://lakulaku-life.jp/images/common/arrow_02_bk.svg') no-repeat right 1rem center;
	border: 1px solid #fff;
	border-bottom: 1px solid #4D4D4D;
}
.sub_menu li a:hover {
	border-color: #4D4D4D;
}
/* pagenav */
#pagenav {
	text-align: center;
	margin: 4rem 0;
}
#pagenav a {
	display: inline-block;
	width: 45px;
	font-weight: 400;
	color: #000;
	vertical-align: middle;
	padding: .7rem;
	background: #F5F7F8;
	border: none;
	border-radius: 3px;
	position: relative;
}
#pagenav a:hover {
	color: #fff;
	background: #333;
}
#pagenav a.previouspostslink,
#pagenav a.first {
	text-align: right;
}
#pagenav a.nextpostslink,
#pagenav a.last {
	text-align: left;
}
#pagenav a.first,
#pagenav a.last {
	width: 90px;
}
#pagenav a.previouspostslink,
#pagenav a.nextpostslink {
	width: 75px;
}
#pagenav a.previouspostslink:before,
#pagenav a.first:before,
#pagenav a.nextpostslink:after,
#pagenav a.last:after {
	display: block;
	position: absolute;
	top: calc(50% - 5px);
	content: "";
	width: 6px;
	height: 11px;
	background: url('https://lakulaku-life.jp/images/common/arrow_02_bk.svg') no-repeat center center;
	background-size: 100% auto;
	transition: 0.5s;
}
#pagenav a.previouspostslink:hover:before,
#pagenav a.first:hover:before,
#pagenav a.nextpostslink:hover:after,
#pagenav a.last:hover:after {
	background-image: url('https://lakulaku-life.jp/images/common/arrow_02_wh.svg');
}
#pagenav a.previouspostslink:before,
#pagenav a.first:before {
	transform: scale(-1, 1);
}
#pagenav a.previouspostslink:before,
#pagenav a.first:before {
	left: .8rem;
}
#pagenav a.nextpostslink:after,
#pagenav a.last:after {
	right: .8rem;
}
#pagenav .current {
	display: inline-block;
	width: 45px;
	font-weight: 400;
	color: #fff;
	vertical-align: middle;
	padding: .7rem;
	background: #333;
	border: none;
	border-radius: 3px;
}
#pagenav .extend {
	border: none;
}

/* ***** タブレット **** */
@media only screen and (max-width: 1250px) {
}

/* ***** スマホ **** */
@media only screen and (max-width: 767px) {
	/* layout */
	#contents {
		flex-wrap: wrap;
	}
	#main {
		width: 100%;
		margin-bottom: 3rem;
		order: 0;
	}
	#sidebar {
		width: 100%;
		order: 1;
	}
	/* mimg */
	#sub_mimg {
		height: 100px;
		margin-bottom: 2rem;
	}
	#sub_mimg .mimg_txt:before,
	#sub_mimg .mimg_txt:after {
		display: none;
	}
	#sub_mimg .mimg_txt h1 {
		font-size: calc(100vw / 20);
	}
	#sub_mimg .mimg_txt h1 span {
		font-size: calc(100vw / 30);
	}
	#sub_mimg .mimg_txt .image img {
		max-width: 60px;
		max-height: 60px;
	}
	/* menu */
	.sub_menu li {
		width: 100%;
		margin-right: 0;
	}
	.sub_menu.type1 li {
		width: 48%;
		margin-right: 4%;
	}
	.sub_menu.type1 li:nth-child(3n) {
		margin-right: 4%;
	}
	.sub_menu.type1 li:nth-child(even) {
		margin-right: 0;
	}
	.sub_menu li:nth-child(n+2) {
		margin-top: .5rem;
	}
	.sub_menu.type1 li:nth-child(2) {
		margin-top: 0;
	}
	.sub_menu.type1 li:nth-child(n+3) {
		margin-top: .5rem;
	}
	.sub_menu li a {
		font-size: calc(100vw / 27);
		padding: .7rem 1.5rem .7rem .5rem;
		background-position: right .7rem center;
	}
	.sub_menu.type1 li a {
		font-size: calc(100vw / 30);
	}
	/* pagenav */
	#pagenav {
		margin: 3rem 0;
	}
	#pagenav a {
		width: 30px;
		font-size: 12px;
		padding: .5rem .3rem;
	}
	#pagenav a.previouspostslink,
	#pagenav a.first,
	#pagenav a.nextpostslink,
	#pagenav a.last {
		padding: .5rem;
	}
	#pagenav a.previouspostslink,
	#pagenav a.nextpostslink {
		width: 53px;
	}
	#pagenav a.first,
	#pagenav a.last {
		width: 68px;
	}
	#pagenav a.previouspostslink:before,
	#pagenav a.first:before,
	#pagenav a.nextpostslink:after,
	#pagenav a.last:after {
		top: calc(50% - 4px);
		width: 5px;
		height: 9px;
	}
	#pagenav a.previouspostslink:before,
	#pagenav a.first:before {
		left: .5rem;
	}
	#pagenav a.nextpostslink:after,
	#pagenav a.last:after {
		right: .5rem;
	}
	#pagenav .current {
		width: 30px;
		font-size: 12px;
		padding: .5rem .3rem;
	}
}

/* SIDEBAR -------------------------------------------------------------------------*/

.side_menu li:nth-child(n+2) {
	border-top: 1px solid #CCC;
}
.side_menu li a {
	display: block;
	height: 60px;
	font-size: 14px;
	line-height: 1.4;
	color: #000;
	padding: .5rem 1rem;
	background: #F5F7F8 url('https://lakulaku-life.jp/images/common/arrow_01_bk.svg') no-repeat right .7rem center;
	position: relative;
}
.side_menu li a:hover {
	color: #fff;
	background-color: #FFAA65;
	background-image: url('https://lakulaku-life.jp/images/common/arrow_01_wh.svg');
}
.side_menu li a span {
	position: absolute;
	left: 1rem;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

/* ***** タブレット **** */
@media only screen and (max-width: 1250px) {
}

/* ***** スマホ **** */
@media only screen and (max-width: 767px) {
}

/* FAQ -------------------------------------------------------------------------*/

.faq_list {
	margin-bottom: 2rem;
}
.faq_list li {
	margin-bottom: 1.5rem;
}
.faq_list li .q {
	font-size: 17px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: .5rem;
	padding-left: 40px;
	position: relative;
}
.faq_list li .q .jost,
.faq_list li .a .jost {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	font-weight: 500;
	text-align: center;
}
.faq_list li .q .jost {
	width: 30px;
	line-height: 1.7;
	color: #ccc;
	background: #333;
	border-radius: 100%;
}
.faq_list li .a {
	line-height: 1.5;
	margin-left: 40px;
	padding-left: 20px;
	position: relative;
}
.faq_list li .a .jost {
	top: .1rem;
	color: #4D4D4D;
}

/* ***** タブレット **** */
@media only screen and (max-width: 1250px) {
}

/* ***** スマホ **** */
@media only screen and (max-width: 767px) {
	.faq_list li .q {
		font-size: calc(100vw / 26);
		padding-left: 35px;
	}
	.faq_list li .q .jost {
		width: 25px;
		font-size: calc(100vw / 27);
	}
	.faq_list li .a {
		margin-left: 35px;
		padding-left: 17px;
	}
}

/* 5MERIT -------------------------------------------------------------------------*/

.merit_list_page li {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.merit_list_page li:nth-child(n+2) {
	margin-top: 3rem;
}
.merit_list_page li .number {
	display: flex;
	align-items: center;
	width: 100%;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 1.5rem;
}
.merit_list_page li .number span:nth-child(1) {
	margin-right: .7rem;
	padding-right: .8rem;
	border-right: 1px solid #B3B3B3;
}
.merit_list_page li .number span:nth-child(2) {
	font-size: 20px;
}
.merit_list_page li .image {
	width: 20%;
	position: relative;
}
.merit_list_page li .image:before {
	display: block;
	content: "";
	width: 100%;
	padding-top: 100%;
	border: 1px solid #B3B3B3;
	border-radius: 10px;
}
.merit_list_page li .image img {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.merit_list_page li .box {
	width: 76%;
}
.merit_list_page li .box h2 {
	font-size: 20px;
	font-weight: 400;
	line-height: 1.4;
	margin-bottom: 1rem;
}
.merit_list_page li .box .btn_01 {
	margin-top: .5rem;
}
.merit_list_page li .box .attn {
	margin-top: 1rem;
}

/* ***** タブレット **** */
@media only screen and (max-width: 1250px) {
}

/* ***** スマホ **** */
@media only screen and (max-width: 767px) {
	.merit_list_page li {
		justify-content: center;
	}
	.merit_list_page li:nth-child(n+2) {
		margin-top: 2rem;
	}
	.merit_list_page li .number {
		justify-content: center;
		font-size: calc(100vw / 27);
	}
	.merit_list_page li .number span:nth-child(2) {
		font-size: calc(100vw / 20);
	}
	.merit_list_page li .image {
		width: 40%;
		max-width: 170px;
		margin-bottom: 1.5rem;
	}
	.merit_list_page li .box {
		width: 100%;
	}
	.merit_list_page li .box h2 {
		font-size: calc(100vw / 22);
	}
}

/* FLOW -------------------------------------------------------------------------*/

.flow_list_page li {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 2rem;
	background: #F5F7F8;
	border-radius: 5px;
}
.flow_list_page li:nth-child(n+2) {
	margin-top: 2rem;
}
.flow_list_page li .number {
	display: flex;
	align-items: center;
	width: 100%;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 1.5rem;
}
.flow_list_page li .number span:nth-child(1) {
	margin-right: .7rem;
	padding-right: .8rem;
	border-right: 1px solid #B3B3B3;
}
.flow_list_page li .number span:nth-child(2) {
	font-size: 20px;
}
.flow_list_page li .image {
	width: 23%;
	position: relative;
}
.flow_list_page li .image:after {
	display: block;
	position: absolute;
	right: 0;
	top: 50%;
	content: "";
	width: 2px;
	height: 100px;
	background: #B3B3B3;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
.flow_list_page li .box {
	width: 73%;
}
.flow_list_page li .box h2 {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 1rem;
}

/* ***** タブレット **** */
@media only screen and (max-width: 1250px) {
}

/* ***** スマホ **** */
@media only screen and (max-width: 767px) {
	.flow_list_page li {
		justify-content: center;
	}
	.flow_list_page li:nth-child(n+2) {
		margin-top: 1.5rem;
	}
	.flow_list_page li .number {
		justify-content: center;
		font-size: calc(100vw / 27);
	}
	.flow_list_page li .number span:nth-child(2) {
		font-size: calc(100vw / 20);
	}
	.flow_list_page li .image {
		width: 100%;
		margin-bottom: 1.5rem;
	}
	.flow_list_page li .image:after {
		display: none;
	}
	.flow_list_page li .box {
		width: 100%;
	}
	.flow_list_page li .box h2 {
		font-size: calc(100vw / 22);
	}
}

/* GUIDE -------------------------------------------------------------------------*/

.guide_box {
	display: flex;
	justify-content: space-between;
	margin-bottom: 3rem;
}
.guide_box .image {
	width: 33%;
	text-align: left;
}
.guide_box .inner {
	width: 60%;
}
.guide_box .inner .price {
	font-size: 23px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 1.5rem;
	padding: 1rem;
	border: 1px solid #000;
}
.guide_list {
	margin-bottom: 3rem;
}
.guide_list dt {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: .5rem;
}
.guide_list dd {
	margin-bottom: 2rem;
}
.pay_list {
	display: flex;
	justify-content: space-between;
	margin-top: 2rem;
}
.pay_list .box {
	width: 48%;
	border: 1px solid #4D4D4D;
}
.pay_list .box .ttl {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	text-align: center;
	padding: .8rem 1rem;
	background: #4D4D4D;
}
.pay_list .box .inner {
	padding: 1.5rem;
}
.pay_list .box .inner p {
	font-size: 14px;
}
.pay_list .box .inner .image {
	margin-bottom: 1.5rem;
}
.pay_list .box .inner .bank {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	margin: 1rem 0;
	padding: .7rem;
	background: #F2F2F2;
}

/* ***** タブレット **** */
@media only screen and (max-width: 1250px) {
}

/* ***** スマホ **** */
@media only screen and (max-width: 767px) {
	.guide_box {
		flex-wrap: wrap;
		justify-content: center;
		margin-bottom: 2rem;
	}
	.guide_box .image {
		width: 60%;
		text-align: center;
		margin-bottom: 1rem;
	}
	.guide_box .inner {
		width: 100%;
		order: 1;
	}
	.guide_box .inner .price {
		font-size: calc(100vw / 22);
		margin-bottom: 1rem;
		padding: .7rem 1rem;
	}
	.guide_list {
		margin-bottom: 2rem;
	}
	.guide_list dt {
		font-size: calc(100vw / 24);
	}
	.guide_list dd {
		margin-bottom: 1.5rem;
	}
	.pay_list {
		flex-wrap: wrap;
	}
	.pay_list .box {
		width: 100%;
	}
	.pay_list .box:nth-child(n+2) {
		margin-top: 1rem;
	}
	.pay_list .box .ttl {
		font-size: calc(100vw / 24);
	}
	.pay_list .box .inner {
		padding: 1rem;
	}
	.pay_list .box .inner p {
		font-size: calc(100vw / 28);
	}
	.pay_list .box .inner .image {
		margin-bottom: 1rem;
	}
	.pay_list .box .inner .bank {
		font-size: calc(100vw / 25);
		margin: 1rem 0;
		padding: .7rem;
	}
}

/* LIST -------------------------------------------------------------------------*/

.list_tab {
	display: flex;
    margin-bottom: 1.5rem;
}
.list_tab li {
	position: relative;
}
.list_tab li:after {
	display: block;
	position: absolute;
	left: calc(50% - 4px);
	top: 100%;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 4px 0 4px;
	border-color: #000 transparent transparent transparent;
}
.list_tab li a {
	display: block;
	font-weight: 700;
	color: #000;
	padding: .3rem 1rem;
	border: 1px solid #000;
}
.list_tab li:nth-child(n+2) a {
	border-left: none;
}
.list_tab li.active a {
	color: #fff;
	background: #EA7C26;
}
.list_content {
	margin-bottom: 2rem;
	padding: 1rem 1.5rem;
	border: 1px solid #C3C3C3;
}
.list_txt {
	color: #ED4545;
	text-decoration: underline;
	margin: 0 5% 3rem;
}
.set_title {
	display: flex;
	align-items: center;
}
.set_title .image {
	text-align: left;
	margin-left: 3%;
	margin-bottom: 2rem;
}
.set_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 3rem;
	padding: 1rem 2rem;
	background: #F5F7F8;
	border-radius: 10px;
}
.set_box .title {
	width: 100%;
	margin-bottom: 1.5rem;
}
.set_box .title .number {
	font-size: 12px;
}
.set_box .title h3 {
	font-size: 25px;
	font-weight: 700;
	line-height: 1.4;
	margin: .3rem 0 .8rem;
}
.set_box .title .category {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.set_box .title .category li {
	font-size: 13px;
	color: #fff;
	margin-right: 1%;
	padding: .2rem 1rem;
	border-radius: 30px;
}
.set_box .title .category li.new {
	background: #EA7C26;
}
.set_box .title .category li.used {
	background: #998675;
}
.set_box .title .category li.soldout {
	background: #EA2626;
}
.set_box .slider {
	width: 42%;
}
.set_box .slider .set_thumb {
	margin-top: .5rem;
}
.set_box .slider .set_thumb li {
	margin-right: .3rem;
	cursor: pointer;
	transition: 0.5s;
}
.set_box .slider .set_thumb li:hover {
	opacity: 0.7;
}
.set_box .box {
	width: 56%;
}
.set_box .box .bd {
	padding-top: 1rem;
	border-top: 1px solid #ccc;
}
.set_box .box .choice_box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem;
	background: #fff;
	border-radius: 5px;
}
.set_box .box .choice_box .ttl {
	width: 35%;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.4;
}
.set_box .box .choice_box .ttl:after {
	display: block;
	width: 2rem;
	height: 1px;
	content: "";
	margin-top: 1rem;
	background: #EA7C26;
}
.set_box .box .choice_box .ttl span {
	display: block;
	font-size: 11px;
	font-weight: 500;
	color: #808080;
	letter-spacing: .1rem;
	margin-bottom: .2rem;
}
.set_box .box .choice_box .list {
	width: 65%;
	padding-left: 3%;
	border-left: 1px solid #ccc;
}
.set_box .box .choice_box .list li {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.set_box .box .choice_box .list li:nth-child(n+2) {
	margin-top: 1rem;
}
.set_box .box .choice_box .list li p {
	font-size: 13px;
	font-weight: 700;
}
.set_box .box .choice_box .list li .choice {
	position: relative;
}
.set_box .box .choice_box .list li .choice:after {
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	content: "";
	width: 35px;
	height: 100%;
	background: #4D4D4D url('https://lakulaku-life.jp/img/common/arrow_03.svg') no-repeat center center;
	pointer-events: none;
}
.set_box .box .choice_box .list li .choice select {
	width: 80px;
	font-size: 13px;
	padding: .5rem calc(35px + .7rem) .5rem .7rem;
	background: #F5F7F8;
	border: none;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	cursor: pointer;
}
.set_box .box .choice_box .list li .choice select::-ms-expand {
	display: none;
}
/* cart */
#cart {
	position: fixed;
	right: 0;
	bottom: 0;
	width: 300px;
	background: #fff;
	box-shadow: 0 0 4px #ccc;
	z-index: 999;
}
#cart .ttl {
	font-size: 17px;
	color: #fff;
	text-align: center;
	padding: .7rem 2rem .7rem .5rem;
	background: #4D4D4D;
	position: relative;
	cursor: pointer;
}
#cart .ttl:after {
	position: absolute;
	right: 1rem;
	top: calc(50% - 55%);
	content: "-";
	font-size: 30px;
	transition: 0.5s;
}
#cart .ttl.active:after {
	top: calc(50% - 38%);
	content: "+";
	font-size: 24px;
}
#cart .inner {
	padding: 1rem;
}
#cart .inner .total {
	font-size: 16px;
	font-weight: 700;
	text-align: center;
}
#cart .inner .total span {
	display: inline-block;
	min-width: 100px;
	font-size: 26px;
	line-height: 1;
}
#cart .inner .price {
	font-size: 14px;
	color: #4D4D4D;
	text-align: center;
}
#cart .inner .price span {
	display: inline-block;
	min-width: 100px;
	margin-left: 55px;
}
#cart .inner .btn {
	margin: .5rem 0;
}
#cart .inner .btn a {
	display: block;
	font-size: 14px;
	color: #fff;
	text-align: center;
	padding: .7rem .5rem;
	background: #FFAA65;
}
#cart .inner .btn a:hover {
	background: #E66700;
}
#cart .inner .btn a:before {
	display: inline-block;
	width: 17px;
	height: 19px;
	content: "";
	vertical-align: middle;
	margin-right: .5rem;
	background: url('https://lakulaku-life.jp/images/common/cart.svg') no-repeat center top;
	background-size: 100% auto;
}
#cart .inner .attn {
	font-size: 14px;
	color: #4D4D4D;
}

/* ***** タブレット **** */
@media only screen and (max-width: 1250px) {
}

/* ***** スマホ **** */
@media only screen and (max-width: 767px) {
	.list_txt {
		margin: 0 0 2rem;
	}
	.list_box {
		flex-wrap: wrap;
	}
	.list_box .inner {
		width: 100%;
	}
	.list_box .inner:nth-child(1) {
		padding-right: 0;
	}
	.list_box .inner:nth-child(2) {
		margin-top: 2rem;
		padding-left: 0;
		border-left: none;
	}
	.set_title .image {
		width: 25%;
		margin-bottom: 1.5rem;
	}
	.set_box {
		margin-bottom: 1.5rem;
		padding: 1rem;
		border-radius: 7px;
	}
	.set_box .title .number {
		font-size: calc(100vw / 40);
	}
	.set_box .title h3 {
		font-size: calc(100vw / 22);
	}
	.set_box .title .category li {
		font-size: calc(100vw / 38);
		margin-right: 2%;
		padding: .2rem .7rem;
	}
	.set_box .slider {
		width: 100%;
		margin-bottom: 1rem;
	}
	.set_box .box {
		width: 100%;
	}
	.set_box .box .choice_box {
		flex-wrap: wrap;
	}
	.set_box .box .choice_box .ttl {
		width: 100%;
		font-size: calc(100vw / 24);
		margin-bottom: 1rem;
	}
	.set_box .box .choice_box .ttl:after {
		width: 1.5rem;
		margin-top: .7rem;
	}
	.set_box .box .choice_box .ttl span {
		font-size: calc(100vw / 40);
	}
	.set_box .box .choice_box .list {
		width: 100%;
		padding-left: 0;
		border-left: none;
	}
	/* cart */
	#cart {
		right: 0;
		top: auto;
		bottom: 0;
		width: 100%;
		box-shadow: none;
	}
	#cart .ttl {
		font-size: calc(100vw / 24);
	}
	#cart .inner .total {
		font-size: calc(100vw / 27);
	}
	#cart .inner .total span {
		min-width: 40%;
		font-size: calc(100vw / 16);
	}
	#cart .inner .price {
		font-size: calc(100vw / 30);
	}
	#cart .inner .price span {
		min-width: 40%;
		margin-left: 14%;
	}
	#cart .inner .btn a {
		font-size: calc(100vw / 30);
	}
}

/* COMPARISON -------------------------------------------------------------------------*/

.comparison_box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #998675;
	margin-bottom: 3rem;
	border: 2px solid #998675;
}
.comparison_box h2 {
	width: 27%;
	font-size: 32px;
	font-weight: 400;
	line-height: 1.3;
	text-align: center;
	padding: .5rem 1rem;
}
.comparison_box h2 span {
	display: block;
	font-size: 16px;
	font-weight: 500;
	margin-top: .5rem;
}
.comparison_box .inner {
	width: 73%;
	border-left: 2px solid #998675;
}
.comparison_box .inner p:nth-child(1) {
	display: flex;
	justify-content: space-around;
	align-items: center;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.3;
	padding: 1rem;
	border-bottom: 2px solid #998675;
}
.comparison_box .inner p:nth-child(1) span:nth-child(1):before {
	display: inline-block;
	width: 21px;
	height: 35px;
	content: "";
	vertical-align: middle;
	margin-right: 1rem;
	background: url('https://lakulaku-life.jp/images/comparison/icon_01.svg') no-repeat center top;
}
.comparison_box .inner p:nth-child(1) span:nth-child(2) {
	font-size: 36px;
}
.comparison_box .inner p:nth-child(2) {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 25px;
	font-weight: 500;
	padding: 1.5rem 1rem;
}
.comparison_box .inner p:nth-child(2) span:nth-child(1):after,
.comparison_box .inner p:nth-child(2) span:nth-child(3):before {
	display: inline-block;
	width: 63px;
	height: 14px;
	content: "";
	vertical-align: middle;
	margin: 0 1rem;
	background: url('https://lakulaku-life.jp/images/comparison/arrow_01.svg') no-repeat center center;
}
.comparison_box .inner p:nth-child(2) span:nth-child(3):before {
	transform: scale(-1, 1);
}
.example_box {
	margin-bottom: 3rem;
	padding: 1.5rem 2rem;
	background: #F5F7F8;
	border-radius: 10px;
}
.example_box .number {
	display: flex;
	align-items: center;
	width: 100%;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 1rem;
}
.example_box .number span:nth-child(1) {
	margin-right: .7rem;
	padding-right: .8rem;
	border-right: 1px solid #B3B3B3;
}
.example_box .number span:nth-child(2) {
	font-size: 20px;
}
.example_box .image_list {
	display: flex;
	justify-content: space-around;
	margin-bottom: 2.5rem;
}
.example_box .image_list li {
	width: 23%;
	text-align: center;
}
.example_box .image_list li img {
	border-radius: 5px;
}
.example_box .image_list li span {
	display: block;
	margin-top: .5rem;
}
.example_box .vs_list {
	display: flex;
	justify-content: space-between;
	margin-bottom: 2rem;
}
.example_box .vs_list .box {
	width: 48%;
	background: #fff;
}
.example_box .vs_list .box .ttl {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	text-align: center;
	padding: .8rem 1rem;
}
.example_box .vs_list .box.gry .ttl {
	background: #999999;
}
.example_box .vs_list .box.gld .ttl {
	background: #998675;
}
.example_box .vs_list .box .inner {
	padding: 1.5rem;
}
.example_box .vs_list .box .inner .price {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 1.5rem;
	padding-bottom: .7rem;
	border-bottom: 1px solid #ccc;
}
.example_box .vs_list .box.gry .inner .price {
	color: #4D4D4D;
}
.example_box .vs_list .box.gld .inner .price {
	color: #998675;
}
.example_box .vs_list .box .inner .price .middle {
	font-size: 22px;
	margin-right: .5rem;
}
.example_box .vs_list .box .inner .price .large {
	font-size: 37px;
	font-weight: 500;
	line-height: 1;
	margin-right: .5rem;
}
.example_box .vs_list .box .inner ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	position: relative;
}
.example_box .vs_list .box.gld .inner ul:after {
	display: block;
	position: absolute;
	left: calc(50% - 34px);
	top: calc(50% - 34px);
	content: "";
	width: 68px;
	height: 68px;
	background: url('https://lakulaku-life.jp/images/comparison/un.png') no-repeat center center;
}
.example_box .vs_list .box .inner ul li {
	width: 49%;
	font-size: 14px;
}
.example_box .vs_list .box.gld .inner ul li {
	color: #ccc;
}
.example_box .vs_list .box .inner ul li:before {
	content: "･";
	margin-right: .2rem;
}
.example_box .vs_list .box .inner .txt {
	font-size: 19px;
	font-weight: 700;
	line-height: 1.4;
	margin-top: 1.5rem;
}
.example_box .vs_list .box.gld .inner .txt {
	color: #998675;
}
.example_box .period_list {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 0;
	background: #fff;
}
.example_box .period_list p {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50%;
	font-size: 17px;
	font-weight: 700;
	padding: 0 1rem;
}
.example_box .period_list p:nth-child(2) {
	border-left: 1px solid #ccc;
}
.example_box .period_list p .gld {
	display: flex;
	align-items: center;
	color: #998675;
}
.example_box .period_list p .large {
	font-size: 35px;
	font-weight: 500;
	line-height: 1;
	margin: 0 .5rem;
}

/* ***** タブレット **** */
@media only screen and (max-width: 1250px) {
}

/* ***** スマホ **** */
@media only screen and (max-width: 767px) {
	.comparison_box {
		flex-wrap: wrap;
		margin-bottom: 2rem;
	}
	.comparison_box h2 {
		width: 100%;
		font-size: calc(100vw / 14);
	}
	.comparison_box h2 br {
		display: none;
	}
	.comparison_box h2 span {
		font-size: calc(100vw / 27);
	}
	.comparison_box .inner {
		width: 100%;
		padding: 1.5rem 1rem;
		border-top: 2px solid #998675;
		border-left: none;
	}
	.comparison_box .inner p:nth-child(1) {
		font-size: calc(100vw / 22);
		margin-bottom: 1rem;
		padding: 0;
		border-bottom: none;
	}
	.comparison_box .inner p:nth-child(1) span:nth-child(1):before {
		width: 16px;
		height: 25px;
		margin-right: .5rem;
		background-size: 100% auto;
	}
	.comparison_box .inner p:nth-child(1) span:nth-child(2) {
		font-size: calc(100vw / 16);
	}
	.comparison_box .inner p:nth-child(2) {
		font-size: calc(100vw / 22);
		padding: 0;
	}
	.comparison_box .inner p:nth-child(2) span:nth-child(2) {
		width: 32%;
	}
	.comparison_box .inner p:nth-child(2) span:nth-child(1):after,
	.comparison_box .inner p:nth-child(2) span:nth-child(3):before {
		width: 32px;
		margin: 0 .5rem;
		background-size: 100% auto;
	}
	.example_box {
		margin-bottom: 2rem;
		padding: 1rem;
		border-radius: 7px;
	}
	.example_box .number {
		font-size: calc(100vw / 27);
	}
	.example_box .number span:nth-child(2) {
		font-size: calc(100vw / 20);
	}
	.example_box .image_list {
		flex-wrap: wrap;
		margin-bottom: 2rem;
	}
	.example_box .image_list li {
		width: 46%;
	}
	.example_box .image_list li:nth-child(n+3) {
		margin-top: 1rem;
	}
	.example_box .image_list li span {
		font-size: calc(100vw / 34);
	}
	.example_box .vs_list {
		flex-wrap: wrap;
		margin-bottom: 1.5rem;
	}
	.example_box .vs_list .box {
		width: 100%;
	}
	.example_box .vs_list .box:nth-child(n+2) {
		margin-top: 1rem;
	}
	.example_box .vs_list .box .ttl {
		font-size: calc(100vw / 24);
		padding: .8rem .5rem;
	}
	.example_box .vs_list .box .inner {
		padding: 1rem;
	}
	.example_box .vs_list .box .inner .price {
		font-size: calc(100vw / 27);
		margin-bottom: 1rem;
	}
	.example_box .vs_list .box .inner .price .middle {
		font-size: calc(100vw / 22);
	}
	.example_box .vs_list .box .inner .price .large {
		font-size: calc(100vw / 12);
	}
	.example_box .vs_list .box.gld .inner ul:after {
		left: calc(50% - 22px);
		top: calc(50% - 22px);
		width: 44px;
		height: 44px;
		background-size: 100% auto;
	}
	.example_box .vs_list .box .inner ul li {
		font-size: calc(100vw / 38);
	}
	.example_box .vs_list .box .inner .txt {
		font-size: calc(100vw / 24);
		margin-top: 1rem;
	}
	.example_box .period_list {
		flex-wrap: wrap;
		justify-content: center;
		padding: 1rem;
	}
	.example_box .period_list p {
		flex-wrap: wrap;
		width: 100%;
		font-size: calc(100vw / 27);
		padding: 0;
	}
	.example_box .period_list p:nth-child(2) {
		margin-top: .7rem;
		padding-top: .7rem;
		border-top: 1px solid #ccc;
		border-left: none;
	}
	.example_box .period_list p .large {
		font-size: calc(100vw / 12);
		margin: 0 .3rem;
	}
}

/* CATEGORY -------------------------------------------------------------------------*/

.category_list {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 3rem;
}
.category_list li {
	width: 48%;
	margin-right: 4%;
}
.category_list li:nth-child(even) {
	margin-right: 0;
}
.category_list li:nth-child(n+3) {
	margin-top: 1.5rem;
}
.category_list li a {
	display: flex;
	align-items: center;
	height: 80px;
	color: #000;
	padding: .5rem 1rem;
	background: #F1F1F1;
	position: relative;
}
.category_list li:last-child a {
	padding: .2rem 1rem;
}
.category_list li a:after {
	position: absolute;
	right: 1rem;
	top: 50%;
	content: "→";
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
.category_list li img {
	width: auto;
	height: 80%;
}
.category_list li:last-child img {
	margin: 0 auto;
}
.category_list li span {
	margin-left: 1rem;
}

/* ***** タブレット **** */
@media only screen and (max-width: 1250px) {
}

/* ***** スマホ **** */
@media only screen and (max-width: 767px) {
	.category_list li:nth-child(n+3) {
		margin-top: .5rem;
	}
	.category_list li a {
		height: 70px;
		font-size: calc(100vw / 30);
		line-height: 1.4;
		padding: .5rem 1.3rem .5rem .5rem;
	}
	.category_list li:last-child a {
		padding: .6rem .5rem;
	}
	.category_list li a:after {
		right: .5rem;
	}
	.category_list li img {
		height: 70%;
	}
	.category_list li:last-child img {
		margin: 0;
	}
	.category_list li span {
		margin-left: .5rem;
	}
}

/* VOICE -------------------------------------------------------------------------*/

.voice_title {
	font-weight: 700;
	color: #998675;
	text-align: center;
	margin-bottom: 3rem;
	border: 2px solid #998675;
	position: relative;
}
.voice_title p {
	font-size: 28px;
	padding: .5rem 10rem .5rem .5rem;
	border-bottom: 2px solid #998675;
}
.voice_title h2 {
	font-size: 23px;
	padding: 2rem 10rem 2rem .5rem;
}
.voice_title .image {
	position: absolute;
	right: 5rem;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
/* archive */
.voice_list {
	display: flex;
	flex-wrap: wrap;
}
.voice_list li {
	width: 31%;
	margin-right: 3.5%;
}
.voice_list li:nth-child(3n) {
	margin-right: 0;
}
.voice_list li:nth-child(n+4) {
	margin-top: 2.5rem;
}
.voice_list li a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	color: #000;
}
.voice_list li .tag {
	font-size: 12px;
	color: #fff;
	margin-left: 1rem;
	padding: .2rem 1rem;
	background: #998675;
	border-radius: 30px;
}
.voice_list li .image {
	display: block;
	width: 100%;
	margin-bottom: 1rem;
	overflow: hidden;
	position: relative;
}
.voice_list li .image:before {
	display: block;
	content: "";
	width: 100%;
	padding-top: 65%;
}
.voice_list li .image img {
	position: absolute;
	left: 0;
	top: 0;
}
.voice_list li .ttl {
	width: 100%;
	font-size: 16px;
	margin: .3rem 0 .7rem;
}
.voice_list li .txt {
	width: 100%;
}
.voice_list li .txt p {
	font-size: 14px;
}
/* post */
.voice_post {
	margin-bottom: 2rem;
	padding: 1.5rem;
	background: #F5F7F8;
	border-radius: 7px;
}
.voice_ttl_01 {
	font-size: 18px;
	margin-bottom: .5rem;
}
.voice_ttl_02 {
	font-size: 18px;
	margin-bottom: .7rem;
}
.voice_ttl_02:after {
	display: block;
	width: 2rem;
	height: 1px;
	content: "";
	margin-top: .7rem;
	background: #EA7C26;
}
.voice_post .date {
	display: inline-block;
	vertical-align: middle;
}
.voice_post .tag {
	display: inline-block;
	font-size: 12px;
	color: #fff;
	vertical-align: middle;
	margin-left: 1rem;
	padding: .2rem 1rem;
	background: #998675;
	border-radius: 30px;
}
.voice_post h2 {
	font-size: 26px;
	font-weight: 700;
	line-height: 1.4;
	margin: 1rem 0 1.5rem;
	padding: 1rem;
	background: #fff;
	border-radius: 5px;
}
.voice_post .voice_box {
	display: flex;
	justify-content: space-between;
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #ccc;
}
.voice_post .voice_box .inner {
	width: 50%;
}
.voice_post .voice_box .image {
	width: 47%;
}
.voice_post .voice_box .image img {
	border-radius: 5px;
}
.voice_rental {
	margin-bottom: 2rem;
	padding: 1.5rem;
	background: #F5F7F8;
	border-radius: 7px;
}
.voice_rental .box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 1.5rem;
	padding: 1rem 1.5rem;
	background: #fff;
	border-radius: 7px;
}
.voice_rental .box .title {
	width: 23%;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.4;
	padding: 1rem 0;
	border-right: 1px solid #ccc;
}
.voice_rental .box .title:after {
	display: block;
	width: 2rem;
	height: 1px;
	content: "";
	margin-top: .5rem;
	background: #4D4D4D;
}
.voice_rental .box .title span {
	display: block;
	font-size: 13px;
	font-weight: 500;
	color: #808080;
}
.voice_rental .box .price {
	width: 42%;
	font-size: 16px;
	text-align: center;
}
.voice_rental .box .price span {
	display: inline-block;
	font-size: 37px;
	font-weight: 500;
	color: #4D4D4D;
	vertical-align: middle;
	margin-right: .5rem;
}
.voice_rental .box .txt {
	width: 35%;
}
.voice_image {
	display: flex;
	flex-wrap: wrap;
}
.voice_image li {
	width: 32%;
	margin-right: 2%;
    margin-bottom: 2%;
}
.voice_image li:nth-child(3n) {
	margin-right: 0;
}
.voice_image li img {
	border-radius: 5px;
}

/* ***** タブレット **** */
@media only screen and (max-width: 1250px) {
}

/* ***** スマホ **** */
@media only screen and (max-width: 767px) {
	.voice_title {
		margin-bottom: 2rem;
	}
	.voice_title p {
		font-size: calc(100vw / 25);
		padding: .5rem 20% .5rem .5rem;
		border-bottom: 2px solid #998675;
	}
	.voice_title h2 {
		font-size: calc(100vw / 27);
		padding: .5rem 20% .5rem .5rem;
	}
	.voice_title .image {
		right: 2%;
		width: 18%;
	}
	/* archive */
	.voice_list li {
		width: 100%;
		margin-right: 0;
	}
	.voice_list li:nth-child(n+2) {
		margin-top: 2.5rem;
	}
	.voice_list li .tag {
		font-size: calc(100vw / 30);
	}
	.voice_list li .ttl {
		font-size: calc(100vw / 24);
	}
	.voice_list li .txt p {
		font-size: calc(100vw / 27);
	}
	/* post */
	.voice_post {
		margin-bottom: 1.5rem;
		padding: 1rem;
	}
	.voice_ttl_01 {
		font-size: calc(100vw / 24);
	}
	.voice_ttl_02 {
		font-size: calc(100vw / 24);
	}
	.voice_ttl_02:after {
		width: 1.5rem;
	}
	.voice_post .tag {
		font-size: calc(100vw / 30);
	}
	.voice_post h2 {
		font-size: calc(100vw / 24);
		margin: .7rem 0 1rem;
		padding: .7rem;
	}
	.voice_post .voice_box {
		flex-wrap: wrap;
		justify-content: center;
		margin-bottom: 1rem;
		padding-bottom: 1rem;
	}
	.voice_post .voice_box .inner {
		width: 100%;
		margin-bottom: 1rem;
	}
	.voice_post .voice_box .image {
		width: 100%;
	}
	.voice_rental {
		margin-bottom: 1.5rem;
		padding: 1rem;
	}
	.voice_rental .box {
		flex-wrap: wrap;
		margin-top: 1rem;
		padding: 1rem;
	}
	.voice_rental .box .title {
		width: 100%;
		font-size: calc(100vw / 20);
		margin-bottom: .5rem;
		padding: 0;
		border-right: none;
	}
	.voice_rental .box .title:after {
		width: 2rem;
	}
	.voice_rental .box .title br {
		display: none;
	}
	.voice_rental .box .title span {
		font-size: calc(100vw / 40);
	}
	.voice_rental .box .price {
		width: 100%;
		font-size: calc(100vw / 27);
		text-align: left;
	}
	.voice_rental .box .price span {
		font-size: calc(100vw / 12);
	}
	.voice_rental .box .txt {
		width: 100%;
	}
}

/* BLOG -------------------------------------------------------------------------*/

.blog_menu {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 3rem;
}
.blog_menu li {
	width: 23.5%;
	margin-right: 2%;
}
.blog_menu li:nth-child(4n) {
	margin-right: 0;
}
.blog_menu li:nth-child(n+5) {
	margin-top: 1rem;
}
.blog_menu li a {
	display: block;
	font-size: 16px;
	color: #000;
	text-align: center;
	padding: 1rem;
	background: #F5F7F8;
	border-radius: 5px;
}
.blog_menu li a:hover {
	color: #fff;
	background: #333;
}
/* archive */
.blog_list li:nth-child(n+2) {
	margin-top: 2rem;
}
.blog_list li a {
	display: flex;
	justify-content: space-between;
	color: #000;
	padding: 1.5rem;
	background: #F5F7F8;
	border-radius: 7px;
}
.blog_list li .image {
	width: 26%;
}
.blog_list li .image img {
	border-radius: 5px;
}
.blog_list li .inner {
	width: 70%;
}
.blog_list li .date {
	display: inline-block;
	vertical-align: middle;
}
.blog_list li .tag {
	display: inline-block;
	font-size: 12px;
	color: #fff;
	vertical-align: middle;
	margin-left: 1rem;
	padding: .2rem 1rem;
	background: #998675;
	border-radius: 30px;
}
.blog_list li .inner .ttl {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	margin: .7rem 0;
}
.blog_list li .inner .txt p {
	font-size: 14px;
}
.blog_list li .inner .btn {
	display: inline-block;
	float: right;
	margin-top: 1rem;
	padding-bottom: .3rem;
	position: relative;
}
.blog_list li .inner .btn:after {
	content: "→";
	margin-left: 1rem;
}
.blog_list li a .inner .btn:before {
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	content: "";
	width: 0;
	border-bottom: 2px solid #FFAA65;
	transition: all 0.3s ease;
}
.blog_list li a:hover .inner .btn:before {
	width: 100%;
	border-color: #FFAA65;
}
/* post */
.blog_post {
	margin-bottom: 3rem;
	padding: 1.5rem;
	background: #F5F7F8;
	border-radius: 7px;
}
.blog_post p a {
	color: #998675;
}
.blog_post .date {
	display: inline-block;
	vertical-align: middle;
}
.blog_post .tag {
	display: inline-block;
	font-size: 12px;
	color: #fff;
	vertical-align: middle;
	margin-left: 1rem;
	padding: .2rem 1rem;
	background: #998675;
	border-radius: 30px;
}
.blog_post h2 {
	font-size: 26px;
	font-weight: 700;
	line-height: 1.4;
	margin: 1rem 0 1.5rem;
	padding: 1rem;
	background: #fff;
	border-radius: 5px;
}
.blog_post .blog_box {
	display: flex;
	justify-content: space-between;
	margin-bottom: 1.5rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #ccc;
}
.blog_post .blog_box p {
	width: 50%;
}
.blog_post .blog_box .image {
	width: 47%;
}
.blog_post .blog_image {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 1.5rem;
}
.blog_post .blog_image li {
	width: 48.7%;
	margin-right: 2.6%;
}
.blog_post .blog_image li:nth-child(2),
.blog_post .blog_image li:nth-child(5),
.blog_post .blog_image li:nth-child(8) {
	margin-right: 0;
}
.blog_post .blog_image li:nth-child(n+3) {
	margin-top: 1.5rem;
}
.blog_post .blog_image li:nth-child(n+3) {
	width: 31.6%;
}
.blog_post .blog_image li img {
	width: 100%;
}

/* ***** タブレット **** */
@media only screen and (max-width: 1250px) {
}

/* ***** スマホ **** */
@media only screen and (max-width: 767px) {
	.blog_menu li {
		width: 49%;
	}
	.blog_menu li:nth-child(even) {
		margin-right: 0;
	}
	.blog_menu li:nth-child(n+3) {
		margin-top: .5rem;
	}
	.blog_menu li a {
		font-size: calc(100vw / 32);
		padding: .7rem;
	}
	.blog_list li a {
		flex-wrap: wrap;
		justify-content: center;
	}
	.blog_list li .image {
		width: 100%;
		margin-bottom: 1rem;
	}
	.blog_list li .image img {
		max-width: 200px;
	}
	.blog_list li .inner {
		width: 100%;
	}
	.blog_list li .tag {
		font-size: calc(100vw / 30);
	}
	.blog_list li .inner .ttl {
		font-size: calc(100vw / 24);
		margin: .5rem 0;
	}
	.blog_list li .inner .txt p {
		font-size: calc(100vw / 27);
	}
	.blog_list li .inner .btn {
		margin-top: .5rem;
	}
	/* post */
	.blog_post {
		margin-bottom: 2rem;
		padding: 1rem;
	}
	.blog_post .tag {
		font-size: calc(100vw / 30);
	}
	.blog_post h2 {
		font-size: calc(100vw / 24);
		margin: .7rem 0 1rem;
		padding: .7rem;
	}
	.blog_post .blog_box {
		flex-wrap: wrap;
		justify-content: center;
		margin-bottom: 1rem;
		padding-bottom: 1rem;
	}
	.blog_post .blog_box p {
		width: 100%;
		margin-bottom: 1rem;
	}
	.blog_post .blog_box .image {
		width: 100%;
	}
	.blog_post .blog_image {
		margin-top: 1rem;
	}
	.blog_post .blog_image li:nth-child(n+3) {
		margin-top: .5rem;
	}
}


/* PROMISE -------------------------------------------------------------------------*/

/* ***** タブレット **** */
@media only screen and (max-width: 1250px) {
}

/* ***** スマホ **** */
@media only screen and (max-width: 767px) {
}


