/* RESET -------------------------------------------------------------------------*/

* {
	margin: 0;
	padding: 0;
	outline: none;
	box-sizing: border-box;
}
img {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 0;
	line-height: 0;
	vertical-align: top;
}
ul { list-style-type: none; }
table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}
input,textarea,select,button {
	font-family: 'Noto Sans JP', sans-serif;
	vertical-align: top;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
}



/* BASE -------------------------------------------------------------------------*/

html {
	overflow-y: scroll;
}
body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.7;
	color: #000;
	margin: 0;
	padding: 0;
	-webkit-text-size-adjust: 100%;
	overflow: hidden;
}
p {
	font-size: 15px;
}
img {
	max-width: 100%;
	height: auto;
}

/* ***** タブレット **** */
@media only screen and (max-width: 1250px) {
	body {
		font-size: calc(100vw / 66);
	}
	p {
		font-size: calc(100vw / 66);
	}
}

/* ***** スマホ **** */
@media only screen and (max-width: 767px) {
	body {
		font-size: calc(100vw / 27);
		padding-top: 50px;
	}
	p {
		font-size: calc(100vw / 27);
	}
}

/* LINK -------------------------------------------------------------------------*/

a:link {
	color: #FFAA65;
	text-decoration: none;
	transition: 0.5s;
}
a img {
	transition: 0.5s;
}
a:hover img {
	opacity: 0.7;
}
a:visited {
	color: #FFAA65;
}
a:focus {
	outline: none;
}
a[href^="tel:"] {
	pointer-events: none;
}

/* HEADER -------------------------------------------------------------------------*/

#header .desc {
	color: #666;
	padding: .5rem 5%;
	border-bottom: 1px solid #ccc;
}
#info_menu {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 5%;
}
#info_menu .logo {
	max-width: 220px;
}
#info_menu .bnr {
	display: flex;
}
#info_menu .bnr li {
	max-width: 210px;
}
#info_menu .bnr li:nth-child(n+2) {
	margin-left: .5rem;
}
#info_menu .link {
	display: flex;
	align-items: center;
}
#info_menu .link p:nth-child(n+2) {
	margin-left: .5rem;
}
#info_menu .link .tel {
	margin-right: 1rem;
}
#info_menu .link .tel a {
	display: block;
	font-size: 13px;
	color: #000;
}
#info_menu .link .tel a span {
	display: block;
	font-size: 26px;
	font-weight: 500;
	line-height: 1;
	color: #CB6717;
	letter-spacing: .05rem;
}
#info_menu .link .tel a span:before {
	display: inline-block;
	width: 20px;
	height: 20px;
	content: "";
	vertical-align: middle;
	margin-right: .3rem;
	background: url('https://lakulaku-life.jp/images/common/tel.svg') no-repeat center top;
}
#info_menu .link .mail a,
#info_menu .link .login a, .login a {
	display: block;
	width: 145px;
	font-size: 13px;
	color: #fff;
	text-align: center;
	padding: .7rem .5rem;
}
#info_menu .link .mail a {
	background: #FFAA65;
}
#info_menu .link .mail a:hover {
	background: #E66700;
}
#info_menu .link .mail a:before {
	display: inline-block;
	width: 16px;
	height: 14px;
	content: "";
	vertical-align: middle;
	margin-right: .3rem;
	background: url('https://lakulaku-life.jp/images/common/mail.svg') no-repeat center top;
	background-size: 100% auto;
}
#info_menu .link .login a {
	background: #4D4D4D;
}
#info_menu .link .logout a {
	background: #4D4D4D;
}

#info_menu .link .login a:hover {
	background: #7D7D7D;
}
#info_menu .link .logout a:hover {
	background: #7D7D7D;
}

/* toggle */
#nav-toggle {
	display: none;
}
/* menu */
#global_menu {
	background: #F0F0F0;
}
#global_menu ul {
	display: flex;
	justify-content: center;
}
#global_menu ul li a {
	display: block;
	font-size: 17px;
	color: #000;
	padding: 1rem;
}
#global_menu ul li a:hover {
	color: #FFAA65;
}

