@charset "UTF-8";
@import url("https://fonts.googleapis.com/earlyaccess/notosansjapanese.css");

/* ----------------------------------------------------------------------------------------------------
*  基本情報
* --------------------------------------------------------------------------------------------------*/

/*html,body{	height:100%;}*/

html {
	height: 100%;
	font-size: 62.5%;
	overflow-y: scroll;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
address,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
img,
form {
	margin: 0;
	padding: 0;
	border: none;
	line-height: 100%;
	list-style-type: none;
	font-style: normal;
	font-weight: normal;
	font-family: "Noto Sans Japanese", sans-serif;
	text-align: left;
	color: #282828;
	letter-spacing: 0.05em;
}

input,
button,
textarea,
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	border-radius: 0;
	resize: none;
	outline: none;
	background: none;
	font-family: "Noto Sans Japanese", sans-serif;
}

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

textarea {
	resize: vertical;
}

input[type=submit]:hover,
input[type=button]:hover {
	cursor: pointer;
}

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

a {
	color: #282828;
	text-decoration: none;
	cursor: pointer;
}

img {
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}

/* ------------------------------
    base
------------------------------ */

body {
	min-width: 1160px;
	width: 100%;
	padding-top: 100px;
}

section {
	position: relative;
	overflow: hidden;
}

p,
dt,
dd,
th,
td,
li {
	font-size: 1.6rem;
	line-height: 1.625;
}

a {
	color: #282828;
	text-decoration: none;
}

img {
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}

.flex {
	display: flex;
}

.left {
	float: left;
}

.right {
	float: right;
}

.center {
	display: block;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.align_right {
	text-align: right;
}

.bold {
	font-weight: bold;
	font-weight: 700;
}

.bold900 {
	font-weight: 900;
}

.txt_green {
	color: #005e32;
}

.wrap {
	width: 1000px;
	margin: 0 auto;
	position: relative;
}

.bg_y {
	background-color: #fffaef;
}

body.fixed {
	position: fixed;
}

/*btn*/

.btn a {
	color: #fff;
	width: 300px;
	height: 50px;
	line-height: 44px;
	font-weight: bold;
	background: #005e32;
	display: inline-block;
	text-align: center;
	border-radius: 25px;
	font-size: 1.8rem;
	position: relative;
	overflow: hidden;
	transition: .3s;
	border: 3px solid #005e32;
	z-index: 1;
}
/*

.btn a:hover {
	color: #005e32;
}

.btn a::after {
	position: absolute;
	transition: .3s;
	content: '';
	width: 0;
	bottom: -2px;
	background: #fff;
	height: 120%;
	left: -10%;
	-webkit-transform: skewX(15deg);
	transform: skewX(15deg);
	z-index: -1;
}

.btn a:hover::after {
	left: -10%;
	width: 120%;
}
*/

/*link*/

.link_txt {
	position: relative;
	display: inline-block;
	transition: .3s;
}

/*
.link_txt::before {
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	width: 0;
	height: 1px;
	background-color: #282828;
	transition: .3s;
}

.link_txt:hover::before {
	width: 100%;
}
*/

/*scrollin*/

.fadein {
	opacity: 0;
	transform: translate(0, 50px);
	transition: all 300ms;
}

.fadein.scrollin {
	opacity: 1;
	transform: translate(0, 0);
}

#mv .fadein {
	transform: scale(0);
	transition: 1200ms ease 3000ms;
}

#mv .fadein.scrollin {
	transform: scale(1);
}

@media screen and (min-width: 769px) {

	.sp {
		display: none!important;
	}
	.link_txt::before {
		position: absolute;
		bottom: 0;
		left: 0;
		content: '';
		width: 0;
		height: 1px;
		background-color: #282828;
		transition: .3s;
	}

	.link_txt:hover::before {
		width: 100%;
	}

	.btn a:hover {
		color: #005e32;
	}

	.btn a::after {
		position: absolute;
		transition: .3s;
		content: '';
		width: 0;
		bottom: -2px;
		background: #fff;
		height: 120%;
		left: -10%;
		-webkit-transform: skewX(15deg);
		transform: skewX(15deg);
		z-index: -1;
	}

	.btn a:hover::after {
		left: -10%;
		width: 120%;
	}


}

