@charset "UTF-8";

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans Semibold'), local('OpenSans-Semibold'), url(../font/MTP_ySUJH_bn48VBG8sNSqRDOzjiPcYnFooOUGCOsRk.woff) format('woff');
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: local('Open Sans Bold'), local('OpenSans-Bold'), url(../font/k3k702ZOKiLJc3WVjuplzKRDOzjiPcYnFooOUGCOsRk.woff) format('woff');
}

@font-face {
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 400;
    src: url(../font/NotoSansJP-Medium.woff2) format('woff2'),
        url(../font/NotoSansJP-Medium.woff) format('woff'),
        url(../font/NotoSansJP-Medium.otf) format('opentype');
    font-display: swap;
}

@font-face {
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 700;
    src: url(../font/NotoSansJP-Bold.woff2) format('woff2'),
        url(../font/NotoSansJP-Bold.woff) format('woff'),
        url(../font/NotoSansJP-Bold.otf) format('opentype');
    font-display: swap;
}

/*==============================
common
================================*/
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
::selection {
    background: #fff100;
}
::-moz-selection {
    background: #fff100;
}
html {
	font-size: 62.5%;
}
body {
	font-family: 'Open Sans', 'Noto Sans JP', "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
    font-size: 14px;
	font-size: 1.4rem;
	color: #333;
}
a {
	text-decoration: none;
	color: #333;
}
img {
	display: block;
    width: auto;
    height: auto;
	max-width: 100%;
	margin: auto;
	vertical-align: bottom;
}
input, button, textarea, select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}
article {
	margin-top: 100px;
	overflow: hidden;
}
ul {
	list-style: none;
}
table {
    width: 100%;
    border-collapse: collapse;
}
.cf:after {
    content:"";
    display:block;
    clear:both;
}
.center {
	text-align: center;
}
.left, .alignleft {
	float: left;
}
.alignleft {
    margin-right: 20px;
}
.right, .alignright {
	float: right;
}
.alignright {
    margin-left: 20px;
}
.pc {
	display: inherit;
}
.sp {
	display: none;
}
.inner {
	width: 1000px;
	margin: auto;
	padding: 0 20px;
}
.h2_ttl {
	margin-bottom: 10px;
	text-align: center;
	font-size: 3.6rem;
	text-indent: .1em;
	letter-spacing: .1em;
    line-height: 1.5;
}
.h2_ttl_sub {
	margin-bottom: 40px;
	text-align: center;
	font-weight: bold;
	text-indent: .1em;
	letter-spacing: .1em;
    line-height: 1.5;
	color: #2e3192;
}
.blue_ttl {
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.5;
    color: #2e3192;
}
.red {
	color: #f21c1e;
}
.blue {
    color: #2e3192;
}
.text {
    line-height: 2;
}
.text a {
    text-decoration: underline;
    color: #02aef0;
}
.text a:hover {
    text-decoration: none;
}
.text_right {
    text-align: right;
}
.section {
    padding: 40px 0;
}
.section.gray {
    background: #f6f6f8;
}
.half_box {
    width: 49%;
}
.caution {
    font-size: 1.2rem;
}

/*==============================
header
================================*/
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100px;
	background: rgba(255,255,255,1);
	border-bottom: 1px solid #dfdfdf;
	z-index: 1000;
	-webkit-transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
	transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
