@charset "UTF-8";
/*----------------------------------------------
　　basic
----------------------------------------------*/
body {
	/*min-width: 1040px;*/
	color: #333;
	font-family: 'Noto Sans Japanese', serif;
	font-weight: 500;
	line-height: 1.8em;
	margin: 0;
	padding: 0;
}

h1,h2,h3,h4,h5 {
	margin: 0;
	padding: 0;
}

img {
	border: 0;
	vertical-align: bottom;
}

p,ul,li,dl,dt,dd,th,td {
	font-size: 16px;
	line-height: 1.5em;
	margin: 0;
	padding: 0;
}

ol,ul,li {
	list-style: none;
}

i {
	font-size: 110% !important;
	vertical-align: middle;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

::selection {
	background: #e5f5ec;
}

::-moz-selection {
	background: #e5f5ec;
}

@media screen and (max-width: 896px) {
	body {
		min-width: 300px;
	}
	
	img {
		width: 100%;
	}
	
	p,ul,li,dl,dt,dd,th,td {
		font-size: 14px;
	}
}

/*----------------------------------------------
　　ScrollTrigger
----------------------------------------------*/
.invisible {
  transition: all 1s ease;
  opacity: 0.0;
}

.visible {
  transition: all 1s ease;
  opacity: 1.0;
}

/*----------------------------------------------
　　link
----------------------------------------------*/
a:link {
	color: #333;
	text-decoration: none;
}

a:visited {
	color: #333;
	text-decoration: none;
}

a:hover {
	color: #333;
	text-decoration: none;
}

a:active {
	color: #333;
	text-decoration: none;
}

/* icon forward */
.hvr-icon-forward {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	padding-right: 0;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.1s;
}

.hvr-icon-forward:before {
	content: "\e5cc";
	position: absolute;
	right: 1em;
	padding: 0 1px;
	font-family: 'Material Icons';
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.hvr-icon-forward:hover:before, .hvr-icon-forward:focus:before, .hvr-icon-forward:active:before {
	-webkit-transform: translateX(4px);
	transform: translateX(4px);
}

.hvr-icon-forward:hover {
	opacity: 0.8;
	transition: 0.3s;
}

/* icon back */
.hvr-icon-back {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	padding-left: 0;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}

.hvr-icon-back:before {
	content: "\e5cb";
	position: absolute;
	left: 1em;
	padding: 0 1px;
	font-family: 'Material Icons';
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-transition-duration: 0.1s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.hvr-icon-back:hover:before, .hvr-icon-back:focus:before, .hvr-icon-back:active:before {
	-webkit-transform: translateX(-4px);
	transform: translateX(-4px);
}

/* zoom img */
.zoom_img img {
	width: 100%;
	display: block;
	transition: 0.3s;
}

.zoom_img img:hover {
	transform: scale(1.1);
	transition: 0.3s;
}

/*----------------------------------------------
　　PC
----------------------------------------------*/
@media print, screen and (min-width: 896px) {
	.pc_hidden {
		display: none;
	}
}

/*----------------------------------------------
　　SP
----------------------------------------------*/
@media screen and (max-width: 896px) {
	.sp_hidden {
		display: none;
	}
}

/*----------------------------------------------
　　common
----------------------------------------------*/
.wrapper {
	max-width: 1020px;
	margin: 0 auto;
	padding: 0 10px;
}

/*----------------------------------------------
　　header
----------------------------------------------*/
.header_img img {
  margin: 0 auto;
  display: block;
}

header {
  background: #dffaff;
  padding: 1em;
}

header .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

header p {
  width: 200px;
}

header img {
  width: 100%;
}

h1 {
  color: #333;
  font-size: 24px;
  line-height: 1.8em;
  margin-left: 2em;
}

h1 span {
  color: #ff7200;
  display: block;
}

@media screen and (max-width: 896px) {
  header .wrapper {
    flex-direction: column;
  }
  
  h1 {
    font-size: 16px;
    text-align: center;
    margin-top: 1em;
    margin-left: 0;
  }
}

/*----------------------------------------------

　　contents

----------------------------------------------*/
/*----------------------------------------------
　　突然の停電、あなたはどうしますか？
----------------------------------------------*/
.problem {
  margin-top: 3em;
  margin-bottom: 3em;
}

.problem div {
  border: solid 3px #ff4646;
  border-radius: 10px;
}

.problem h2 {
  color: #fff;
  font-size: 26px;
  text-align: center;
  background: #ff4646;
  padding: 0.5em;
}

.problem h2+p {
  font-weight: 400;
  line-height: 1.8em;
  padding: 1em;
}

.prepare {
  background: #fdf0a2;
  margin-bottom: 3em;
  padding: 3em 0;
}

.prepare h3 {
  color: #ff7200;
  font-size: 26px;
  text-align: center;
  line-height: 1.8em;
  margin-bottom: 1.5em;
}

.prepare h3 span {
  display: block;
}

.prepare h3+p {
  text-align: center;
  margin-bottom: 2em;
}

.prepare li {
  font-weight: 400;
  list-style: disc inside;
  text-indent: -1.4em;
  padding-left: 1.4em;
  margin-top: 1em;
}

.prepare img {
  margin: 3em auto 0 auto;
  display: block;
}

@media screen and (max-width: 896px) {
  .problem {
    margin-top: 2em;
    margin-bottom: 2em;
  }
  
  .problem h2 {
    font-size: 16px;
  }
  
  .prepare {
    margin-bottom: 2em;
    padding: 2em 0;
  }
  
  .prepare h3 {
    font-size: 16px;
    margin-bottom: 1.5em;
  }
  
  .prepare img {
    margin: 2em auto 0 auto;
  }
}

/*----------------------------------------------
　　youtube
----------------------------------------------*/
.iframe-wrap {
  width: 100%;
  padding-bottom: 56.25%;
  height: 0px;
  position: relative;
}

.iframe-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.iframe-wrap+p {
  text-align: center;
  margin: 2em 0 3em 0;
}

.iframe-wrap+p a {
  color: #fff;
  border-radius: 5px;
  background: #ff4646;
  padding: 1em;
}

@media screen and (max-width: 896px) {
  .iframe-wrap+p span {
    display: none;
  }
}

/*----------------------------------------------
　　災害が多い今だからこそ
----------------------------------------------*/
.measures {
	background: #333;
	padding: 20px;
}

.measures h2 {
	color: #ff7200;
	text-align: center;
	font-size: 32px;
	line-height: 2em;
}

.measures h2 span {
	font-size: 62px;
}

.bg_sky {
	background: url(images/bg_sky.jpg) no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 50px 0;
}

.question {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	margin-bottom: 20px;
}

.question li {
	width: 40%;
	color: #ff7200;
	text-align: center;
	font-size: 28px;
	font-weight: 600;
	background: #fff;
	box-shadow: 3px 3px 3px #666;
	padding: 20px;
}

.question span {
	color: #f00;
}

.save_ko {
	border-radius: 20px;
	background: rgba(255,255,255,0.8);
	margin: 20px 0;
	padding: 30px;
}

.save_ko li:first-child {
	color: #ea5116;
	font-size: 28px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 20px;
}

.target {
	width: 700px;
	margin: 0 auto;
}

.target li {
	color: #fff;
	font-size: 21px;
	font-weight: 600;
	text-align: center;
	border-radius: 10px;
	box-shadow: 3px 3px 3px #666;
	margin-top: 20px;
	padding: 5px 20px;
}

.target li a {
	color: #fff;
	display: block;
}

.target li:first-child {
	background: #ff8181;
}

.target li:nth-child(2) {
	background: #3bff49;
}

.target li:nth-child(3) {
	background: #ffbf23;
}

.target li:last-child {
	background: #51e2ff;
}

@media screen and (max-width: 896px) {
	.measures h2 {
		font-size: 18px;
	}
	
	.measures h2 span {
		font-size: 24px;
	}
	
	.bg_sky {
		padding: 30px 0;
	}
	
	.question {
		flex-direction: column;
	}
	
	.question li {
		width: 100%;
		font-size: 18px;
	}
	
	.question li:last-child {
		margin-top: 20px;
	}
	
	.save_ko {
		border-radius: 10px;
		padding: 15px;
	}
	
	.save_ko li:first-child {
		font-size: 18px;
	}
	
	.target {
		width: 100%;
	}
	
	.target li {
		font-size: 18px;
	}
}

/*----------------------------------------------
　　いつも通りの生活が送れます
----------------------------------------------*/
.ranking {
	background: #ffbaba;
	padding: 50px 0;
}

.ranking h2 {
	color: #fff;
	font-size: 36px;
	text-align: center;
	text-shadow: 3px 3px 3px #666;
	margin-bottom: 30px;
}

.can_use {
	color: #fff;
	padding: 30px 0;
}

.can_use_pink {
	background: #ff4646;
}

.can_use .wrapper {
	display: flex;
	justify-content: center;
	text-align: center;
}

.can_use img {
	width: 242px;
	height: 155px;
	margin-right: 20px;
}

.can_use h2 {
	font-size: 24px;
	text-align: center;
	line-height: 1.8em;
}

.can_use h2 span {
	font-size: 48px;
	line-height: 1.5em;
	display: block;
}

.usual {
	background: #ffbaba;
	padding: 50px 0;
}

.usual ul {
	width: 700px;
	margin: 0 auto;
}

.usual li {
	color: #fff;
	font-size: 21px;
	font-weight: 600;
	border-radius: 10px;
	box-shadow: 3px 3px 3px #666;
	margin-top: 20px;
	padding: 5px 30px;
}

.usual li:before {
    content: "\f14a";
	font-family: "Font Awesome 5 Free";
	margin-right: 15px;
}

.usual li:first-child {
	background: #ff4646;
}

.usual li:nth-child(2) {
	background: #fe942a;
}

.usual li:nth-child(3) {
	background: #ffff00;
	text-shadow: 3px 3px 3px #666;
}

.usual li:nth-child(4) {
	background: #36fc2c;
}

.usual li:nth-child(5) {
	background: #2aeafe;
}

.usual li:nth-child(6) {
	background: #4229ff;
}

.usual li:last-child {
	background: #ff37cf;
}

@media screen and (max-width: 896px) {
	.ranking {
		padding: 30px 0;
	}
	
	.ranking h2 {
		font-size: 21px;
	}
	
	.can_use {
		padding: 20px 10px;
	}
	
	.can_use .wrapper {
		flex-direction: column;
	}
	
	.can_use img {
		width: 100%;
		max-width: 300px;
		height: auto;
		margin-right: 0;
	}
	
	.can_use h2 {
		font-size: 18px;
		text-align: left;
	}
	
	.can_use h2 span {
		font-size: 28px;
	}
	
	.usual {
		padding: 30px 0;
	}
	
	.usual ul {
		width: 100%;
	}
	
	.usual li {
		font-size: 16px;
		padding: 5px 10px;
	}
	
	.usual li:before {
		margin-right: 5px;
	}
}

/*----------------------------------------------
　　店舗に設置して
----------------------------------------------*/
.hearing_title {
	color: #2cf950;
	font-size: 32px;
	text-align: center;
	margin: 50px 0 30px 0;
}

.hearing {
	background: #a2fdb2;
	padding: 30px 0;
}

.hearing h3 {
	color: #fff;
	font-size: 36px;
	text-align: center;
	text-shadow: 3px 3px 3px #666;
}

.hearing_content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 30px;
}

.hearing_content img {
	min-width: 150px;
	max-height: 180px;
}

.hearing_content h4 {
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	text-shadow: 3px 3px 3px #666;
}

.balloon {
	position: relative;
	display: inline-block;
	margin: 1.5em 0 0 15px;
	padding: 15px;
	min-width: 120px;
	max-width: 100%;
	background: #FFF;
	border-radius: 10px;
	box-sizing: border-box;
	box-shadow: 3px 3px 3px #666;
}

.balloon:before {
	content: "";
	position: absolute;
	top: 50%;
	left: -24px;
	margin-top: -12px;
	border: 12px solid transparent;
	border-right: 12px solid #FFF;
	z-index: 2;
}

.balloon:after {
	content: "";
	position: absolute;
	top: 50%;
	left: -30px;
	margin-top: -14px;
	border: 14px solid transparent;
	z-index: 1;
}

.doctor {
	border: solid 3px #59575a;
}

.doctor:after {
	border-right: 14px solid #59575a;
}

.facility {
	color: #042070;
	border: solid 3px #354f9a;
}

.facility:after {
	border-right: 14px solid #354f9a;
}

.pet {
	color: #99203d;
	border: solid 3px #f26b8b;
}

.pet:after {
	border-right: 14px solid #f26b8b;
}

.factory {
	color: #0f4f1c;
	border: solid 3px #34c750;
}

.factory:after {
	border-right: 14px solid #34c750;
}

.balloon p {
	font-size: 18px;
}

@media screen and (max-width: 896px) {
	.hearing_title {
		font-size: 21px;
		margin: 30px 0;
		padding: 0 10px;
	}
	
	.hearing h3 {
		font-size: 18px;
	}
	
	.hearing_content {
		align-items: flex-start;
	}
	
	.hearing_content img {
		min-width: inherit;
		max-width: 80px;
		height: auto;
		margin-top: 50px;
	}
	
	.hearing_content h4 {
		font-size: 18px;
	}
	
	.balloon:before {
		top: 30px;
	}
	
	.balloon:after {
		top: 30px;
	}
	
	.balloon p {
		font-size: 14px;
	}
}

/*----------------------------------------------
　　全て使えます！
----------------------------------------------*/
.can_use_green {
	background: #03ca26;
}

/*----------------------------------------------
　　どんなもの？
----------------------------------------------*/
.what_title {
	color: #ff6c00;
	font-size: 32px;
	text-align: center;
	margin: 50px 0 30px 0;
}

.what {
	background: #fdf0a2;
	padding: 30px 0;
}

.what div div {
	background: #fff;
	border: solid 10px #fff;
	border-radius: 10px;
	margin: 50px 0;
}

.what div div ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	padding: 20px;
}

.what div div li {
	width: 30%;
}

.what div div li img {
	width: 100%;
}

.what div div li p {
	text-align: center;
	margin-top: 10px;
}

@media screen and (max-width: 896px) {
	.what_title {
		font-size: 21px;
		margin: 30px 0 20px 0;
	}
	
	.what div div {
		margin: 20px 0;
	}
	
	.what div div ul {
		justify-content: space-between;
		padding: 0px;
	}
}

/*----------------------------------------------
　　セット内容
----------------------------------------------*/
.set {
	background: url(images/bg_set.jpg) no-repeat;
	background-size: cover;
	background-position: center center;
	padding: 50px 0;
}

.set ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 20px 0;
}