@media screen and (max-width: 768px) {

	.pc {
		display: none!important;
	}
	body {
		width: 100%;
		min-width: inherit;
		padding-top: 50px;
	}
	.wrap {
		width: 100%;
		padding: 0 6%;
	}
	p,
	dt,
	dd,
	th,
	td,
	li {
		font-size: 1.2rem;
		line-height: 1.416;
	}

	/*btn*/
	.btn a {
		width: 200px;
		height: 35px;
		line-height: 31px;
		border-radius: 17.5px;
		font-size: 1.0rem;
		border: 2px solid #005e32;
	}
}

/* ------------------------------
    parts用
------------------------------ */

.content_box2 {
	display: flex;
	align-items: center;
	padding: 80px 0 100px;
	justify-content: flex-end;
}

.content_box2 + .content_box2 {
	padding-top: 0;
}

.content_box2.img_right {
	justify-content: flex-end;
}

.content_box2.img_left {
	flex-direction: row-reverse;
}

.content_box2.img_right .img {
	margin-left: 80px;
}

.content_box2.img_left .img {
	margin-right: 80px;
}

.content_box2 .img {
	width: 50%;
}

.content_box2 .txt_area {
	width: 430px;
}
.content_box2 .txt_area .ttl_line ~ p +p{
	margin-top: 1em;
}

/* ttl_line */

.content_box2 .ttl_line {
	margin-bottom: 30px;
}

.content_box2 .ttl_line span {
	display: inline-block;
	font-weight: 900;
	font-size: 2.2rem;
	margin: 0 auto;
	text-align: center;
	line-height: 1.27;
	padding-bottom: 8px;
	border-bottom: 3px solid;
}
@media screen and (max-width: 768px) {
	.content_box2 {
		display: block;
		padding: 40px 0;
	}
	.content_box2 + .content_box2 {
		margin-top: 10px;
	}
	.content_box2.img_right .img {
		margin-left: 0;
	}
	.content_box2.img_left .img {
		margin-right: 0;
	}

	.content_box2 .img {
		width: 100%;
		margin-top: 25px;
	}
	.content_box2 .txt_area {
		width: 100%;
		padding: 0 6%;
	}


	/* ttl_line */
	.content_box2 .ttl_line {
		margin-bottom: 15px;
	}
	.content_box2 .ttl_line span {
		font-size: 1.4rem;
		padding-bottom: 4px;
		border-bottom: 2px solid;
	}
}

/* ----------------------------------------------------------------------------------------------------
*  ヘッダー
* --------------------------------------------------------------------------------------------------*/

header {
	height: 100px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 13px 0;
	background: #fff;
	z-index: 999;
}

header .h_wrap.flex {
	width: 100%;
	max-width: 1360px;
	min-width: 1000px;
	margin: auto;
	height: 74px;
	align-items: center;
	justify-content: space-between;
	padding: 0 50px;
}

header .logo a {
	display: block;
}

header .logo img {
	width: 176px;
}

/*h_right*/

header .h_right {
	width: 660px;
}

header .h_right .h_top {
	justify-content: flex-end;
	align-items: center;
	height: 35px;
}

header .h_right .h_top .sns_list {
	width: 116px;
	height: 35px;
	justify-content: space-between;
	align-items: center;
	margin-right: 24px;
}

header .h_right .h_top .sns_list a {
	display: block;
	width: 22px;
}

header .h_right .h_top .tel_area {
	height: 40px;
	align-items: center;
}

header .h_right .h_top .tel_area img {
	width: 194px;
}

