/*
Theme Name: lionsfilm
Theme URI: http://www-test.lionsfilm.co.jp/wp/
Author: xoversolutions Ltd.
Author URI: https://wordpress.org/
Version: 1.0
*/

/* http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/

/* ===================================================================
CSS information
 file name  :  style.css
=================================================================== */
@charset "utf-8";


html, 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, li,
fieldset, form, label, legend,
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;
	font-size: 100%;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  	display: block;
}

body * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

ol, ul {
  	list-style: none;
}

blockquote, q {
  	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

input[type="text"],
input[type="password"],
input[type="submit"],
input[type="button"],
input[type="email"],
input[type="tel"],
input[type="date"],
button,
textarea,
select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	text-overflow: "";
	border-radius: 0;
	border: none;
	outline: none;
	color: #460000;
}

a {
	text-decoration: none;
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	text-align: inherit;
	line-height: inherit;
	cursor: pointer;
	outline: none;
}

* a img {
	border-style: none;
	outline: none;
	cursor: pointer;
	transition: all .3s ease-out 0s;
}

img {
	vertical-align: middle;
	width: 100%;
}

* a:hover img {
	opacity: .7;
}

.cf:after {
	content: "";
	display: block;
	clear: both;
}

body {
	-webkit-text-size-adjust: 100%;
}

/* ===================================================================
 Scroll bar
=================================================================== */

::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar:horizontal {
	width: 8px;
}

::-webkit-scrollbar-track {
	background: #f7f6f3; /*-- スクロールバーの透過背景 --*/
}

::-webkit-scrollbar-thumb {
	background: #f7ab05;
	border-radius: 4px;
}

/* ===================================================================
 Setting
=================================================================== */

html {
	height: 100%;
}

body {
	height: 100%;
	font-size: 13px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	color: #460000;
	overflow-x: hidden;
}

.wrapper {
	width: 100%;
}

.contents {
	min-height: 600px;
}

.box {
	margin: 0 0 50px;
}

/*.inner {
	position: relative;
	width: 100%;
    max-width: 1060px;
    margin: 0 auto;
    padding: 0px 80px;
}*/

@media screen and (min-width: 768px) { /*-------------------- pc -------------------- */

	.SP_display {
		display: none;
	}

}

@media screen and (max-width: 767px) { /*-------------------- sp -------------------- */

	.inner {
		width: 100%;
		max-width: none;
		padding: 0 15px;
	}
	
	.PC_display {
		display: none;
	}	

}

/* ===================================================================
animation
=================================================================== */

/* about animation
--------------------*/

.animation00 {
	opacity: 0;
}

.animation01,
.animation02,
.animation03 {
	opacity: 0;
	transform: translateY(10px);
}

.animation04 {
	transform: translateY(-100%);
}

/* animation detail
--------------------*/

.animation00 {
	-webkit-animation: anime00 .5s ease-out .2s both;
	animation: anime00 .5s ease-out .2s both;
}

.animation01 {
	-webkit-animation: anime01 .5s ease-out .7s both;
	animation: anime01 .5s ease-out .7s both;
}

.animation02 {
	-webkit-animation: anime01 .5s ease-out 1.2s both;
	animation: anime01 .5s ease-out 1.2s both;
}

.animation03 {
	-webkit-animation: anime01 .5s ease-out 1.7s both;
	animation: anime01 .5s ease-out 1.7s both;
}

.animation04 {
	-webkit-animation: anime02 .3s ease-out 2.0s both;
	animation: anime02 .3s ease-out 2.0s both;
}