.set li {
	width: 30%;
	text-align: center;
}

.set li h3 {
	color: #fff;
	border-radius: 5px;
	background: #ff8400;
	padding: 10px;
}

.set li img {
	margin: 10px 0;
}

.set li p {
	font-size: 18px;
}

.set h2 {
	color: #fff;
	font-size: 48px;
	text-align: center;
	border: solid 8px #fff;
	border-radius: 10px;
	background: #f00;
	box-shadow: 3px 3px 3px #666;
	padding: 30px;
}

@media screen and (max-width: 896px) {
	.set {
		padding: 30px 0;
	}
	
	.set ul {
		flex-direction: column;
	}
	
	.set li {
		width: 100%;
		text-align: left;
	}
	
	.set li:nth-child(n+2) {
		margin-top: 20px;
	}
	
	.set li p {
		font-size: 14px;
	}
	
	.set h2 {
		font-size: 21px;
		padding: 20px;
	}
}

/*----------------------------------------------
　　さらに
----------------------------------------------*/
.more {
	font-size: 58px;
	font-weight: 900;
}

.warranty {
	background: url(images/bg_warranty.jpg) no-repeat;
	background-size: cover;
	background-position: center bottom;
	padding: 50px;
}

.warranty h2 {
	color: #fff;
	font-size: 72px;
	font-weight: 900;
	text-align: center;
	text-shadow: 3px 3px 3px #666;
}