header .h_right .h_top .tel_area .tel_txt {
	font-size: 1.2rem;
	line-height: 1;
	margin-left: 10px;
	/*	padding-top: 5px;*/
}

header .h_right .h_top .tel_area .tel_txt span {
	color: #fff;
	background: #282828;
	padding: 4px 5px;
	display: inline-block;
	line-height: 1;
	margin-bottom: 3px;
}

header .h_right .h_top .btn a {
	color: #fff;
	width: 141px;
	height: 30px;
	line-height: 26px;
	font-weight: bold;
	background: #ff6c02;
	display: block;
	text-align: center;
	border-radius: 15px;
	font-size: 1.4rem;
	margin-left: 17px;
	border: 2px solid #ff6c02;
}

header .h_right .h_top .btn.line a{
	background: #00b900;
	border: 2px solid #00b900;
}

header .h_right .h_top .btn a:hover {
	color: #ff6c02;
}

header .h_right .h_top .btn.line a:hover{
	color: #00b900
}

header .h_right .h_top .btn a:hover::before {
	background: #fff;
}

/* ------------------------------
    nav
------------------------------ */

.header_nav {}

.header_nav .main_menu {
	justify-content: space-between;
	height: 30px;
	margin-top: 10px;
}

.header_nav .main_menu > li {
	font-size: 1.4rem;
	height: 30px;
	line-height: 30px;
}

.header_nav .main_menu > li > a {
	display: block;
	padding-bottom: 14px;
	position: relative;
}

.header_nav .main_menu > li > a.link_txt::before {
	bottom: 10px;
	height: 3px;
	background-color: #005e32;
}

.header_nav .main_menu > li.menu_open.active > a.link_txt::before {
	width: 100%;
}

.header_nav .main_menu > li.menu_open.active > a::after {
	content: "";
	position: absolute;
	border-right: 8px solid transparent;
	border-bottom: 14px solid #232323;
	border-left: 8px solid transparent;
	bottom: -3px;
	left: 50%;
	transform: translateX(-50%);
}

.header_nav .main_menu > li.current > a.link_txt::before {
	width: 100%;
}


/*sub_menu*/

.header_nav .sub_menu {
	background: #232323;
	position: absolute;
	top: 100px;
	right: 50%;
	width: 100vw;
	/*	max-width: 1360px;*/
	min-width: 1000px;
	z-index: 1001;
	text-align: left;
	transition: max-height .3s ease;
	transform: translateX(50%);
	max-height: 0;
	overflow: hidden;
}

.header_nav .sub_menu.active_sub {
	max-height: 220px;
}

.header_nav .sub_menu .wrap {
	padding: 40px 0;
	width: 1110px;
	justify-content: space-between;
}

.header_nav .sub_menu .sub_left {
	width: auto;
	height: 146px;
	max-height: 146px!important;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	/*	padding-bottom: 6px;*/
}

.ie .header_nav .sub_menu .sub_left {
	width: auto;
	display: block;
}

.ie .header_nav .sub_menu .sub_left .sub_ttl {
	margin-bottom: 34px;
}

.header_nav .overview .sub_menu .sub_left .sub_ttl {
	width: 231px;
}

.header_nav .point .sub_menu .sub_left .sub_ttl {
	width: 179px;
}

.header_nav .company .sub_menu .sub_left .sub_ttl {
	width: 228px;
}

.header_nav .sub_menu .sub_left > .btn {
	line-height: 1;
	/*	padding-bottom: 10px;*/
}

.header_nav .sub_menu .sub_left > .btn a {
	width: 200px;
	height: 35px;
	line-height: 29px;
	border-radius: 17.5px;
	font-size: 1.6rem;
	/*	margin-top: 30px;*/
	border: 3px solid #fff;
	background: #fff;
	color: #232323;
}

.header_nav .sub_menu .sub_left > .btn a:hover {
	color: #fff;
}

.header_nav .sub_menu .sub_left > .btn a:hover::after {
	background: #232323;
}