/* ***** タブレット **** */
@media only screen and (max-width: 1250px) {
}

/* ***** スマホ **** */
@media only screen and (max-width: 767px) {
	#header {
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		background: #fff;
		z-index: 99999;
	}
	#header .desc,
	#info_menu .bnr {
		display: none;
	}
	#info_menu {
		padding: 0 0 0 3%;
	}
	#info_menu .logo img {
		width: auto;
		height: 35px;
	}
	/* toggle */
	#nav-toggle {
		display: block;
		width: 50px;
		height: 50px;
		position: relative;
	}
	#nav-toggle span {
		display: block;
		position: absolute;
		left: 25%;
		height: 2px;
		width: 50%;
		background: #FFAA65;
		border-radius: 5px;
		-webkit-transition: .5s ease-in-out;
		-moz-transition: .5s ease-in-out;
		transition: .5s ease-in-out;
	}
	#nav-toggle span:nth-child(1) {
		top: 14px;
	}
	#nav-toggle span:nth-child(2) {
		top: 24px;
	}
	#nav-toggle span:nth-child(3) {
		top: 34px;
	}
	.open-menu #nav-toggle span:nth-child(1) {
		top: 24px;
		-webkit-transform: rotate(315deg);
		-moz-transform: rotate(315deg);
		transform: rotate(315deg);
	}
	.open-menu #nav-toggle span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.open-menu #nav-toggle span:nth-child(3) {
		top: 24px;
		-webkit-transform: rotate(-315deg);
		-moz-transform: rotate(-315deg);
		transform: rotate(-315deg);
	}
	/* menu */
	#global_menu {
		position: fixed;
		left: 0;
		top: 50px;
		width: 100%;
		height: calc(100% - 50px);
		padding: 2rem 5%;
		background: #FFAA65;
		z-index: 101;
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
		-webkit-transition: .5s ease-in-out;
		-moz-transition: .5s ease-in-out;
		transition: .5s ease-in-out;
		visibility: hidden;
		opacity: 0;
	}
	.open-menu #global_menu {
		visibility: visible;
		opacity: 1;
	}
	#global_menu ul {
		flex-wrap: wrap;
		margin-bottom: 3rem;
	}
	#global_menu ul li {
		width: 100%;
	}
	#global_menu ul li:nth-child(n+2) {
		margin-left: 0;
	}
	#global_menu ul li a {
		font-size: 16px;
		color: #fff;
		text-align: center;
		padding: .5rem 0;
	}
	#global_menu .link {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
	}
	#global_menu .link .tel {
		width: 100%;
		text-align: center;
		margin-bottom: 2rem;
	}
	#global_menu .link .tel a {
		display: block;
		font-size: 14px;
		color: #4D4D4D;
	}
	#global_menu .link .tel a span {
		display: block;
		font-size: 30px;
		font-weight: 500;
		line-height: 1;
		color: #fff;
		letter-spacing: .05rem;
	}
	#global_menu .link .tel a span:before {
		display: inline-block;
		width: 20px;
		height: 20px;
		content: "";
		vertical-align: middle;
		margin-right: .3rem;
		background: url('https://lakulaku-life.jp/images/common/tel_wh.svg') no-repeat center top;
	}
	#global_menu .link .mail,
	#global_menu .link .login {
		width: 48%;
	}
	#global_menu .link .mail a,
	#global_menu .link .login a {
		display: block;
		font-size: 13px;
		color: #fff;
		text-align: center;
		padding: .7rem .5rem;
	}
	#global_menu .link .mail a {
		color: #fff;
		background: #CB6717;
	}
	#global_menu .link .mail a:before {
		display: inline-block;
		width: 16px;
		height: 14px;
		content: "";
		vertical-align: middle;
		margin-right: .3rem;
		background: url('https://lakulaku-life.jp/images/common/mail.svg') no-repeat center top;
		background-size: 100% auto;
	}
	#global_menu .link .login a {
		background: #4D4D4D;
	}
}

/* FOOTER -------------------------------------------------------------------------*/

