@charset "UTF-8";
body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul,
fieldset, form, label, legend, input, textarea, button,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
}

input, button, textarea {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

select {
	outline: none;
	-moz-appearance: none;
	text-indent: 0.01px;
	text-overflow: '';
	background: none transparent;
	vertical-align: middle;
	font-size: inherit;
	color: inherit;
	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

select option {
	background-color: #fff;
	color: #333;
}

select::-ms-expand {
	display: none;
}

select:-moz-focusring {
	color: transparent;
}

img {
	max-width: 100%;
}

body {
	font-family: 'Roboto', 'Noto Sans JP',  "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
	font-weight: 500;
	line-height: 1;
}

.sp_only {
	display: none;
}

.pc_only {
	display: block;
}

a {
	text-decoration: none;
}

li {
	list-style: none;
}

em {
	font-style: normal;
}

.clear {
	clear: both;
}

.flex {
	display: flex;
	align-items: normal;
	flex-wrap: wrap;
}

.flex_between {
	justify-content: space-between;
}

.flex_center {
	align-items: center;
}

.mt40 {
	margin-top: 40px;
}

.mb20 {
	margin-bottom: 20px;
}

.hr_red {
	border-top: 4px solid #f32840;
}

input {
	border-radius: 4px;
	border: 1px solid #A2A2A2;
}

textarea {
	width: 100%;
	margin: 0 0 10px;
	padding: 1em;
	border: 1px solid #DBDBDB;
	border-radius: 4px;
}

textarea.code {
	color: gray;
	resize: none;
}

input[type=radio], input[type=checkbox] {
	display: none;
}

.radio, .checkbox, .check .wpcf7-list-item-label {
	box-sizing: border-box;
	-webkit-transition: background-color 0.2s linear;
	transition: background-color 0.2s linear;
	position: relative;
	display: inline-block;
	padding-left: 25px;
	vertical-align: middle;
	cursor: pointer;
	border: none;
}
.radio:after, .checkbox:after, .check .wpcf7-list-item-label:after {
	-webkit-transition: border-color 0.2s linear;
	transition: border-color 0.2s linear;
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	margin-top: -7px;
	width: 16px;
	height: 16px;
	background: #F32840;
	border-radius: 2px;
	content: '';
}

.radio:before {
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	position: absolute;
	top: 50%;
	left: 5px;
	display: block;
	margin-top: -7px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	content: '';
	opacity: 0;
}
input[type=radio]:checked + .radio:before {
	opacity: 1;
}

.checkbox:before, .wpcf7-list-item-label:before {
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	position: absolute;
	top: 50%;
	left: 5px;
	display: block;
	margin-top: -7px;
	width: 5px;
	height: 9px;
	border-right: 2px solid #FFF;
	border-bottom: 2px solid #FFF;
	content: '';
	opacity: 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	z-index: 2;
}
input[type=checkbox]:checked + .checkbox:before, input[type=checkbox]:checked + .wpcf7-list-item-label:before {
	opacity: 1;
}

.check input[type=checkbox]:checked + .wpcf7-list-item-label {
	opacity: 1;
}

.item, a {
	transition: all .2s ease-in-out;
}

.item:hover {
	cursor: pointer;
	opacity: 0.8;
	transform: translate(0, -1%);
}

.column2 {
	*zoom: 1;
}
.column2:after {
	content: "";
	display: table;
	clear: both;
}
.column2 .item {
	width: 49%;
	margin: 0 0 0 2%;
}
.column2 .item:nth-child(2n+1) {
	clear: both;
	margin: 0 0 0 0;
}

.column3 {
	*zoom: 1;
}
.column3:after {
	content: "";
	display: table;
	clear: both;
}
.column3 .item {
	width: 32.65%;
	margin: 0 0 0 1%;
}
.column3 .item:nth-child(3n+1) {
	clear: both;
	margin: 0 0 0 0;
}

.column4 {
	*zoom: 1;
}
.column4:after {
	content: "";
	display: table;
	clear: both;
}
.column4 .item {
	width: 23.35%;
	margin: 0 0 0 2.2%;
}
.column4 .item:nth-child(4n+1) {
	clear: both;
	margin: 0 0 0 0;
}

@media all and (max-width: 740px) {
  .sp_only {
	display: block;
  }

  .pc_only {
	display: none;
  }

  .column2 {
	*zoom: 1;
  }
  .column2:after {
	content: "";
	display: table;
	clear: both;
  }
  .column2 .item {
	width: 100%;
	margin: 0 0 15px 0%;
  }
  .column2 .item:nth-child(2n+1) {
	clear: both;
	margin: 0 0 15px 0;
  }
}
@font-face {
	font-family: 'icomoon';
	src: url("../fonts/icomoon_8jmpxd.eot");
	src: url("../fonts/icomoon_8jmpxd.eot#iefix") format("embedded-opentype"), url("../fonts/icomoon_8jmpxd.ttf") format("truetype"), url("../fonts/icomoon_8jmpxd.woff") format("woff"), url("../fonts/icomoon_8jmpxd.svg") format("svg");
	font-weight: normal;
	font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
	/* use !important to prevent issues with browser extensions that change fonts */
	font-family: 'icomoon' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-view_comment:before {
	content: "\e916";
}

.icon-view_photo:before {
	content: "\e91b";
}

.icon-logo:before {
	content: "\e900";
}

.icon-nocontent:before {
	content: "\e901";
}

.icon-share:before {
	content: "\e902";
}

.icon-facebook:before {
	content: "\e910";
}

.icon-twitter:before {
	content: "\e927";
}

.icon-googleplus:before {
	content: "\e912";
}

.icon-hatena:before {
	content: "\e913";
}

.icon-line:before {
	content: "\e919";
}

.icon-compass:before {
	content: "\e903";
}

.icon-star_half:before {
	content: "\e915";
}

.icon-star:before {
	content: "\e906";
}

.icon-star_line:before {
	content: "\e908";
}

.icon-phone2:before {
	content: "\e90b";
}

.icon-marker1:before {
	content: "\e90c";
}

.icon-flag:before {
	content: "\e90d";
}

.icon-clock:before {
	content: "\e904";
}

.icon-calendar:before {
	content: "\e905";
}

.icon-map:before {
	content: "\e907";
}

.icon-ellipsis:before {
	content: "\e909";
}

.icon-phone1:before {
	content: "\e90a";
}

.icon-comment:before {
	content: "\e90f";
}

.icon-heart:before {
	content: "\e914";
}

.icon-pin:before {
	content: "\e90e";
}

.icon-info:before {
	content: "\e917";
}

.icon-joren:before {
	content: "\e918";
}

.icon-special:before {
	content: "\e911";
}

.icon-mail:before {
	content: "\e91a";
}

.search_area {
	position: relative;
	font-size: 18px;
	font-size: 1.125rem;
}
.search_area label {
	font-size: 18px;
	font-size: 1.125rem;
	color: #F32840;
	font-weight: 700;
}
.search_area input {
	display: inline-block;
	margin: 0;
	padding: 18px 15px;
	width: 620px;
	height: 60px;
	font-size: 16px;
	font-size: 1rem;
	background: #FFF;
	border-radius: 4px 0 0 4px;
}
.search_area button {
	display: inline-block;
	margin: 0;
	text-align: center;
	width: 80px;
	height: 60px;
	color: #FFF;
	font-size: 16px;
	font-size: 1rem;
	font-weight: 700;
	line-height: 60px;
	border-radius: 0 4px 4px 0;
	background: #F32840;
}
.search_area button:disabled {
	background: #D0D0D0;
}
@media all and (max-width: 1270px) {
  .search_area input {
	width: 600px;
  }
}
@media all and (max-width: 980px) {
  .search_area .input_area {
	width: 60%;
  }
  .search_area .input_area.sp-only {
	display: flex;
  }
  .search_area input {
	width: calc(100% - 20%);
  }
  .search_area button {
	width: 20%;
  }
}
@media all and (max-width: 740px) {
  .search_area {
	display: block;
	text-align: left;
  }
  .search_area label {
	display: block;
	margin: 0 0 15px;
  }
  .search_area .input_area {
	width: 100%;
  }
}

.breadcrumbs {
	padding: 1em;
	background: #f0f0f0;
	color: gray;
	border-radius: 4px;
	font-size: 12px;
	font-size: 0.75rem;
}
.breadcrumbs li {
	display: inline-block;
}
.breadcrumbs a {
	color: #F32840;
	text-decoration: underline;
}
.breadcrumbs a:after {
	margin: 0 10px;
	border-style: solid;
	border-width: 0 1px 1px 0;
	content: "";
	display: inline-block;
	height: 8px;
	width: 8px;
	border-color: #808080;
	transform: rotate(-45deg);
}
@media all and (max-width: 740px) {
  .breadcrumbs {
	display: none;
  }
}

.shop_catefory {
	position: relative;
	padding: 0 2.5% 20px;
	background: #F0F0F0;
}
.shop_catefory:before {
	position: absolute;
	top: 35px;
	left: 0;
	z-index: 2;
	content: "";
	width: 135px;
	height: 70px;
	background: linear-gradient(90deg, #f0f0f0 0%, rgba(240, 240, 240, 0) 100%);
}
.shop_catefory:after {
	position: absolute;
	top: 35px;
	right: 0;
	z-index: 2;
	content: "";
	width: 135px;
	height: 70px;
	background: linear-gradient(90deg, rgba(240, 240, 240, 0) 0%, #f0f0f0 100%);
}
.shop_catefory p {
	font-size: 20px;
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0 0 20px;
}
.shop_catefory .cate_slider {
	position: relative;
	min-height: 70px;
}
.shop_catefory .cate_slider li {
	display: inline-block;
	width: calc((100% / 8) - 5px);
}
.shop_catefory .cate_slider a {
	display: inline-block;
	width: 100%;
	height: 60px;
	line-height: 60px;
	font-size: 16px;
	font-size: 1rem;
	font-weight: 700;
	text-align: center;
	color: #F32840;
	border-radius: 4px;
	border: 1px solid #F32840;
	background: #FFF;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.shop_catefory .cate_slider a:hover {
	color: #FFF;
	background: #F32840;
}
.shop_catefory .cate_slider a.active {
	color: #FFF;
	background: #F32840;
}
@media all and (max-width: 740px) {
  .shop_catefory .cate_slider li {
	width: calc(100% / 4 );
  }
  .shop_catefory .cate_slider a {
	min-width: auto;
	width: 100%;
	height: 45px;
	line-height: 45px;
	font-size: 13px;
	font-size: 0.8125rem;
  }
}
.shop_catefory .lSAction > a {
	top: 40%;
}
@media all and (max-width: 740px) {
  .shop_catefory .lSAction > a {
	top: 30%;
  }
}
.shop_catefory .lSSlideWrapper {
	padding-left: 10px;
}

.search-hits {
	position: relative;
	color: #848484;
	margin: 0;
	padding: 15px 0;
}
.search-hits .pagination {
	position: absolute;
	top: 7px;
	right: 0;
}

.search-hits-title {
	font-size: 18px;
	color: #e84c53;
	font-weight: 700;
}

.search-pager-footer {
	padding-left: 69px;
}

.search-hits .search-htis-count {
	color: #e84c53;
	font-weight: 700;
}

.pager-box .next-btn {
	display: block;
	background-color: #e84c53;
	color: #fff;
	font-size: 130%;
	margin: 15px 0;
}

.article-list-pager {
	text-align: center;
}

.pagination {
	position: relative;
	margin: auto;
	padding: 5px 0;
	text-align: center;
}
.pagination li {
	display: inline;
	line-height: 30px;
}
.pagination .page-numbers, .pagination .current {
	display: inline-block;
	margin: 0 3px;
	width: 40px;
	height: 40px;
	color: gray;
	line-height: 40px;
	font-size: 15px;
	font-size: 0.9375rem;
	text-align: center;
	cursor: pointer;
	background: #F0F0F0;
	border-radius: 100%;
}
.pagination .page-numbers:hover, .pagination .current:hover {
	color: #fff;
	background-color: #F32840;
}
.pagination .next, .pagination .prev {
	width: 70px;
	height: 40px;
	border: none;
	border-radius: 25px;
	font-weight: normal;
}
.pagination .prev {
	position: absolute;
	left: 0;
}
.pagination .next {
	position: absolute;
	right: 0;
}
.pagination .current {
	color: #fff;
	background-color: #F32840;
}
.pagination .dots {
	cursor: auto;
}
.pagination .dots:hover {
	color: gray;
	background: #F0F0F0;
}
@media all and (max-width: 740px) {
  .pagination .page-numbers, .pagination .current {
	display: inline-block;
	margin: 0 3px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 13px;
	font-size: 0.8125rem;
  }
  .pagination .next, .pagination .prev {
	width: 50px;
	height: 30px;
  }
  .pagination .prev {
	margin: 0 3px 0 0;
  }
  .pagination .next {
	margin: 0 0 0 3px;
  }
}

@media all and (max-width: 740px) {
  .content_wrap .wrap {
	width: 100%;
  }
  .content_wrap .pagination {
	margin: 0 0 30px;
  }
}
.more-btn {
	display: block;
	margin: 0 auto;
	width: 160px;
	height: 40px;
	color: #F32840;
	line-height: 39px;
	font-size: 15px;
	font-size: 0.9375rem;
	text-align: center;
	cursor: pointer;
	background: #FFF;
	border-radius: 25px;
	border: 1px solid #F32840;
}
.more-btn:hover {
	color: #fff;
	background-color: #F32840;
}

.tab-menus-box {
	text-align: center;
}
.tab-menus-box .tab-menus {
	*zoom: 1;
	padding: 0;
	margin: 0;
}
.tab-menus-box .tab-menus:after {
	content: "";
	display: table;
	clear: both;
}
.tab-menus-box .tab-menus li {
	display: inline;
	list-style: none;
}
.tab-menus-box .tab-menus a {
	display: block;
	width: 33%;
	font-size: 80%;
	margin: 5px 0;
	padding: 5px 0;
	float: left;
	color: #888;
	border-right: 1px solid #afafaf;
}
.tab-menus-box .tab-menus li:last-child a {
	border: none;
}
.tab-menus-box .tab-menus a.active {
	color: #F32840;
}
.tab-menus-box .tab-menus i {
	font-size: 20px;
	display: block;
}

.tab {
	color: #888;
	font-size: 20px;
	font-weight: 700;
	line-height: 1em;
	margin: 0 0 20px;
	padding: 20px 0;
	border-bottom: 1px solid #888;
}
.tab li {
	margin: 0;
	display: inline;
	margin-right: 70px;
	cursor: pointer;
}
.tab a {
	padding-bottom: 12px;
	color: #a2a2a2;
	font-size: 22px;
	font-size: 1.375rem;
}
.tab a:hover {
	color: #F32840;
	border-bottom: 4px solid #F32840;
}
.tab a.active {
	color: #F32840;
	border-bottom: 4px solid #F32840;
}

@media all and (max-width: 740px) {
  .tab {
	padding: 0 0;
	border: none;
  }
  .tab li {
	display: block;
	margin: 0 0 20px;
  }
  .tab a {
	display: block;
	padding: 0 0 20px;
	width: 100%;
	font-size: 16px;
	font-size: 1rem;
	border-bottom: 1px solid #888;
  }
}
.view-layout {
//	position: absolute;
	top: -10px;
	right: 0;
	display: flex;
}
.view-layout a {
	display: block;
	margin-left: 15px;
	font-size: 26px;
	color: gray;
}
.view-layout a:hover {
	color: #F32840;
}
.view-layout .icon-view_comment {
	position: relative;
	top: 1px;
}
.view-layout a.active {
	color: #F32840;
}

/* ==========================================================================
	 Remodal's necessary styles
	 ========================================================================== */
/* Hide scroll bar */
html.remodal-is-locked {
	overflow: hidden;
	-ms-touch-action: none;
	touch-action: none;
}

/* Anti FOUC */
.remodal,
[data-remodal-id] {
	display: none;
}

/* Necessary styles of the overlay */
.remodal-overlay {
	position: fixed;
	z-index: 9999;
	top: -5000px;
	right: -5000px;
	bottom: -5000px;
	left: -5000px;
	display: none;
}

/* Necessary styles of the wrapper */
.remodal-wrapper {
	position: fixed;
	z-index: 10000;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: none;
	overflow: auto;
	text-align: center;
	-webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
	display: inline-block;
	height: 100%;
	margin-left: -0.05em;
	content: "";
}

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */
.remodal {
	position: relative;
	outline: none;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

.remodal-is-initialized {
	/* Disable Anti-FOUC */
	display: inline-block;
}

/* ==========================================================================
	 Remodal's default mobile first theme
	 ========================================================================== */
/* Default theme styles for the background */
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
	-webkit-filter: blur(3px);
	filter: blur(3px);
}

/* Default theme styles of the overlay */
.remodal-overlay {
	background: rgba(0, 0, 0, 0.5);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
	-webkit-animation-duration: 0.3s;
	animation-duration: 0.3s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
	-webkit-animation-name: remodal-overlay-opening-keyframes;
	animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
	-webkit-animation-name: remodal-overlay-closing-keyframes;
	animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */
.remodal-wrapper {
	padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */
.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
	-webkit-animation-duration: 0.3s;
	animation-duration: 0.3s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
	-webkit-animation-name: remodal-opening-keyframes;
	animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
	-webkit-animation-name: remodal-closing-keyframes;
	animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper:after {
	vertical-align: middle;
}

/* Close button */
.remodal-close {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	display: block;
	overflow: visible;
	width: 35px;
	height: 35px;
	padding: 0;
	cursor: pointer;
	-webkit-transition: color 0.2s;
	transition: color 0.2s;
	text-decoration: none;
	color: #95979c;
	border: 0;
	outline: 0;
	background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
	color: #2b2e38;
}

.remodal-close:before {
	font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
	font-size: 25px;
	line-height: 35px;
	position: absolute;
	top: 0;
	left: 0;
	margin: auto;
	display: block;
	width: 35px;
	content: "\00d7";
	text-align: center;
}

/* Dialog buttons */
.remodal-confirm,
.remodal-cancel {
	font: inherit;
	display: inline-block;
	overflow: visible;
	min-width: 110px;
	margin: 0;
	padding: 12px 0;
	cursor: pointer;
	-webkit-transition: background 0.2s;
	transition: background 0.2s;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	border: 0;
	outline: 0;
}

.remodal-confirm {
	color: #fff;
	background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
	background: #66bb6a;
}

.remodal-cancel {
	color: #fff;
	background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
	background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
	padding: 0;
	border: 0;
}

/* Keyframes
	 ========================================================================== */
@-webkit-keyframes remodal-opening-keyframes {
  from {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
	opacity: 0;
  }

  to {
	-webkit-transform: none;
	transform: none;
	opacity: 1;
	-webkit-filter: blur(0);
	filter: blur(0);
  }
}

@keyframes remodal-opening-keyframes {
  from {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
	opacity: 0;
  }

  to {
	-webkit-transform: none;
	transform: none;
	opacity: 1;
	-webkit-filter: blur(0);
	filter: blur(0);
  }
}

@-webkit-keyframes remodal-closing-keyframes {
  from {
	-webkit-transform: scale(1);
	transform: scale(1);
	opacity: 1;
  }

  to {
	-webkit-transform: scale(0.95);
	transform: scale(0.95);
	opacity: 0;
	-webkit-filter: blur(0);
	filter: blur(0);
  }
}

@keyframes remodal-closing-keyframes {
  from {
	-webkit-transform: scale(1);
	transform: scale(1);
	opacity: 1;
  }

  to {
	-webkit-transform: scale(0.95);
	transform: scale(0.95);
	opacity: 0;
	-webkit-filter: blur(0);
	filter: blur(0);
  }
}

@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
	opacity: 0;
  }

  to {
	opacity: 1;
  }
}

@keyframes remodal-overlay-opening-keyframes {
  from {
	opacity: 0;
  }

  to {
	opacity: 1;
  }
}

@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
	opacity: 1;
  }

  to {
	opacity: 0;
  }
}

@keyframes remodal-overlay-closing-keyframes {
  from {
	opacity: 1;
  }

  to {
	opacity: 0;
  }
}

/* Media queries
	 ========================================================================== */
.remodal {
	box-sizing: border-box;
	margin-bottom: 10px;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	background: #fff;
	border-radius: 4px;
	width: 400px;
}
.remodal h3 {
	position: relative;
	padding: 15px 0;
	border-bottom: 1px solid #DBDBDB;
}

.share_link a {
	display: block;
	width: 100%;
	text-align: center;
	padding: 20px 0;
	font-size: 15px;
	font-size: 0.9375rem;
	color: #4E4E4E;
	border-bottom: 1px solid #DBDBDB;
}
.share_link a:hover {
	color: #F32840;
}
.share_link .active {
	color: #F32840;
}
.share_link li:last-child a {
	border-bottom: none;
}
.share_link i {
	display: inline-block;
	margin-right: 10px;
	text-align: center;
	width: 32px;
	height: 32px;
	line-height: 32px;
	vertical-align: middle;
	font-size: 18px;
}
.share_link .icon-facebook {
	background: #415993;
	border-radius: 100%;
	color: #FFF;
}
.share_link .icon-messenger {
	background: #3585f7;
	border-radius: 100%;
	color: #FFF;
}
.share_link .icon-twitter {
	background: #1da1f2;
	border-radius: 100%;
	color: #FFF;
}

.embed {
	padding: 30px;
	text-align: left;
}
.embed .check_area {
	margin: 0 0 15px;
}
.embed .check_area label {
	color: gray;
	font-size: 14px;
	font-size: 0.875rem;
}
.embed a {
	color: #F32840;
}
.embed .btn {
	display: block;
	margin: 0 0 15px;
	padding: 10px 0;
	width: 100%;
	color: #FFF;
	font-size: 14px;
	font-size: 0.875rem;
	text-align: center;
	border-radius: 4px;
	background: #F32840;
}
.embed p {
	color: gray;
	font-size: 13px;
	font-size: 0.8125rem;
}

@media all and (max-width: 740px) {
  .remodal {
	width: 90%;
  }
}
/* IE8
	 ========================================================================== */
.lt-ie9 .remodal-overlay {
	background: #2b2e38;
}

.lt-ie9 .remodal {
	width: 700px;
}

/*---------------------------------------------------------
汎用
---------------------------------------------------------*/
.wrap {
	position: relative;
	max-width: 1028px;
	width: 85%;
	margin: 0 auto;
}
@media all and (max-width: 1270px) {
  .wrap {
	width: 95%;
  }
}

@media all and (max-width: 740px) {
  .onlysp {
	display: block;
  }

  .onlypc {
	display: none;
  }
}
/*---------------------------------------------------------
header
---------------------------------------------------------*/
.header {
	position: relative;
	padding: 30px 0;
	background-color: #fff;
}
.header .wrap {
	align-items: center;
}
.header .select_box {
	position: relative;
}
.header .select_box:after {
	position: absolute;
	top: 9px;
	right: 20px;
	border-style: solid;
	border-width: 0 1px 1px 0;
	content: "";
	display: inline-block;
	height: 7px;
	width: 7px;
	transform: rotate(45deg);
	border-color: #F32840;
}
.header .select_box select {
	min-width: 180px;
	padding: 5px 15px;
	border-radius: 20px;
	border: 1px solid #F32840;
	color: #F32840;
	font-size: 13px;
	font-size: 0.8125rem;
}
.header .select_box option {
	color: #F32840;
	background: #FFF;
}
.header .logo {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	width: 190px;
	line-height: 1;
}
.header .logo img {
	max-width: 190px;
}
.header .app_dl__batch {
	position: relative;
	top: 5px;
	margin-left: auto;
}

.appstore img {
	text-align: right;
}

.playstore img {
	max-height: 40px;
}

@media all and (max-width: 740px) {
  .header {
	padding: 15px 0;
  }
  .header .wrap {
	position: relative;
	width: 92%;
  }
  .header .select_box {
	position: absolute;
	right: 0;
  }
  .header .select_box select {
	min-width: 160px;
  }
  .header .logo {
	position: static;
	width: 40%;
	margin: 0;
  }
  .header .logo img {
	max-width: 100%;
  }
  .header .app_dl__batch {
	display: none;
  }
}
/*-------------------------------------------------
コンテンツエリア
-------------------------------------------------*/
.col_content {
	display: flex;
}
.col_content aside {
	background: #f0f0f0;
}

.order_right {
	order: 2;
}

@media all and (max-width: 740px) {
  .col_content {
	display: block;
  }
}
main {
	*zoom: 1;
}
main:after {
	content: "";
	display: table;
	clear: both;
}
main .item h2 {
	position: relative;
	margin: 0 0 5px;
	font-size: 18px;
	font-size: 1.125rem;
}
main figure {
	position: relative;
	display: block;
	border-radius: 4px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.error-wrapper {
	background-image: url("../img/404_bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	min-height: 70vh;
	color: #fff;
	text-align: center;
	position: relative;
}
@media all and (max-width: 740px) {
  .error-wrapper {
	background-image: url("../img/404_bg_sp.jpg");
	background-size: cover;
  }
}
.error-wrapper .error-content {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 35%;
	height: 335px;
}
.error-wrapper .error-content h1, .error-wrapper .error-content p {
	text-shadow: 0px 0px 4.85px rgba(10, 3, 5, 0.67);
}
.error-wrapper .error-content p {
	font-size: 16px;
	line-height: 24px;
}
@media all and (max-width: 740px) {
  .error-wrapper .error-content {
	width: 80%;
	height: 335px;
  }
  .error-wrapper .error-content h1 {
	font-size: 145%;
	font-weight: normal;
  }
  .error-wrapper .error-content p {
	font-size: 70%;
	line-height: 170%;
  }
}
.error-wrapper .error-content .go-top-btn {
	width: 100%;
	display: inline-block;
	padding: 15px 0;
	margin: 10px 0;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	color: #fff;
	border: 1px solid #fff;
	border-radius: 5px;
	background-color: rgba(255, 255, 255, 0.1);
}

/*------------------------------------------
オススメまとめ記事 
------------------------------------------*/
.recommend-post {
	padding: 37px 0 42px;
}
.recommend-post h3 {
	margin: 18px 0;
	color: #e84c53;
	font-size: 18px;
}
.recommend-post p {
	color: #535353;
	margin: 0 0 22px;
	font-size: 14px;
}
.recommend-post .post-view {
	color: #e84c53;
	border-bottom: 3px solid #e84c53;
	padding-bottom: 5px;
	margin-right: .5rem;
}
@media all and (max-width: 740px) {
  .recommend-post .recommend-post-title {
	margin-top: 20px;
	text-align: center;
  }
  .recommend-post .recommend-post-sub {
	text-align: center;
	margin-top: 5px;
  }
  .recommend-post .recommend-post {
	padding: 30px 3%;
  }
  .recommend-post .column4 .item {
	width: 48%;
	margin: 0 0 4% 4%;
  }
  .recommend-post .column4 .item:nth-child(4n+1) {
	margin: 0 0 4% 4%;
  }
  .recommend-post .column4 .item:nth-child(2n+1) {
	clear: both;
	margin: 0 0 4% 0;
  }
}

/*---------------------------------------------------------
footer
---------------------------------------------------------*/
.app {
	*zoom: 1;
	overflow: hidden;
	background:url("../img/parts/bg_app.png") no-repeat;
	background-size: cover;
}
.app .stage {
	height: 540px;
	overflow: hidden;
	position: relative;
	max-width: 720px;
	padding: 0 24px;
	margin: 0 auto;
}

@media all and (max-width: 740px) {
	.app .stage {
	  height: 700px;
	}
  }

.app .stage .position {
}
.app .stage .position .phone {
	position: absolute;
	bottom:0;
	max-width: 240px;
}

@media all and (max-width: 740px) {
	.app .stage .position .phone {
	  right: 0;
	  left: 0;
	  margin: auto;
	  max-width: 200px;
	}
  }

.app .stage .position .phone img {
	width: 100%;
	height: auto;
}
.app .stage .position .set {
	max-width: 350px;
	height: 300px;
	position: absolute;
	top: 0;
	right: 24px;
	bottom: 0;
	margin: auto;
}
@media all and (max-width: 740px) {
	/* line 268, ../sass/base.scss */
	.app .stage .position .set {
	  right: 0;
	  left: 0;
	  margin: 30px auto;
	  height: 250px;
	}
  }

.app .stage .position .set .logo {
	max-width: 286px;
	margin: 0 auto;
	margin-bottom:16px;
}
.app .stage .position .set .logo img {
	width: 100%;
	height: auto;
}
.app .stage .position .set .txt {
	text-align: center;
	font-size: 22px;
	line-height: 1.6;
	color: #fff;
	font-weight: 600;
	margin-bottom:24px;
}
.app .stage .position .set .qrcode {
	float: left;
	width: 139px;
	padding-left:50px;
}

@media all and (max-width: 740px) {
	.app .stage .position .set .qrcode {
	  display: none;
	}
  }

.app .stage .position .set .qrcode img {
	width: 100%;
	height: auto;
}
.app .stage .position .set .os {
	overflow: hidden;
	padding: 0 16px;
}
.app .stage .position .set .os .img {
	float: left;
	max-width: 135px;
	padding: 0 0 16px 0;
}
@media all and (max-width: 740px) {
	.app .stage .position .set .os .img {
	  float: none;
	  margin: auto;
	  padding: 8px 0 0 0;
	}
  }
.app .stage .position .set .os .img img {
	width: 100%;
	height: auto;
}

.footer {
	*zoom: 1;
	background: #F32840;
	overflow-x: hidden;
}

.footer__links {
	padding: 2.5rem 1.25rem;
	box-sizing: border-box;
	background: rgba(177, 0, 21, 0.16);
}

@media only screen and (max-width: 768px) {
	.footer__links {
		padding: 2.5rem 2rem;
	}
}

.footer__links_list {
	display: flex;
	max-width: 60rem;
	width: 100%;
	margin: 0 auto;
	border-radius: 8px;
	box-sizing: border-box;
	background: #FFF;
	overflow: hidden;
}

@media only screen and (max-width: 768px) {
	.footer__links_list {
		flex-direction: column;
	}
}

.footer__links_item {
	width: 25%;
	padding: 1.5rem 0;
	box-sizing: border-box;
	position: relative;
}

@media only screen and (max-width: 768px) {
	.footer__links_item {
		width: 100%;
	}
}

.footer__links_item::after {
	content: "";
	width: .5rem;
	height: .875rem;
	background: url("../img/parts/icon_arrow_red.svg") no-repeat;
	background-size: 100%;
	position: absolute;
	top: 50%;
	right: 1.5rem;
	transform: translateY(-50%);
}

.footer__links_item:nth-child(-n+3) {
	border-right: 2px solid #F22840;
}

@media only screen and (max-width: 768px) {
	.footer__links_item:nth-child(-n+3) {
		border-right: 0;
		border-bottom: 1px solid #F22840;
	}
}

.footer__links_link {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
}

.footer__links_main {
	margin: 0 auto .25rem;
	line-height: 1.4479167;
	font-size: 1.5rem;
	font-weight: 900;
	color: #F22840;
}

.footer__links_sub {
	margin: 0;
	line-height: 1.448334;
	font-size: .75rem;
	font-weight: 500;
	color: #000;
	text-align: center;
}

.footer__links_img {
	display: block;
	width: 9.3475rem;
	height: 2.90375rem;
	margin: 0 auto;
	background: url("../img/parts/logo_business.svg") 50% 50% no-repeat;
	background-size: 100%;
	text-indent: -99999px;
	overflow: hidden;
}

.footer__links_item {
	transition: .6s ease-out;
}

.footer__links_item:hover {
	background: #F22840;
}

.footer__links_item:hover::after {
	background: url("../img/parts/icon_arrow.svg") 50% 50% no-repeat;
	background-size: 100%;
}

.footer__links_item:hover .footer__links_main, .footer__links_item:hover .footer__links_sub {
	color: #FFF;
}

.footer__links_item:hover .footer__links_img {
	background: url("../img/parts/logo_business_hover.svg") 50% 50% no-repeat;
	background-size: 100%;
}

.footer__line {
	padding: 1.5rem 0;
	background: #F22840;
}

.footer__line_content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 77.5rem;
	width: 100%;
	margin: 0 auto;
	padding: 0 1.25rem;
	box-sizing: border-box;
}

@media only screen and (max-width: 768px) {
	.footer__line_content {
		flex-direction: column;
	}
}

@media only screen and (max-width: 768px) {
	.footer__copy {
		margin: 1.5rem auto 0;
		text-align: center;
		order: 2;
	}
}

.footer__copy_text {
	margin: 0;
	line-height: 1.3658334;
	font-size: .75rem;
	text-align: right;
	color: #FFF;
}

.footer__sns {
	margin: 0 0 .95875rem;
}

@media only screen and (max-width: 768px) {
	.footer__sns {
		order: 1;
	}
}

.footer__sns_list {
	display: flex;
	justify-content: flex-end;
}

@media only screen and (max-width: 768px) {
	.footer__sns_list {
		justify-content: center;
	}
}

.footer__sns_item {
	width: 2rem;
	height: 2rem;
	margin-left: 2rem;
}

@media only screen and (max-width: 768px) {
	.footer__sns_item {
		margin: 0 1rem;
	}
}

.footer__sns_link {
	display: block;
	width: 100%;
	height: 100%;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: 100%;
	transition: .6s ease-out;
}

.footer__sns_fb {
	background-image: url("../img/parts/icon_fb.svg");
}

.footer__sns_fb:hover {
	background-image: url("../img/parts/icon_fb_hover.svg");
}

.footer__sns_tw {
	background-image: url("../img/parts/icon_tw.svg");
}

.footer__sns_tw:hover {
	background-image: url("../img/parts/icon_tw_hover.svg");
}

.footer__sns_ig {
	background-image: url("../img/parts/icon_ig.svg");
}

.footer__sns_ig:hover {
	background-image: url("../img/parts/icon_ig_hover.svg");
}



@media only screen and (max-width: 768px) {
	.footer__logo {
		margin: 0 0 .9775rem;
	}
	.footer__sitemap_list {
		display: flex;
		flex-direction: column;
		margin: 0 0 .9775rem;
	}

	.footer__sitemap_list li {
		display:inline;
		list-style-type:none;
		margin-bottom: .9775rem;
	}
}

@media only screen and (min-width: 768px) {
	.footer__logo {
		margin: 0 10px 1.9175rem;
		width: 50%;
	}

	.footer__sitemap_list {
		text-align:center;
	}

	.footer__sitemap_list li {
		display:inline;
		list-style-type:none;
		margin-right:6px;
		padding-left:10px;
	}

	.footer__sitemap_list li+li {
		border-left:1px solid #FFF;
	}
}

.footer__sitemap_link {
	color: #FFF;
	margin: 0;
	line-height: 1.3658334;
	font-size: .75rem;
}

.footer__trademark_text {
	margin: 0 0 0.479375rem;
	line-height: 1.3658334;
	text-align: right;
	font-size: .75rem;
	color: #FFF;
}