.header_nav .sub_menu .sub_nav {
	width: 800px;
	justify-content: flex-start;
}

.header_nav .sub_menu .sub_nav li + li {
	margin-left: 20px;
}

.header_nav .sub_menu .sub_nav li:first-child {
	margin-left: 0;
}

.header_nav .sub_menu .sub_nav li {
	width: 150px;
}

.header_nav .sub_menu .sub_nav li img {
	width: 150px;
}

.header_nav .sub_menu .sub_nav li a.link_txt::before {
	background-color: #fff;
}

.header_nav .sub_menu .sub_nav li a p {
	color: #fff;
	font-size: 1.2rem;
	margin-top: 8px;
	letter-spacing: -.04em;
	position: relative;
	margin-bottom: 3px;
	padding-left: 8px;
	white-space: nowrap;
}

.header_nav .sub_menu .sub_nav li a p::after {
	content: "";
	position: absolute;
	top: 6px;
	left: 0;
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
	header {
		height: 50px;
		padding: 7px 0 8px;
	}
	header .h_wrap.flex {
		max-width: inherit;
		min-width: inherit;
		height: 100%;
		padding: 0 0 0 3%;
	}
	header .logo a {
		display: block;
	}
	header .logo a img {
		width: auto;
		height: 21px;
	}

	/*h_right*/
	header .h_right.sp {
		width: auto;
		margin-right: 43px;
	}
	header .h_right.sp .mail,
	header .h_right.sp .line{
		margin-left: 6px;
	}
	header .h_right.sp .tel img,
	header .h_right.sp .mail img,
	header .h_right.sp .line img{
		width: 32px;
		height: auto;
	}
	header .toggle {
		display: block;
		position: absolute;
		top: 8px;
		right: 6px;
		width: 35px;
		height: 35px;
		z-index: 1001;
	}
	header .toggle span {
		display: inline-block;
		transition: all .4s;
		position: absolute;
		left: 7px;
		width: 22px;
		height: 3px;
		background-color: #282828;
		border-radius: 1.5px;
	}
	header .toggle span:nth-of-type(1) {
		top: 25%;
	}
	header .toggle span:nth-of-type(2) {
		top: 50%;
		margin-top: -2px;
	}
	header .toggle span:nth-of-type(3) {
		bottom: 25%;
	}
	header .toggle.toggle_active span:nth-of-type(1) {
		top: 15px;
		transform: rotate(45deg);
	}
	header .toggle.toggle_active span:nth-of-type(2) {
		opacity: 0;
	}
	header .toggle.toggle_active span:nth-of-type(3) {
		bottom: 17px;
		transform: rotate(-45deg);
	}


	/* ------------------------------
			nav
	------------------------------ */
	.nav_sp_wrap {
		position: fixed;
		top: 50px;
		left: 0;
		display: none;
		width: 100%;
		height: calc(100% - 50px);
		background: #282828;
		overflowinstafeed: auto;
		z-index: 9999;
		overflow-y: scroll!important;
		-webkit-overflow-scrolling: touch;
		padding: 0 0 6%;
	}
	.nav_sp > li > a {
		position: relative;
		display: block;
		height: 50px;
		padding: 0 6%;
		line-height: 50px;
		font-size: 1.2rem;
		color: #fff;
		font-weight: bold;
		border-bottom: 1px solid #fff;
	}
	.nav_sp > li.acd > a:after {
		content: "";
		position: absolute;
		top: calc(50% - 1px);
		right: 6%;
		z-index: 1;
		width: 14px;
		height: 2px;
		background: #fff;
		transition: all 0.5s ease-out;
		transform: rotate(0);
	}
	.nav_sp > li.acd > a:before {
		content: "";
		position: absolute;
		top: calc(50% - 7px);
		right: calc(6% + 6px);
		z-index: 2;
		width: 2px;
		height: 14px;
		background: #fff;
		transition: all 0.5s ease-out;
	}
	.nav_sp > li.acd > a.sub_nav_open:after {
		background-color: rgba(255, 255, 255, 0);
	}
	.nav_sp > li.acd > a.sub_nav_open:before {
		transform: rotate(90deg);
		background: #fff;
	}

	.nav_sp > li:not(.acd) > a:after {
		content: "";
		position: absolute;
		top: calc(50% - 4px);
		right: calc(6% + 3px);
		width: 8px;
		height: 8px;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		transform: rotate(45deg);
	}
	.nav_sp .sub_nav_sp {
		display: none;
		background: #141414;
	}
	.nav_sp .sub_nav_sp > li > a {
		position: relative;
		display: block;
		height: 42px;
		padding: 0 6%;
		line-height: 42px;
		font-size: 1rem;
		color: #fff;
		border-bottom: 1px solid #fff;
	}
	.nav_sp .sub_nav_sp > li > a::after {
		content: "";
		position: absolute;
		top: calc(50% - 3px);
		right: 6%;
		width: 6px;
		height: 6px;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		transform: rotate(45deg);
	}
	.nav_sp2 > li {
		width: calc(100% / 3);
	}
	.nav_sp2 > li > a {
		position: relative;
		display: flex;
		align-items: center;
		height: 50px;
		padding: 0 8%;
		font-size: 1.2rem;
		color: #fff;
		font-weight: bold;
		border-bottom: 1px solid #fff;
		border-right: 1px solid #fff;
	}
	.nav_sp2 > li:last-child a {
		border-right: none;
	}
	.nav_sp2 > li > a:after {
		content: "";
		position: absolute;
		top: calc(50% - 4px);
		right: 6%;
		width: 8px;
		height: 8px;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		transform: rotate(45deg);
	}

	.btn_area .btn a {
		width: 100%;
		max-width: 300px;
		height: 50px;
		margin: 20px auto;
		display: block;
		border-radius: 25px;
	}

	.btn_area .btn.tel_btn a {
		background: #fff;
		line-height: inherit;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		border: 2px solid #fff;
	}
	.btn_area .btn.tel_btn a img {
		width: 168px;
		padding-top: 3px;
	}
	.btn_area .btn.tel_btn a .tel_txt {
		font-size: .9rem;
		line-height: 1;
		margin-top: 3px;
	}
	.btn_area .btn.tel_btn a .tel_txt span {
		color: #fff;
		background: #282828;
		padding: 3px 3px;
		display: inline-block;
		line-height: 1;
		margin-right: 4px;
	}

	.btn_area .btn.contact_btn a {
		background: #ff6c02;
		border: 2px solid #ff6c02;
		color: #fff;
		font-size: 1.5rem;
		line-height: 46px;
	}

	.btn_area .btn.line_btn a {
		background: #00b900;
		border: 2px solid #00b900;
		color: #fff;
		font-size: 1.5rem;
		line-height: 46px;
	}
/*
	.btn_area .btn.contact_btn a:hover {
		color: #ff6c02;
	}
*/
	.sns_list_sp {
		width: 100%;
		/*max-width: 220px;*/
		max-width: 130px;
		margin: auto;
		justify-content: space-between;
	}
	.sns_list_sp a {
		display: block;
	}
	.sns_list_sp a img {
		width: auto;
		height: 30px;
	}
}