header.change {
	height: 80px;
}
.header_logo {
	display: block;
	float: left;
	margin: 32px 0;
	-webkit-transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
	transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.header_logo img {
    width: 205px;
}
header.change .header_logo {
	margin: 21px 0;
}
.header_sns {/*20190603*/
	display: block;
	float: left;
	margin: 32px 0px 32px 32px;
    font-size: 30px;
	-webkit-transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
	transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.header_nav {
	float: right;
}
.header_nav li {
	float: left;
}
.header_nav_sns{
    float: right;
    font-size: 25px;
    margin: 10px 25px 10px 5px;
}
.header_nav_sns:hover {
	opacity: .5;
}
.header_nav li a {
	position: relative;
	display: block;
	font-weight: bold;
	padding: 20px 10px 10px 10px;
	-webkit-transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
	transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.header_nav li a:hover {
	color: #2e3192;
    background: #fff100;
}

header.change .header_nav li a {
	padding: 8px 10px 8px 10px;
}
header.change .header_nav_sns {
	margin: 2px 25px 2px 5px;
}
/*==============================
top
================================*/
#slider {
	position: relative;
}
.slick-dotted.slick-slider {
	margin-bottom: 0;
}
.slick-dots {
    z-index: 10;
}
.slick-dots li button:before {
    font-size: 1.6rem;
	color: #333;
}
.slick-dots li.slick-active button:before {
	opacity: 1;
    color: #2e3192;
}
#arrow {
	position: absolute;
	width: 1000px;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
    pointer-events: none;
}
.slick-next, .slick-prev {
	width: 50px;
    height: 50px;
    pointer-events: all;
}
.slick-next {
    right: -5px;
}
.slick-prev {
    left: -5px;
}

.slick-next:before, .slick-prev:before {
	content: "";
	position: absolute;
	width: 50px;
	height: 50px;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	font-size: 0px;
	color: #333;
	background: #fff;
	border-radius: 50%;
}
.slick-next:after, .slick-prev:after {
	content: "";
	position: absolute;
	width: 12px;
	height: 12px;
	top: 0;
	bottom: 0;
	margin: auto;
	border-top: 2px solid #333;
	border-right: 2px solid #333;
}
.slick-next:after {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	right: 20px;
}
.slick-prev:after {
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
	left: 20px;
}
#top_cat {
	padding: 80px 0;
}
.top_cat_lst {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	margin: auto;
}
.top_cat_lst a {
	position: relative;
	display: block;
    max-width: 49%;
	background: #000;
	overflow: hidden;
}
.top_cat_lst a img {
	-webkit-transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
	transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.top_cat_lst a:hover img {
	opacity: .8;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.top_cat_ttl {
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 15px 15px 15px 30px;
	font-size: 1.4rem;
	font-weight: normal;
	color: #fff;
	background: rgba(46,49,146,.8);
}
.top_cat_ttl::after {
	content: "";
	position: absolute;
	width: 6px;
	height: 6px;
	top: 0;
	bottom: 0;
	left: 10px;
	margin: auto;
	border-top: 2px solid #fff100;
	border-right: 2px solid #fff100;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
	transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.top_cat_lst a:hover .top_cat_ttl::after {
	left: 15px;
}
#top_cam {
	padding: 80px 0;
	background: #f6f6f8;
	border-top: 1px solid #dfdfdf;
	border-bottom: 1px solid #dfdfdf;
}
.top_cam_lst {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	margin-bottom: 60px;
}
.top_cam_lst li {
	width: 220px;
}
.top_cam_lst li a {
	position: relative;
    display: block;
    background: #000;
    overflow: hidden;
}
.top_cam_lst li a img {
	-webkit-transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
	transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.top_cam_lst li a:hover img {
	opacity: .8;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.top_cam_ttl {
	position: relative;
	margin: 20px auto 40px;
	text-align: center;
	font-size: 1.8rem;
	font-weight: bold;
    line-height: 1.5;
}
.top_cam_ttl::after {
	content: "";
	position: absolute;
	width: 40px;
	height: 2px;
	left: 0;
	right: 0;
	bottom: -20px;
	margin: auto;
	background: #fff100;
}
.top_cam_txt {
    text-align: center;
	line-height: 1.5;
}
.top_cam_btn {
	position: relative;
	display: inline-block;
	padding: 0 100px;
	font-weight: bold;
	text-indent: .1em;
	letter-spacing: .1em;
	line-height: 36px;
	background: #fff100;
	border: 2px solid #fff100;
	border-radius: 20px;
	-webkit-transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
	transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.top_cam_btn::after {
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	top: 0;
	bottom: 0;
	right: 20px;
	margin: auto;
	border-top: 2px solid #333;
	border-right: 2px solid #333;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
	transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.top_cam_btn:hover {
	background: rgba(255,241,0,0);
	border: 2px solid #333;
}
.top_cam_btn:hover::after {
	right: 15px;
}

#top_pro {
	padding: 80px 0;
}
.top_pro_lst {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.top_pro_lst li {
	width: 300px;
}
.top_pro_lst li .top_pro_box {
	position: relative;
    display: block;
    background: #000;
    overflow: hidden;
}
.top_pro_lst li a img {
	-webkit-transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
	transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.top_pro_lst li a:hover img {
	opacity: .8;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}
.top_pro_ttl {
	margin-top: 15px;
	padding-left: 10px;
	font-size: 1.8rem;
	line-height: 1.5;
	border-left: 4px solid #fff100;
}
.top_pro_ttl span {
	display: block;
	font-size: 1.4rem;
}

#top_info {
	position: relative;
	padding: 72px 0 60px;
	color: #fff;
	background: #02aef0;
}
#top_info .h2_ttl_sub {
	position: absolute;
	top: 20px;
	left: 0;
	right: 0;
	margin: auto;
	font-size: 13.2rem;
	line-height: 1;
	text-indent: 0;
    letter-spacing: 0;
	color: rgba(255,255,255,.1);
	pointer-events: none;
}
.top_info_tbl {
	margin: 80px auto 20px;
}
.top_info_tbl.info_tbl {
    margin: auto;
}
.top_info_tbl a {
	color: #fff;
}
.top_info_tbl.info_tbl a {
    color: #02aef0;
}
.top_info_tbl th, .top_info_tbl td {
	padding: 20px 0;
	border-top: 2px solid rgba(255,255,255,.5);
}
.top_info_tbl.info_tbl th, .top_info_tbl.info_tbl td {
	border-top: 2px solid #dfdfdf;
}
.top_info_tbl tr:last-child th, .top_info_tbl tr:last-child td {
	border-bottom: 2px solid rgba(255,255,255,.5);
}
.top_info_tbl.info_tbl tr:last-child th, .top_info_tbl.info_tbl tr:last-child td {
	border-bottom: 2px solid #dfdfdf;
}

.top_info_tbl td {
	padding-right: 20px;
}
.top_info_tbl .date {
    width: 120px;
	font-size: 1.8rem;
	font-weight: bold;
}
.top_info_tbl .cat {
   /* width: 110px; */
     width: 130px;
}
.top_info_tbl .cat a {
	display: inline-block;
	padding: 3px 10px;
	font-size: 1.2rem;
	border: 2px solid #fff;
	border-radius: 5px;
	-webkit-transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
	transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.top_info_tbl.info_tbl .cat a  {
    border: 2px solid #02aef0;
}
.top_info_tbl .cat a:hover {
	color: #02aef0;
	background: #fff;
}
.top_info_tbl.info_tbl .cat a:hover {
	color: #fff;
	background: #02aef0;
}
.top_info_tbl .info_ttl a {
    font-weight: bold;
	line-height: 1.5;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(0, #fff100));
    background-image: linear-gradient(180deg, transparent 80%, #fff100 0);
    background-size: 0 100%;
    background-repeat: no-repeat;
    -webkit-transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
	transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.top_info_tbl .info_ttl a:hover {
	background-size: 100% 100%;
}
.top_info_tbl .new a {
	color: #fff100;
}
.top_info_tbl.info_tbl .new a {
    color: #02aef0;
}
.top_info_btn {
	text-align: right;
}
.top_info_btn a {
	position: relative;
	display: inline-block;
	padding: 0 50px;
	font-weight: bold;
	text-indent: .1em;
	letter-spacing: .1em;
	line-height: 36px;
	color: #02aef0;
	background: #fff;
	border: 2px solid #fff;
	border-radius: 20px;
	-webkit-transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
	transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.top_info_btn a:hover {
	color: #fff;
	background: #02aef0;
}

/*==============================
page
================================*/
#page_header {
    padding: 40px 0;
    color: #fff;
    background: #2e3192;
}
.page_ttl {
    margin: auto;
	margin-bottom: 10px;
	text-align: center;
	font-size: 3.6rem;
	text-indent: .1em;
	letter-spacing: .1em;
    line-height: 1.5;
}
.page_ttl_sub {
	text-align: center;
	font-weight: bold;
	text-indent: .1em;
	letter-spacing: .1em;
    line-height: 1.5;
	color: #fff;
}
.page_h2 {
    margin-bottom: 40px;
    padding: 15px;
    font-size: 1.8rem;
    line-height: 1.5;
    background: #f6f6f8;
    border-left: 15px solid #02aef0;
}
.page_h3 {
    margin-bottom: 20px;
    padding-left: 10px;
    font-size: 1.8rem;
    line-height: 1.5;
    border-left: 5px solid #2e3192;
}
#breadcrumbs {
    padding: 10px 0;
}
#content {
	padding: 40px 0;
}
.page_box {
    margin-bottom: 80px;
}
.page_txt_box {
    margin-bottom: 40px;
}
.page_lst {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.page_lst::before{
	content: "";
	display: block;
	width: 315px;
	order: 1;
}
.page_lst a {
    display: block;
    position: relative;
    width: 315px;
    margin-bottom: 30px;
    padding: 13px 20px 13px 32px;
    line-height: 1.5;
    color: #2e3192;
    background: #fff;
    border: 2px solid #2e3192;
    -webkit-transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
	transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.page_lst a:hover {
    color: #fff;
    background: #2e3192;
}
.page_lst a::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    top: 0;
    bottom: 0;
    left: 10px;
    margin: auto;
    border-top: 2px solid #2e3192;
    border-right: 2px solid #2e3192;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.page_lst a:hover::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}
.page_tbl {
    margin-bottom: 60px;
}
.page_tbl th, .page_tbl td {
    padding: 15px;
    line-height: 1.5;
}
.page_tbl tr:not(:last-child) th, .page_tbl tr:not(:last-child) td {
    border-bottom: 2px solid #dfdfdf;
}
.page_tbl tr th.nobdr, .page_tbl tr td.nobdr {
    border-bottom: 0 solid #dfdfdf;
}
.page_tbl th {
    width: 130px;
    text-align: left;
    background: #e5f7fd;
}
.page_tbl th a {
/*    text-decoration: underline;　*/
    background-image: linear-gradient(180deg, transparent 80%, #fff100 0);
    background-size: 0 100%;
    background-repeat: no-repeat;

}
.page_tbl th a:hover {
/*    text-decoration: none;*/
    background-size: 100% 100%;
}
.page_tbl td {
    background: #fff;
}
.blue_box {
    padding: 20px;
    background: #e5f7fd;
}
.gray_box {
    padding: 20px;
    background: #f6f6f8;
}
.wp-pagenavi {
    margin-top: 20px;
}
.wp-pagenavi a, .wp-pagenavi span {
    display: inline-block;
    border: 1px solid #dfdfdf !important;
    padding: 10px 15px !important;
    margin: 5px !important;
    background: #f6f6f8 !important;
	-webkit-transition: .2s ease;
	transition: .2s ease;
}
.wp-pagenavi a:hover, .wp-pagenavi span.current {
	color: #fff !important;
	background: #02aef0 !important;
	border: 1px solid #02aef0 !important;
}
/*==============================
products
================================*/
.lens_box {
    overflow: hidden;
    padding: 20px 18px;
    background: #f6f6f8;
    border: 1px solid #dfdfdf;
}
.lens_box_ttl {
    display: block;
    position: relative;
    width: 100%;
    padding: 13px 20px 13px 32px;
    text-align: center;
    line-height: 1.5;
    color: #fff;
    background: #2e3192;
}
.lens_lnk {
    display: block;
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    padding: 13px 20px 13px 32px;
    line-height: 1.5;
    color: #fff;
    background: #2e3192;
    border: 2px solid #2e3192;
    -webkit-transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
	transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.lens_lnk:hover {
    color: #2e3192;
    background: #fff;
}
.lens_lnk::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    top: 0;
    bottom: 0;
    left: 10px;
    margin: auto;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.lens_lnk:hover::after {
    border-top: 2px solid #2e3192;
    border-right: 2px solid #2e3192;
}
/*大村20190426*/
.lens_lnk_img a:hover img{
    opacity: .5;
}
.lens_sub_ttl {
	position: relative;
	margin: 20px 30xp 10px;
	text-align: left;
	font-size: 1.8rem;
	font-weight: bold;
    line-height: 1.5;
}
.lohas_logo {
    display: inline-block;
    margin-right: 20px;
    vertical-align: middle;
}
.lohas_txt {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.8rem;
}
.lohas_lst {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.lohas_lst li {
    width: 170px;
    margin-bottom: 20px;
}
.lohas_lst_ttl {
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 2;
}
.lohas_lst_img {
    margin-bottom: 10px;
}
.lohas_lst_bdr {
    width: 40px;
    height: 2px;
    margin: 20px auto;
    background: #2e3192;
}
.lohas_lst_txt {
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.5;
}
.lohas_right {
    width: 780px;
}
.seemax_lst {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.seemax_lst li {
    margin: 5px;
}
.frame_img {
    display: block;
    margin-bottom: 20px;
    border: 1px solid #c9c9c9;
}
.frame_lst {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.frame_lst::before{
	content: "";
	display: block;
	width: 216px;
	order: 1;
}
.frame_lst::after{
	content: "";
	display: block;
	width: 216px;
}
.frame_lst a {
    width: 216px;
    margin-bottom: 40px;
    -webkit-transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.frame_lst a .frame_lst_ttl {
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(0, #fff100));
    background-image: linear-gradient(180deg, transparent 80%, #fff100 0);
    background-size: 0 100%;
    background-repeat: no-repeat;
    -webkit-transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.frame_lst a:hover .frame_lst_ttl {
    background-size: 100% 100%;
}
.frame_lst .frame_img {
    overflow: hidden;
    background: #fff;
    -webkit-transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.frame_lst a:hover .frame_img {
    background: #000;
}
.frame_lst a .frame_img img {
    -webkit-transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.frame_lst a:hover .frame_img img {
    opacity: .8;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.frame_lst_ttl {
    font-size: 1.8rem;
    font-weight: bold;
}
.brand_ttl {
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-weight: bold;
}
.frame_cat_lst {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.frame_cat_lst::before {
	content: "";
	display: block;
	width: 300px;
	order: 1;
}
.frame_cat_lst li {
    width: 300px;
}
.frame_cat_lst li a {
    display: block;
    position: relative;
    width: 300px;
    margin-bottom: 30px;
    padding: 13px 20px 13px 32px;
    line-height: 1.5;
    color: #02aef0;
    background: #fff;
    border: 2px solid #02aef0;
    -webkit-transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
	transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.frame_cat_lst li a:hover {
    color: #fff;
    background: #02aef0;
}
.frame_cat_lst li a::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    top: 0;
    bottom: 0;
    left: 10px;
    margin: auto;
    border-top: 2px solid #02aef0;
    border-right: 2px solid #02aef0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.frame_cat_lst li a:hover::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}
.frame_cat_lst.brandset li {
    width: 100%;
}
.frame_cat_lst.brandset li a {
    width: 100%;
    color: #fff;
    background: #2e3192;
    border: 2px solid #2e3192;
}
.frame_cat_lst.brandset li a::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}
.frame_cat_lst.brandset li a:hover {
    color: #2e3192;
    background: #fff;
}
.frame_cat_lst.brandset li a:hover::after {
    border-top: 2px solid #2e3192;
    border-right: 2px solid #2e3192;
}
.frame_row_ttl {
    margin-bottom: 30px;
    padding: 13px 20px 13px 32px;
    font-weight: bold;
    line-height: 1.5;
    background: #eaeaea;
}
.repair_tbl {
    margin-bottom: 20px;
    line-height: 1.5;
}
.repair_tbl th, .repair_tbl td {
    padding: 10px;
}
.repair_tbl th {
    font-size: 1.8rem;
}
.repair_tbl_prc {
    font-size: 2.8rem;
    font-weight: bold;
}
.repair_tbl_tri {
    position: relative;
    display: block;
    width: 20px;
    height: 34px;
}
.repair_tbl_tri::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 17px 0 17px 20px;
    border-color: transparent transparent transparent #333333;
}
.repair_tbl_bdr {
    margin: 20px 0;
    border-bottom: 2px dotted #333;
}

/*==============================
cl
================================*/
.lineup_left {
    float: left;
}
.lineup_right {
    float: right;
}
.lineup_img {
    margin-bottom: 10px;
}
.lineup_tbl {
    margin-bottom: 40px;
    line-height: 2;
}
.lineup_tbl th, .lineup_tbl td {
    padding: 15px 20px;
    border: 1px solid #c9c9c9;
}
.lineup_tbl th {
    text-align: left;
    background: #f6f6f8;
}
.lineup_tbl_img {
    width: 220px;
}
.care_lst {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.care_lst li {
    width: 220px;
    margin: 0 20px 20px;
}
.recommend_img {
    width: 22%;
}
.recommend_txt {
    width: 76%;
}

/*==============================
ha
================================*/
.flow_box {
    position: relative;
    background: #f6f6f8;
    border: 1px solid #dcdcdc;
}
.flow_box_stp {
    position: absolute;
    width: 80px;
    height: 100%;
    top: 0;
    bottom: 0;
    margin: auto;
    margin-right: 40px;
    color: #fff100;
    background: #02aef0;
}
.flow_box_stp.yrw {
    color: #02aef0;
    background: #fff100;
}
.flow_box_stp::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: -30px;
    width: 30px;
    height: 100%;
    background: linear-gradient(to bottom left, rgba(255,255,255,0) 50%, #02aef0 50.5%) no-repeat top left/100% 50%, linear-gradient(to top left, rgba(255,255,255,0) 50%, #02aef0 50.5%) no-repeat bottom right/100% 50%;
}
.flow_box_stp.yrw::after {
    background: linear-gradient(to bottom left, rgba(255,255,255,0) 50%, #fff100 50.5%) no-repeat top left/100% 50%, linear-gradient(to top left, rgba(255,255,255,0) 50%, #fff100 50.5%) no-repeat bottom right/100% 50%;
}
.flow_box_stp span {
    position: absolute;
    width: 40px;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    transform: translateY(-50%);
}
.flow_box_txt {
    margin-left: 110px;
    padding: 20px;
}
.flow_arw {
    width: 16px;
    height: 16px;
    margin: 15px auto 20px 30px;
    border-top: 2px solid #2e3192;
    border-right: 2px solid #2e3192;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}
.flow_lst {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.flow_lst .flow_box {
    width: 450px;
}
.flow_lst_txt {
    position: relative;
}
.flow_lst_txt span {
    position: absolute;
    width: 44px;
    top: 50%;
    left: -22px;
    margin: auto;
    transform: translateY(-50%);
}
.signia_ttl {
    margin: -10px auto 10px;
    text-align: center;
    font-size: 1.8rem;
}
.signia_lst {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.signia_lst li {
	width: 300px;
    margin-bottom: 20px;
}
.signia_lst li .signia_box {
	position: relative;
    display: block;
    background: #000;
    overflow: hidden;
}
.signia_lst_ttl {
	margin-top: 15px;
    margin-bottom: 10px;
	padding-left: 10px;
	font-size: 1.8rem;
	line-height: 1.5;
	border-left: 4px solid #fff100;
}
.signia_lst_ttl span {
	display: block;
	font-size: 1.4rem;
}
.orange_ttl {
    position: relative;
}
.orange_lst {
    margin-bottom: 20px;
    line-height: 2;
}
.orange_lst li {
    position: relative;
    padding: 15px 20px;
    font-weight: bold;
}
.orange_lst li:nth-of-type(2n+1) {
    background: #e5f7fd;
}
.orange_lst li::after {
    content: "";
    position: absolute;
    left: 15px;
    top: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 8px 0 8px;
    border-color: #e5f7fd transparent transparent transparent;
}
.orange_lst li:nth-of-type(2n+1)::after {
    left: 90px;
    border-color: #fff transparent transparent transparent;
}
.orange_lst li:nth-of-type(1)::after {
    display: none;
}
.orange_bdr {
    margin: 40px auto;
    height: 2px;
    background: #dfdfdf;
}
.orange_box {
    position: relative;
}
.orange_box_img01 {
    position: absolute;
    bottom: -30px;
    right: 120px;
}
.orange_box_img02 {
    position: absolute;
    bottom: 0;
    right: 80px;
}

/*==============================
faq
================================*/
.faq_ttl {
    margin-bottom: 50px;
    font-size: 3.4rem;
}
.faq_q, .faq_a {
	padding: 20px 10px;
}
.faq_q {
	position: relative;
    margin-bottom: 10px;
	font-size: 1.6rem;
	font-weight: bold;
	background: #e5f7fd;
	cursor: pointer;
}
.faq_q::before {
	content: "";
	position: absolute;
	width: 6px;
	height: 24px;
	top: 0;
	bottom: 0;
	right: 39px;
	margin: auto;
	font-weight: bold;
	background: #02aef0;
}
.faq_q.active::before {
	display: none;
}
.faq_q::after {
	content: "";
	position: absolute;
	width: 24px;
	height: 6px;
	top: 0;
	bottom: 0;
	right: 30px;
	margin: auto;
	font-weight: bold;
	background: #02aef0;
}
.faq_a {
	padding: 10px 10px 40px;
}
.faq_a:not(:last-child) {
	margin-bottom: 20px;
}
.faq_q span, .faq_a span {
	display: inline-block;
}
.faq_q .qa, .faq_a .qa {
	width: 40px;
	height: 40px;
	margin-right: 10px;
	text-align: center;
	font-size: 2rem;
	font-weight: bold;
	vertical-align: top;
	line-height: 40px;
    border-radius: 50%;
}
.faq_q .qa {
	vertical-align: middle;
	color: #02aef0;
    background: #fff;
}
.faq_a .qa {
    color: #fff;
    background: #02aef0;
}
.faq_a .qa.false {
    position: relative;
    background: none;
}
.faq_a .qa.false::before, .faq_a .qa.false::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 40px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: #02aef0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.faq_a .qa.false::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.faq_a .qa.true {
    background: #fff;
    border: 6px solid #02aef0;
}
.faq_txt {
	max-width: calc(100% - 50px);
	line-height: 2;
	vertical-align: middle;
}
.faq_txt a {
	text-decoration: underline;
	color: #02aef0;
}
.faq_txt a:hover {
	text-decoration: none;
}

/*==============================
about
================================*/
.about_img {
    width: 300px;
    margin-bottom: 40px;
}
.about_txt {
    width: 620px;
    margin-bottom: 40px;
}
.ecology_lst {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.ecology_lst::before{
	content: "";
	display: block;
	width: 300px;
	order: 1;
}
.ecology_lst a {
    display: block;
    position: relative;
    width: 300px;
    margin-bottom: 30px;
    -webkit-transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
	transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.ecology_lst a:hover {
    opacity: .5;
}

/*==============================
shop
================================*/
#map {
	width: 100%;
	height: 800px;
}
#content.shop_content {
    padding: 40px 0 0;
}
.shop_img {
    width: 480px;
    margin: auto;
    margin-bottom: 40px;
}
.shop_ttl {
    position: relative;
    margin-bottom: 100px;
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.5;
}
.shop_ttl::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    left: 0;
    right: 0;
    bottom: -20px;
    margin: auto;
    background: #fff100;
}

input[name="tab_item"] {
	display: none;
}
.tab_content {
	display: none;
	clear: both;
	overflow: hidden;
}
#map_tab:checked ~ #map_content, #list_tab:checked ~ #list_content {
	display: block;
}
.map_item, .list_item {
    display: block;
    float: left;
	width: 50%;
    height: 50px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
    line-height: 50px;
    color: #02aef0;
    background: #fff;
    cursor: pointer;
    -webkit-transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
	transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.map_item:hover, .list_item:hover {
    opacity: .5;
}
#map_tab:checked ~ .map_item {
    color: #fff;
    background: #02aef0;
}
.list_item {
    float: right;
}
#list_tab:checked ~ .list_item {
    color: #fff;
    background: #02aef0;
}


.shop_box {
    padding: 20px 30px;
    background: #f6f6f8;
}
.shop_box_ttl {
    padding: 10px;
    font-size: 1.4rem;
    line-height: 1.5;
    color: #fff;
    background: #2e3192;
}
.shop_box_lst {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.shop_box_lst a {
    position: relative;
    width: 166px;
    height: 50px;
    margin: 5px;
    text-align: center;
    line-height: 46px;
    color: #02aef0;
    background: #fff;
    border: 2px solid #02aef0;
    -webkit-transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.shop_box_lst a::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    top: 0;
    bottom: 0;
    left: 10px;
    margin: auto;
    border-top: 2px solid #02aef0;
    border-right: 2px solid #02aef0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.shop_box_lst a:hover {
    color: #fff;
    background: #02aef0;
}
.shop_box_lst a:hover::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}
.shop_tag_p, .shop_tag_ha, .shop_tag_cl {
    display: inline-block;
    margin-right: 4px;
    padding: 0 4px;
    font-size: 1.2rem;
}
.shop_tag_p {
    color: #fff;
    background: #f21c1e;
}
.shop_tag_ha {
    background: #fff100;
}
.shop_tag_cl {
    color: #fff;
    background: #02aef0;
}
.page_tbl.shop_tbl_ttls {
    margin-bottom: 0;
}
.page_tbl th.shop_tbl_ttl {
    text-align: center;
    color: #fff;
    background: #02aef0;
}
.page_tbl th.shop_tbl_ttl:not(:last-child) {
    border-right: 2px solid #fff;
}
.page_tbl th.shop_tbl_ttl.add {
    width: 495px;
}
.page_tbl th.shop_tbl_ttl.other {
    width: auto;
}
.page_tbl th.shop_tbl_tel {
    text-align: center;
}
.page_tbl_tel span {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 2px 5px;
    background: #fff100;
}
.page_tbl_add br {
    display: none;
}
.shop_msg_box {
    margin-bottom: 40px;
    padding: 25px 40px;
    background: #f6f6f8;
}
.shop_msg_img, .shop_msg_txt {
    display: inline-block;
    vertical-align: middle;
}
.shop_msg_img {
    max-width: 120px;
    margin-right: 30px;
}
.shop_msg_txt {
    max-width: 720px;
}
.shop_map_box {
    line-height: 0;
}
.shop_map_box iframe, .shop_map_box .shop_iframe {
    width: 100%;
    height: 420px;
}

/*==============================
coupon
================================*/
.coupon_btn {
    font-weight: bold;
    color: #02aef0;
    text-decoration: underline;
    cursor: pointer;
}
.coupon_btn:hover {
    text-decoration: none;
}

/*==============================
customer
================================*/
.customer_lst {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	margin: auto;
}
.customer_lst::after{
	content: "";
	display: block;
	width: 300px;
}
.customer_lst a {
	position: relative;
	display: block;
    width: 200px;
    height: 200px;
    margin-bottom: 20px;
	background: #FFF;
	overflow: hidden;
}
.customer_lst a img {
    width: 200px;
    height: 200px;
    object-fit: cover;
	font-family: 'object-fit: cover;';
	-webkit-transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
	transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.customer_lst a:hover img {
	opacity: .8;
	-webkit-transform: scale(1.1);
}

/*==============================
column
================================*/
.column_lst {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
}
.column_lst li {
    width: 220px;
    margin: 0 10px 20px;
}
.column_date {
    display: inline-block;
    margin: 20px auto 10px;
    font-size: 1.6rem;
    font-weight: bold;
    padding: 4px 16px;
    color: #fff;
    background: #02aef0;
}
.column_ttl span {
    font-weight: bold;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(0, #fff100));
    background-image: linear-gradient(180deg, transparent 80%, #fff100 0);
    background-size: 0 100%;
    background-repeat: no-repeat;
    -webkit-transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.column_lst li a:hover .column_ttl span {
    background-size: 100% 100%;
}

/*==============================
footer
================================*/
#footer_bnr {
	padding: 10px 0;
	background: #fff100;
}
.footer_bnr_lst {
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.footer_bnr_lst a img {
	-webkit-transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
	transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.footer_bnr_lst a:hover img {
	opacity: .5;
}
#footer_box {
	padding: 20px 0 60px;
	background: #f6f6f8;
}
#footer_box a {
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(0, #fff100));
    background-image: linear-gradient(180deg, transparent 80%, #fff100 0);
    background-size: 0 100%;
    background-repeat: no-repeat;
    -webkit-transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
	transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
#footer_box a:hover {
	background-size: 100% 100%;
}
.footer_blk {
	float: left;
	width: 25%;
}
.footer_blk_lrg {
	float: left;
	width: 50%;
}
.footer_lst_ttl {
	margin: 40px 0 20px;
	padding-left: 10px;
	font-size: 1.8rem;
	font-weight: bold;
    line-height: 1.5;
	border-left: 5px solid #2e3192;
}
.footer_lst li {
	margin-bottom: 10px;
    line-height: 1.5;
}
.footer_lst {
    margin-bottom: 20px;
}
.footer_lst .parent {
    position: relative;
    padding-left: 14px;
    font-weight: bold;
}
.footer_lst .parent::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    border-top: 2px solid #02aef0;
    border-right: 2px solid #02aef0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.footer_lst .child {
    position: relative;
    padding-left: 26px;
}
.footer_lst .child::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    top: 4px;
    left: 14px;
    margin: auto;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
#copy {
	padding: 10px 0;
	color: #fff;
	background: #333;
}
.footer_logo {
	display: inline-block;
}
.footer_logo img {
    width: 150px;
}
.footer_sns {
	display: inline-block;
	margin-right: 10px;
	font-size: 3rem;
	vertical-align: middle;
	line-height: 1;
	color: #fff;
	-webkit-transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
	transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.footer_sns:hover {
	opacity: .5;
}
.copy {
	display: inline-block;
	font-size: 1.2rem;
}

/*============================================================
pagetop
==============================================================*/
.pagetop a {
	position: fixed;
	display: block;
	width: 60px;
	height: 60px;
	bottom: 60px;
	right: 20px;
	background: #2e3192;
	border-radius: 50%;
	border: 2px solid #2e3192;
	-webkit-transition: .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
	transition: .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
	z-index: 10;
	opacity: 0;
}
.pagetop.opacity a {
	opacity: 1;
}
.pagetop a:hover {
	background: #fff;
}
.pagetop a::after {
	content: "";
	position: absolute;
	width: 20px;
	height: 20px;
	top: 10px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
	transition: .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.pagetop a:hover::after {
	border-top: 2px solid #2e3192;
	border-right: 2px solid #2e3192;
}
/*20190705*/
    .order {
        display: block;
        position: fixed;
        left: 0px;
        bottom: 0px;
        z-index: 99;
    }
    .order img {
	    width: 100%;
	
    }

/* 点滅 */  
    .blinking{ 
    -webkit-animation:blink 2.0s ease-out alternate; 
    -moz-animation:blink 2.0s ease-out alternate; 
    animation:blink 2.0s ease-out alternate;
     
}
@-webkit-keyframes blink{ 
    0% {opacity:0;left: -250px;} 
    100% {opacity:1;left: 0px;} 
} 
@-moz-keyframes blink{ 
    0% {opacity:0;left: -250px;} 
    100% {opacity:1;left: 0px;} 
} 
@keyframes blink{ 
    0% {opacity:0;left: -250px;} 
    100% {opacity:1;left: 0px;} 
}
/*20201105　追加*/
#x {
    position: absolute;
    /*background: white;*/
    background-color: rgba(46, 46, 46, 0.0);
    color: white;
    top: -10px;
    right: -10px;
} 
.is-hidden{
        visibility: hidden;
      }
/*==============================
breakpoint 768px
================================*/
@media screen and (max-width: 768px) {
	.pc {
		display: none;
	}
	.sp {
		display: inherit;
	}
	.left, .right {
		float: none;
	}
	.inner {
		width: 94%;
		margin: auto;
		padding: 0;
	}
	.h2_ttl {
		font-size: 2.4rem;
	}
	.h2_ttl_sub {
		font-size: 1.2rem;
	}
    .page_h3 {
        margin-bottom: 10px;
    }
	header, header.change {
		height: 50px;
		background: rgba(255,255,255,1);
	}
	.header_logo, header.change .header_logo {
		margin: 6px 0;
	}
    .header_nav_sns, header.change .header_nav_sns {
		margin: 10px 40px 0px -15px;
	}
	.sp_btn {
		position: absolute;
		width: 30px;
		height: 22px;
		top: 0;
		bottom: 0;
		margin: auto;
		right: 10px;
		-webkit-transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
		transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
	}
	.sp_btn span {
		position: absolute;
		width: 100%;
		height: 4px;
		left: 0;
		margin: auto;
		background: #333;
		-webkit-transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
		transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
	}
	.sp_btn span:nth-of-type(1) {
		top: -1px;
		-webkit-animation: menu-bar01 .25s cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
		animation: menu-bar01 .25s cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
	}
	.sp_btn span:nth-of-type(2) {
		top: 9px;
		transition: all .25s 0s;
		opacity: 1;
	}
	.sp_btn span:nth-of-type(3) {
        bottom: -1px;
		-webkit-animation: menu-bar02 .25s cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
		animation: menu-bar02 .25s cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
    }
    
	@-webkit-keyframes menu-bar01 {
		0% {			-webkit-transform: translateY(10px) rotate(45deg);
		}
		50% {
			-webkit-transform: translateY(10px) rotate(0);
		}
		100% {
			-webkit-transform: translateY(0) rotate(0);
		}
	}
	@keyframes menu-bar01 {
		0% {
			transform: translateY(10px) rotate(45deg);
		}
		50% {
			transform: translateY(10px) rotate(0);
		}
		100% {
			transform: translateY(0) rotate(0);
		}
	}
	@-webkit-keyframes menu-bar02 {
		0% {
			-webkit-transform: translateY(-10px) rotate(-45deg);
		}
  		50% {
			-webkit-transform: translateY(-10px) rotate(0);
		}
		100% {
			-webkit-transform: translateY(0) rotate(0);
		}
	}
	@keyframes menu-bar02 {
		0% {
			transform: translateY(-10px) rotate(-45deg);
		}
		50% {
			transform: translateY(-10px) rotate(0);
		}
		100% {
			transform: translateY(0) rotate(0);
		}
	}
	.active .sp_btn span:nth-of-type(1) {
		-webkit-animation: active-menu-bar01 .25s cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
		animation: active-menu-bar01 .25s cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
	}
	@-webkit-keyframes active-menu-bar01 {
		0% {
			-webkit-transform: translateY(0) rotate(0);
		}
		50% {
			-webkit-transform: translateY(10px) rotate(0);
		}
		100% {
			-webkit-transform: translateY(10px) rotate(45deg);
		}
	}
	@keyframes active-menu-bar01 {
		0% {
			transform: translateY(0) rotate(0);
		}
		50% {
			transform: translateY(10px) rotate(0);
		}
		100% {
			transform: translateY(10px) rotate(45deg);
		}
	}
	.active .sp_btn span:nth-of-type(2) {
		opacity: 0;
	}
	.active .sp_btn span:nth-of-type(3) {
		-webkit-animation: active-menu-bar03 .25s cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
		animation: active-menu-bar03 .25s cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
	}
	@-webkit-keyframes active-menu-bar03 {
		0% {
			-webkit-transform: translateY(0) rotate(0);
		}
		50% {
			-webkit-transform: translateY(-10px) rotate(0);
		}
		100% {
			-webkit-transform: translateY(-10px) rotate(-45deg);
		}
	}
	@keyframes active-menu-bar03 {
		0% {
			transform: translateY(0) rotate(0);
		}
		50% {
			transform: translateY(-10px) rotate(0);
		}
		100% {
			transform: translateY(-10px) rotate(-45deg);
		}
	}
	.sp_menu {
		position: fixed;
		width: 100%;
		height: calc(100% - 50px);
		top: 50px;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
		background: #2e3192;
		opacity: 0;
		pointer-events: none;
		-webkit-transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
		transition: all .25s cubic-bezier(0.455, 0.03, 0.515, 0.955);
	}
	.active .sp_menu {
		opacity: 1;
		pointer-events: all;
	}
	.sp_menu_lst li a {
		display: block;
		padding: 20px;
		border-bottom: 1px solid rgba(255,255,255,.2);
		color: #fff;
	}
	.sp_menu_sns {
		margin-top: 20px;
		text-align: center;
	}
	.sp_menu_sns a {
		display: inline-block;
		margin: 0 15px;
		font-size: 3rem;
		vertical-align: middle;
		line-height: 1;
		color: #fff;
	}
    .half_box {
        width: 100%;
    }
    .lineup_left.half_box, .lineup_right.half_box {
        width: 49%;
    }
	article {
		margin-top: 50px;
	}
	#arrow {
		display: none;
	}
	.slick-dots {
		bottom: -25px;
	}
	#top_cat, #top_cam, #top_pro {
		padding: 40px 0;
	}
	.top_cat_lst, .top_cam_lst, .top_pro_lst {
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-justify-content: center;
		justify-content: center;
	}
	.top_cat_lst a, .top_cam_lst li, .top_pro_lst li {
		margin: 10px 10px 20px 10px;
	}
    .top_cat_lst a {
        max-width: none;
    }
	.top_info_tbl th, .top_info_tbl td {
		border-top: 0 solid rgba(255,255,255,.5);
	}
	.top_info_tbl .date {
		display: inline-block;
		padding: 10px 10px 5px 10px;
	}
	.top_info_tbl .cat {
		display: inline-block;
		padding: 10px 10px 5px 10px;
		border-top: 0 solid rgba(255,255,255,.5);
	}
	.top_info_tbl .info_ttl {
		display: block;
		padding: 5px 10px 10px 10px;
	}
    .top_info_tbl.info_tbl th, .top_info_tbl.info_tbl td {
        border-top: 0 solid rgba(255,255,255,.5);
    }
	.top_info_tbl tr:last-child th, .top_info_tbl tr:last-child td, .top_info_tbl.info_tbl tr:last-child th, .top_info_tbl.info_tbl tr:last-child td {
		border-bottom: 0 solid rgba(255,255,255,.5);
	}
	.top_info_tbl tr {
		border-top: 2px solid rgba(255,255,255,.5);
	}
    .top_info_tbl.info_tbl tr {
        border-top: 2px solid #dfdfdf;
    }
	.top_info_tbl tr:last-child {
		border-bottom: 2px solid rgba(255,255,255,.5);
	}
    .top_info_tbl.info_tbl tr:last-child {
		border-bottom: 2px solid #dfdfdf;
	}
    #page_header, #content {
        padding: 20px 0;
    }
    .page_ttl {
		font-size: 2.4rem;
	}
	.page_ttl_sub {
		font-size: 1.2rem;
	}
    .page_lst a {
        width: 100%;
        margin-bottom: 15px;
        padding: 8px 10px 8px 32px;
    }
    .page_tbl {
        margin-bottom: 40px;
    }
    .page_tbl th, .page_tbl td {
        padding: 10px;
    }
    .lohas_logo {
        display: block;
        margin: auto;
        margin-bottom: 10px;
    }
    .lohas_lst_ttl {
        margin-bottom: 10px;
        font-size: 1.4rem;
    }
    .lohas_lst_bdr {
        margin: 10px auto;
    }
    .lohas_txt {
        display: block;
        font-size: 1.6rem;
    }
    .lohas_right {
        width: 100%;
    }
    .frame_cat_lst li, .frame_cat_lst li a {
        width: 100%;
    }
    .frame_cat_lst li::before {
        display: none;
    }
    .frame_cat_lst li a {
        margin-bottom: 15px;
        padding: 8px 10px 8px 32px;
    }
    .repair_tbl th, .repair_tbl td {
        padding: 5px;
    }
    .repair_tbl th {
        font-size: 1.4rem;
    }
    .repair_tbl_prc {
        font-size: 2rem;
    }
    .repair_tbl_tri {
        width: 10px;
        height: 16px;
    }
    .repair_tbl_tri::after {
        border-width: 8px 0 8px 10px;
    }
    .lineup_tbl th, .lineup_tbl td {
        padding: 10px;
    }
    .lineup_tbl_img {
        width: 110px;
    }
    .recommend_txt, .recommend_img {
        width: 100%;
    }
    .flow_box_stp {
        width: 60px;
    }
    .flow_box_stp::after {
        right: -20px;
        width: 20px;
    }
    .flow_box_txt {
        margin-left: 80px;
        padding: 10px;
    }
    .flow_arw {
        margin: 10px auto 15px 22px;
    }
    .flow_lst .flow_box, .flow_lst .flow_lst_txt {
        width: 100%;
    }
    .flow_lst .flow_lst_txt {
        margin: 10px auto;
    }
    .flow_lst_txt span {
        position: static;
    }
    .signia_lst {
        -webkit-justify-content: center;
        justify-content: center;
    }
    .syurui_img {
        margin-left: 0;
    }
    .about_img, .about_txt {
        width: 100%;
    }
    .faq_q {
        font-size: 1.4rem;
        padding: 10px 40px 10px 10px;
    }
    .faq_q::after {
        right: 10px;
    }
    .faq_q::before {
        right: 19px;
    }
    .faq_a {
        padding: 0px 10px 20px;
    }
    .shop_box {
        padding: 10px;
    }
    .shop_img {
        width: 100%;
    }
    .shop_tbl_box {
        width: 100%;
        overflow-x: scroll;
    }
    .shop_tbl_box .page_tbl {
        width: 960px;
    }
    .shop_box_lst a {
        width: 100%;
    }
    #map {
        height: 400px;
    }
    .shop_msg_box {
        padding: 20px;
    }
    .shop_msg_img {
        display: block;
        width: 120px;
        max-width: 100%;
        margin: auto;
        margin-bottom: 20px;
    }
    .customer_lst {
        -webkit-justify-content: center;
        justify-content: center;
    }
    .customer_lst a {
        width: 100%;
        max-width: 300px;
        height: auto;
    }
    .customer_lst a:hover img {
        opacity: 1;
	   -webkit-transform: scale(1);
    }
    #footer_box {
        padding: 20px 0 30px;
    }
	.footer_bnr_lst {
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-justify-content: center;
		justify-content: center;
	}
	.footer_bnr_lst a {
		margin: 5px;
	}
	.footer_blk, .footer_blk_lrg {
		float: none;
		width: 100%;
	}
	#copy {
		text-align: center;
		padding: 15px 0;
	}
	.footer_logo {
		margin: 10px 0;
	}
    .footer_lst_ttl {
        margin: 20px 0 10px;
    }
	.copy {
		margin-top: 10px;
	}
	.pagetop a {
		width: 40px;
		height: 40px;
		right: 10px;
		bottom: 40px;
	}
	.pagetop a::after {
		width: 16px;
		height: 16px;
		top: 6px;
	}
   .order {
        display: block;
        position: fixed;
        left: -10px;
        bottom: 0px;
        z-index: 100;
    } 
    .order img {
	    width: 70%;
    }
    /*20201105　追加*/
    #x {
    position: absolute;
    /*background: white;*/
    background-color: rgba(46, 46, 46, 0.0);
    color: white;
    top: -10px;
    right: 10px;
    }
    .is-hidden{visibility: hidden;}
    
}