#footer .menu {
	color: #fff;
	padding: 3rem 0;
	background: #1F2B39;
}
#footer .menu .container {
	display: flex;
	justify-content: space-between;
}
#footer .menu .inner .ttl {
	font-size: 16px;
	margin-bottom: 1.5rem;
}
#footer .menu .inner .ttl:after {
	display: block;
	width: 30px;
	height: 2px;
	content: "";
	margin-top: .5rem;
	background: #fff;
}
#footer .menu .inner ul li a {
	font-size: 14px;
	color: #fff;
}
#footer .menu .inner ul li a:hover {
	color: #FFAA65;
}
#footer .menu .inner ul li a:before {
	content: "－";
	color: #FFAA65;
	margin-right: .2rem;
}
#footer .info {
	padding: 2.5rem 0 1.5rem;
}
#footer .info .logo {
	max-width: 220px;
}
#footer .info .add {
	font-size: 16px;
	margin-top: 1rem;
}
#footer .info .sns {
	display: flex;
	align-items: center;
	margin: 1.5rem 0;
}
#footer .info .sns li a {
	display: block;
	min-width: 30px;
	text-align: center;
}
#footer .info .sns li:nth-child(n+2) {
	margin-left: 1rem;
}
#footer .info .copy {
	font-size: 13px;
}
/* shop */
#shop {
	position: fixed;
	right: 0;
	top: 20%;
}
#shop a {
	display: block;
	color: #fff;
	text-align: center;
	padding: 1.8rem 1rem;
	background: #FFAA65;
	writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
}
#shop a:hover {
	background: #E66700;
}
#shop a:after {
	display: inline-block;
	width: 26px;
	height: 26px;
	content: "";
	margin-top: .5rem;
	background: url('https://lakulaku-life.jp/images/common/cart.svg') no-repeat center center;
}
/* pagetop */
#pagetop {
	position: fixed;
	right: 2%;
	bottom: 8%;
}
#pagetop a {
	display: block;
	width: 50px;
	height: 50px;
	font-size: 0;
	color: #fff;
	background: #1F2B39;
	position: relative;
}
#pagetop a:before {
	position: absolute;
	left: 50%;
	top: 50%;
	content: "↑";
	font-size: 20px;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

/* ***** タブレット **** */
@media only screen and (max-width: 1250px) {
}

/* ***** スマホ **** */
@media only screen and (max-width: 767px) {
	#footer .menu {
		display: none;
	}
	#footer .info {
		padding: 0 0 1rem;
	}
	#footer .info .logo {
		max-width: 170px;
	}
	#footer .info .add {
		font-size: calc(100vw / 27);
		margin-top: .5rem;
	}
	#footer .info .sns {
		margin: 1rem 0;
	}
	#footer .info .copy {
		font-size: calc(100vw / 30);
	}
	/* shop */
	#shop {
		top: 10%;
	}
	#shop a {
		font-size: calc(100vw / 30);
		padding: 1rem .8rem;
	}
	#shop a:after {
		width: 22px;
		height: 22px;
		background-size: 100% auto;
	}
	/* pagetop */
	#pagetop {
		bottom: 2%;
	}
	#pagetop a {
		width: 40px;
		height: 40px;
	}
	#pagetop a:before {
		font-size: 13px;
	}
}

/* ALL CONTENTS -------------------------------------------------------------------------*/