/* ------------------------------
    pagettl
------------------------------ */

.pagettl {
	height: 300px;
	padding: 100px 0 0;
}

.pagettl .txt_pagettl p {
	color: #fff;
	font-weight: 900;
	font-size: 2.0rem;
	line-height: 1;
	margin-top: 20px;
}

.pagettl.h200 {
	height: 200px;
	padding: 80px 0 0;
}

.pagettl.h200 .txt_pagettl {
	color: #fff;
	font-weight: 900;
	font-size: 3.5rem;
	line-height: 1;
}


@media screen and (max-width: 768px) {
	.pagettl {
		height: 200px;
		padding: 40px 0 0;
	}
	.pagettl .txt_pagettl p {
		font-size: 1.0rem;
		margin-top: 15px;
	}
	.pagettl.h200 {
		height: 100px;
		padding: 0;
	}
	.pagettl .wrap {
		width: 100%;
		height: 100%;
		position: relative;
	}
	.pagettl .txt_pagettl {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	.pagettl.h200 .txt_pagettl {
		font-size: 1.6rem;
	}


}

/* ------------------------------
		breadcrumb
------------------------------ */

.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.breadcrumb li,
.breadcrumb li a {
	font-size: 1.4rem;
	font-weight: bold;
	position: relative;
	line-height: 1.3;
}

.breadcrumb li {
	padding-right: 2em;
}

.breadcrumb li a {
	color: #ff6c02;
}

.breadcrumb li a.link_txt::before {
	background-color: #ff6c02;
}

.breadcrumb li:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 6px;
	right: 0.8em;
	width: 7px;
	height: 7px;
	border-top: 2px solid #282828;
	border-right: 2px solid #282828;
	transform: rotate(45deg);
	/*	margin: 0 0.5em;*/
}