@keyframes anime00 {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-webkit-keyframes anime00 {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes anime01 {
	0% {
		opacity: 0;
		transform: translateY(10px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@-webkit-keyframes anime01 {
	0% {
		opacity: 0;
		-webkit-transform: translateY(10px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@keyframes anime02 {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(0);
	}
}

@-webkit-keyframes anime02 {
	0% {
		-webkit-transform: translateY(-100%);
	}
	100% {
		-webkit-transform: translateY(0);
	}
}

@media screen and (max-width: 767px) {

	.animation04 {
		transform: translateY(0);
		-webkit-animation: none;
		animation: none;
	}

}

/* ===================================================================
 header
=================================================================== */

header {
	position: relative;
	z-index: 400;
}

/* トップページ
--------------------*/

header.top-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 80px;
	font-weight: bold;
	text-align: center;
	background: transparent;
}

header.top-header .header-box {
	height: 80px;
	z-index: 300;
	transition: all .3s ease-out 0s;
}

header.top-header .header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 80px;
	max-width: 1560px;
	margin: 0 auto;
	padding: 0 30px;
}

header.top-header .header-logo-inner { /* 追加 */
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header.top-header .header-logo {
	width: 200px;
	opacity: 0;
	transition: all .3s ease-out 0s;
}

header.top-header .header-multilingual { /* 追加 */
	padding: 0 0 0 100px;
}

header.top-header nav[class=header] ul {
	display: flex;
	justify-content: flex-start;
    align-items: center;
}

header.top-header nav[class=header] ul li {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 0 0 40px;
}

header.top-header nav[class=header] ul li a {
	position: relative;
	line-height: 1;
	color: #460000;
	padding: 20px 0;
	text-shadow:
		rgba(238,238,238,.25) 2px 0px,
		rgba(238,238,238,.25) -2px 0px,
		rgba(238,238,238,.25) 0px -2px,
		rgba(238,238,238,.25) 0px 2px,
		rgba(238,238,238,.25) 2px 2px,
		rgba(238,238,238,.25) -2px 2px,
		rgba(238,238,238,.25) 2px -2px,
		rgba(238,238,238,.25) -2px -2px,
		rgba(238,238,238,.25) 1px 2px,
		rgba(238,238,238,.25) -1px 2px,
		rgba(238,238,238,.25) 1px -2px,
		rgba(238,238,238,.25) -1px -2px,
		rgba(238,238,238,.25) 2px 1px,
		rgba(238,238,238,.25) -2px 1px,
		rgba(238,238,238,.25) 2px -1px,
		rgba(238,238,238,.25) -2px -1px;
	transition: all .3s ease-out 0s;
}

header.top-header nav[class=header] ul li a:after {
	content: '';
	position: absolute;
	bottom: 17px;
	left: 0;
	right: 0;
	width: 0;
    margin: 0 auto;
	height: 1px;
	background: #460000;
	transition: all .3s ease-out 0s;
}

header.top-header nav[class=header] ul li a:hover:after {
	width: 100%;
}

/* トップページ スクロールした場合
--------------------*/

header.top-header.scroll-event .header-box {
	background: #fff;
	border-bottom: solid 3px #f7ab05;
}

header.top-header.scroll-event .header-logo {
	opacity: 1;
}

header.top-header.scroll-event nav[class=header] ul li a {
	text-shadow: none;
}

/* トップページ サブメニュー
--------------------*/

header.top-header nav[class=header] ul.sub-menu {
	display: none;
    position: absolute;
    top: 100%;
    left: 50%;
	transform: translate(-50%, 0);
	width: 200px;
	padding: 10px 0;
	background: #fff;
}

header.top-header nav[class=header] ul.sub-menu:before {
    content: '';
    position: absolute;
    bottom: 100%;
	left: 50%;
    transform: translate(-50%, 0);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0px 10px 15px 10px;
    border-color: transparent transparent #fff transparent;
}

header.top-header nav[class=header] ul.sub-menu li {
	margin: 0;
	padding: 10px 20px;
}

header.top-header nav[class=header] ul.sub-menu li a {
	color: #460000;
	padding: 0;
	text-shadow: none;
}

header.top-header nav[class=header] ul.sub-menu li a:after {
	bottom: -3px;
	background: #460000;
}

/* トップページ サブメニュー スクロールした場合
--------------------*/

header.top-header.scroll-event nav[class=header] ul.sub-menu {
	background: #eb6913;
}

header.top-header.scroll-event nav[class=header] ul.sub-menu:before {
    border-color: transparent transparent #eb6913 transparent;
}

header.top-header.scroll-event nav[class=header] ul.sub-menu li a {
	color: #fff;
}

header.top-header.scroll-event nav[class=header] ul.sub-menu li a:after {
	background: #fff;
}

/* 下層ページ
--------------------*/

header.lower-header {
	height: 80px;
	font-weight: bold;
	text-align: center;
}

header.lower-header .header-box {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 80px;
	background: #fff;
	z-index: 300;
	border-bottom: solid 3px #f7ab05;
}

header.lower-header .header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 80px;
	max-width: 1560px;
	margin: 0 auto;
	padding: 0 30px;
}

header.lower-header .header-logo-inner { /* 追加 */
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header.lower-header .header-logo {
	width: 200px;
}

header.lower-header .header-multilingual { /* 追加 */
	padding: 0 0 0 100px;
}

header.lower-header nav[class=header] ul {
	display: flex;
	justify-content: flex-start;
    align-items: center;
}

header.lower-header nav[class=header] ul li {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 0 0 40px;
}

header.lower-header nav[class=header] ul li a {
	position: relative;
	line-height: 1;
	color: #460000;
	padding: 20px 0;
}

header.lower-header nav[class=header] ul li a:after {
	content: '';
	position: absolute;
	bottom: 17px;
	left: 0;
	right: 0;
	width: 0;
    margin: 0 auto;
	height: 1px;
	background: #460000;
	transition: all .3s ease-out 0s;
}

header.lower-header nav[class=header] ul li a:hover:after {
	width: 100%;
}

/* 下層ページ サブメニュー
--------------------*/

header.lower-header nav[class=header] ul.sub-menu {
	display: none;
    position: absolute;
    top: 100%;
    left: 50%;
	transform: translate(-50%, 0);
	width: 200px;
	padding: 10px 0;
	background: #eb6913;
}

header.lower-header nav[class=header] ul.sub-menu:before {
    content: '';
    position: absolute;
    bottom: 100%;
	left: 50%;
    transform: translate(-50%, 0);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0px 10px 15px 10px;
    border-color: transparent transparent #eb6913 transparent;
}

header.lower-header nav[class=header] ul.sub-menu li {
	margin: 0;
	padding: 10px 20px;
}

header.lower-header nav[class=header] ul.sub-menu li a {
	color: #fff;
	padding: 0;
}

header.lower-header nav[class=header] ul.sub-menu li a:after {
	bottom: -3px;
	background: #fff;
}

@media screen and (max-width: 767px) {

	/* ===================================================================
	Nav
	=================================================================== */

	/* nav area
	--------------------*/

	.hamburger {
		position: fixed;
		top: 0;
		right: 0;
		width: 50px;
		height: 50px;
		z-index: 400;
	}

	.top-nav {
		width: 100%;
		height: 100%;
		transition: all .3s ease-out 0s;
	}

	/* nav area
	--------------------*/

	.nav-inner {
		position: relative;
	}

	.menu-trigger {
		position: absolute;
		right: 0;
		display: block;
		width: 50px;
		height: 50px;
		background: transparent;
		transition: all .3s ease-out 0s;
	}

	.menu-trigger.active {
		padding: 0;
		margin: 0;
	}

	/* Hamburger menu
	--------------------*/

	.hamburger span {
		position: absolute;
		left: 10px;
		right: 10px;
		display: block;
		width: 30px;
		height: 4px;
		/*border-radius: 2px;*/
		transition: all .3s ease-out 0s;
	}

	/* トップページ */
	.hamburger.top span {
		/*background: #fff;*/
		background: #460000;
	}

	/* 下層ページ */
	.hamburger.lower span {
		background: #f7ab05;
	}

	.menu-trigger span:nth-of-type(1) {
		top: 13px;
	}

	.menu-trigger span:nth-of-type(2) {
		top: 23px;
	}

	.menu-trigger span:nth-of-type(3) {
		bottom: 13px;
	}

	/* Hamburger menu open
	--------------------*/

	.menu-trigger.active span:nth-of-type(1) {
		-webkit-transform: translateY(11px) rotate(-45deg);
		transform: translateY(11px) rotate(-45deg);
		top: 12px;
	}

	.menu-trigger.active span:nth-of-type(2) {
		opacity: 0;
	}

	.menu-trigger.active span:nth-of-type(3) {
		-webkit-transform: translateY(-11px) rotate(45deg);
		transform: translateY(-11px) rotate(45deg);
		bottom: 12px;
	}

	/* top Hamburger menu スクロール時
	--------------------*/

	.hamburger.top.scroll-event .menu-trigger span {
		background: #f7ab05;
	}

	/* ===================================================================
	header
	=================================================================== */

	/* トップページ
	--------------------*/

	header.top-header {
		height: 50px;
		text-align: center;
		/*background: #f7ab05;*/
		background: transparent;
	}

	header.top-header .header-box {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		height: 50px;
		z-index: 300;
		transition: unset;
	}

	header.top-header.active .header-box {
		background: #eee;
	}

	header.top-header .header-inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		height: 50px;
		max-width: 1560px;
		margin: 0 auto;
		padding: 0 10px;
	}

	header.top-header .header-logo-inner { /* 追加 */
		width: 100%;
		padding: 0 45px 0 0;
	}

	header.top-header .header-logo {
		width: 50px;
		opacity: 0;
		transition: unset;
	}

	header.top-header .header-multilingual { /* 追加 */
		padding: 0;
		width: 50px;
		height: 50px;
	}

	header.top-header nav[class=header] {
		position: fixed;
		top: 50px;
		left: 0;
		right: 0;
		width: 100%;
	}

	header.top-header nav[class=header] ul {
		display: none;
		padding: 20px;
		background: #eee;
		transition: unset;
	}

	header.top-header.active nav[class=header] ul {
		display: block;
	}

	header.top-header nav[class=header] ul li {
		position: relative;
		display: block;
		margin: 0;
		padding: 15px 0 0;
		border-bottom: 1px solid #444;
	}

	header.top-header nav[class=header] ul li:nth-of-type(1) {
		border-top: 1px solid #444;
	}

	header.top-header nav[class=header] ul li a {
		position: relative;
		line-height: 1;
		color: #444;
		padding: 0;
		transition: unset;
	}

	header.top-header nav[class=header] ul li a:after {
		display: none;
	}

	/* トップページ スクロールした場合
	--------------------*/

	header.top-header.scroll-event .header-box {
		background: #eee;
		box-shadow: 0px 1px 4px 1px rgba(193, 193, 193, 1);
	}

	header.top-header.scroll-event .header-logo {
		opacity: 1;
	}

	header.top-header.scroll-event nav[class=header] ul {
		background: #f7ab05;
		box-shadow: 0px 1px 4px 1px rgba(193, 193, 193, 1);
	}
	
	header.top-header.scroll-event .header-logo a img {
		width: 100px;
	}

	/* トップページ サブメニュー
	--------------------*/

	header.top-header nav[class=header] ul.sub-menu {
		display: none;
		position: relative;
		top: 0;
		left: 0;
		transform: translate(0, 0);
		width: 100%;
		margin: 0;
		padding: 0;
		background: transparent;
		box-shadow: none;
	}

	header.top-header nav[class=header] ul.sub-menu:before {
		display: none;
	}

	header.top-header nav[class=header] ul.sub-menu li {
		margin: 0;
		padding: 15px 0 0;
		border-bottom: 1px solid #444;
	}

	header.top-header nav[class=header] ul.sub-menu li:nth-of-type(2) {
		border-bottom: none;
	}

	header.top-header nav[class=header] ul.sub-menu li a {
		color: #444;
	}

	/* トップページ サブメニュー スクロールした場合
	--------------------*/

	header.top-header.scroll-event nav[class=header] ul.sub-menu {
		background: transparent;
		box-shadow: none;
	}

	header.top-header.scroll-event nav[class=header] ul.sub-menu li a {
		color: #444;
	}

	header.top-header.scroll-event nav[class=header] ul.sub-menu li a:after {
		background: #444;
	}

	/* 下層ページ
	--------------------*/

	header.lower-header {
		height: 50px;
		text-align: center;
		background: transparent;
	}

	header.lower-header .header-box {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		height: 50px;
		background: #eee;
		z-index: 300;
		transition: unset;
	}

	header.lower-header .header-inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		height: 50px;
		max-width: 1560px;
		margin: 0 auto;
		padding: 0 10px;
	}

	header.lower-header .header-logo-inner { /* 追加 */
		width: 100%;
		padding: 0 45px 0 0;
	}

	header.lower-header .header-logo {
		width: 90px;
	}

	header.lower-header .header-multilingual { /* 追加 */
		padding: 0;
		width: 50px;
		height: 50px;
	}

	header.lower-header nav[class=header] {
		position: fixed;
		top: 50px;
		left: 0;
		right: 0;
		width: 100%;
	}

	header.lower-header nav[class=header] ul {
		display: none;
		padding: 20px;
		background: #f7ab05;
		box-shadow: 0px 1px 4px 1px rgba(193, 193, 193, 1);
		transition: unset;
	}

	header.lower-header.active nav[class=header] ul {
		display: block;
	}

	header.lower-header nav[class=header] ul li {
		position: relative;
		display: block;
		margin: 0;
		padding: 15px 0 0;
		border-bottom: 1px solid #444;
	}

	header.lower-header nav[class=header] ul li:nth-of-type(1) {
		border-top: 1px solid #444;
	}

	header.lower-header nav[class=header] ul li a {
		position: relative;
		line-height: 1;
		color: #444;
		padding: 0;
		transition: unset;
	}

	header.lower-header nav[class=header] ul li a:after {
		display: none;
	}

	/* 下層ページ サブメニュー
	--------------------*/

	header.lower-header nav[class=header] ul.sub-menu {
		display: none;
		position: relative;
		top: 0;
		left: 0;
		transform: translate(0, 0);
		width: 100%;
		margin: 0;
		padding: 0;
		background: transparent;
		box-shadow: none;
	}

	header.lower-header nav[class=header] ul.sub-menu:before {
		display: none;
	}

	header.lower-header nav[class=header] ul.sub-menu li {
		margin: 0;
		padding: 15px 0 0;
		border-bottom: 1px solid #444;
	}

	header.lower-header nav[class=header] ul.sub-menu li:nth-of-type(2) {
		border-bottom: none;
	}

	header.lower-header nav[class=header] ul.sub-menu li a {
		color: #444;
	}

}

/* ===================================================================
top-news
=================================================================== */

.news-box {
	max-width: 1000px;
	width: 100%;
	margin: 70px auto;
}

.news_pager {
	text-align: center;
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
}

.news_pager ul {
	display: flex;
	justify-content: center;
}

.news_pager li a {
	display: block;
	padding: 5px 10px;
	font-size: 1.2em;
	font-weight: bold;
	color: #eb6913;
	margin: 0 2px;
}

.next a {
	display: inline-block;
	position: relative;
	bottom: -7px;
	margin-left: 30px!important;
	color: transparent!important;
	background: url(./img/lower/arrow_next.svg) no-repeat;
	background-size: 0.7em;
}

.prev a {
	display: inline-block;
	position: relative;
	bottom: -7px;
	margin-right: 20px!important;
	color: transparent!important;
	background: url(./img/lower/arrow_prev.svg) no-repeat;
	background-size: 0.7em;
}

.active {
	background: #eb6913;
	color: #fff!important;
	padding: 5px 10px;
	font-weight: bold;
	font-size: 1.2em;
	margin: 0 2px;
}

.news_pager li a:hover {
	background: #eb6913;
	color: #fff!important;
	padding: 5px 10px;
}

.next a:hover {
	opacity: 0.7!important;
	background: transparent!important;
}

.prev a:hover {
	opacity: 0.7!important;
	background: transparent!important;
}

/* ニュース部分
--------------------*/

.news-box ul li {
	position: relative;
	padding: 15px 30px;
	border: solid 2px #f7ab05;
	transition: all .3s ease-out 0s;
	margin: 40px 10px 0 0;
	background: #fff;
	min-height: 120px;
}

.news-box ul li:after {
	content: "";
	display: inline-block;
	width: 100%;
	height: 100%;
	background: rgba(247,171,5,0.85);
	position: absolute;
	bottom: -10px;
	right: -10px;
	z-index: -1;
}

.news-link {
	padding: 4px 40px;
	background: url(./img//top/arrow.svg) 94% center / 0.7em auto no-repeat,#eb6913;
	position: absolute;
	bottom: -20px;
	right: -20px;
	z-index: 10;
	color: #fff;
	font-size: 1em;
	border: solid 2px #eb6913;
}

/*.news-link:after {
	content: "〉";
	color: #fff;
	width: 1.3em;
	bottom: 0;
	top: 1px;
	right: -18px;
	position: relative;
	font-weight: bold;
}*/

.news-link:hover {
	background: url(./img//top/arrow_hover.svg) 94% center / 0.7em auto no-repeat,#fff;
  border: solid 2px #eb6913;
  color: #eb6913;
}

/*.news-link:hover:after {
	content: "〉";
	color: #f78e05;
	width: 1.3em;
	bottom: 0;
	top: 1px;
	right: -18px;
	position: relative;
	font-weight: bold;
}*/

.news-content {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.news-content .news-date {
	/*padding: 0 0 0 80px;*/
	font-weight: normal;
}

.news-content .news-title {
	/*padding: 0 0 0 50px;*/
}

.news-title {
	font-weight: bold;
}

/* 一覧へのリンク
--------------------*/

.to-news-list {
    position: absolute;
    top: 67px;
    right: 80px;
    text-decoration: underline;
	transition: all .3s ease-out 0s;
}

.to-news-list:hover {
    color: #e18943;
}

/* NEWアイコン
--------------------*/

.new-icon {
	display: block;
	position: relative;
	top: 0;
	left: 0;
	padding: 5px 10px;
	background: transparent !important;
	min-height: auto !important;
	z-index: 10;
	color: #f7ab05;
}


.lower_ttl1 {
	text-align: center;
	background: #eee;
	padding: 45px 0;
}

.lower_ttl1 img {
	width: auto;
}

/*.lower_ttl2:before {
	top: 1%;
	transform: translateY(50%);
}*/

.news_lower_h2 {
	margin-top: 50px;
}

@media screen and (max-width: 767px) {

	.news-link {
		right: -10px;
	}

	.lower_ttl1 img {
		width: 80%;
	}
	
	.news-box ul li {
		margin-right: 0;
	}
	
	.news-box {
		margin: 30px 0 70px;
	}
}

/* ===================================================================
news detail
=================================================================== */

/* ニュース部分
--------------------*/

.news-detail-content {
	margin: 30px 0 0;
}

.news-detail-content .news-date {
	padding: 0 0 10px;
}

.news-detail-content .news-title {
	font-size: 16px;
	padding: 0 0 10px;
}

.back {
	padding: 30px 0 0;
	text-align: center;
}

/* ===================================================================
404 not found
=================================================================== */

.not-found {
	padding: 15px 0 0;
}

/* ===================================================================
common_style
=================================================================== */

.contents_wrap {
	margin: 50px 0;
	position: sticky;
}

/* ===================================================================
mv_style
=================================================================== */

.mv_wrap {
	position: relative;
	height: 700px;
	background: #eee;
}

.mv_wrap .mv_item {
	position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
	align-items: center;
	height: 700px;
}

.mv_wrap .top_chara {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 80%;
	max-width: 1105px;
	min-width: 1000px;
}

.mv_wrap .top_title {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	max-width: 626px;
}

.mv_item img {
	width: auto;
	display: inline-block;
	margin: 50px;
}

.mv_wrap .top_chara img,
.mv_wrap .top_title img {
	width: 100%;
	margin: 0;
}

@media screen and (max-width: 400px) {

	.mv_wrap {
		height: auto;
		min-height: 500px;
		background: url(./img/top/MV_sp.png) no-repeat,#eee;
		background-size: 100%;
		background-position: center bottom;
	}

	.mv_wrap .mv_item {
		height: auto;
	}

}

@media screen and (min-width: 401px) and  (max-width: 767px) {

	.mv_wrap {
		height: auto;
		min-height: 870px;
		background: url(./img/top/MV_sp.png) no-repeat,#eee;
		background-size: 100%;
		background-position: center bottom;
	}
}

@media screen and (min-width: 768px) and (max-width: 1199px) {

	.mv_item {
		display: none!important;
	}
	
	.mv_wrap {
		background: url(./img/top/MV.png) no-repeat,#eee;
	}
}

/* ===================================================================
title_style
=================================================================== */

h2 {
	max-width: 1000px;
	width: 100%;
	position: relative;
	left: -50px;
	margin: 0 auto;
}

h2 img {
	width: auto;
}

h2:before {
	content: "";
	width: 100%;
	height: 26px;
	border: solid 1px #f7ab05;
	background: #f7ab05;
	position: absolute;
	padding: 0 1%;
	margin: 0 -100%;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;		
}

.ttl_cont:after {
	content: "";
	width: 100px;
	height: 26px;
	border: solid 1px #f7ab05;
	background: #f7ab05;
	position: absolute;
	right: -85px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
}

.ttl_cont {
	display: inline-block;
	padding: 10px 35px 10px 30px;
	border: solid 4px #f7ab05;
	position: relative;
	text-align: center;
}


@media screen and (min-width: 768px) and (max-width: 1110px) {

	h2 {
		left: 0;
		padding-left: 30px;
	}
}

@media screen and (max-width: 767px) {

	h2 {
		left: 0;
		text-align: center;
	}

	h2:before {
		content: "";
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		width: 20%;
		max-width: 60px;
		height: 26px;
		margin: 0;
		padding: 0;
		border: solid 1px #f7ab05;
		background: #f7ab05;
		z-index: 10;
	}

	h2:after {
		content: "";
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
		width: 20%;
		max-width: 60px;
		height: 26px;
		margin: 0;
		padding: 0;
		border: solid 1px #f7ab05;
		background: #f7ab05;
		z-index: 10;
	}

	.ttl_cont {
		width: 80%;
	}

	.ttl_cont img {
		max-width: 200px;
	}

	.ttl_cont:after {
		display: none;
	}
}

/* ===================================================================
service_style
=================================================================== */

.servise_block {
	width: 100%;
	margin: 50px auto;
	position: relative;
	max-width: 1000px;
}

.cont01 {
	background: url(./img/top/cont01_bk.png) right/ cover no-repeat;
	padding: 70px 0;
}

.service01 {
	margin: 0 auto;
}

.service02 {
	margin-left: auto;
}

.text_content_wrap {
	position: relative;
	width: 70%;
}

.text_wrap {
	border: solid 2px #f7ab05;
	padding: 30px;
	background: rgba(255,255,255,0.85);
	position: relative;
	min-height: 120px;
}

.text_wrap:after {
	content: "";
	display: inline-block;
	width: 100%;
	height: 100%;
	background: transparent;
	position: absolute;
	bottom: -10px;
	right: -10px;
	z-index: -1;
	border-bottom: solid 10px rgba(247,171,5,0.85);
	border-right: solid 10px rgba(247,171,5,0.85);
	box-sizing: border-box;
}

.text_content_wrap h3 span {
	display: inline-block;
	position: absolute;
    top: -22px;
    left: -19px;
	z-index: 10;
	color: #3d0000;
	letter-spacing: 3px;
}

/*.Android .text_content_wrap h3 span {
	top: -1.1em;
}*/

.text_content_wrap h3:before {
	content: "";
	width: 33px;
	height: 33px;
	background: #f7ab05;
	border: solid 1px #f7ab05;
	position: absolute;
	left: -26px;
	top: -28px;
	z-index: 10;
}


.text_content_wrap a {
 	display: inline-block;
	padding: 5px 40px;
	background:  url(./img//top/arrow.svg) 94% center / 0.7em auto no-repeat,#eb6913;
	position: absolute;
	bottom: -20px;
	right: -20px;
	z-index: 10;
	color: #fff;
	font-size: 1em;
	border: solid 2px #eb6913;
}

/*.text_content_wrap a:after {
	display: block;
	padding: 25px;
	background: url(./img//top/arrow.svg) 96% center / 0.6em auto no-repeat,#eb6913;
	color: #fff;
	font-size: 1.3em;
	font-weight: bold;
}*/


.text_content_wrap a:hover {
	background: url(./img//top/arrow_hover.svg) 94% center / 0.7em auto no-repeat,#fff;
	border: solid 2px #eb6913;
	color: #eb6913;	
}

/*.text_content_wrap a:hover:after {
	content: "〉";
	color: #f78e05;
	width: 1.3em;
	bottom: 0;
	top: 1px;
	right: -18px;
	position: relative;
	font-weight: bold;
}*/

@media screen and (max-width: 767px) {
	.cont01 {
	background: url(./img/top/cont01_bk_sp.png) no-repeat,#fff;
	background-position: bottom right;
	background-size: 100%;
	padding: 70px 0;
		
}
	

	.service02 {
		margin: 30px auto 0;
	}
	
	.text_content_wrap {
		width: 100%;
	}

	.text_content_wrap a {
	   right: -10px;
   }
	
	.text_content_wrap h3 span {
		left: -9px;
	}
	
	.servise_block {
		padding: 0 15px;
	}
	
	.text_content_wrap h3:before {
		left: -16px;
	}
}

/* ===================================================================
company_style
=================================================================== */

.cont02 {
	/*background: url(./img//top/company_bk.png) bottom/ cover no-repeat, #eeeeee;*/
padding: 70px 0;
	position: relative;
	}

.cont02::before {
	background: url(./img//top/company_bk.png) bottom/ cover no-repeat, #eeeeee;
	background-position: bottom right; 
	content: "";
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.company_block {
	width: 100%;
	margin: 0 auto;
	position: relative;
	max-width: 1000px;
}

.block_img img {
	width: auto;
}

.block_img {
	border: solid 2px #f7ab05;
	background: #fff;
	position: absolute;
  display: inline-block;
  top: -27px;
  right: -20%;
	z-index: 20;
}

.block_img:after {
	content: "";
	display: inline-block;
	width: 100%;
	height: 100%;
	background: rgba(247,171,5,0.85);
	position: absolute;
	bottom: -10px;
	right: -10px;
	z-index: -1;
}

.block_img2 img {
	width: auto;
}

.block_img2 {
	display: inline-block;
	position: absolute;
	right: -29%;
    top: 185px;
	background: transparent!important;
}

.company01 {
	margin: 0 auto 0 35px;
	width: 75%;
}

.info_block {
	/*background: #f7ab05;*/
	background: rgba(255,255,255,0.85);
	color: #3d0000;
	padding: 40px;
	margin-top: 100px;
}

.info_block h3 {
	border-bottom: solid 2px #f7ab05;
  font-size: 1.6em;
	position: relative;
	margin-top: 20px;
}

.info_block h3 span {
	position: absolute;
	top:-29px;
	letter-spacing: 3px;
}

.info_block h3:before {
	content: "";
	width: 30px;
	height: 8px;
	background: #f7ab05;
	border: solid 1px #f7ab05;
	position: absolute;
	left: -40px;
	top: -18px;
}

.info_wrap {
	display: flex;
	justify-content: space-between;
	padding: 20px;
}

.info_cont1 {
	width: calc(100% / 2.15);
}

.info_cont2 {
	width: calc(100% / 2.15);
}

.info_cont1 dl {
	display: flex;
	justify-content: space-between;
	border-bottom: solid 1px #c9afb0;
	padding: 20px 0;
}

.info_cont2 dl {
	display: flex;
	justify-content: space-between;
	border-bottom: solid 1px #c9afb0;
	padding: 20px 0;
}

.info_cont1 dl dt {
	width: 25%;
	font-weight: bold;
	font-size: 1.2em;
}

.info_cont1 dl dd {
	width: 75%;
}

.info_cont1 dd p {
	font-size: 0.9em;
}


.info_cont2 dt {
	width: 25%;
	font-weight: bold;
	font-size: 1.2em;
}

.info_cont2 dl dd {
	/*width: 75%;*/
}

.info_cont2 dd p {
	font-size: 0.9em;
}

.info_cont2 dd a {
	text-decoration: underline;
}

.info_cont2 dd a:hover {
	opacity: 0.7;
}

.dt_style {
	font-size: 0.8em;
}

.dl_style {
	border-bottom: none!important;
}

.dl_style2 {
	display: block!important;
	padding-top: 0!important;
}

.dl_style2 dt {
	width: 100%!important;
}

/*.iPhone .iphone_style {
	font-size: 1em!important;
}*/

.dl_style2 dd {
	width: 100%!important;
}

.access {
	min-height: 230px;
}

.access_info {
	background: rgba(255,255,255,0.85);
	padding: 15px 6% 20px;
	min-height: 150px;
}

.access_info h4 {
	font-size: 1.3em;
}

.access_info h5 {
	font-size: 1.1em;
	width: 14%;
}

.access_info .access_info_li {
    width: 86%;
}

.access_info_wrap {
	display: flex;
	margin-top: 10px;
}

.access_info_wrap ul {
	margin-left: 10px;
}

.company01 div {
	background: rgba(238,238,238,0.85);
}

.company_img_sp {
	text-align: center;
	position: relative;
	min-height: 250px;
	background: transparent!important;
}

.company_img_wrap {
	display: flex;
	flex-direction: unset;
	align-items: flex-end;
	position: absolute;
	left: 50%;
	top: -50px;
	background: transparent!important;
	transform: translateX(-50%);
}

.company_img_wrap img {
	padding: 0;
}

.block_img_sp {
	border: solid 2px #f7ab05;
	margin-right: 15px;
	position: relative;
	background: transparent!important;
}

.block_img_sp:before {
	content: "";
	display: inline-block;
	width: 100%;
	height: 100%;
	background: rgba(247,171,5,0.85);
	position: absolute;
	bottom: -10px;
	right: -10px;
	z-index: -1;
}

.company_img_sp img {
	width: auto;
	/*padding: 0 0 15px 0;*/
}

.ceo_name {
	padding: 0 0 15px 0;
}

.map_wrap {
	display: flex;
	justify-content: space-between;
	margin: 10px auto;
}

.map_block {
	width: calc(100%/2.02);
}

.ceo_comment {
	padding-right: 30px!important;
}

@media screen and (max-width: 999px) and (min-width: 768px) {

	.company01 {
		width: 90%;
		margin: 0 auto;
	}
	
	.company_img_sp {
		min-height: 70px;
	}

}

@media screen and (max-width: 999px) {

	.comppany_block_wrap {
		display: none;
	}
	
}


@media screen and (min-width: 999px) {

	.company_img_sp {
		display: none;
	}

} 

@media screen and (max-width: 767px) {

	.cont02 {
		/* background: url(./img//top/company_bk_sp.png) no-repeat, #eeeeee;*/
		padding: 70px 0;
		/*background-size: 100%;
		background-position: bottom;*/
	}
	
	.cont02::before {
		background: url(./img//top/company_bk_sp.png) no-repeat, #eeeeee;
		background-position: center bottom; 
		content: "";
		display: block;
		height: 100%;
		left: 0;
		position: absolute;
		top: 0;
		width: 100%;
		z-index: -1;
		background-size: 100%;
	}
	
	.company01 {
		width: 100%;
		margin: 0 auto;
	}
	
	 .company_block {
	 padding: 0 15px;		
	}	
	
	.ttl02 {
		margin: 0 20px;
	}
	
	.ttl02 img {
		width: 100%;
	}
	
	.ttl02:after {
		/*right: -99%;*/
		right: 0;
	}
	
	.info_wrap {
		padding: 20px 0;
		justify-content: center;
		flex-direction: column;
	}
	
	.info_cont1 {
		width: 100%;
	}
	
	.info_cont2 {
		width: 100%;
	}
	
	.info_cont1 dl {
		flex-direction: column;
	}
	
	.info_cont2 dl {
		flex-direction: column;
	}
	
	.dl_style dt {
		margin-left: 0;
	}

	.info_cont1 dl dt,
	.info_cont1 dl dd {
		width: 100%;
	}
	
	.dl_style {
		border-bottom: solid 1px;
	}
	
	.info_block {
		padding: 15px;
		margin-top: 30px;
	}
	
	.map_wrap {
		justify-content: space-between;
		flex-direction: column;
		margin: 0 auto;
	}

	.map_block {
		width: 100%;
		margin: 10px 0 0;
	}

	.access_info {
		min-height: unset;
	}

	.access_info h5,
	.access_info .access_info_li {
		width: 100%;
	}

	.access_info_wrap {
		flex-direction: column;
	}
		
	.access_info_wrap ul {
		margin-left: 0;
	}

	
	
	.ceo_comment {
		padding-right: 0!important;
	}
	
	.company_img_wrap {
		margin-top: 20px;
	}
	
}

@media screen and (max-width: 440px) {

	.company_img_wrap {
		flex-direction: column;
	}
	
	.ceo_name {
	padding-top: 15px!important;
	}
	
}

/* ===================================================================
news_style
=================================================================== */

.cont03 {
	padding: 70px 0;
}

@media screen and (max-width: 767px) {
	.ttl03:after {
		/*right: -99%;*/
		right: 0;
}
	
	.news_ttl_lower img {
		width: auto;
	}
	
	.news_lower img {
		width: 100%;
	}
}
/* ===================================================================
recruit_style
=================================================================== */

.cont04 {
	background:url(./img//top/cont04_bk.png) no-repeat,#eee;
	background-size: cover;
	background-position: right;
	padding: 70px 0;
}

.recruit_block {
	width: calc(100% / 2.15);
	position: relative;
	margin-bottom: 50px;
}

.sp_only{
	display: none;
}

.fs0{
	width: 57%;
}

.fs1 {
	width: 43%;
	font-size: 0.8em;
}

body.en .cont04 .fs0{
	width: 53%;
}

body.en .cont04 .fs1{
	width: 47%;
}

@media screen and (max-width: 768px) {
	.sp_only{
		display: inline;
	}
		
	.fs0{
		width: 60%;
	}

	.fs1 {
		width: 40%;
	}
	
	body.en .cont04 .fs0{
	width: 60%;
	}

	body.en .cont04 .fs1{
		width: 40%;
	}
}

.recruit01 {
	width: 100%;
	position: sticky;
	margin: 0 auto;
}

.recruit01 div {
	min-height: 130px;
	background: #fff;
}

@media all and (-ms-high-contrast: none) {
  .recruit01 div {
	min-height: 35px!important;
}
}

.recruit_contwrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 50px auto;
	max-width: 1000px;
	width: 100%;
}

@media all and (-ms-high-contrast: none) {
	.recruit_ie_contwrap {
		display: block;
	}
}

.recruit_block02 {
	margin: 20px 0 0;
}

.recruit_block02 ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.recruit_block02 ul li {
	margin: 30px 0 5px;
	width: calc(100%/2.1);
}

.recruit_block02 a {
	display: flex;
	align-items: center;
	height: 75px;
    padding: 0 50px 0 20px;
	background: url(./img/top/arrow.svg) 96% center / 0.6em auto no-repeat,#eb6913;
	color: #fff;
	font-size: 1.3em;
	font-weight: bold;
	border: solid 2px #eb6913;
}

.recruit_block02 a:hover {
	background: url(./img/top/arrow_hover.svg) 96% center / 0.6em auto no-repeat,#fff;
	border: solid 2px #eb6913;
	color: #eb6913;
}

.recruit_info_text {
	text-align: center;
	margin: 0 auto;
}

.recruit_info_text a {
	color: #f78e05;
	border-bottom: solid 1px;
}

.recruit_info_text a:hover {
	border-bottom: none;
}

	.text_date_wrap {
		min-height: initial!important;
		display: flex;
		align-items: baseline;
	}
	
	.text_title_wrap {
		min-height: initial!important;
	}

.recruit01 .text_wrap {
	padding: 20px!important;
}

@media screen and (max-width: 767px) {
	.cont04 {
	background: url(./img//top/cont04_bk_sp.png) no-repeat,#eee;
	background-size: contain;
	background-position: right 140%;
	padding: 70px 0;
}
	

	.recruit_contwrap {
		display: block;
		padding: 0 15px;
		margin-bottom: 0;
	}
	
	.recruit_block {
		width: 100%;
		margin-bottom: 30px;
	}
	
	.recruit_block02 ul {
		flex-direction: column;
	}
	
	.recruit_block02 ul li {
		width: 100%;
		margin: 0 0 15px;
	}
	
	.recruit_block02 a {
		font-size: 1em;
		padding: 0 35px 0 20px;
	}
	

}

/* ===================================================================
contact_style
=================================================================== */

.cont05 {
	background: #fff;
	padding: 70px 0;
}


.contact_block {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
}

.contact_mail_wrap img {
	width: auto;
}

.contact_mail_wrap {
	text-align: center;
}

.contact_mail_wrap2 {
	text-align: center;
}

.contact_mail_wrap3 {
	text-align: center;
}

.contact_mail_wrap3 p {
	font-size: 1.3em;
	color: #f7ab05;
}

.contact_mail_wrap3 ul {
	display: flex;
	justify-content: space-around;
}

.contact_mail_wrap3 li:first-letter {
	color: #f7ab05;
}

/* ===================================================================
news_style
=================================================================== */
/*詳細ページ*/
/* 見出し部分
--------------------*/
.detail_news-date {
	font-size: 1.3em;
	color: #460200;
	margin-bottom: 5px;
}

.detail_news-title {
	font-size: 1.5em;
	color: #460200;
	font-weight: bold;
}

.news_detail_date {
	margin-bottom: 30px;
}

.news_detail_content {
	margin: 60px auto;
	max-width: 1000px;
	width: 100%;
}

.dedail_back a {
	font-size: 1.3em;
	color: #eb6913;
	font-weight: bold;
}

.dedail_back a:before {
	content: "〈";
    color: #eb6913;
    width: 1.3em;
    bottom: 0;
    top: 1px;
    left: -18px;
    position: relative;
    font-weight: bold;
}

.dedail_back a:hover {
	opacity: 0.7;
}

/*.news_detail_content .date {
	font-size: 18px;
	color: #005852;
	margin: 0 0 10px;
}

.news_detail_content h2 {
	font-size: 24px;
	margin: 0 0 60px;
}

.news_detail_content h2:after {
	display: none;
}
*/
/* ビジュアルエディタ部分
--------------------*/

.news_detail_content h3 {
	padding: .25em 0 .5em .75em;
	border-left: 6px solid #f7ab05;
	border-bottom: 1px solid #f7ab05;
	color: #460200;
	font-size: 1.3em;
	font-weight: bold;
	margin: 15px 0;
}

.news_detail_content h4 {
	padding-left: 15px;
	/*border-left: 6px solid #f7ab05;*/
	color: #460200;
	font-size: 1.1em;
	font-weight: bold;
	margin: 15px 0;
	position: relative;
}

.news_detail_content h4:before {
	content: "";
	border-left: 6px solid #f7ab05;
	height: 17px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

/*.news_detail_content h4:before {
	content: '';
	position: absolute;
	top: 4px;
	left: 0;
	width: 16px;
	height: 16px;
	background: #005852;
}*/

.news_detail_content pre {
    white-space: pre-wrap;
    margin: 0 0 30px;
}

.news_detail_content blockquote {
	background: #f1f1f1;
	padding: 25px 20px;
	margin: 0 0 30px;
}

.news_detail_content ul {
	display: block;
	width: 100%;
	border-top: solid 2px #f7ab05;
	border-bottom: solid 2px #f7ab05;
	padding: 10px 0;
	margin: 0 0 30px;
	font-weight: bold;
}

.news_detail_content ul li {
	position: relative;
	list-style: none;
  padding: 0 0 0 20px;
	margin: 5px 0;
}

.news_detail_content ul li:before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 5px;
	width: 10px;
	height: 10px;
	border-radius: 5px;
	background: #f7ab05;
}

.news_detail_content ol {
	display: block;
	width: 100%;
	border-top: solid 2px #f7ab05;
	border-bottom: solid 2px #f7ab05;
	padding: 10px 0;
	margin: 0 0 30px;
	font-weight: bold;
	counter-reset: item;
}

.news_detail_content ol li {
	position: relative;
	list-style: none;
  padding: 0 0 0 20px;
	margin: 5px 0 0 5px;
}

.news_detail_content ol li:before {
	position: absolute;
    left: 0;
	counter-increment: item;
	content: counter(item)'.';
	font-weight: bold;
	color: #f7ab05;
}

.news_detail_content img {
	display: block;
	width: 60%;
	height: auto;
	margin: 0 auto 30px;	
}

.news_detail_content table {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 2px;
	margin: 20px 0;
}

.news_detail_content table tr td {
	padding: 20px 16px;
	background: #f1f1f1;
	border: none;
}

.news_detail_content table tr td:first-child {
	color: #fff;
	background: #460000;
}

.news_detail_content a {
	display: block;
	width: 250px;
	margin: 0 auto 30px;
	padding: 10px 0;
	color: #fff;
	text-align: center;
	font-weight: bold;
	background: #eb6913;
	text-decoration: none;
	transition: .3s;
	border: solid 2px #eb6913;
}

.news_detail_content a:hover {
	color: #eb6913;
	background: transparent;
	border:  solid 2px #eb6913;
}

@media screen and (max-width: 767px) {

	/* 見出し部分
	--------------------*/

	.news_detail_content {
		margin: 20px 0;
	}

	.news_detail_content h2 {
		text-align: left;
		margin: 0 0 20px;
	}

	/* ビジュアルエディタ部分
	--------------------*/

	.news_detail_content h3 {
		margin: 15px 0;
	}

	.news_detail_content h4 {
		margin: 15px 0;
	}

	.news_detail_content pre {
		margin: 0 0 20px;
	}

	.news_detail_content blockquote {
		padding: 20px 16px;
		margin: 0 0 20px;
	}

	.news_detail_content ul {
		width: 100%;
		margin: 15px 0;
	}

	.news_detail_content img {
		width: 100%;
		margin: 0 auto 20px;	
	}

	.news_detail_content table {
		margin: 15px 0;
	}

	.news_detail_content a {
		margin: 15px auto 15px;
	}

}

/* ===================================================================
privacy_style
=================================================================== */

.privacy_text_inner {
	width: 100%;
	max-width: 1000px;
	margin: 70px auto;
}

.privacy_text_block {
	margin: 30px 0;
}

.privacy_text_block h4 {
  padding: .25em 0 .5em .75em;
  border-left: 6px solid #f7ab05;
  border-bottom: 1px solid #f7ab05;
	color: #460000;
	font-size: 1.3em;
	font-weight: bold;
	margin-bottom: 15px;
}

.privacy_text_inner h3 {
	width: 100%;
	text-align: left;
	margin-bottom: 15px;
	border-bottom: solid 2px #f7ab05;
	position: relative;
}

.privacy_text_inner h3 span {
	font-size: 1.5em;
	letter-spacing: 3px;
	position: absolute;
    bottom: 1px;
    left: 6px;
}

@media all and (-ms-high-contrast: none){
  .privacy_text_inner h3 span {
	bottom: -4px;
}
}

.Android .privacy_text_inner h3 span {
	bottom: -2px;
}

.privacy_text_inner h3:before {
	content: "";
	width: 38px;
	height: 38px;
	background: #f7ab05;
	border: solid 1px #f7ab05;
	position: absolute;
	left: -2px;
	top: -33px;
}

.privacy_text_block ol {
	margin-top: 20px;
}

.privacy_text_block li p {
	text-align: left;
	padding-left: 1em;
	text-indent: -0.9em;
}

.pryvacy_caution p {
	text-align: left;
	padding-left: 1em;
	text-indent: -1em;
}

.pryvacy_caution a {
	font-weight: bold;
	color: #f78e05;
	border-bottom: solid 1px;
}

@media screen and (min-width: 768px) {
.pryvacy_caution a:hover {
	border-bottom: none;
}
}

.pryvacy_sign {
	text-align: right;
	margin: 50px 0 30px;
}

.privacy_text_inner table {
	width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
}

.privacy_text_inner th {
	text-align: left;
	width: 25%;
	background: #460000;
	padding: 20px;
	color: #fff;
	border-bottom: solid 2px #fff;
	border-top: solid 2px #fff;
	border-right: solid 1px #fff;
	font-weight: normal;
	font-size: 1.2em;
	vertical-align: middle;
}
.privacy_text_inner td {
	background: #f1f1f1;
	padding: 20px;
	border-bottom: solid 2px #fff;
	border-top: solid 2px #fff;
	border-left: solid 1px #fff;
	vertical-align: middle;
}

.privacy_text_inner td a {
	font-weight: bold;
	color: #f78e05;
	border-bottom: solid 1px;
}

@media screen and (min-width: 768px) {
.privacy_text_inner td a:hover {
	border-bottom: none;
}
}

.sp_table {
	width: 100%;
	border-collapse: collapse;
  margin: 40px 0;
}

.privacy_text_inner dt {
	text-align: center;
	background: #460000;
	padding: 10px;
	color: #fff;
	border-bottom: solid 1px #fff;
	border-top: solid 1px #fff;
	font-weight: normal;
}

.privacy_text_inner dd {
	background: #f1f1f1;
	padding: 20px;
	border-bottom: solid 1px #fff;
	border-top: solid 1px #fff;
}

.privacy_text_inner dd a {
	font-weight: bold;
	color: #f78e05;
	border-bottom: solid 1px;
}

@media screen and (min-width: 768px) {
	.privacy_text_inner dd a:hover {
	border-bottom: none;
}
}

@media screen and (max-width: 767px) {
	.privacy_text_inner {
		padding: 0 10px;
	}
	
	.privacy_text_inner h3 {
		margin: 20px 0;
	}
	
	/*.privacy_text_inner h3 span {
		font-size: 1.6em;
	}*/
}

/* ===================================================================
form_style
=================================================================== */

input::placeholder {
	color: #a87d7d;
}

/* IE */
input:-ms-input-placeholder {
color: #a87d7d;
}

/* Edge */
input::-ms-input-placeholder {
color: #a87d7d;
}

/* title, item
--------------------*/

.contact_form .form-title {
	padding: 40px 0 30px;
	text-align: center;
}

.contact_form .this_required {
	color: #f7ab05;
	padding: 0 0 0 10px;
	font-size: 15px;
	font-weight: bold;
}

.contact_form dl dt { /* 各項目 */
	position: relative;
	margin: 0 0 10px;
	padding: 0 0 0 10px;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.3;
}

.contact_form dl dt:before { /* 各項目 帯部分 */
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 6px;
	height: 100%;
	background: #f7ab05;
}

.contact_fs {
	font-size: 0.9em;
}

/* layout
--------------------*/

.contact_form .form_style {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact_form dl {
	width: 47.5%;
	margin: 0 0 20px;
}

.contact_form dl:first-of-type {
	margin: 0 5% 20px 0;
}

.contact_form dl.contact-textarea {
    width: 100%;
    margin: 0 0 20px;
}

.contact_form dl.contact_acceptance {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}


/* layout adress etc
--------------------*/

.contact_form dl.adressstyle01 {
	width: 14%;
	margin: 0 5% 20px 0;
}

.contact_form dl.adressstyle02 {
	width: 81%;
}

.contact_form dl.adressstyle02 ul {
	display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact_form dl.adressstyle02 ul li:nth-of-type(1) {
	position: relative;
	width: 17%;
	margin: 0 2% 0 0;
}

.contact_form dl.adressstyle02 ul li:nth-of-type(1):after {
    content: '';
    position: absolute;
    top: 14px;
    right: 10px;
    width: 10px;
    height: 8px;
    background: url(img/form/under_arrow.png) 50% 50% / contain no-repeat, transparent;
    pointer-events: none;
    transition: all .3s ease-out 0s;
}

.contact_form dl.adressstyle02 ul li:nth-of-type(2) {
	width: 17%;
	margin: 0 2% 0 0;
}

.contact_form dl.adressstyle02 ul li:nth-of-type(3) {
	width: 30%;
	margin: 0 2% 0 0;
}

.contact_form dl.adressstyle02 ul li:nth-of-type(4) {
	width: 30%;
}

/* file
--------------------*/

.contact_form input[type=file] {
	display: none;
}

.contact_form dl.fileform {
	position: relative;
}

.contact_form dl.fileform label {
	display: block;
	padding: 0 0 10px;
	cursor: pointer;
}

.contact_form dl.fileform label span.file_upload01,
.contact_form dl.fileform label span.file_upload02 {
	position: relative;
	padding: 0 0 0 145px;
}

.contact_form dl.fileform label span.file_upload01:before,
.contact_form dl.fileform label span.file_upload02:before {
	content: "ファイルを選択";
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	left: 0;
	display: flex;
    align-items: center;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
    padding: 4px 20px;
	border-radius: 5px;
	background: #eb6912;
	transition: all .3s ease-out 0s;
}

.contact_form dl.fileform label:hover span.file_upload01:before,
.contact_form dl.fileform label:hover span.file_upload02:before {
	opacity: .75;
}

.contact_form dl.fileform span.wpcf7-not-valid-tip { /* fileが選択されていない時に出すエラー文言の位置 */
    padding: 5px 0 0;
}

/* form
--------------------*/

.contact_form input,
.contact_form select {
	width: 100%;
	height: 35px;
	padding: 5px;
	font-size: 13px;
	background: #eee;
}

.contact_form input[type=file] {
	background: transparent;
}

.contact_form textarea {
	width: 100%;
	padding: 5px;
	font-size: 13px;
	background: #eee;
}

/* delete
--------------------*/

span.wpcf7-list-item {
    display: inline-block;
    margin: 0 !important;
    padding: 0 !important;
}

/* radio
--------------------*/

.contact_form dl.radio-form_style {
	width: 30%;
	margin: 0 0 20px;
}

.contact_form input[type=radio] {
	display: none;
}

.contact_form dl dd.contact-radio {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}

.contact_form dl dd.contact-radio label {
	padding: 0 20px 0 0;
	cursor: pointer;
}

.contact_form dl dd.contact-radio span.wpcf7-list-item-label {
	padding: 0 0 0 30px;
}

.contact_form dl dd.contact-radio span.wpcf7-list-item-label:before {
    content: "";
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	left: 0;
    display: block;
    width: 18px;
    height: 18px;
	background: #eee;
	border-radius: 50%;
}

.contact_form dl dd.contact-radio input[type=radio]:checked + span.wpcf7-list-item-label:after,
.contact_form dl dd.contact-radio input[type=radio]:checked + input[type=hidden] + span.wpcf7-list-item-label:after {
    content: "";
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	left: 5px;
    display: block;
    width: 8px;
    height: 8px;
	background: #eb6912;
	border-radius: 50%;
}

/* checkbox
--------------------*/

div[data-id=Application01] {
	width: 70%;
}

.contact_form dl.checkbox-form_style {
	width: 100%;
	margin: 0 0 20px;
}

.contact_form input[type=checkbox] {
	display: none;
}

.contact_form dl dd.contact-checkbox {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}

.contact_form dl dd.contact-checkbox label {
	padding: 0 20px 0 0;
	cursor: pointer;
}

.contact_form dl dd.contact-checkbox span.wpcf7-list-item-label {
	padding: 0 0 0 30px;
}

.contact_form dl dd.contact-checkbox span.wpcf7-list-item-label:before {
    content: "";
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	left: 0;
    display: block;
    width: 18px;
    height: 18px;
	background: #eee;
}

.contact_form dl dd.contact-checkbox input[type=checkbox]:checked + span.wpcf7-list-item-label:after,
.contact_form dl dd.contact-checkbox input[type=checkbox]:checked + input[type=hidden] + span.wpcf7-list-item-label:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 5px;
    width: 5px;
    height: 10px;
    transform: rotate(40deg);
    border-bottom: 3px solid #eb6912;
    border-right: 3px solid #eb6912;
}

/* privacy policy
--------------------*/

.contact_form dl.contact_acceptance {
	margin: 0 0 30px;
}

.contact_form dl.contact_acceptance label {
	cursor: pointer;
}

.contact_form dl.contact_acceptance label span.wpcf7-list-item-label {
	position: relative;
	padding: 0 0 0 30px;
}

.contact_form dl.contact_acceptance label span.wpcf7-list-item-label:before {
    content: "";
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	left: 0;
    display: block;
    width: 18px;
    height: 18px;
	background: #eee;
}

.contact_form dl.contact_acceptance label input[type=checkbox]:checked + span.wpcf7-list-item-label:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 5px;
    width: 5px;
    height: 10px;
    transform: translate(0, -50%) rotate(40deg);
    border-bottom: 3px solid #eb6912;
    border-right: 3px solid #eb6912;
}

.contact_form dl.contact_acceptance label span {
	font-weight: bold;
}

.contact_form dl.contact_acceptance label span a {
	color: #eb6912;
	text-decoration: underline;
}

/* form btn
--------------------*/

.contact_form .form_btn {
	position: relative;
	display: flex;
	justify-content: center;
}

.contact_form .form_btn #confirm {
	width: 250px;
	margin: 0 10px;
	color: #460000;
	font-weight: bold;
	background: #eee;
	border: 2px solid #eee;
	transition: all .3s ease-out 0s;
}

.contact_form .form_btn #confirm.active {
	color: #fff;
	background: #eb6912;
	border: 2px solid #eb6912;
	cursor: pointer;
}

.contact_form .form_btn #back {
	width: 250px;
	margin: 0 10px;
	color: #460000;
	font-weight: bold;
	background: #eee;
	border: 2px solid #eee;
	cursor: pointer;
}

.contact_form .form_btn #submit {
	width: 250px;
	margin: 0 10px;
	color: #fff;
	font-weight: bold;
	background: #eb6912;
	border: 2px solid #eb6912;
	cursor: pointer;
}

.contact_form .form_btn .ajax-loader {
	display: none;
}

/* done text
--------------------*/

div.wpcf7-mail-sent-ok {
    font-size: 20px;
    text-align: center;
    border: none !important;
}


@media screen and (max-width: 767px) {

	/* layout
	--------------------*/

	.contact_form {
		width: 100%;
		padding: 0 20px;
	}

	.contact_form .form_style {
		display: block;
	}

	.contact_form dl {
		width: 100%;
		margin: 0 0 20px;
	}

	/* layout adress etc
	--------------------*/

	.contact_form dl.adressstyle01 {
		width: 100%;
		margin: 0 0 20px;
	}

	.contact_form dl.adressstyle02 {
		width: 100%;
	}

	.contact_form dl.adressstyle02 ul {
		display: block;
	}
	
	.contact_form dl.adressstyle02 ul li:nth-of-type(1) {
		position: relative;
		width: 100%;
		margin: 0 0 10px;
	}
	
	.contact_form dl.adressstyle02 ul li:nth-of-type(2),
	.contact_form dl.adressstyle02 ul li:nth-of-type(3),
	.contact_form dl.adressstyle02 ul li:nth-of-type(4) {
		width: 100%;
		margin: 0 0 10px;
	}

	/* radio
	--------------------*/

	.contact_form dl.radio-form_style {
		width: 100%;
	}

	/* checkbox
	--------------------*/

	div[data-id=Application01] {
		width: 100%;
	}

	.contact_form dl dd.contact-checkbox label:first-of-type {
		margin: 0 0 10px;
	}

	/* form btn
	--------------------*/

	.contact_form .form_btn {
		flex-wrap: wrap;
	}

	.contact_form .form_btn #confirm,
	.contact_form .form_btn #back,
	.contact_form .form_btn #submit {
		margin: 0 0 10px;
	}

}


/* ===================================================================
footer_style
=================================================================== */

footer {
	background: #eee;
	color: #460000;
	border-top: solid 3px #f7ab05;
	border-bottom: solid 22px #f7ab05;
}

.ft_contents {
	text-align: center;
	padding: 50px 0 5px;
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
}

.ft_contents ul {
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
}

.ft_contents small p {
	font-size: 0.8em;
}

.ft_contents ul li:first-child {
	margin-right: 20px;
}

.ft_contents ul li:last-child {
	margin-left: 20px;
}

.ft_contents ul li a {
	font-weight: bold;
	font-size: 1.2em;
}

.ft_contents ul li a:hover {
	opacity: 0.7;
}

@media screen and (max-width: 767px) {
	.ft_contents ul {
		flex-direction: column;
		text-align: center;
	}
	
	.ft_contents ul li a {
		font-size: 1em;
	}
	
	.ft_contents ul li:first-child {
	margin-right: 0;
	margin-bottom: 10px;	
}

.ft_contents ul li:last-child {
	margin-left: 0;
}
}


/* ===================================================================
 pagetop
=================================================================== */
.pagetop {
	position: relative;
}

.pagetop a {
	position: absolute;
	top: -50px;
	right: 20px;
}

.pagetop img {
	width: auto;
}


/* ===================================================================
Service(lower)_style
=================================================================== */

.lower_cont01 {
	padding: 70px 0 40px;
}

.lower_contents_wrap {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}

.service_intro {
	margin: 30px 0;
	text-align: center;
	letter-spacing: 2px;
}

@media screen and (max-width: 767px) {
	.lower_11l3 {
		margin: 0 20px
	}

	.lower_11l3 img {
		width: 100%;
	}	
	
	.lower_contents_wrap {
		padding: 0 15px;
	}
	
	.lower_ttl_service img {
		width: auto;
	}
	
	.lower_11l3:after {
		/*right: -99%;*/
		right: 0;
	}
	
	.service_intro {
		text-align: left;
	}
}

/*エンターテインメント事業*/

.service-cat {
	font-size: 1.3em;
	margin: 0 0 20px;
	color: #f7ab05;
	font-weight: bold;
}

.service_intro p {
	line-height: 2;
	font-weight: bold;
	color: #f7ab05;
	font-size: 1.1em;
}

.game_list_wrap ul {
	display: flex;
	justify-content: space-between;
	margin-bottom: 50px;
}

.game_list_wrap li {
	width: calc(100%/3.3);
	position: relative;
}

.game_info_block {
	border: solid 2px #f7ab05;
	position: relative;
	padding: 15px;
	background: #fff;
	height: 275px;
}

.game_info_block:before {
	content: "";
	display: inline-block;
	width: 100%;
	height: 100%;
	background: rgba(247,171,5,0.85);
	position: absolute;
	bottom: -10px;
	right: -10px;
	z-index: -1;
}

/*@media screen and (-webkit-min-device-pixel-ratio:0) {
  ::i-block-chrome, .game_info_block{
    height: 250px;
  }
	
	.safari_style h4 {
		margin-bottom: 0;
	} 
}*/

.game_info_img img {
	max-width: 270px;
	width: 100%;
	/*width: auto;*/
	margin: 0 auto;
	position: relative;
	bottom: 0;
	overflow: hidden;
}

.game_info_img {
	text-align: center;
	display: flex;
	align-items: center;
	min-height: 110px;
	position: relative;
}

.fs_game {
	font-size: 0.7em;
}

.gamelist_lastchild {
	justify-content: flex-start!important;
}

.gamelist_lastchild li:last-child {
	margin-left: 45px;
}

.game_info_block h4 {
	position: relative;
	max-height: 25px;
	font-size: 1.3em;
	margin-bottom: 15px;
	z-index: 3;
	text-shadow: 
		rgba(255,255,255,.25) 2px 0px,
		rgba(255,255,255,.25) -2px 0px,
		rgba(255,255,255,.25) 0px -2px,
		rgba(255,255,255,.25) 0px 2px,
		rgba(255,255,255,.25) 2px 2px,
		rgba(255,255,255,.25) -2px 2px,
		rgba(255,255,255,.25) 2px -2px,
		rgba(255,255,255,.25) -2px -2px,
		rgba(255,255,255,.25) 0px 2px,
		rgba(255,255,255,.25) -1px 2px,
		rgba(255,255,255,.25) 1px -2px,
		rgba(255,255,255,.25) -1px -2px,
		rgba(255,255,255,.25) 2px 1px,
		rgba(255,255,255,.25) -2px 1px,
		rgba(255,255,255,.25) 2px -1px,
		rgba(255,255,255,.25) -2px -1px;
}

.game_info_block h4:before {
	content: "";
	width: 15px;
	height: 8px;
	border: solid 1px #f7ab05;
	background: #f7ab05;
	position: absolute;
	left: -8%;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
}

.game_info_text {
    position: relative;
    z-index: 3;
	text-shadow: 
		rgba(255,255,255,.25) 2px 0px,
		rgba(255,255,255,.25) -2px 0px,
		rgba(255,255,255,.25) 0px -2px,
		rgba(255,255,255,.25) 0px 2px,
		rgba(255,255,255,.25) 2px 2px,
		rgba(255,255,255,.25) -2px 2px,
		rgba(255,255,255,.25) 2px -2px,
		rgba(255,255,255,.25) -2px -2px,
		rgba(255,255,255,.25) 0px 2px,
		rgba(255,255,255,.25) -1px 2px,
		rgba(255,255,255,.25) 1px -2px,
		rgba(255,255,255,.25) -1px -2px,
		rgba(255,255,255,.25) 2px 1px,
		rgba(255,255,255,.25) -2px 1px,
		rgba(255,255,255,.25) 2px -1px,
		rgba(255,255,255,.25) -2px -1px;
}

.game_info_text h5 {
	color:#f7ab05;
	margin: 20px 0 5px;
	font-size: 1.1em;
}

.game_info_block a {
	padding: 5px 40px;
	background: url(./img//top/arrow.svg) 94% center / 0.7em auto no-repeat,#eb6913;
	position: absolute;
	bottom: -20px;
	right: -20px;
	z-index: 10;
	color: #fff;
	font-size: 1em;
	border: solid 2px #eb6913;
}

/*.game_info_block a:after {
	content: "〉";
	color: #fff;
	width: 1.3em;
	bottom: 0;
	top: 1px;
	right: -18px;
	position: relative;
	font-weight: bold;
}*/

.game_info_block a:hover {
	background: url(./img//top/arrow_hover.svg) 94% center / 0.7em auto no-repeat,#fff;
  border: solid 2px #eb6913;
  color: #eb6913;
}

/*.game_info_block a:hover:after {
	content: "〉";
	color: #f78e05;
	width: 1.3em;
	bottom: 0;
	top: 1px;
	right: -18px;
	position: relative;
	font-weight: bold;
}*/

.game_list_wrap .to-corporate {
	justify-content: left!important;
}

.to-corporate .game_info_text h5 {
	margin: 5px 0 20px!important;
}

/*エンターテインメント事業 2020 0128 追記*/

.game_info_img.cryptract_img {
	position: relative;
    z-index: 1;
}

.game_info_img.cryptract_img img {
	position: absolute;
    top: 50%;
    left: 50%;
	transform: translate(-50%, -50%);
	max-width: 200px;
    z-index: 1;
}

.game-platform {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.game-platform > div {
    margin: 0 12px 0 0;
}

.game-platform .plat-pc,
.game-platform .plat-ios,
.game-platform .plat-android {
	color: #f7ab05;
	font-size: 10px;
	font-weight: bold;
    padding: 3px 5px;
	border: 2px solid #f7ab05;
	line-height: 1;
}

@media all and (-ms-high-contrast: none){

	.game-platform .plat-pc,
	.game-platform .plat-ios,
	.game-platform .plat-android {
		padding: 6px 5px 3px;
	}
  }


.game-platform .plat-ps4 {
	width: 50px;
}

.game-platform .plat-psvita {
	width: 60px;
}

.game-platform .plat-ps3 {
	width: 35px;
}

.game-platform .plat-switch {
	width: 40px;
}

@media screen and (max-width: 767px) {

	.game_list_wrap ul {
		display: block;
		margin-bottom: 0;
	}
	
	.game_list_wrap li {
		width: 100%;
		margin-bottom: 50px; 
	}
	
	.game_info_img {
		text-align: center;
	}

	.game_info_block a {
		right: -10px;
	}

	.game_info_block h4:before {
		left: -7%;
	}
	
	.gamelist_lastchild li:last-child {
		margin-left: 0;
	}
	
}

@media screen and (min-width: 540px) and  (max-width: 767px)  {
	.game_info_block h4:before {
		left: -4%;
	}
}

/*ライフスタイル事業*/
.lower_cont02 {
	background: #eee;
	padding: 70px 0;
}

.lifestyle_img img {
	min-width: 450px;
	width: 100%;
}

/*.lifestyle_wrap1 {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 50px;
}*/

.lifestyle_wrap1 {
	text-align: center;
}

.lifestyle_wrap1_img {
	text-align: center;
}

.lifestyle_wrap1_img img {
	max-width: 772px;
	width: 100%;
}

.lifestyle_wrap1_text {
	color: #460000;
	font-weight: bold;
	margin: 30px 0;
	font-size: 1.2em;
	letter-spacing: 2px;
}

.lifestyle_wrap_fs {
	display: block;
	font-size: 1.3em;
	margin: 0 0 5px;
}


.lifestyle_wrap2 {
	display: flex;
	justify-content: center;
	margin-bottom: 50px;
}

.lifestyle_cont01 {
	width: 100%;
	padding: 20px 25px;
	background: #f7ab05;
}

.lifestyle_cont01 img {
	width: 100%;
}

.lifestyle_ttl_wrap {
	line-height: 4;
}

.lifestyle_cont02 h4 {
	width: 100%;
	/*background: #f7ab05;
	color: #fff;
	padding: 5px 25px;*/
	text-align: left;
	margin-bottom: 15px;
	border-bottom: solid 2px #f7ab05;
	position: relative;
}

.lifestyle_cont02 h4:before {
	content: "";
	width: 38px;
	height: 38px;
	background: #f7ab05;
	border: solid 1px #f7ab05;
	position: absolute;
	left: -2px;
	top: -33px;
}

.lifestyle_cont02 h4 span {
	font-size: 1.5em;
	letter-spacing: 3px;
	position: absolute;
	bottom: 1px;
    left: 14px;
}

@media all and (-ms-high-contrast: none){
  .lifestyle_cont02 h4 span {
	bottom: -4px;
}
}


.Android .lifestyle_cont02 h4 p {
	bottom: -3px;
}

.lifestyle_cont02 {
	margin-top: 50px;
}

.lifestyle_info_text {
	padding-right: 20px;
}

.lifestyle_cont02_2 h4 {
	width: 100%;
	/*background: #f7ab05;
	color: #fff;
	padding: 5px 25px;*/
	text-align: left;
	margin-bottom: 15px;
	border-bottom: solid 2px #f7ab05;
	position: relative;
}

.lifestyle_cont02_2 h4:before {
	content: "";
	width: 38px;
	height: 38px;
	background: #f7ab05;
	border: solid 1px #f7ab05;
	position: absolute;
	left: 0;
	top: -33px;
}

.lifestyle_cont02_2 h4 span {
	font-size: 1.5em;
	letter-spacing: 3px;
	position: absolute;
    bottom: 1px;
    left: 7px;
}

@media all and (-ms-high-contrast: none){
 .lifestyle_cont02_2 h4 span {
	bottom: -4px;
}
}


.Android .lifestyle_cont02_2 h4 p {
	bottom: -3px;
}

.lifestyle_cont02_2 {
	margin-top: 50px;
}

.lifestyle_info_text2 {
	padding-left: 20px;
}

.to_contact_btn {
	margin: 30px 0;
	text-align: center;
}

.to_contact_btn a {
	display: inline-block;
	padding: 5px 40px;
	background: url(./img//top/arrow.svg) 94% center / 0.7em auto no-repeat,#eb6913;
	color: #fff;
	font-size: 1em;
	border: solid 2px #eb6913;
	width: 250px;
}

.to_contact_btn a:hover {
	background: url(./img//top/arrow_hover.svg) 94% center / 0.7em auto no-repeat,#fff;
  border: solid 2px #eb6913;
  color: #eb6913;
}

.to_facility_btn {
	margin: 30px 0 50px;
	text-align: center;
}

.to_facility_btn a {
	display: inline-block;
	padding:5px 15px 5px 5px;
	background: url(./img//top/arrow.svg) 97% center / 0.7em auto no-repeat,#eb6913;
	color: #fff;
	font-size: 1em;
	border: solid 2px #eb6913;
	width: 270px;
}

.to_facility_btn a:hover {
	background: url(./img//top/arrow_hover.svg) 97% center / 0.7em auto no-repeat,#fff;
  border: solid 2px #eb6913;
  color: #eb6913;
}

@media screen and (max-width: 767px) {
	.lifestyle_wrap1 {
		flex-direction: column;
	}
	
	.lifestyle_wrap2 {
		flex-direction: column;
	}
	
	.lifestyle_wrap2_2 {
		flex-direction: column-reverse;
	}
	
	.lifestyle_cont02 {
	margin-top: 0;
}
	
	.lifestyle_cont02 h4 {
		margin-bottom: 15px;
	}

.lifestyle_info_text {
	padding-right: 0;
	margin-bottom: 20px;
}
	
	.lifestyle_cont02_2 {
	margin-top: 0;
}

	.lifestyle_cont02_2 h4 {
		margin-bottom: 15px;
	}	
	
.lifestyle_info_text2 {
	padding-left: 0;
	margin-bottom: 20px;
}
	.lifestyle_img img {
		min-width: initial;
	}

	.lifestyle_wrap1_text {
		margin: 20px 0 30px;
	}
	
	.to_contact_btn {
		margin: 70px 0 0 0;
	}
	
	.to_facility_btn {
	margin: 0 0 60px;
}
	
}

/* ===================================================================
*
*
* Multilingual - ver [ en ]
*
*
=================================================================== */

/* ===================================================================
 bogo setting
=================================================================== */

.bogoflags {
	display: none !important;
}

.bogo-language-switcher {
	position: relative;
	display: flex;
	padding: 0 0 0 20px;
}

.bogo-language-switcher:before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	left: 0;
	width: 18px;
	height: 18px;
	background: url(img/common/Multilingual.png) 50% 50% / contain no-repeat, transparent;
}

.bogo-language-switcher li.ja {
	order: 1;
}

.bogo-language-switcher li.en-US {
	order: 2;
}

.bogo-language-switcher li {
    position: relative;
    line-height: 1;
    color: #460000;
    padding: 20px 10px !important;
	text-shadow:
		rgba(238,238,238,.25) 2px 0px,
		rgba(238,238,238,.25) -2px 0px,
		rgba(238,238,238,.25) 0px -2px,
		rgba(238,238,238,.25) 0px 2px,
		rgba(238,238,238,.25) 2px 2px,
		rgba(238,238,238,.25) -2px 2px,
		rgba(238,238,238,.25) 2px -2px,
		rgba(238,238,238,.25) -2px -2px,
		rgba(238,238,238,.25) 1px 2px,
		rgba(238,238,238,.25) -1px 2px,
		rgba(238,238,238,.25) 1px -2px,
		rgba(238,238,238,.25) -1px -2px,
		rgba(238,238,238,.25) 2px 1px,
		rgba(238,238,238,.25) -2px 1px,
		rgba(238,238,238,.25) 2px -1px,
		rgba(238,238,238,.25) -2px -1px;
	transition: all .3s ease-out 0s;
}

header.scroll-event .bogo-language-switcher li,
header.lower-header .bogo-language-switcher li {
    text-shadow: none;
}

.bogo-language-switcher li a {
	position: relative;
}

.bogo-language-switcher li a:after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	right: 0;
	width: 0;
	margin: 0 auto;
	height: 1px;
	background: #460000;
	transition: all .3s ease-out 0s;
}

.bogo-language-switcher li a:hover:after {
	width: 100%;
}

.bogo-language-switcher li.ja:after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translate(0, -50%) rotate(20deg);
	right: 0;
	width: 1px;
	height: 20px;
	background: #460000;
}

@media screen and (max-width: 767px) {

	.bogo-language-switcher {
		padding: 0;
		width: 100%;
		height: 100%;
	}

	.bogo-language-switcher:before {
		content: '';
		position: absolute;
		top: 10px;
		left: 50%;
		transform: translate(-50%, 0);
		width: 15px;
		height: 15px;
		background: url(img/common/Multilingual.png) 50% 50% / contain no-repeat, transparent;
		pointer-events: none;
	}

	.bogo-language-switcher:after {
		content: 'JP/EN';
		position: absolute;
		top: 25px;
		left: 50%;
		transform: translate(-50%, 0);
		color: #460000;
		font-size: 12px;
		line-height: 1.5;
		pointer-events: none;
	}

	.bogo-language-switcher li {
		padding: 0 !important;
	    width: 100%;
    	height: 100%;
	}

	.bogo-language-switcher li.current {
		display: none;
	}

	.bogo-language-switcher li a {
		position: relative;
		opacity: 0;
		display: block;
		width: 100%;
		height: 100%;
	}

	.bogo-language-switcher li a:after,
	.bogo-language-switcher li.ja:after {
		display: none;
	}

}

/* ===================================================================
mv_style
=================================================================== */

body.en .mv_wrap .top_title {
	max-width: 810px;
}

@media screen and (max-width: 400px) {

	body.en .mv_wrap {
		height: auto;
    	min-height: 500px;
		background: url(./img/top/en_MV_sp.png) no-repeat,#eee;
		background-size: 100%;
		background-position: center bottom;
	}

}

@media screen and (min-width: 401px) and  (max-width: 767px) {

	body.en .mv_wrap {
		height: auto;
    	min-height: 500px;
		background: url(./img/top/en_MV_sp.png) no-repeat,#eee;
		background-size: 100%;
		background-position: center bottom;
	}
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
	
	body.en .mv_wrap {
		background: url(./img/top/en_MV.png) no-repeat,#eee;
	}
}

/* ===================================================================
company_style
=================================================================== */

body.en .info_cont1 dl dd {
	width: 70%;
}

body.en .access_info {
	min-height: 250px;
}

body.en .access_info h5 {
	font-size: 1.1em;
	width: 25%;
}

body.en .access_info .access_info_li {
    width: 75%;
}

@media screen and (max-width: 767px) {

	body.en .info_cont1 dl dd {
		width: 100%;
	}

	body.en .access_info {
		min-height: unset;
	}

	body.en .access_info h5,
	body.en .access_info .access_info_li {
		width: 100%;
	}

	body.en .info_block {
		margin-top: 50px;
	}

}

/* ===================================================================
recruit_style
=================================================================== */

body.en .cont04 .fs1 {
	font-size: 0.8em;
/*	padding: 0 0 0 10px;*/
}

@media screen and (max-width: 767px) {

	body.en .cont04 .fs1 {
		display: block;
/*		width: 100%;*/
		padding: 0;
	}

}

/* ===================================================================
 form_style
=================================================================== */

/* title, item
--------------------*/

body.en .contact_form .this_required {
	font-size: 13px;
	padding: 0 0 0 5px;
}

/* layout adress etc
--------------------*/

body.en .contact_form dl.adressstyle01 {
	width: 20%;
	margin: 0 5% 20px 0;
}

body.en .contact_form dl.adressstyle02 {
	width: 75%;
}

body.en .contact_form dl.adressstyle02 ul li:nth-of-type(1) {
	position: relative;
	width: 20%;
	margin: 0 2% 0 0;
}

body.en .contact_form dl.adressstyle02 ul li:nth-of-type(2) {
	width: 20%;
	margin: 0 2% 0 0;
}

body.en .contact_form dl.adressstyle02 ul li:nth-of-type(3) {
	width: 27%;
	margin: 0 2% 0 0;
}

body.en .contact_form dl.adressstyle02 ul li:nth-of-type(4) {
	width: 27%;
}

/* file
--------------------*/

body.en .contact_form dl.fileform label span.file_upload01:before,
body.en .contact_form dl.fileform label span.file_upload02:before {
	content: "Select a file";
}

@media screen and (max-width: 767px) {

	/* title, item
	--------------------*/

	body.en .contact_form dl dt { /* 各項目 */
		font-size: 14px;
	}

	/* layout adress etc
	--------------------*/

	body.en .contact_form dl.adressstyle01 {
		width: 100%;
		margin: 0 0 20px;
	}

	body.en .contact_form dl.adressstyle02 {
		width: 100%;
	}

	body.en .contact_form dl.adressstyle02 ul {
		display: block;
	}
	
	body.en .contact_form dl.adressstyle02 ul li:nth-of-type(1) {
		position: relative;
		width: 100%;
		margin: 0 0 10px;
	}
	
	body.en .contact_form dl.adressstyle02 ul li:nth-of-type(2),
	body.en .contact_form dl.adressstyle02 ul li:nth-of-type(3),
	body.en .contact_form dl.adressstyle02 ul li:nth-of-type(4) {
		width: 100%;
		margin: 0 0 10px;
	}

}

/* ===================================================================
service_style
=================================================================== */

body.en .text_content_wrap h3 span {
    top: -19px;
    left: -17px;
}

body.en .text_content_wrap.company01 h3 span {
    top: -19px;
    left: -20px;
}

@media screen and (max-width: 767px) {

	body.en .text_content_wrap h3 span,
	body.en .text_content_wrap.company01 h3 span {
		display: block;
		height: 22px;
		top: -19px;
		left: -7px;
	}

}

/* ===================================================================
Service(lower)_style
=================================================================== */

body.en .to_contact_btn a {
	width: 270px;
}

body.en .lifestyle_cont02 h4 span {
    bottom: -1px;
    left: 10px;
}

body.en .lifestyle_cont02_2 h4 span {
    bottom: -1px;
    left: 10px;
}

@media screen and (max-width: 767px) {

	body.en .lifestyle_cont02 h4 span,
	body.en .lifestyle_cont02_2 h4 span {
		bottom: -3px;
	}

	body.en .lifestyle_wrap_fs {
		margin: 0 0 15px;
	}
}

/* ===================================================================
privacy_style
=================================================================== */

body.en .privacy_text_inner h3 span {
    bottom: -2px;
    left: 10px;
}