/* all */
.sec { padding: 4rem 0; }
.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}
/* bg */
.bg_01 { background: #F2F2F2; }
/* title */
.title_01 {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	margin-bottom: 3rem;
}
.title_01 span {
	display: block;
	font-size: 46px;
	color: #FFAA65;
}
.title_02 {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 3rem;
}
.title_02:before {
	display: block;
	width: 30px;
	height: 3px;
	content: "";
	margin-bottom: .7rem;
	background: #FFAA65;
}
.title_02 span {
	display: block;
	font-size: 12px;
	color: #FFAA65;
	margin-top: .3rem;
}
.title_03 {
	font-size: 25px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 1.5rem;
}
.title_03:after {
	display: block;
	width: 2rem;
	height: 1px;
	content: "";
	margin-top: 1rem;
	background: #EA7C26;
}
.title_04 {
	font-size: 17px;
	font-weight: 700;
	margin-bottom: .5rem;
}
.title_04:before {
	content: "－";
	font-weight: 400;
	color: #EA7C26;
	margin-right: .3rem;
}
/* text */
.text_01 { font-size: 14px; }
/* image */
.image {
	text-align: center;
}
.image.max img {
	width: 100%;
}
/* button */
.btn_01 a {
	font-size: 16px;
	padding: .3rem 0;
	position: relative;
}
.btn_01 a:after {
	content: "→";
	margin-left: 1rem;
}
.btn_01 a:before {
	position: absolute;
	left: 0;
	bottom: 0;
	display: block;
	content: "";
	width: 0;
	border-bottom: 2px solid #FFAA65;
	transition: all 0.3s ease;
}
.btn_01 a:hover:before {
	width: 100%;
	border-color: #FFAA65;
}
.btn_02 {
	max-width: 300px;
	margin: 0 auto;
}
.btn_02 a {
	display: block;
	color: #fff;
	text-align: center;
	padding: 1rem;
	background: #FFAA65;
	position: relative;
}
.btn_02 a:hover {
	background: #E66700;
}
.btn_02 a:after {
	position: absolute;
	right: 5%;
	top: 50%;
	content: "→";
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
.btn_03 {
	max-width: 300px;
	margin: 0 auto;
}
.btn_03 a {
	display: block;
	font-size: 18px;
	color: #fff;
	text-align: center;
	padding: 1rem 2rem 1rem 1rem;
	background: #4D4D4D url('https://lakulaku-life.jp/images/common/arrow_02_wh.svg') no-repeat right 1rem center;
}
.btn_03 a:hover {
	opacity: 0.7;
}
.btn_04 {
	max-width: 300px;
	margin: 0 auto;
}
.btn_04 a {
	display: block;
	color: #fff;
	text-align: center;
	padding: 1rem;
	background: #4D4D4D;
	position: relative;
}
.btn_04 a:hover {
	opacity: 0.7;
}
.btn_04 a:before {
	position: absolute;
	left: 1rem;
	top: 50%;
	content: "←";
	-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) {
	/* all */
	.sec { padding: 3rem 0; }
	/* title */
	.title_01 {
		font-size: calc(100vw / 24);
		margin-bottom: 2rem;
	}
	.title_01 span {
		font-size: calc(100vw / 12);
	}
	.title_02 {
		font-size: calc(100vw / 20);
		margin-bottom: 2rem;
	}
	.title_02:before {
		width: 25px;
	}
	.title_02 span {
		font-size: calc(100vw / 34);
	}
	.title_03 {
		font-size: calc(100vw / 22);
	}
	.title_03:after {
		width: 1.5rem;
		margin-top: .7rem;
	}
	.title_04 {
		font-size: calc(100vw / 24);
	}
	/* button */
	.btn_01 a {
		font-size: calc(100vw / 27);
	}
	.btn_03 a {
		font-size: calc(100vw / 27);
		background-size: 5px auto;
	}
}

/* CONTACT -------------------------------------------------------------------------*/

.contact_box {
	display: flex;
	align-items: center;
}
.contact_box .image {
	width: 50%;
}
.contact_box .inner {
	width: 50%;
	padding: 1rem 3rem;
}
.contact_box .inner .ttl {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 1.5rem;
}
.contact_box .inner .box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.contact_box .inner .box p:nth-child(odd) {
	width: 46%;
}
.contact_box .inner .box p:nth-child(even) {
	width: 51%;
}
.contact_box .inner .box p:nth-child(n+3) {
	margin-top: 1rem;
}
.contact_box .inner .box .tel a {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: #000;
	text-align: center;
}
.contact_box .inner .box .tel a span {
	display: block;
	font-size: 30px;
	font-weight: 500;
	line-height: 1;
	color: #FFAA65;
	margin-bottom: .3rem;
	letter-spacing: .05rem;
}
.contact_box .inner .box .tel a span:before {
	display: inline-block;
	width: 20px;
	height: 20px;
	content: "";
	vertical-align: middle;
	margin-right: .5rem;
	background: url('https://lakulaku-life.jp/images/common/tel_or.svg') no-repeat center top;
}
.contact_box .inner .box .form a {
	display: block;
	color: #fff;
	text-align: center;
	padding: 1rem;
	background: #FFAA65;
}
.contact_box .inner .box .form a:hover {
	background: #E66700;
}
.contact_box .inner .box .form a:before {
	display: inline-block;
	width: 20px;
	height: 18px;
	content: "";
	vertical-align: middle;
	margin-right: .5rem;
	background: url('https://lakulaku-life.jp/images/common/mail.svg') no-repeat center top;
}
.contact_box .inner .box .line_01 {
	font-size: 16px;
	text-align: center;
}
.contact_box .inner .box .line_01 a {
	display: block;
	color: #fff;
	margin-top: .3rem;
	padding: .5rem 1rem;
	background: #47A928;
	border-radius: 5px;
}
.contact_box .inner .box .line_01 a:hover,
.contact_box .inner .box .line_02 a:hover {
	opacity: 0.7;
}
.contact_box .inner .box .line_01 a:before {
	display: inline-block;
	width: 29px;
	height: 28px;
	content: "";
	vertical-align: middle;
	margin-right: .5rem;
	background: url('https://lakulaku-life.jp/images/common/line_wh.svg') no-repeat center center;
}
.contact_box .inner .box .line_02 a {
	display: block;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.4;
	color: #000;
	padding: .7rem .5rem .7rem calc(.5rem + 60px);
	background: #fff url('https://lakulaku-life.jp/images/common/line_02.svg') no-repeat .5rem center;
	border: 1px solid #47A928;
}
.contact_box .inner .box .line_02 a span {
	display: block;
	font-size: 16px;
	color: #47A928;
}

/* ***** タブレット **** */
@media only screen and (max-width: 1250px) {
}

/* ***** スマホ **** */
@media only screen and (max-width: 767px) {
	.contact_box {
		flex-wrap: wrap;
	}
	.contact_box .image {
		width: 100%;
	}
	.contact_box .inner {
		width: 100%;
		padding: 1rem;
	}
	.contact_box .inner .ttl {
		font-size: calc(100vw / 23);
		text-align: center;
		margin-bottom: 1rem;
	}
	.contact_box .inner .box p:nth-child(odd) {
		width: 100%;
	}
	.contact_box .inner .box p:nth-child(even) {
		width: 100%;
	}
	.contact_box .inner .box p:nth-child(n+2) {
		margin-top: 1rem;
	}
	.contact_box .inner .box .tel a {
		font-size: calc(100vw / 27);
		text-align: center;
	}
	.contact_box .inner .box .tel a span {
		font-size: calc(100vw / 14);
	}
	.contact_box .inner .box .line_01 {
		font-size: calc(100vw / 27);
	}
	.contact_box .inner .box .line_02 a {
		font-size: calc(100vw / 24);
	}
	.contact_box .inner .box .line_02 a span {
		font-size: calc(100vw / 27);
	}
}

/* ETC -------------------------------------------------------------------------*/

.pc_br { display: block !important; }
.sp_br { display: none !important; }
.jost { font-family: 'Jost', sans-serif; }
.mrou { font-family: 'M PLUS Rounded 1c', sans-serif; }
.b { font-weight: 700; }
.or { color: #EA7C26; }
.pb0 { padding-bottom: 0; }
.mb-ss { margin-bottom: 1rem; }
.mb-s { margin-bottom: 1.5rem; }
.mb-ms { margin-bottom: 2rem; }
.mb-m { margin-bottom: 3rem; }

/* ***** スマホ **** */
@media only screen and (max-width: 767px) {
	.pc_br { display: none !important; }
	.sp_br { display: block !important; }
	.mb-ms { margin-bottom: 1.7rem; }
	.mb-m { margin-bottom: 2rem; }
}