@media screen and (max-width: 768px) {}

/* ------------------------------
		pager
------------------------------ */

.pager {
	align-items: center;
	justify-content: center;
}

.pager li,
.pager li a {
	font-size: 1.8rem;
	font-weight: 900;
	position: relative;
}

.pager li.on {
	width: 40px;
	height: 40px;
	background: #282828;
	color: #fff;
	line-height: 40px;
	text-align: center;
	border-radius: 50%;
}

.pager li.link a {
	display: block;
	width: 40px;
	height: 40px;
	color: #282828;
	line-height: 40px;
	text-align: center;
	letter-spacing: 0;
	overflow: hidden;
	position: relative;
	z-index: 1;
	border-radius: 50%;
}

/*
.pager li.link a:hover {
	color: #fff;
}
*/

.pager li.link a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: calc(100%);
	height: calc(100%);
	border-radius: 50%;
	border: 3px solid #282828;
	border-radius: 50%;
	z-index: -2;
}

/*
.pager li.link a::after {
	position: absolute;
	transition: .3s;
	content: '';
	width: 0;
	bottom: -3px;
	background: #282828;
	height: 120%;
	border-radius: 50%;
	left: -10%;
	-webkit-transform: skewX(15deg);
	transform: skewX(15deg);
	z-index: -1;
}

.pager li.link a:hover::after {
	left: -10%;
	width: 120%;
}
*/

.pager li.prev,
.pager li.next {
	width: 13px;
	height: auto;
	line-height: 1;
}

.pager li.prev a,
.pager li.next a {
	display: block;
}

.pager li + li {
	margin-left: 18px;
}


.pager02 li.prev,
.pager02 li.next {
	width: 40px;
	height: 40px;
}

.pager02 li.prev a,
.pager02 li.next a {
	display: flex;
	justify-content: center;
	align-items: center;
}

.pager02 li.prev a img,
.pager02 li.next a img {
	width: 10px;
	height: auto;
	vertical-align: middle;
	transition: 0.3s;
}

.pager02 li a img.arw_on {
	display: none;
}

/*
.pager02 li a:hover img {
	display: none;
}

.pager02 li a:hover img.arw_on {
	display: block;
}

.pager02 li.prev a:hover {
	background: url(../img/common/icon_pager_prev_on.png) no-repeat;
	background-size: 10px auto;
	background-position: center;
}

.pager02 li.next a:hover {
	background: url(../img/common/icon_pager_next_on.png) no-repeat;
	background-size: 10px auto;
	background-position: center;
}
*/
.pager02 li + li {
	margin-left: 80px;
}