@media screen and (max-width: 896px) {
	.more {
		font-size: 28px;
	}
	
	.warranty {
		padding: 10px 20px;
	}
	
	.warranty h2 {
		font-size: 24px;
	}
}

/*----------------------------------------------
　　参考資料
----------------------------------------------*/
.data {
	background: url(images/bg_data.jpg) no-repeat;
	background-size: cover;
	padding: 50px 0;
}

.data img:first-child {
	margin-bottom: 50px;
}

.data img:nth-child(3) {
	margin: 50px 0;
}

@media screen and (max-width: 896px) {
	.data {
		padding: 30px 0;
	}
	
	.data img:first-child {
		margin-bottom: 30px;
	}
	
	.data img:nth-child(3) {
		margin: 30px 0;
	}
}

/*----------------------------------------------
　　komamoriくん取扱店
----------------------------------------------*/
.komamorikun_shop {
  background-image: url("images/bg_map.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: rgba(255,255,255,0.85);
  background-blend-mode: lighten;
  margin-top: 5em;
  margin-bottom: 5em;
}

.komamorikun_shop img {
  width: 100%;
}

.komamorikun_shop h3 {
  font-size: 24px;
  margin: 2em 0 1em 0;
}

.komamorikun_shop dl {
  display: flex;
  flex-wrap: wrap;
  font-weight: 400;
  margin-top: 2em;
}

.komamorikun_shop dt,
.komamorikun_shop dd p {
  font-size: 21px;
  line-height: 1.8em;
}

.komamorikun_shop dd p a {
  color: #003F97;
  text-decoration: underline;
}

@media screen and (max-width: 896px) {
  .komamorikun_shop {
    margin-top: 3em;
    margin-bottom: 3em;
  }
  
  .komamorikun_shop h3 {
    font-size: 18px;
    margin: 1em 0 0 0;
  }
  
  .komamorikun_shop dl {
    flex-direction: column;
    margin-top: 1em;
  }
  
  .komamorikun_shop dt,
  .komamorikun_shop dd p {
    font-size: 14px;
  }
}

/*----------------------------------------------
　　form
----------------------------------------------*/
.contact_wrap {
  margin-top: 3em;
  margin-bottom: 3em;
}

.contact_wrap h3 {
  font-size: 18px;
  border-left: solid 5px #48b577;
  border-bottom:  solid 1px #48b577;
  padding: 0.5em;
  margin-bottom: 2em;
}

.mailform {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	border-bottom: solid 1px #ccc;
  margin-top: 3em;
	margin-bottom: 50px;
}

.mailform dt,
.mailform dd {
	border-top: 1px solid #ccc;
	padding: 15px 20px;
}

.mailform dt {
	width: 30%;
	font-weight: 600;
	background: #f5f5f5;
	display: flex;
	align-items: center;
}

.mailform dd {
	width: 70%;
}

.required,
.optional {
	width: 35px;
	height: 25px;
	line-height: 25px;
	color: #fff;
	font-size: 0.7em;
	font-weight: 600;
	text-align: center;
	border-radius: 3px;
	margin: 0 10px 0 0;
}

.required {
	background: #ff6f61;
}

.optional {
	background: #ccc;
}

.contact_category {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.contact_category label {
	width: 50%;
}

.contact_category label:nth-child(n+3) {
	margin-top: 15px;
}

button,
input,
select,
textarea {
	font-size: 100%;
	font-family: inherit;
}

input,
textarea {
	border: solid 1px #ccc;
	border-radius: 5px;
	-webkit-appearance:none;
	box-sizing: border-box;
}

input {
	padding: 5px 10px;
}

textarea {
	max-width: 100%;
	min-width: 70%;
	min-height: 150px;
	padding: 10px;
}

.input_wide,
.mf {
	width: 70% !important;
}

.input_middle {
	width: 30% !important;
}

.postcord,
input[type="submit"],
input[type="reset"]  {
	color: #fff;
	font-weight: 600;
	cursor: pointer;
	border: none;
}

input[type="submit"],
input[type="reset"]  {
	width: 30%;
	height: 50px;
	line-height: 50px;
	text-align: center;
	padding: 0;
}

input[type="submit"] {
	background: #48b577;
}

.postcord,
input[type="reset"] {
  color: #48b577;
  border: solid 1px #48b577;
  background: #fff;
}

.postcord:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
.button:hover  {
	opacity: 0.8;
	transition: 0.3s;
}

::-webkit-input-placeholder {
    color: #ddd;
}

.privacy > h5 {
	font-size: 12px;
	margin: 15px 0 5px 0;
}

.privacy p,
.privacy li  {
	font-size: 12px;
	line-height: 1.5em;
}

li.privacy > ul {
	margin-top: 10px;
}

li.privacy ul li {
  padding-left: 1em;
  text-indent: -1em;
	list-style: decimal inside;
}

.button:after {
  content: "\E147";
	font-family: 'Material Icons';
	font-weight: 500;
	font-size: 21px;
  position: absolute;
  top: 11px;
  right: 13px;
}

.button.active:after {
  content: "\E15C";
	font-family: 'Material Icons';
}

form div:last-child {
	display: flex;
	justify-content: space-around;
}

@media screen and (max-width: 896px) {
	.mailform {
		display: block;
		margin-bottom: 20px;
	}
	
	.mailform dt {
		padding: 8px 15px;
	}
	
	.mailform dd {
		padding: 20px 0;
	}
	
	.mailform dt,
	.mailform dd {
		width: 100%;
	}
	
	.required,
	.optional {
		height: 20px;
		line-height: 20px;
	}
	
	input {
		font-size: 16px;
		padding: 10px;
	}
	
	.input_wide,
	.mf {
		width: 100% !important;
	}
	
	.input_middle {
		width: 50% !important;
	}
	
	textarea {
		width: 100% !important;
		font-size: 16px;
	}
	
	.postcord {
		font-size: 14px;
	}
	
	input[type="submit"],
	input[type="reset"]  {
		width: 49%;
		font-size: 14px;
	}
}

/* radio・checkbox共通 */
input[type="checkbox"],
input[type="radio"] {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
}

.label_list label {
	position: relative;
	display: block;
	word-break: break-all;
}

.label_list label input[type="checkbox"] + span,
.label_list label input[type="radio"] + span {
	position: relative;
	padding-left: 35px;
}

label {
	cursor: pointer;
}

/* radio */
.radio .label_list:nth-of-type(1) label input[type="radio"] + span::before {
	border-color: #dfe1e5;
}

.radio label span,
.checkbox label span {
	display: inline-block;
}

.radio label input[type="radio"] {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

.radio label input[type="radio"] + span::before {
	position: absolute;
	display: inline-block;
	content: '';
	box-sizing: border-box;
	border-radius: 25px;
}

.radio label input[type="radio"] + span::before {
	width: 25px;
	height: 25px;
	z-index: 0;
	top: 0;
	left: 0;
	background-color: transparent;
	border: solid 2px #dfe1e5;
}

.radio label input[type="radio"] + span::before {
	border-width: 8px;
	background: #fff;
	border-color: #dfe1e5 !important;
}

.radio label input[type="radio"]:checked + span::before {
	border-width: 8px;
	border-color: #ff6f61 !important;
}

/* アコーディオン */
.accordion {
  width: 100%;
	margin-bottom: 20px !important;
}

.button {
  width: 100%;
  color: #fff;
	font-weight: 600;
	/*border: solid 1px #ccc;*/
	border-radius: 3px;
  background: #48b577;
  cursor: pointer;
  position: relative;
  padding: 10px 15px;
}

.accordion_contents {
	border-left: solid 1px #ccc;
	border-right: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
	background: #fff;
	padding: 15px;
}

/*----------------------------------------------
　　thanks
----------------------------------------------*/
.thanks {
  margin: 3em auto;
}

.thanks p {
	padding: 10px 0;
}

.thanks p:nth-last-child(2)	{
	font-size: 24px;
	font-weight: 600;
}

.thanks p:nth-last-child(2):before {
    content: "\e0b0";
	font-family: 'Material Icons';
	font-size: 26px;
	vertical-align: middle;
	margin-right: 5px;
}

/*----------------------------------------------
　　footer
----------------------------------------------*/
footer {
	background: #000;
	margin-top: 30px;
	padding: 30px 0;
}

footer .wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

footer .wrapper div:first-child {
	width: 65%;
}

footer .wrapper div:last-child {
	width: 30%;
}

footer .wrapper div:last-child img {
	margin-top: 15px;
}

footer p,
footer a {
	color: #fff !important;
}

footer img {
	width: 100%;
}

@media screen and (max-width: 896px) {
	footer .wrapper {
		flex-direction: column;
    padding-bottom: 50px;
	}
	
	footer .wrapper div:first-child {
		width: 100%;
	}
	
	footer .wrapper div:last-child {
		width: 100%;
	}
	
	footer .wrapper div:first-child img {
		margin-bottom: 15px;
	}
}

address {
	color: #fff;
	font-size: 0.7em;
	font-style: normal;
	text-align: center;
	background: #333;
	padding: 20px 0;
}

@media screen and (max-width: 896px) {
  address {
    margin-bottom: 50px;
  }
}

/*----------------------------------------------
　　pagetop
----------------------------------------------*/
.pagetop {
	width: 60px;
	height: 60px;
	line-height: 50px;
	border-radius: 50%;
	color: #fff !important;
	font-size: 36px;
	text-align: center;
	background: rgba(51,51,51,0.9);
	display: block;
	position: fixed;
	right: 40px;
	bottom: 40px;
	z-index: 1000;
}

.pagetop:hover {
	opacity: 0.8;
	transition: 0.3s;
}

@media screen and (max-width: 896px) {
	.pagetop {
		width: 50px;
		height: 50px;
		line-height: 40px;
		font-size: 28px;
		right: 10px;
		bottom: 10px;
	}
}

.side_btn {
  position: fixed;
  bottom: 50px;
  right: 30px;
}

.side_btn a {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  background: #48b577;
  display: block;
  z-index: 99;
}

.side_btn i {
  font-size: 21px !important;
  display: block;
  margin: 5px;
}

.side_btn p {
  font-size: 12px;
  padding-top: 15px;
}

.side_btn a:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.bottom_btn {
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 99;
}

.bottom_btn a {
  color: #fff;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  background: #48b577;
  display: block;
  padding: 10px 0;
}