@media screen and (min-width: 769px) {
	.pager li.link a::after {
		position: absolute;
		transition: .3s;
		content: '';
		width: 0;
		bottom: -3px;
		background: #282828;
		height: 120%;
		border-radius: 50%;
		left: -10%;
		-webkit-transform: skewX(15deg);
		transform: skewX(15deg);
		z-index: -1;
	}

	.pager li.link a:hover::after {
		left: -10%;
		width: 120%;
	}

	.pager li.link a:hover {
		color: #fff;
	}


	.pager02 li a:hover img {
		display: none;
	}

	.pager02 li a:hover img.arw_on {
		display: block;
	}

	.pager02 li.prev a:hover {
		background: url(../img/common/icon_pager_prev_on.png) no-repeat;
		background-size: 10px auto;
		background-position: center;
	}

	.pager02 li.next a:hover {
		background: url(../img/common/icon_pager_next_on.png) no-repeat;
		background-size: 10px auto;
		background-position: center;
	}
}
@media screen and (max-width: 768px) {
	.pager li,
	.pager li a {
		font-size: 1.2rem;
	}
	.pager li.on {
		width: 30px;
		height: 30px;
		line-height: 30px;
	}
	.pager li.link a {
		width: 30px;
		height: 30px;
		line-height: 30px;
	}
	.pager li.link a::before {
		border: 2px solid #282828;
	}

	.pager li.prev,
	.pager li.next {
		width: 9px;
		margin-left: 16px;
	}
	.pager li + li {
		margin-left: 10px;
	}


	.pager02 li.prev,
	.pager02 li.next {
		width: 30px;
		height: 30px;
	}
	.pager02 li.prev a img,
	.pager02 li.next a img {
		width: 7px;
	}
	.pager02 li.prev a:hover {
		background: url(../img/common/icon_pager_prev_on.png) no-repeat;
		background-size: 7px auto;
		background-position: center;
	}
	.pager02 li.next a:hover {
		background: url(../img/common/icon_pager_next_on.png) no-repeat;
		background-size: 7px auto;
		background-position: center;
	}


	.pager02 li + li {
		margin-left: 47px!important;
	}
}

/* ------------------------------
    footer
------------------------------ */

footer .f_top {
	background: #232323;
}

footer .f_top .wrap {
	width: 1060px;
	padding: 30px 0 33px;
	position: relative;
	justify-content: space-between;
	align-items: center;
}

footer .tel_area {
	width: 334px;
	position: relative;
}

footer .tel_area .tel_txt {
	position: absolute;
	white-space: nowrap;
	bottom: -5px;
	left: 68px;
	font-size: 1.48rem;
	line-height: 1;
	color: #fff;
}

footer .tel_area .tel_txt span {
	color: #282828;
	background: #fff;
	padding: 0 4px;
	line-height: 1;
	margin-bottom: 3px;
	font-size: 1.3rem;
	margin-right: 5px;
}

footer .btn a {
	width: 392px;
	height: 60px;
	line-height: 54px;
	font-size: 2.38rem;
	background: #ff6c02;
	border-radius: 30px;
	border: 3px solid #ff6c02;
}
footer .btn.line a {
	width: 262px;
	background: #00b900;
	border: 3px solid #00b900;
}

footer .btn a:hover {
	color: #ff6c02;
}

footer .btn.line a:hover{
	color: #00b900;
}

footer .f_bottom {
	background: #141414;
}

footer .f_bottom .wrap {
	justify-content: space-between;
	padding: 28px 0;
}

footer .f_bottom .copy {
	color: #fff;
	font-size: 1.2rem;
}

footer .f_bottom .f_menu {
	font-size: 0;
}

footer .f_bottom .f_menu li {
	display: inline-block;
	font-size: 1.3rem;
	line-height: 1.2;
	position: relative;
	margin-right: 24px;
	padding-left: 24px;
	border-left: 1px solid #fff;
}

footer .f_bottom .f_menu li:first-child {
	padding-left: 0;
	border-left: none;
}

footer .f_bottom .f_menu li:last-child {
	margin-right: 4px;
}

footer .f_bottom .f_menu li a {
	display: block;
	color: #fff;
}

footer .f_bottom .f_menu li a.link_txt::before {
	background-color: #fff;
	bottom: -3px;
}

@media screen and (max-width: 768px) {
	footer .f_bottom .wrap {
		display: block;
		padding: 12px 0;
	}
	footer .f_bottom .copy {
		text-align: center;
		font-size: 0.8rem;
	}
}



/* ------------------------------
    clearfix
------------------------------ */

.cf:after {
	content: ".";
	display: block;
	height: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
}

.cf {
	display: inline-block;
}

/* Hides from IE Mac */

* html .cf {
	height: 1%;
}

.cf {
	display: block;
}

/* End Hack */

/**
 * 追記
 */
.oi_post_share_icons {
    font-size: 14px;
}

.oi_post_share_icons {
    clear: both;
    display: block;
    padding: 30px 0;
}

.oi_soc_icons {
    padding-bottom: 30px;
    width: 100%;
    position: relative;
}

.oi_soc_icons a {
    color: rgba(123,123,123,1.00);
}

.oi_soc_icons a {
    padding: 5px;
    margin-right: 3px;
}

.fa {
    width: 1em;
    text-align: center;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fa-facebook:before {
    font-size: 15px;
    colot: #fff;
}

.fa-facebook:before {
    content: "\f09a";
}

.fa-twitter:before {
    content: "\f099";
}

.fa-google-plus:before {
    content: "\f0d5";
}

[class*=" icon-"], [class^=icon-] {
    font-family: icomoon;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-hatebu:before {
    content: "\e601";
}

.oi_soc_icons a:hover, .rank_num {
    opacity: .8;
}

#tab-tags a:hover, .oi_soc_icons a:hover {
    border: rgba(0,0,0,1.00) 1px solid;
}

@font-face {
  font-family: 'icomoon';
  src:  url('../fonts/icomoon.eot?n5e7tx');
  src:  url('../fonts/icomoon.eot?n5e7tx#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?n5e7tx') format('truetype'),
    url('../fonts/icomoon.woff?n5e7tx') format('woff'),
    url('../fonts/icomoon.svg?n5e7tx#icomoon') 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-google-plus:before {
  content: "\e900";
}
.icon-brand:before {
  content: "\e900";
}
.icon-social:before {
  content: "\e900";
}
.icon-twitter:before {
  content: "\e901";
}
.icon-brand1:before {
  content: "\e901";
}
.icon-tweet:before {
  content: "\e901";
}
.icon-social1:before {
  content: "\e901";
}
.icon-facebook:before {
  content: "\e902";
}
.icon-brand2:before {
  content: "\e902";
}
.icon-social2:before {
  content: "\e902";
}
.icon-hatebu:before {
  content: "\1f327";
}

.oi_post_share_icons.page {
	width: 1000px;
	margin: 0 auto;
}


/*20211104_add*/
/*@media screen and (min-width: 767px) {
	header .h_right {
	position: relative;
	}
}*/
#header .h_right .bnr {
	position: absolute;
	left: calc(50% - 257px);
	top: 17px;
}
#header .h_right .bnr a {
	transition: 0.3s;
}
#header .h_right .bnr a:hover {
	opacity: 0.7;
}

@media screen and (max-width: 1200px) {
	#header .h_right .bnr {
		left: 25px;
		top: -5px;
		width: 150px;
	}
}
@media screen and (max-width: 768px) {
	#header .h_right .bnr {
    left: auto;
		right: 160px;
    top: 9px;
    width: 93px;
	}
}

footer .f_bottom .f_menu li.icon {
	border: none;
	padding: 0 0 6px;
	vertical-align: middle;
}
footer .f_bottom .f_menu li.icon a {
	transition: 0.3s;
}
footer .f_bottom .f_menu li.icon a:hover {
	opacity: 0.7;
}

footer .f_bottom .f_menu li:nth-child(4) {
	padding-left: 14px;
	border-left: none;
}
