@charset "UTF-8";
/*
Theme Name: THE HKS
Author: Catwork Co., Ltd.
Version: 1.0.0
*/

/* Reset
----------------------------------------------------------- */
html, body, div, span, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, address, code,
del, em, img, ins, kbd, q, s, samp,
small, strong, sub, sup, u,
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,
menu, nav, output, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	font-weight: normal;
	font-style: normal;
	vertical-align: baseline;
	background: transparent;
	-webkit-text-size-adjust: 100%;
	word-break: break-word;
}

html{
	scroll-behavior: smooth;
}
body {
	font-family: "Noto Sans", sans-serif;
	font-size: 16px;
	line-height: 2;
	color:#fff;
	background: #000;
}
a {
	color:#fff;
	text-decoration: none;
}
a:focus {
	outline: none;
}
img {
	max-width: 100%;
	height: auto;
	border: none;
	vertical-align: middle;
}
strong {
	font-weight: normal;
}
ul, ol {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
input[type="text"],
input[type="email"],
textarea {
	border-radius: 0;
	-webkit-appearance: none;
	line-height: normal;
	color: var(--main-font-color, #333);
}
textarea {
	overflow: auto;
}
::placeholder {
	color: #666;
}
.clearfix::after {
	content: "";
	display: table;
	clear: both;
}
.wrap {
	width: 100%;
	overflow-x: hidden;
}
.inner {
	width: 1200px;
	margin: 0 auto;
}
h2, h3, h4, h5, h6 {
	font-weight: bold;
}



/* フェードアニメーション css
----------------------------------------------------------*/

/*ふわっと出る*/
.mv01_on{
	-webkit-transition: all 0.8s ease-out;
	-moz-transition: all 0.8s ease-out;
	-ms-transition: all 0.8s ease-out;
	-o-transition: all 0.8s ease-out;
	transition: all 0.8s ease-out;
	-webkit-transform: scale(1, 1) translate3d(0, 0, 0);
	-moz-transform: scale(1, 1) translate3d(0, 0, 0);
	-ms-transform: scale(1, 1) translate3d(0, 0, 0);
	-o-transform: scale(1, 1) translate3d(0, 0, 0);
	transform: scale(1, 1) translate3d(0, 0, 0);
	opacity: 0
}
.mv01_off{
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-transform: scale(1, 1) translate3d(0, 0, 0);
	-moz-transform: scale(1, 1) translate3d(0, 0, 0);
	-ms-transform: scale(1, 1) translate3d(0, 0, 0);
	-o-transform: scale(1, 1) translate3d(0, 0, 0);
	transform: scale(1, 1) translate3d(0, 0, 0);
	opacity: 1
}

/*下から*/
.mv02_on{
	-webkit-transition: all 0.8s ease-out;
	-moz-transition: all 0.8s ease-out;
	-ms-transition: all 0.8s ease-out;
	-o-transition: all 0.8s ease-out;
	transition: all 0.8s ease-out;
	-webkit-transform: scale(1, 1) translate3d(0, 60px, 0);
	-moz-transform: scale(1, 1) translate3d(0, 60px, 0);
	-ms-transform: scale(1, 1) translate3d(0, 60px, 0);
	-o-transform: scale(1, 1) translate3d(0, 60px, 0);
	transform: scale(1, 1) translate3d(0, 60px, 0);
	opacity: 0
}
.mv02_off{
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-transform: scale(1, 1) translate3d(0, 0, 0);
	-moz-transform: scale(1, 1) translate3d(0, 0, 0);
	-ms-transform: scale(1, 1) translate3d(0, 0, 0);
	-o-transform: scale(1, 1) translate3d(0, 0, 0);
	transform: scale(1, 1) translate3d(0, 0, 0);
	opacity: 1
}

/*右から*/
.mv03_on{
	-webkit-transition: all 0.8s ease-out;
	-moz-transition: all 0.8s ease-out;
	-ms-transition: all 0.8s ease-out;
	-o-transition: all 0.8s ease-out;
	transition: all 0.8s ease-out;
	-webkit-transform: scale(1, 1) translate3d(100px, 0, 0);
	-moz-transform: scale(1, 1) translate3d(100px, 0, 0);
	-ms-transform: scale(1, 1) translate3d(100px, 0, 0);
	-o-transform: scale(1, 1) translate3d(100px, 0, 0);
	transform: scale(1, 1) translate3d(100px, 0, 0);
	opacity: 0
}
.mv03_off{
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-transform: scale(1, 1) translate3d(0, 0, 0);
	-moz-transform: scale(1, 1) translate3d(0, 0, 0);
	-ms-transform: scale(1, 1) translate3d(0, 0, 0);
	-o-transform: scale(1, 1) translate3d(0, 0, 0);
	transform: scale(1, 1) translate3d(0, 0, 0);
	opacity: 1
}

/*左から*/
.mv04_on{
	-webkit-transition: all 0.8s ease-out;
	-moz-transition: all 0.8s ease-out;
	-ms-transition: all 0.8s ease-out;
	-o-transition: all 0.8s ease-out;
	transition: all 0.8s ease-out;
	-webkit-transform: scale(1, 1) translate3d(-100px, 0, 0);
	-moz-transform: scale(1, 1) translate3d(-100px, 0, 0);
	-ms-transform: scale(1, 1) translate3d(-100px, 0, 0);
	-o-transform: scale(1, 1) translate3d(-100px, 0, 0);
	transform: scale(1, 1) translate3d(-100px, 0, 0);
	opacity: 0
}
.mv04_off{
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-transform: scale(1, 1) translate3d(0, 0, 0);
	-moz-transform: scale(1, 1) translate3d(0, 0, 0);
	-ms-transform: scale(1, 1) translate3d(0, 0, 0);
	-o-transform: scale(1, 1) translate3d(0, 0, 0);
	transform: scale(1, 1) translate3d(0, 0, 0);
	opacity: 1
}

/*===============================================
横幅1200px以下
===============================================*/
@media screen and (max-width: 1240px) and (min-width: 441px){
	html,
	body,
	.wrap{
		width:1240px;
	}
}

/*===============================================
横幅441px以上
===============================================*/
@media screen and (min-width: 441px) {
a {
	transition: all .5s;
}
a:hover {
	opacity:0.8;
	filter:alpha(opacity=80);
	-moz-opacity:0.8;
	transition: all .5s;
}
.sp {
	display:none;
}

/* header
------------------------------------------------------------------------*/
header{
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999999;
	position: relative;
}
header h1 a{
	background: url(img/header_logo.svg) no-repeat;
	position: fixed;
	top: 35px;
	left: 50%;
    transform: translateX(-50%);
	width: 239px;
	height: 94px;
	color: transparent;
}
header h1 a.active {
  	position: absolute;
}
header .language{
	display: flex;
	gap: 20px;
	position: fixed;
    right: 150px;
	top: 30px;
}
header .language a{
	font-size: 17px;
	font-weight: 400;
	position: relative;
	color: rgba(255, 255, 255, 0.5);
}
header .language a.active {
	color: #fff;
}
header .language a:nth-of-type(2)::before {
	content: "/";
	padding-right: 20px;
}

/* nav
------------------------------------------------------------------------*/
header nav{
	position: fixed;
	top: 0;
	right: 0;
	z-index: 999999;
}
header #nav-btn{
	position: absolute;
	top: 18px;
	right: 40px;
	display: block;
	width: 60px;
	height: 60px;
	box-sizing: border-box;
	transition: all .5s;
	z-index: 10010;
}
header .menu-btn,
header .menu-btn span{
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
header .menu-btn{
	position: absolute;
	width: 60px;
	height: 17px;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	cursor: pointer;
}
header .menu-btn span{
	position: absolute;
	left: 0;
	width: 100%;
	height: 4px;
	background: #fff;
}
header .menu-btn span:nth-of-type(1){
	top: 0;
}
header .menu-btn span:nth-of-type(2){
	bottom: 0;
}
header #nav-btn.active .menu-btn span:nth-of-type(1){
	-webkit-transform: translateY(6px) rotate(30deg);
	transform: translateY(6px) rotate(30deg);
    background: #fff;
}
header #nav-btn.active .menu-btn span:nth-of-type(2){
	-webkit-transform: translateY(-6px) rotate(-30deg);
	transform: translateY(-6px) rotate(-30deg);
    background: #fff;
}
header #nav{
	display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    z-index: 10001;
	overflow-y: scroll;
	opacity: 0;
    pointer-events: none;
    transition: opacity .6s;
}
header #nav-btn.active + #nav{
    opacity: 1;
    pointer-events: auto;
}
header #nav .inner {
	width: 1700px;
	height: 900px;
	max-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
	opacity: 0;
    transition: opacity .6s;
}
header #nav-btn.active + #nav .inner {
    opacity: 1;
}
header #nav-btn.active + #nav .inner::before {
	content: "";
	background: url(img/nav_bg.png) 60px center no-repeat;
	background-size: 50%;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
}
header #nav .logo_svg {
    opacity: 0;
    transition: opacity .6s;
    position: absolute;
    top: 25px;
    left: 30px;
}
header #nav-btn.active + #nav .logo_svg {
	display: block;
	width: 64px;
	height: 68px;
	position: fixed;
    top: 25px;
    left: 30px;
	z-index: 9999;
    opacity: 1;
}
header #nav-btn.active + #nav .logo_svg a {
	display: block;
	width: 100%;
}
header #nav .inner ul,
header #nav .inner .flex_icon {
    opacity: 0;
    transition: opacity .6s;
    pointer-events: none;
}
header #nav-btn.active + #nav .inner ul,
header #nav-btn.active + #nav .inner .flex_icon {
    opacity: 1;
    pointer-events: auto;
}
header #nav .inner ul{
	font-size: 55px;
	line-height: 1;
	font-family: "din-2014", sans-serif;
	font-weight: 600;
	letter-spacing: 0.025em;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 370px;
	z-index: 9999;
}
header #nav .inner ul li{
	padding-bottom: 30px;
}
header #nav .inner ul li:last-of-type{
	padding-bottom: 0;
}
header #nav .inner ul li a:hover {
	opacity: 0.5;
}
header #nav .inner .flex_icon{
	display: flex;
	gap: 25px;
	position: absolute;
	right: 0;
	bottom: 30px;
}
header #nav .inner .flex_icon .icon_svg{
	width: 30px;
	height: 30px;
}
@media screen and (max-width: 1799px) {
	header #nav .inner {
		width: 1400px;
	}
	header #nav .inner ul {
		right: 230px;
	}
}
@media screen and (max-width: 1520px) {
	header #nav .inner {
		width: 1200px;
	}
}
@media screen and (max-width: 1250px) {
	header #nav .inner ul {
		right: 250px;
		font-size: 45px;
	}
}
@media screen and (max-width: 1240px) and (min-width: 441px) {
	header #nav-btn.active + #nav {
        width: 1240px;
	}
}


/* home
------------------------------------------------------------------------*/
/* key */
.home .key .text_box{
	width: 100%;
	position: relative;
  	aspect-ratio: 16 / 9;
  	overflow: hidden;
}
.home .key .text_box video {
	width: 100%;
	height: auto;
	max-height: 1820px;
	filter: drop-shadow(0px 0px rgba(0,0,0,0));
}
.home .key .text_box .text01{
	width: 800px;
    position: absolute;
    top: 53%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.home .key .text_box .text01 img {
	width: 100%;
	filter: drop-shadow(0 0 14px rgba(0, 0, 0, 0.4));
}
@media screen and (max-width: 1520px) {
	.home .key .text_box .text01 {
		width: 500px;
	}
}

/* cont01 */
.home .cont01{
	padding-top: 140px;
}
.home .cont01 h2 {
	text-align: center;
	position: relative;
}
.home .cont01 h2{
	background: url(img/home_text03.png) no-repeat;
	width: 383px;
	height: 124px;
	color: transparent;
	margin: auto;
}
.home .cont01 .inner .box{
	margin-top: 45px;
	padding-left: 25%;
	position: relative;
}
.home .cont01 .inner .box .cont{
	display: flex;
	gap: 60px;
	line-height: 1;
	padding-bottom: 30px;
	font-weight: 500;
}
.home .cont01 .inner .box .cont .date {
	line-height: 1.5;
}
.home .cont01 .inner .box .cont:last-of-type {
	padding-bottom: 0;
}
.home .cont01 .inner .box .cont .text{
	width: 420px;
	line-height: 1.5;
}
.home .cont01 .button a {
	display: block;
	width: 205px;
	height: 50px;
	background: rgba(255,255,255,0.5);
	border: 1px solid #231815;
	border-radius: 25px;
	box-sizing: border-box;
	color: #231815;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.145em;
	line-height: 50px;
	text-align: center;
	margin: 45px auto 120px;
	transition: 0.6s;
}
.home .cont01 .button a:hover {
	background: #fff;
	border: 1px solid #231815;
	color: #231815;
}

/* cont02 */
.home .cont02 {
	padding-bottom: 210px;
}
.home .cont02 h2{
	text-align: center;
	font-size: 35px;
	letter-spacing: 0.04em;
	line-height: 1.6;
}
.home .cont02 .inner{
	width: 1560px;
}
.home .cont02 .inner .flex_box{
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-top: 90px;
}
.home .cont02 .inner .flex_box .cont{
	display: block;
    width: 760px;
	background: #000;
	box-sizing: border-box;
	position: relative;
	border: 1px solid #fff;
	overflow: hidden;
}
.home .cont02 .inner .flex_box .cont h3{
	width: 100%;
	font-size: 26px;
	line-height: 1;
	text-align: center;
	padding-top: 110px;
	background: url(img/home_text04.png) center 23px no-repeat;
	position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
	z-index: 999;
}
.home .cont02 .inner .flex_box .cont h3::before {
	content: "";
	background: url(img/home_text05.png) no-repeat;
	width: 182px;
	height: 16px;
	position: absolute;
	top: 155px;
	left: 50%;
    transform: translateX(-50%);
}
    
/* 何番目かで　type(3)　の数字を追加することにより Dimension Yになる */
/* 5番目なら .home .cont02 .inner .flex_box .cont:nth-of-type(5) h3::before  */

/*.home .cont02 .inner .flex_box .cont:nth-of-type(2) h3::before,*/
.home .cont02 .inner .flex_box .cont:nth-of-type(3) h3::before,
.home .cont02 .inner .flex_box .cont:nth-of-type(4) h3::before {
	background: url(img/home_text06.png) no-repeat;
}
.home .cont02 .inner .flex_box .cont .img{
    overflow: hidden;
}
.home .cont02 .inner .flex_box .cont .img img{
	height: auto;
  	transition: transform .6s ease;
}
.home .cont02 .inner .flex_box .cont .img:hover img{
	transform: scale(1.1);
}
.home .cont02 .inner .flex_box .cont .button{
	width: 170px;
	height: 40px;
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid #231815;
	border-radius: 25px;
	box-sizing: border-box;
	color: #231815;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.145em;
	line-height: 40px;
	text-align: center;
	margin: 45px auto 25px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	transition: 0.6s;
}
.home .cont02 .inner .flex_box .cont .button:hover{
	background: #fff;
}

@media screen and (max-width: 1700px){
	.home .cont02 .inner{
	width: 1200px;
	}
	.home .cont02 .flex_box{
		justify-content: center
	}
	.home .cont02 .inner .flex_box .cont {
        gap: 25px 0;
		width: 550px;
        height: 477px;
    }
	.home .cont02 .inner .flex_box .cont h3 {
		font-size: 22px;
		background: url(img/home_text04.png) center 15px no-repeat;
		background-size: 180px;
		padding-top: 75px;
	}
	.home .cont02 .inner .flex_box .cont h3::before {
		top: 115px;
	}
}

/* cont03 */
.home .cont03 {
	padding-bottom: 145px;
}
.home .cont03 h2{
	text-align: center;
    font-size: 35px;
    letter-spacing: 0.04em;
    line-height: 1.6;
}
.home .cont03 .inner{
	width: 1560px;
}
.home .cont03 .inner .flex_box{
	display: flex;
	flex-wrap: wrap;
	gap:40px;
	margin-top: 90px;
}
.home .cont03 .inner .flex_box .cont{
	display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 140px;
    gap: 25px 0;
    width: 760px;
    height: 662px;
	box-sizing: border-box;
	border: 1px solid #fff;
    text-align: center;
	overflow: hidden;
	position: relative;
}
.home .cont03 .inner .flex_box .cont h3{
	width: 100%;
	font-size: 26px;
	line-height: 1;
	text-align: center;
	padding-top: 110px;
	background: url(img/home_text04.png) center 23px no-repeat;
	position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
	z-index: 999;
}
.home .cont03 .inner .flex_box .cont h3::before {
	content: "";
	width: 182px;
	height: 16px;
	position: absolute;
	top: 155px;
	left: 50%;
    transform: translateX(-50%);
}
.home .cont03 .inner .flex_box .cont:nth-of-type(1) h3::before,
.home .cont03 .inner .flex_box .cont:nth-of-type(3) h3::before {
	background: url(img/home_text06.png) no-repeat;
}
.home .cont03 .inner .flex_box .cont:nth-of-type(2) h3::before {
	background: url(img/home_text05.png) no-repeat;
}
.home .cont03 .inner .flex_box .cont:nth-of-type(4) h3::before {
	background: url(img/home_text08.png) no-repeat;
}
.home .cont03 .inner .flex_box .cont .img{
	position: relative;
}
.home .cont03 .inner .flex_box .cont .img img{
	width: 97%;
	height: auto;
  	transition: transform .6s ease;
}
.home .cont03 .inner .flex_box .cont .img:hover img{
	transform: scale(1.1);
}
.home .cont03 .inner .flex_box .cont .button{
	width: 170px;
	height: 40px;
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid #231815;
	border-radius: 25px;
	box-sizing: border-box;
	color: #231815;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.145em;
	line-height: 40px;
	text-align: center;
	margin: 45px auto 25px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	transition: 0.6s;
}
.home .cont03 .inner .flex_box .cont .button:hover{
	background: #fff;
}

@media screen and (max-width: 1700px){
	.home .cont03 .inner{
	width: 1200px;
	}
	.home .cont03 .flex_box{
		justify-content: center
	}
	.home .cont03 .inner .flex_box .cont {
        gap: 25px 0;
		width: 550px;
        height: 477px;
    }
	.home .cont03 .inner .flex_box .cont h3{
		font-size: 22px;
		background: url(img/home_text04.png) center 15px no-repeat;
		background-size: 180px;
		padding-top: 85px;
	}
	.home .cont03 .inner .flex_box .cont h3::before {
		top: 130px;
	}
	.home .cont03 .inner .flex_box .cont .img {
		width: 100%;
		margin: -50px auto 0;
	}
}

/* cont04 */
.home .cont04 h2 {
	background: url(img/home_text07.png) no-repeat;
	width: 570px;
	height: 170px;
	color: transparent;
	margin: 0 auto 40px;
}
.home .cont04 .swiper02 {
	position: relative;
}
.home .cont04 .swiper-slide {
    width: 435px;
}
.home .cont04 .swiper-button-prev {
	background: url("img/arrow-prev.png") no-repeat;
}
.home .cont04 .swiper-button-next {
	background: url("img/arrow-next.png") no-repeat;
}
.home .cont04 .swiper-button-prev,
.home .cont04 .swiper-button-next {
    width: 24px;
    height: 46px;
	color: transparent
}
.home .cont04 .swiper-button-prev::after,
.home .cont04 .swiper-button-next::after {
	content: "";
	width: 24px;
    height: 46px;
}
.home .cont04 .swiper-button-prev {
	left: calc(50% - 260px);
}
.home .cont04 .swiper-button-next {
	right: calc(50% - 260px);
}
.home .cont04 .button a{
	display: block;
	width: 205px;
	height: 50px;
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid #231815;
	border-radius: 25px;
	box-sizing: border-box;
	color: #231815;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.145em;
	line-height: 50px;
	text-align: center;
	margin: 95px auto 130px;
	transition: 0.6s;
}
.home .cont04 .button a:hover {
	background: #fff;
	border: 1px solid #231815;
	color: #231815;
}


/* common
------------------------------------------------------------------------*/

.blur-text{
    filter: blur(15px);
    opacity: 0;
    transition: all 1s ease-out;
}
.blur-text.show {
	filter: blur(0);
    opacity: 1;
}
.wrapper {
	transform: scale(0.9);
}

/* key */
.common .key {
	height: 900px;
}
.common .key .key_inner {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	box-sizing: border-box;
	position: relative;
}

/* ここから各下層ページのkey
------------------------------------------------------------------------*/
/* teams */
.teams .key {
	background: url(img/teams-key-bg.png) no-repeat center / cover;
}
.teams .key_inner::before {
	content: "";
	background: url(img/teams_text01.svg) no-repeat;
	width: 568px;
	height: 212px;
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* mission */
.mission .key {
	background: url(img/mission-key-bg.png) no-repeat center / contain;
	aspect-ratio:1800 / 2104;
	height: auto;
}
.mission .key_inner::before {
	content: "";
	background: url(img/mission_text02.svg) no-repeat;
	width: 543px;
	height: 136px;
	position: absolute;
	top: 22.5%;
    left: 50%;
    transform: translateX(-50%);
}
@media screen and (max-width: 1600px) {
	.mission .key_inner::before {
		top: 22%;
	}
}
@media screen and (max-width: 1400px) {
	.mission .key_inner::before {
		top: 21.5%;
	}
}
@media screen and (max-width: 1350px) {
.mission .key_inner::before {
		top: 21%;
	}
}

/* company */
.company .key {
	background: url(img/company-key-bg.png) no-repeat center / cover;
}
.company .key_inner::before {
	content: "";
	background: url(img/company_text01.svg) no-repeat;
	width: 1025px;
	height: 335px;
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* car-single */
.car-single .key {
	background: url(img/car-single-key-bg01.png) no-repeat center / cover;
	position: relative;
}
.car-single .key::before {
	content: "";
	background: url(img/car-single_text01.png) no-repeat;
	width: 212px;
	height: 18px;
	position: absolute;
	bottom: 40px;
	left: 75px;
}
.car-single .key .text {
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	position: absolute;
	bottom: 75px;
	left: 75px;
}

/* car-archive */
.car-archive .key {
	background: url(img/car-archive-bg.png) no-repeat center / cover;
}
.car-archive .key_inner::before {
	content: "";
	background: url(img/car-archive_text01.svg) no-repeat;
	width: 397px;
	height: 136px;
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* warranty */
.warranty .key {
	background: url(img/warranty-key-bg.png) no-repeat center / cover;
}
.warranty .key_inner::before {
	content: "";
	background: url(img/warranty_text01.svg) no-repeat;
	width: 996px;
	height: 265px;
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* gallery */
.gallery .key {
	background: url(img/gallery-key-bg.png) no-repeat center / cover;
}
.gallery .key_inner::before {
	content: "";
	background: url(img/gallery_text01.svg) no-repeat;
	width: 644px;
	height: 222px;
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* privacy */
.privacy .key {
	height: auto;
}
.privacy .key .key_inner {
	height: auto;
}

/* blog */
.blog_archive .key {
	background: url(img/blog-key-bg.png) no-repeat center / cover;
}
.blog_archive .key_inner::before {
	content: "";
	background: url(img/blog_text01.svg) no-repeat;
	width: 468px;
	height: 141px;
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.blog_single .key {
	height: auto;
}


/* teams
------------------------------------------------------------------------*/
/* cont01 */
.teams .cont01.inner {
	margin: 205px auto 170px;
}
.teams .cont01 h2 {
	font-size: 36px;
	letter-spacing: 0.025em;
	line-height: 1;
	text-align: center;
}
.teams .cont01 .text01 {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.94;
	text-align: center;
	padding: 37px 0 80px;
}
.teams .cont01 .text01 .line {
	font-weight: 400;
	position: relative;
}
.teams .cont01 .text01 .line::before {
	content: "";
	width: 25px;
	height: 2px;
	background: #fff;
	position: absolute;
	right: -30px;
	top: 50%;
	transform: translateY(-50%);
}
.teams .cont01 .text01 .span {
	font-weight: 400;
	padding-left: 35px;
}
.teams .cont01 h3 {
	text-align: center;
	line-height: 1;
	font-weight: 400;
	padding-bottom: 15px;
}
.teams .cont01 h3 span {
	font-weight: 400;
	position: relative;
}
.teams .cont01 h3 span::before {
	content: " ( ";
}
.teams .cont01 h3 span::after {
	content: " ) ";
}
.teams .cont01 ol {
	text-align: center;
	line-height: 2.8;
	position: relative;
}
.teams .cont01 ol::before {
	content: "";
	background: url(img/teams_text02.png) no-repeat;
	width: 440px;
	height: 246px;
	position: absolute;
	bottom: -300px;
	right: 0;
	left: 0;
	margin: auto;
}
.teams .cont01 ol li {
	counter-increment: num;
	font-weight: 400;
	text-align: center;
	position: relative;
}
.teams .cont01 ol li::before {
	content: counter(num) ". ";
 	margin-right: .3em;
	margin-right: 5px;
}
.teams .cont01 ol li span {
	font-weight: 400;
	position: relative;
}
.teams .cont01 ol li span::before {
	content: " ( ";
}
.teams .cont01 ol li span::after {
	content: " ) ";
}
.teams .cont01 .team_box {
	max-width: 900px;
	margin: 400px auto 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	column-gap: 60px;
}
.teams .cont01 .team_box .box {
	display: flex;
	flex-direction: column;
	width: calc(100% / 2 - 30px);
}
.teams .cont01 .team_box .box h2 {
	font-size: 33px;
	font-weight: normal;
	line-height: 1;
	padding-top: 20px;
	text-align: left;
	order: 2;
}
.teams .cont01 .team_box .box h2 span {
	display: block;
	font-size: 16px;
	padding: 10px 0 15px;
}
.teams .cont01 .team_box .box .text02 {
	font-weight: normal;
	line-height: 1.75;
	margin-bottom: 90px;
	order: 3;
}
.teams .cont01 .team_box .box:last-of-type .text02 {
	margin-bottom: 0;
}
.teams .cont01 .team_box .box .img {
	order: 1;
}
.teams .cont01 .team_box .box .img img {
	width: 420px;
}


/* mission
------------------------------------------------------------------------*/
/* cont01 */
.mission .cont01 {
	padding-bottom: 165px;
}
.mission .cont01 h2 {
	background: url(img/mission_text03.png) no-repeat;
	background-size: 649px;
	width: 649px;
    height: 85px;
	padding-top: 100px;
	box-sizing: border-box;
	overflow: hidden;
	margin: 10px auto 25px;
}
.mission .cont01 .text01,
.mission .cont01 .text02 {
	text-align: center;
	font-weight: 400;
	line-height: 2.5;
}
.mission .cont01 .img01,
.mission .cont01 .img02 {
	text-align: center;
}

.mission .cont01 .text02 {
	margin-top: 30px;
	position: relative;
}
.mission .cont01 .text02::before {
	content: "";
	background: url(img/mission_text04.png) no-repeat;
	width: 622px;
	height: 362px;
	position: absolute;
	top: 300px;
    left: 50%;
    transform: translateX(-50%);
}
.mission .cont01 .img02 {
	margin-top: 440px
}
.mission .cont01 .text03 {
	font-weight: 400;
	text-align: center;
	line-height: 1;
	padding-top: 30px;
}
.mission .cont01 .box {
	text-align: center;
}
.mission .cont01 .box h3 {
	font-size: 30px;
	line-height: 1;
	background: url(img/mission_text05.png) center center no-repeat;
	padding-top: 190px;
	margin-bottom: 30px;
}
.mission .cont01 .box:nth-of-type(2) h3 {
	background: url(img/mission_text06.png) center center no-repeat;
}
.mission .cont01 .box:nth-of-type(3) h3 {
	background: url(img/mission_text07.png) center center no-repeat;
}
.mission .cont01 .box .text04 {
	font-weight: 400;
	line-height: 2.5;
}

/* mission（英語）
------------------------------------------------------------------------*/
.mission.en .text01 {
	padding-bottom: 23px;
}
.mission.en .cont01 .text02::before {
	content: none;
}
.mission.en .cont01 .img02 {
	position: relative;
}
.mission.en .cont01 .img02 {
	margin-top: 500px;
}
.mission.en .cont01 .img02::before {
	content: "";
	background: url(img/mission_text04.png) no-repeat;
	width: 622px;
	height: 362px;
	position: absolute;
	top: -410px;
	left: 50%;
	transform: translateX(-50%);
}
.mission.en .cont01 .box h3,
.mission.en .cont01 .box .text04 {
	letter-spacing: 0.115em;
	font-weight: 500;
}


/* company
------------------------------------------------------------------------*/
/* cont01 */
.company .cont01 {
	padding: 130px 0 130px;
}
.company .cont01.inner {
	width: 790px;
	margin: auto;
}
.company .cont01 h2 {
	font-size: 36px;
	font-weight: normal;
	letter-spacing: 0.145em;
	line-height: 1;
	text-align: center;
	border-bottom: 1px solid #fff;
	padding-bottom: 35px;
}
.company .cont01 table {
	width: 100%;
    text-align: left;
	letter-spacing: 0.025em;
    margin-top: 60px;
	position: relative;
}
.company .cont01 table tbody {
	display: block;
	max-width: 630px;
    margin: auto;
}
.company .cont01 table th {
	width: 180px;
	padding: 3px 0;
}
.company .cont01 table td {
	padding: 3px 0;
}

/* cont02 */
.company .cont02 {
	width: 790px;
	margin: 0 auto 130px;
}
.company .cont02 h2 {
	font-size: 36px;
	font-weight: normal;
	letter-spacing: 0.145em;
	line-height: 1;
	text-align: center;
	border-bottom: 1px solid #fff;
	padding-bottom: 35px;
}
.company .cont02 table {
	width: 100%;
	text-align: left;
	margin-top: 65px;
}
.company .cont02 table tbody {
	display: block;
	max-width: 630px;
    margin: auto;
}
.company .cont02 table tr:nth-of-type(3) {
	display: block;
	margin-bottom: 70px;
}
.company .cont02 table th {
	width: 185px;
	padding: 5px 0;
}
.company .cont02 table td {
	padding: 5px 0;
}
.company .cont02 table td span {
	padding-left: 55px;
}
.company .cont02 table td .map {
	margin: 20px 0 10px;
}
.company .cont02 table td .text {
	line-height: 2.18;
}

/* cont03 */
.company .cont03 {
	width: 790px;
	margin-bottom: 200px;
}
.company .cont03 h2 {
	font-size: 36px;
	font-weight: normal;
	letter-spacing: 0.145em;
	line-height: 1;
	text-align: center;
	border-bottom: 1px solid #fff;
	padding-bottom: 35px;
}
.company .cont03 .flex_box {
	width: 630px;
    margin: auto;
	display: flex;
    justify-content: center;
	gap: 60px;
	margin-top: 60px;
}
.company .cont03 .flex_box h3 {
	font-weight: normal;
	line-height: 1;
}
.company .cont03 .flex_box .center_box .box {
	margin-bottom: 50px;
}
.company .cont03 .flex_box .center_box .box:last-of-type {
	margin-bottom: 0;
}
.company .cont03 .flex_box .center_box .box h4{
	font-weight: normal;
	line-height: 1;
	padding-bottom: 14px;
}
.company .cont03 .flex_box .center_box .box .map {
	margin: 20px 0;
}
.company .cont03 .flex_box .center_box .box .hours,
.company .cont03 .flex_box .center_box .box .tel,
.company .cont03 .flex_box .center_box .box .link {
	line-height: 1;
	padding-bottom: 15px;
}
.company .cont03 .flex_box .center_box .box .tel a,
.company .cont03 .flex_box .center_box .box .link a {
	color: #fff;
}
.company .cont03 .flex_box .relation_box .box{
	margin-bottom: 50px;
}
.company .cont03 .flex_box .relation_box .box:last-of-type {
	margin-bottom: 0;
}
.company .cont03 .flex_box .relation_box .box h4 {
	font-weight: normal;
	line-height: 1;
	padding-bottom: 15px;
}
.company .cont03 .flex_box .relation_box .box p {
	line-height: 2.2;
}
.company .cont03 .flex_box .relation_box .box .link02 a{
	color: #fff;
}

/* company(英語)
------------------------------------------------------------------------*/
.company.en .cont01.inner {
	width: 930px;
}
.company.en .cont01 table tbody {
	max-width: 865px;
}
.company.en .cont01 table th {
	width: 300px;
}

.company.en .cont02 {
	width: 930px;
}
.company.en .cont02 table tbody {
	width: 650px;
}
.company.en .cont02 table tr:nth-of-type(3) {
	margin-bottom: 0;
}

.company.en .cont03 {
	width: 930px;
}
.company.en .cont03 .flex_box {
	width: 650px;
	gap: 20px;
}
.company.en .cont03 .flex_box h3 {
	width: 160px;
}
.company.en .cont03 .flex_box .center_box .box .hours,
.company.en .cont03 .flex_box .center_box .box .tel,
.company.en .cont03 .flex_box .center_box .box .link {
	line-height: 2.18;
	padding-bottom: 0;
}
.company.en .cont03 .flex_box .center_box .box .map {
	margin: 18px 0 5px;
}

.company.en .cont04 {
	width: 930px;
	margin: 0 auto 130px;
}
.company.en .cont04 h2 {
	font-size: 36px;
	font-weight: normal;
	letter-spacing: 0.145em;
	line-height: 1;
	text-align: center;
	border-bottom: 1px solid #fff;
	padding-bottom: 35px;
}
.company.en .cont04 table {
	width: 100%;
	text-align: left;
	margin-top: 65px;
}
.company.en .cont04 table tbody {
	display: block;
	width: 650px;
	margin: auto;
}
.company.en .cont04 table th {
	width: 180px;
}


/* car-single
------------------------------------------------------------------------*/
.car-single .choose_box {
	display: flex;
	align-items: center;
	gap: 15px;
	padding-left: 220px;
	margin-top: 60px;
	position: relative;
}
.car-single .choose_box::before {
	content: "";
	background: url(img/car-single_text01.png) no-repeat;
	width: 212px;
	height: 18px;
	position: absolute;
	left: 0;
	bottom: 10px;

}
.car-single .choose_box .btn a{
	font-size: 15px;
	color: #fff;
	font-weight: 600;
	letter-spacing: 0.09em;
	line-height: 1;
	position: relative;
}
.car-single .choose_box .btn a:before{
	content: "";
	position: absolute;
	 left: 0;
	bottom: -4px;
	width: 100%;
	height: 1px;
	background: #fff;
	transform: scale(0, 1);
	transform-origin: left;
	transition: 0.4s;
}
.car-single .choose_box .btn.is-active a:before {
	transform: scale(1);
}
.car-single .choose_box .btn.is-hover a:before {
	transform: scale(1);
}

@media screen and (max-width: 1465px) {
	.car-single .choose_box {
		padding-left: 280px;
	}
	.car-single .choose_box::before {
		left: 50px;
	}
}

/* cont01 */
.car-single .cont01.inner {
	width: 650px;
	margin: 120px auto 65px;
}
.car-single .cont01 h2 {
	font-size: 36px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.025em;
}
.car-single .cont01 .text {
	font-weight: 400;
	letter-spacing: 0.08em;
	line-height: 2.375;
	padding: 60px 0 40px;
}
.car-single .cont01 .text .line {
	font-weight: 400;
	padding-left: 30px;
	position: relative;
}
.car-single .cont01 .text .line::before {
	content: "";
	width: 25px;
	height: 1px;
	background: #fff;
	position: absolute;
	left: 3px;
	top: 50%;
	transform: translateY(-50%);
}

/* cont02 */
.car-single .cont02.inner {
	width: 930px;
	margin: auto;
}
.car-single .cont02 .box_01 h2 {
	font-size: 15px;
	line-height: 1;
	letter-spacing: 0.09em;
	border-bottom: 1px solid #fff;
	padding-bottom: 12px;
	margin-bottom: 50px;
}
.car-single .cont02 .text_box {
	width: 650px;
	margin: 0 auto 70px;
}
.car-single .cont02 .text {
	font-weight: 400;
	line-height: 2.375;
	letter-spacing: 0.04em;
	margin-bottom: 45px;
}
.car-single .cont02 .text:last-of-type {
	margin-bottom: 0;
}
.car-single .cont02 .text .line {
	font-weight: 400;
	padding-left: 30px;
	position: relative;
}
.car-single .cont02 .text .line::before {
	content: "";
	width: 25px;
	height: 1px;
	background: #fff;
	position: absolute;
	left: 3px;
	top: 50%;
	transform: translateY(-50%);
}
.car-single .cont02 .btn {
	width: 650px;
}
.car-single .cont02 .img {
	text-align: center;
}
.car-single .cont02 .box_02 h2 {
	background: url(img/car-single_text01.png) no-repeat;
	border-bottom: 1px solid #fff;
	color: transparent;
	margin: 70px 0 50px;
}

/* スペックの表 */
.car-single .cont02 .spec_table .title{
	text-align: center;
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
	font-size: 16px;
	letter-spacing: 0.05em;
}
.car-single .cont02 .spec_table .flex{
	display: flex;
	margin-bottom: 25px;
}

.car-single .cont02 .spec_table .flex table {
	width: 470px;
	height: 100%;
	font-family: "din-2014", sans-serif;
	font-weight: 600;
}
.car-single .cont02 .spec_table .flex table thead th{
	height: 36px;
	background: #fff;
	color: #000;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	text-align: center;
    letter-spacing: 0.05em;
	border-right: 1px solid #000;
	box-sizing: border-box;
	vertical-align: middle;
}
.car-single .cont02 .spec_table .flex table tbody th {
    width: 190px;
	height: 36px;
    background: #333;
	border: 1px solid #fff;
	font-weight: 500;
	line-height: 1;
    text-align: center;
    letter-spacing: 0.05em;
	box-sizing: border-box;
	vertical-align: middle;
}
.car-single .cont02 .spec_table .flex table tbody td {
    width: auto;
	height: 36px;
	border: 1px solid #fff;
	font-size: 16px;
    font-weight: 500;
	line-height: 1;
	text-align: center;
    letter-spacing: 0.05em;
	vertical-align: middle;
	box-sizing: border-box;
}
.car-single .cont02 .spec_table .flex table tbody td.ls {
	letter-spacing: -0.01em;
}
.car-single .cont02 .spec_table .flex table tbody th.ht72,
.car-single .cont02 .spec_table .flex table tbody td.ht72{
	height: 72px;
}
.car-single .cont02 .spec_table .flex table tbody th.ht108,
.car-single .cont02 .spec_table .flex table tbody td.ht108{
	height: 108px;
}

.car-single .cont02 .spec_table .flex table tbody td span {
	font-size: 15px;
    font-weight: 500;
	line-height: 1;
    padding: 8px 0 ;
	text-align: center;
    letter-spacing: 0.05em;
}

/* cont03 */
.car-single .cont03 {
	margin-bottom: 250px;
}
.car-single .cont03 h2 {
	background: url(img/car-single_text02.png) center center no-repeat;
	width: 558px;
	height: 167px;
	color: transparent;
	margin: 145px auto 40px;
}
.car-single .cont03 .swiper01 {
	position: relative;
}
.car-single .cont03 .swiper-slide {
    width: 435px;
}

.car-single .cont03 .swiper-button-prev {
	background: url("img/arrow-prev.png") no-repeat;
}
.car-single .cont03 .swiper-button-next {
	background: url("img/arrow-next.png") no-repeat;
}
.car-single .cont03 .swiper-button-prev,
.car-single .cont03 .swiper-button-next {
    width: 24px;
    height: 46px;
	color: transparent
}
.car-single .cont03 .swiper-button-prev::after,
.car-single .cont03 .swiper-button-next::after {
	content: "";
	width: 24px;
    height: 46px;
}
.car-single .cont03 .swiper-button-prev {
	left: calc(50% - 260px);
}
.car-single .cont03 .swiper-button-next {
	right: calc(50% - 260px);
}

/* car-single（英語）
------------------------------------------------------------------------*/
.car-single.en .cont01 .text .line::before {
	width: 16px;
	left: 5px;
}
.car-single.en .cont02 .text .line::before {
	width: 16px;
	left: 6px;
}


/* car-archive
------------------------------------------------------------------------*/
/* cont01 */
.car-archive .cont01 {
	padding: 110px 0;
}
.car-archive .cont01.inner{
	width: 1660px;
}
.car-archive .cont01 .flex_box{
	display: flex;
	flex-wrap: wrap;
	gap: 57px;
}
.car-archive .cont01 h2{
	color: transparent;
	height: 0;
}
.car-archive .cont01 .flex_box .cont{
	display: flex;
	flex-direction: column;
    justify-content: center;
	gap: 25px 0;
    width: 515px;
    height: 450px;
	background: #000;
	text-align: center;
	box-sizing: border-box;
	border: 1px solid #fff;
	overflow: hidden;
	position: relative;
}
.car-archive .cont01 .flex_box .cont h3{
	width: 100%;
	font-size: 22px;
	line-height: 1;
	text-align: center;
	padding-top: 75px;
	background: url(img/car-archive_text02.png) center 13px no-repeat;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 999;
}
.car-archive .cont01 .flex_box .cont h3::before{
	content: "";
	background: url(img/car-archive_text03.png) no-repeat;
	width: 155px;
	height: 14px;
	position: absolute;
	top: 105px;
	left: 50%;
	transform: translateX(-50%);
}
.car-archive .cont01 .flex_box .cont:nth-of-type(1) h3::before
.car-archive .cont01 .flex_box .cont:nth-of-type(2) h3::before,
.car-archive .cont01 .flex_box .cont:nth-of-type(6) h3::before {
	background: url(img/car-archive_text03.png) no-repeat;
}
.car-archive .cont01 .flex_box .cont:nth-of-type(3) h3::before,
.car-archive .cont01 .flex_box .cont:nth-of-type(4) h3::before,
.car-archive .cont01 .flex_box .cont:nth-of-type(5) h3::before,
.car-archive .cont01 .flex_box .cont:nth-of-type(7) h3::before {
	background: url(img/car-archive_text04.png) no-repeat;
}
.car-archive .cont01 .flex_box .cont:nth-of-type(8) h3::before {
	background: url(img/car-archive_text05.png) no-repeat;
}
.car-archive .cont01 .flex_box .cont .text {
	font-size: 11px;
	font-weight: 600;
	color: #000;
	line-height: 1;
	background: #fff;
	padding: 4px 6px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 999;
}
.car-archive .cont01 .flex_box .cont .img{
    overflow: hidden;
}
.car-archive .cont01 .flex_box .cont .img img{
	height: auto;
  	transition: transform .6s ease;
}
.car-archive .cont01 .flex_box .cont .img:hover img{
	transform: scale(1.1);
}

.car-archive .cont01 .flex_box .cont .button{
	width: 120px;
	height: 30px;
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid #231815;
	border-radius: 25px;
	box-sizing: border-box;
	color: #231815;
	font-size: 8px;
	font-weight: 500;
	letter-spacing: 0.145em;
	line-height: 30px;
	text-align: center;
	margin: 45px auto 20px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	transition: 0.6s;
}
.car-archive .cont01 .flex_box .cont .button:hover{
	background: #fff;
}

@media screen and (max-width: 1780px){
	.car-archive .cont01.inner{
		max-width: 1500px;
		width: 100%;
		margin: 0 auto;
	}
	.car-archive .cont01 .flex_box {
		gap: 25px;
		padding: 0 25px;
	}
	.car-archive .cont01 .flex_box .cont {
		width: calc((100% - 50px) / 3);
		height: auto;
	}
	.car-archive .cont01 .flex_box .cont h3 {
		font-size: 20px;
		background-size: 180px;
		padding-top: 70px;
	}
	.car-archive .cont01 .flex_box .cont h3::before {
		top: 100px;
	}
}


/* warranty
------------------------------------------------------------------------*/
.warranty .cont01{
	margin-top: 160px;
}
.warranty .cont01 h2{
	text-align: center;
	position: relative;
	color: transparent;
	margin: 143px 0 90px 0;
}
.warranty .cont01 .DimentionX{
	content: "";
	background: url(img/warranty_text02.png) no-repeat;
	width: 222px;
	height: 19px;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.warranty .cont01 .DimentionY{
	content: "";
	background: url(img/warranty_text03.png) no-repeat;
	width: 218px;
	height: 19px;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.warranty .cont01 .DimentionZ{
	content: "";
	background: url(img/warranty_text04.png) no-repeat;
	width: 220px;
	height: 20px;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.warranty .cont01 ol{
	margin-top: 80px;
}
.warranty .cont01 ol li{
	line-height: 2.5;
}
.warranty .cont01 .text01{
	line-height: 2.5;
	font-weight: 400;
	padding-top: 45px;
	letter-spacing: 0.115em;
}
.warranty .cont01 div:nth-child(3){
	margin-bottom: 190px;
}
.warranty .cont01 ol li,
.warranty .cont01 .text02{
	font-weight: 400;
	letter-spacing: 0.115em;
}

/* warranty(英語)
------------------------------------------------------------------------*/
.warranty.en .cont01 ol li {
	margin-bottom: 35px;
}
.warranty.en .cont01 .text01 {
	padding-top: 0;
}


/* gallery
------------------------------------------------------------------------*/
.gallery .cont01{
	padding: 110px 0 85px;
}
.gallery .cont01.inner{
	width: 1660px;
}
.gallery .cont01 h2{
	color: transparent;
	height: 0;
}
.gallery .cont01 .flex_box{
	display: flex;
	flex-wrap: wrap;
	gap: 45px;
}
.gallery .cont01 .flex_box .cont{
    width: calc((100% - 90px) / 3);
    height: auto;
}

@media screen and (max-width: 1770px){
	.gallery .cont01{
		width: 100%;
	}
	.gallery .cont01.inner{
		width: auto;
		max-width: 100%;
		box-sizing: border-box;
	}
	.gallery .cont01 .flex_box{
		gap: 45px;
		padding: 0 45px;
	}
	.gallery .cont01 .flex_box .cont {
		width: calc((100% - 90px) / 3);;
	}
}


/*blog共通項目
--------------------------------------------------------------------------*/
.blog .flex {
	margin: 220px auto;
}
.blog .flex .left_box{
	flex-shrink: 1;
	width: 800px;
	margin-right: 30px;
}
.blog .flex .side {
	width: 370px;
	flex-shrink: 0;
	margin-top: -5px;
}
.blog .flex .side .side_box02,
.blog .flex .side .side_box03 {
	margin: 60px 0;
}
.blog .flex .side .cont {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	align-items: center;
	box-sizing: border-box;
	margin-top: 20px;
}
.blog .flex .side .cont a {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	align-items: center;
	box-sizing: border-box;
	margin-top: 20px;
}
.blog .flex .side .ttl {
	font-size: 19px;
	padding-bottom: 5px;
	border-bottom: 1px solid #ededed;
	position: relative;
}
.blog .flex .side .ttl::before {
	content: "";
	font-size: 14px;
	position: absolute;
	top: 7px;
	left: 100px;
}
.blog .flex .side .side_box01 .ttl::before {
	content: "Popular Articles";
}
.blog .flex .side .side_box02 .ttl::before {
	content: "New Articles";
}
.blog .flex .side .side_box03 .ttl::before {
	content: "Category";
	left: 110px;
}
.blog .flex .side .cont .text_box {
	margin-left: 15px;
	font-size: 14px;
	width: 205px;
}
.blog .flex .side .cont .text_box h2 {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin-bottom: 10px;
}
.blog .flex .side .cont .img {
	width: 150px;
	flex-shrink: 0;
	position: relative;
}
.blog .flex .side .side_box01 .cont .img::before {
	content: "";
	width: 25px;
	height: 25px;
	font-size: 14px;
	color: #000;
	font-weight: 600;
	background: #f2cd44;
	line-height: 1;
	box-sizing: border-box;
	padding-top: 6px;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
}
.blog .flex .side .side_box01 .cont:nth-of-type(1) .img::before {
	content: "1";
}
.blog .flex .side .side_box01 .cont:nth-of-type(2) .img::before {
	content: "2";
}
.blog .flex .side .side_box01 .cont:nth-of-type(3) .img::before {
	content: "3";
}
.blog .flex .side .side_box01 .cont:nth-of-type(4) .img::before {
	content: "4";
}
.blog .flex .side .side_box01 .cont:nth-of-type(5) .img::before {
	content: "5";
}
.blog .flex .side .side_box02 .cont .img {
	position: relative;
}
.blog .flex .side .side_box02 .cont .img::before {
	content: "NEW";
	width: 50px;
	height: 25px;
	line-height: 1;
	font-size: 14px;
	box-sizing: border-box;
	padding-top: 5px;
	color: #fff;
	background: #fff;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
}
.blog .flex .side .side_box03 ul {
	margin-top: 15px;
}
.blog .flex .side .side_box03 ul li {
	position: relative;
	padding-left: 32px;
}


/*blog_archive
------------------------------------------------------------------------*/
.blog .cont01 {
	flex-shrink: 1;
	width: 1080px;
	margin: 130px auto 40px;
}
.blog .cont01 .cont:nth-of-type(1) {
	margin-top: 0;
}
.blog .cont01 .cont {
	position: relative;
	box-sizing: border-box;
	padding: 0 0 30px;
	border-bottom: 1px solid #000;
	margin-top: 30px;
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
}
.blog .cont01 .cont .img {
	flex-shrink: 0;
}
.blog .cont01 .cont .img img {
	width: 270px;
	height: 190px;
	object-fit: cover;
}
.blog .cont01 .cont .text_box {
	width: 750px;
	padding-left: 45px;
}
.blog .cont01 .cont h2 {
	font-size: 17px;
	line-height: 1.5;
	letter-spacing: 0.04em;
}
.blog .cont01 .cont .text_box .cate-box {
	margin: 20px 0 15px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	align-items: center;
}
.blog .cont01 .cont .text_box .cate-box .cate {
	font-size: 12px;
	line-height: 1;
	color: #fff;
	letter-spacing: 0.04em;
	background: #007097;
	border-radius: 5px;
	min-width: 100px;
	padding: 7px 15px;
	text-align: center;
}
.blog .cont01 .cont .text_box .cate-box .date {
	font-size: 14px;
	letter-spacing: 0.04em;
	line-height: 1;
}
.blog .cont01 .cont .text_box .text {
	line-height: 2.2;
	letter-spacing: 0.03em;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}
.blog .date_archive {
	width: 1080px;
	margin: 0 auto 130px;
	text-align: right;
	margin-top: 20px;
}
.blog .date_archive .date a {
	font-size: 15px;
}
.blog .date_archive .date a::before{
	content: "→";
	padding-right: 5px;
}

/* blog_archive(英語)
------------------------------------------------------------------------*/
.blog.en .flex .side .side_box01 .ttl::before,
.blog.en .flex .side .side_box02 .ttl::before {
	content: none;
}


/* ブログ詳細 css */
.blog_single .cont01 h1{
	padding-bottom: 10px;
	border-bottom: 1px solid #333;
	font-size: 20px;
	line-height: 1.5;
	margin: 0 0 25px;
	font-weight: bold;
	position: relative;
}
.blog_single .cont01 .cate_box {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 20px;
}
.blog_single .cont01 .cate_box .cate {
	color: #fff;
	text-decoration: none;
	display: block;
	line-height: 1;
	font-size: 12px;
	min-width: 100px;
	padding: 7px 15px;
	border-radius: 5px;
	background: #007097;
	text-align: center;
}
.blog_single .cont01 .cate_box .date{
	font-size: 14px;
	line-height: 1;
	margin: 0;
	font-weight: bold;
}


/*post_cont
------------------------------------------------------------------------*/
.post_cont .index_nav {
	box-sizing: border-box;
	padding: 40px;
	border: none;
	border-radius: 0px;
	margin: 20px 0 45px;
	background: #333;
}
.post_cont .index_nav .title {
	font-weight: bold;
	position: relative;
	padding: 0 !important;
	padding-left: 35px !important;
	font-size: 18px;
	line-height: 1.5;
	font-weight: normal;
}
.post_cont .index_nav .title::before {
	content: '';
	width: 20px;
	height: 18px;
	background: url(img/index_icon.png) no-repeat center / 100%;
	position: absolute;
	top: 4px;
	left: 5px;
}
.post_cont .index_nav {
	position: static;
}
.post_cont .index_nav ul {
	margin: 20px 0 0 0;
	padding-bottom: 0;
}
.post_cont .index_nav ul li.index_level03 {
	margin-left: 15px;
}
.post_cont .index_nav ul li.index_level04 {
	margin-left: 30px;
}
.post_cont .index_nav ul li.index_level05 {
	margin-left: 45px;
}
.post_cont .index_nav ul li {
	display: block;
	text-align: left;
	margin-top: 25px;
}
.post_cont .index_nav ul li.index_level03,
.post_cont .index_nav ul li.index_level04,
.post_cont .index_nav ul li.index_level05 {
	margin-top: 15px;
}
.post_cont .index_nav ul li a {
	font-size: 18px;
	font-weight: normal;
	text-decoration: none;
}
.post_cont .index_nav ul li.index_level03 a,
.post_cont .index_nav ul li.index_level04 a,
.post_cont .index_nav ul li.index_level05 a {
	font-size: 16px;
}
.post_cont .index_nav ul li a:hover {
	text-decoration: none;
}
.post_cont .index_nav ul li::before {
	display: none;
}

.post_cont .has-text-align-left{
	text-align: left;
}
.post_cont .has-text-align-center{
	text-align: center;
}
.post_cont .has-text-align-right{
	text-align: right;
}

.post_cont h2{
	margin: 50px 0 30px;
	padding: 0 0 0 35px;
	font-size: 24px;
	position: relative;
	line-height: 1.2;
}
.post_cont h2:before{
	content: "";
	display: block;
	width:14px;
	height: 14px;
	border:1px solid #fff;
	position: absolute;
	top:0px;
	left:0;
}
.post_cont h2:after{
	content: "";
	display: block;
	width:14px;
	height: 14px;
	border:1px solid #ededed;
	background: #ededed;
	position: absolute;
	top:10px;
	left:10px;
}
.post_cont h3{
	margin: 45px 0 30px;
	padding: 0 0 0 30px;
	font-size: 22px;
	position: relative;
	line-height: 1.2;
}
.post_cont h3:before{
	content: "";
	display: block;
	width:13px;
	height: 13px;
	background: #ededed;
	position: absolute;
	top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.post_cont h4{
	font-size:20px;
	border-left:4px solid #ededed;
	margin: 40px 0 30px;
	padding: 2px 0 0 15px;
	line-height: 1.2;
}

.post_cont h5{
	font-size:18px;
	margin: 35px 0 30px;
	padding: 0 0 0 25px;
	position: relative;
	line-height: 1.2;
}
.post_cont h5:before{
	content: "";
	display: block;
	width:15px;
	height: 5px;
	background: #fff;
	position: absolute;
	top:10px;
	left:0;
}
.post_cont strong{
	font-weight: bold;
	color: var(--main-dark-color);
}
.post_cont em{
	font-style: italic;
	color: #fff;
}
.post_cont a{
	text-decoration: underline;
	color:#fff;
}

.post_cont > p{
	margin: 0 0 30px;
}
.post_cont ul{
	margin: 0 0 30px 23px;
	list-style-type: disc;
}
.post_cont ol{
	margin: 0 0 30px 23px;
	list-style-type: decimal;
}
.post_cont table{
	border-collapse: separate;
	border-spacing: 5px;
	width: 100%;
	margin: 0 0 30px;
}
.post_cont table th{
	background: #007097;
	color:#fff;
	font-weight: bold;
	padding: 10px 15px;
}
.post_cont table tr:nth-of-type(1) th{
	background: #007097;
}
.post_cont table td{
	background: #333;
	padding: 10px 15px;
}
.post_cont .wp-block-quote{
	background: #333;
	padding: 50px;
	border-left: 3px solid #fff;
	margin: 0 0 30px;
	position: relative;
}
.post_cont .wp-block-quote:before,
.post_cont .wp-block-quote:after{
	content: "”";
	display: block;
	font-size: 60px;
	color:#fff;
	line-height: 1;
	position: absolute;
}
.post_cont .wp-block-quote:before{
	top: 10px;
	left: 20px;
}
.post_cont .wp-block-quote:after{
	bottom: 10px;
	right: 20px;
	transform: rotate(180deg);
}

.post_cont .wp-block-buttons{
	margin: 0 0 30px;
	display: flex;
}
.post_cont .wp-block-buttons a{
	display: block;
	text-align: center;
	background: #000;
	border: 1px solid #fff;
	box-sizing: border-box;
	line-height: 48px;
	min-width: 350px;
	height: 50px;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	transition: all 0.5s;
	position: relative;
	text-decoration: none;
}
.post_cont .wp-block-buttons a::after{
	content: "";
	background: url(img/btn_arrow01.png)center left / cover no-repeat;
	width: 16px;
	height: 12px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
}
.post_cont .wp-block-buttons a:hover {
	color: #000;
	background: #fff;
	opacity: 1;
}
.post_cont .wp-block-buttons a:hover::after {
	filter: brightness(0) saturate(100%) invert(15%) sepia(53%) saturate(5355%) hue-rotate(201deg) brightness(95%) contrast(101%);
}
.post_cont .wp-block-code{
	display: block;
	white-space: pre-wrap;
	margin: 0 0 30px;
}
.post_cont .wp-block-code code{
	display: inline-block;
	padding: 20px;
	color: #fff;
	background: #333;
}
.post_cont .wp-block-image{
	margin: 0 0 30px;
}
.post_cont .wp-block-image img{
	max-width: 100%;
}


/* privacy
------------------------------------------------------------------------*/
.privacy .cont01 {
	width: 1000px;
	margin: 250px auto 120px;
}
.privacy .cont01 h2 {
	font-size: 28px;
	text-align: center;
}
.privacy .cont01 .text01 {
	margin-top: 35px;
	line-height: 2;
	font-weight: 400;
}
.privacy .cont01 .box {
	margin-top: 30px;
	padding-bottom: 30px;
	border-bottom: 1px dashed #333;
}
.privacy .cont01 .box:first-of-type {
	margin-top: 45px;
}
.privacy .cont01 .box:last-of-type {
	border-bottom: none;
	padding-bottom: 0;
}
.privacy .cont01 .box h3 {
	font-size: 20px;
	font-weight: 400;
}
.privacy .cont01 .box .text02 {
	line-height: 2;
	font-weight: 400;
	margin-top: 10px;
}
.privacy .cont01 .box .text02 a {
	font-weight:400;
	text-decoration: underline;
}
.privacy .cont01 .box ul {
	margin-top: 15px;
}
.privacy .cont01 .box ul li {
	font-weight: 400;
}
.privacy .cont01 .box ul li:nth-of-type(n+2) {
	margin-top: 8px;
}
.privacy .cont01 .box .text03 {
	font-weight: 400;
	line-height: 2;
	display: inline-block;
	padding: 25px 30px;
	background: #333;
	margin-top: 20px;
}


/* footer
------------------------------------------------------------------------*/
footer{
	width: 100%;
	height: 500px;
	background: #fff;
	color: #000;
}
footer .inner .logo{
	text-align: center;
	padding-top: 40px;
}
footer .inner .box01{
	width: 800px;
	margin: 60px auto 0;
}
footer .inner .box01 ul,
footer .inner .box02{
	display: flex;
	color: #000;
}
footer .inner .box01 ul{
	font-size: 14px;
	letter-spacing: 0.04em;
	justify-content: space-evenly;
}
footer .inner .box01 ul a{
	color: #000;
	position: relative;
}
footer .inner .box01 ul a::before{
	content: "";	
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 0 6px 8px;
	border-color: transparent transparent transparent #333;
	position: absolute;
	top: 0;
	left: -12px;
	bottom: 0;
	margin: auto;
}
footer .inner .box02{
	float: left;
	gap: 23px;
	margin: 50px 0 20px 38.5%;
}
footer .inner .copy{
	float: left;
	font-size: 12px;
	letter-spacing: 0.075em;
	margin: 50px 0 20px 20px;
	padding-top: 6px;
}
footer .inner .button a{
	font-weight: 600;
	padding: 10px 15px;
	font-size: 22px;
	letter-spacing: 0.08em;
}
footer .inner .button a:hover {
	color: #000;
}

.js_fixed_contact {
	position: fixed;
    right: 25px;
    bottom: 20px;
    background-color: #000;
    border: 1px solid #fff;
    transition: 0.3s;
	transform: scale(0.9);
}
.js_fixed_contact a {
	font-weight: 600;
    padding: 10px 15px;
    font-size: 22px;
    letter-spacing: 0.08em;
}

/* footer(英語)
------------------------------------------------------------------------*/
.en footer .inner .box01 {
	width: 670px;
}


}/*PCの記述ここまで*/


/*===============================================
横幅441px以下 sp
===============================================*/

@media screen and (max-width: 441px) {
html,
body,
.wrap {
	width: 440px;
	position: relative;
}
.inner {
	box-sizing: border-box;
	padding: 0 20px;
	width: auto;
}
.pc {
	display: none;
}
.sp {
	display: inline;
}
p {
	font-size: 14px;
}


/* header
------------------------------------------------------------------------*/
header{
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999999;
	position: relative;
}
header h1 a{
	background: url(img/header_logo.svg) no-repeat;
	background-size: 110px;
	position: fixed;
	top: 15px;
	left: 15px;
	width: 110px;
	height: 45px;
	color: transparent;
}
header h1 a.active {
  	position: absolute;
}
header .language{
	display: flex;
	gap: 20px;
	position: absolute;
    right: 100px;
	top: 25px;
}
header .language a{
	font-size: 14px;
	font-weight: 400;
	position: relative;
	color: rgba(255, 255, 255, 0.5);
}
header .language a.active {
	color: #fff;
}
header .language a:nth-of-type(2)::before {
	content: "/";
	padding-right: 20px;
}

/* nav
------------------------------------------------------------------------*/
header nav{
	position: fixed;
	top: 0;
	right: 0;
	z-index: 999999;
}
header #nav-btn{
	position: absolute;
	top: 15px;
	right: 20px;
	display: block;
	width: 50px;
	height: 50px;
	box-sizing: border-box;
	transition: all .5s;
	z-index: 10010;
}
header .menu-btn,
header .menu-btn span{
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
header .menu-btn{
	position: absolute;
	width: 100%;
	height: 15px;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	cursor: pointer;
}
header .menu-btn span{
	position: absolute;
	left: 0;
	width: 100%;
	height: 3px;
	background: #fff;
}
header .menu-btn span:nth-of-type(1){
	top: 0;
}
header .menu-btn span:nth-of-type(2){
	bottom: 0;
}
header #nav-btn.active .menu-btn span:nth-of-type(1){
	-webkit-transform: translateY(6px) rotate(30deg);
	transform: translateY(6px) rotate(30deg);
    background: #fff;
}
header #nav-btn.active .menu-btn span:nth-of-type(2){
	-webkit-transform: translateY(-6px) rotate(-30deg);
	transform: translateY(-6px) rotate(-30deg);
    background: #fff;
}
header #nav{
	display: flex;
	flex-direction: column;
    position: fixed;
    top: 0;
    left: 50%;
	transform: translateX(-50%);
    width: 440px;
    height: 100dvh;
    background: #000;
	padding-top: 60px;
    z-index: 10001;
	opacity: 0;
    pointer-events: none;
    transition: opacity .6s;
}
header #nav-btn.active + #nav{
    opacity: 1;
    pointer-events: auto;
}
header #nav .inner {
    display: flex;
    align-items: center;
    position: relative;
	opacity: 0;
    transition: opacity .6s;
}
header #nav-btn.active + #nav .inner {
    opacity: 1;
}
header #nav-btn.active + #nav .inner::before {
	content: "";
	background: url(img/nav_bg.png) center bottom 10px no-repeat;
	background-size: 93%;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
}
header #nav .logo_svg {
    opacity: 0;
    transition: opacity .6s;
    position: absolute;
    top: 25px;
    left: 30px;
}
header #nav-btn.active + #nav .logo_svg {
	display: block;
	width: 44px;
	height: 48px;
	position: fixed;
    top: 20px;
    left: 20px;
	z-index: 9999;
    opacity: 1;
}
header #nav-btn.active + #nav .logo_svg a {
	display: block;
	width: 100%;
}
header #nav .inner ul,
header #nav .inner .flex_icon {
    opacity: 0;
    transition: opacity .6s;
    pointer-events: none;
}
header #nav-btn.active + #nav .inner ul,
header #nav-btn.active + #nav .inner .flex_icon {
    opacity: 1;
    pointer-events: auto;
}
header #nav .inner ul{
	display: flex;
	flex-wrap: wrap;
    gap: 0 20px;
	font-size: 28px;
	line-height: 1;
	font-family: "din-2014", sans-serif;
	font-weight: 600;
	letter-spacing: 0.025em;
    position: relative;
	z-index: 9999;
	padding: 30px 20px 0;
}
header #nav .inner ul li:nth-child(1) { order: 1; } /* NEWS */
header #nav .inner ul li:nth-child(2) { order: 3; } /* CAR LINE UP */
header #nav .inner ul li:nth-child(3) { order: 5; } /* GALLERY */
header #nav .inner ul li:nth-child(4) { order: 7; } /* COMPANY */
header #nav .inner ul li:nth-child(5) { order: 2; } /* TEAMS */
header #nav .inner ul li:nth-child(6) { order: 4; } /* MISSION */
header #nav .inner ul li:nth-child(7) { order: 6; }

header #nav .inner ul li{
	width: calc(100% / 2 - 10px);
	padding-bottom: 20px;
}
header #nav .inner ul li:last-of-type{
	padding-bottom: 0;
}
header #nav .inner ul li a:hover {
	opacity: 0.5;
}
header #nav .inner .flex_icon{
	display: flex;
	gap: 25px;
	position: fixed;
	bottom: calc(70px + env(safe-area-inset-bottom));
	right: 20px;
}
header #nav .inner .flex_icon .icon_svg {
	width: 20px;
}


/* home
------------------------------------------------------------------------*/
/* key */
.home .key .text_box video {
	width: 100%;
	height: 600px;
	object-fit: cover;
	filter: drop-shadow(0px 0px rgba(0,0,0,0));
}

.home .key .text_box {
	position: relative;
	width: 100%;
	height: auto;
	max-height: 600px;
}

.home .key .text_box .text01{
	width: 350px;
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.home .key .text_box .text01 img {
	filter: drop-shadow(0 0 14px rgba(0, 0, 0, 0.4));
}

/* cont01 */
.home .cont01{
	padding-top: 20px;
}
.home .cont01 h2 {
	text-align: center;
	position: relative;
}
.home .cont01 h2{
	background: url(img/home_text03.png) no-repeat;
	background-size: 190px;
	width: 190px;
	height: 62px;
	color: transparent;
	margin: auto;
}
.home .cont01 .inner .box{
	margin-top: 30px;
	position: relative;
}
.home .cont01 .inner .box .cont{
	display: flex;
	flex-direction: column;
	gap: 10px;
	line-height: 1;
	padding-bottom: 25px;
	font-weight: 500;
}
.home .cont01 .inner .box .cont:last-of-type {
	padding-bottom: 0;
}
.home .cont01 .inner .box .cont .text{
	line-height: 1.5;
	font-weight: 500;
}
.home .cont01 .button a {
	display: block;
	width: 175px;
	height: 40px;
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid #231815;
	border-radius: 25px;
	box-sizing: border-box;
	color: #231815;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.145em;
	line-height: 40px;
	text-align: center;
	margin: 30px auto 100px;
	transition: 0.6s;
}

/* cont02 */
.home .cont02 {
	padding-bottom: 100px;
}
.home .cont02 h2{
	text-align: center;
	font-size: 25px;
	letter-spacing: 0.04em;
	line-height: 1.3;
}
.home .cont02 .inner .flex_box{
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 40px;
}
.home .cont02 .inner .flex_box .cont{
	display: block;
	background: #000;
	box-sizing: border-box;
	position: relative;
	border: 1px solid #fff;
	overflow: hidden;
}
.home .cont02 .inner .flex_box .cont h3{
	width: 100%;
	font-size: 17px;
	line-height: 1;
	text-align: center;
	padding-top: 60px;
	background: url(img/home_text04.png) center 12px no-repeat;
	background-size: 150px;
	position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
	z-index: 999;
}
.home .cont02 .inner .flex_box .cont h3::before {
	content: "";
	background: url(img/home_text05.png) no-repeat;
	background-size: 140px;
	width: 140px;
	height: 14px;
	position: absolute;
	top: 88px;
	left: 50%;
    transform: translateX(-50%);
}


/* Dimemtionの変更（モバイル用） */
/* 変更したい順番を記載する */

.home .cont02 .inner .flex_box .cont:nth-of-type(3) h3::before,
    .home .cont02 .inner .flex_box .cont:nth-of-type(4) h3::before {
	background: url(img/home_text06.png) no-repeat;
	background-size: 140px;
}
.home .cont02 .inner .flex_box .cont .img{
    overflow: hidden;
}
.home .cont02 .inner .flex_box .cont .button{
	width: 150px;
	height: 35px;
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid #231815;
	border-radius: 25px;
	box-sizing: border-box;
	color: #231815;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.145em;
	line-height: 35px;
	text-align: center;
	margin: 0 auto 15px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	transition: 0.6s;
}

/* cont03 */
.home .cont03 {
	padding-bottom: 100px;
}
.home .cont03 h2{
	text-align: center;
    font-size: 25px;
    letter-spacing: 0.04em;
    line-height: 1.3;
}
.home .cont03 .inner .flex_box{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 40px;
}
.home .cont03 .inner .flex_box .cont{
	display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 50px;
    gap: 25px 0;
    height: 350px;
	box-sizing: border-box;
	border: 1px solid #fff;
    text-align: center;
	overflow: hidden;
	position: relative;
}
.home .cont03 .inner .flex_box .cont h3{
	width: 100%;
	font-size: 18px;
	line-height: 1;
	text-align: center;
	padding-top: 57px;
	background: url(img/home_text04.png) center 12px no-repeat;
	background-size: 150px;
	position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
	z-index: 999;
}
.home .cont03 .inner .flex_box .cont h3::before {
	content: "";
	width: 140px;
	height: 14px;
	position: absolute;
	top: 85px;
	left: 50%;
    transform: translateX(-50%);
}
.home .cont03 .inner .flex_box .cont:nth-of-type(1) h3::before,
.home .cont03 .inner .flex_box .cont:nth-of-type(3) h3::before {
	background: url(img/home_text06.png) no-repeat;
	background-size: 140px;
}
.home .cont03 .inner .flex_box .cont:nth-of-type(2) h3::before {
	background: url(img/home_text05.png) no-repeat;
	background-size: 140px;
}
.home .cont03 .inner .flex_box .cont:nth-of-type(4) h3::before {
	background: url(img/home_text08.png) no-repeat;
	background-size: 140px;

}

.home .cont03 .inner .flex_box .cont .img{
	width: 95%;
	margin: 0 auto;
}
.home .cont03 .inner .flex_box .cont .button{
	width: 150px;
	height: 35px;
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid #231815;
	border-radius: 25px;
	box-sizing: border-box;
	color: #231815;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.145em;
	line-height: 35px;
	text-align: center;
	margin: 0 auto 15px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	transition: 0.6s;
}

/* cont04 */
.home .cont04 h2 {
	background: url(img/home_text07.png) no-repeat;
	background-size: 278px;
	width: 278px;
	height: 85px;
	color: transparent;
	margin: 0 auto 30px;
}
.home .cont04 .swiper02 {
	position: relative;
}
.home .cont04 .swiper02 .swiper-wrapper {
	flex-direction: column;
	gap: 30px;
}
.home .cont04 .swiper-slide {
    width: 90%;
	margin: auto;
}
.home .cont04 .swiper-button-prev,
.home .cont04 .swiper-button-next {
	display: none;
}
.home .cont04 .swiper-button-prev::after,
.home .cont04 .swiper-button-next::after {
	display: none;
}
.home .cont04 .swiper-button-prev {
	left: calc(50% - 145px);
}
.home .cont04 .swiper-button-next {
	right: calc(50% - 145px);
}
.home .cont04 .button a {
	display: block;
	width: 175px;
	height: 40px;
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid #231815;
	border-radius: 25px;
	box-sizing: border-box;
	color: #231815;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.145em;
	line-height: 40px;
	text-align: center;
	margin: 30px auto 100px;
	transition: 0.6s;
}


/* common
------------------------------------------------------------------------*/
.blur-text{
    filter: blur(15px);
    opacity: 0;
    transition: all 1s ease-out;
}
.blur-text.show {
	filter: blur(0);
    opacity: 1;
}

/* key */
.common .key {
	height: 530px;
}
.common .key .key_inner {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	box-sizing: border-box;
	position: relative;
}

/* ここから各下層ページのkey
------------------------------------------------------------------------*/
/* teams */
.teams .key {
	background: url(img/teams-key-bg_sp.png) center center no-repeat;
	background-size: 440px;
}
.teams .key_inner::before {
	content: "";
	background: url(img/teams_text01.svg) no-repeat;
	background-size: 255px;
	width: 255px;
    height: 75px;
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* mission */
.mission .key {
	background: url(img/mission-key-bg.png) center center no-repeat;
	background-size: 100%;
}
.mission .key_inner::before {
	content: "";
	background: url(img/mission_text02.svg) no-repeat;
	background-size: 298px;
	width: 298px;
    height: 86px;
	position: absolute;
	top: 100px;
	right: 0;
	left: 0;
	margin: auto;
}

/* company */
.company .key {
	background: url(img/company-key-bg_sp.png) center center no-repeat;
	background-size: 440px;
}
.company .key_inner::before {
	content: "";
	background: url(img/company_text01.svg) no-repeat;
	background-size: 410px;
	width: 410px;
	height: 112px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* car-single */
.car-single .key {
	background: url(img/car-single-key-bg_sp.png) center center no-repeat;
	background-size: 440px;
	position: relative;
}
.car-single .key::before {
	content: "";
	background: url(img/car-single_text01.png) no-repeat;
	background-size: 100%;
	width: 182px;
	height: 18px;
	position: absolute;
	bottom: 40px;
	left: 25px;
}
.car-single .key .text {
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	position: absolute;
	bottom: 70px;
	left: 25px;
}

/* car-archive */
.car-archive .key {
	background: url(img/car-archive-key-bg_sp.png) center center no-repeat;
	background-size: 80%;
	position: relative;
}
.car-archive .key::before {
	content: "";
	background: url(img/car-archive_text01.svg) no-repeat;
	background-size: 220px;
	width: 220px;
    height: 75px;
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* warranty */
.warranty .key {
	background: url(img/warranty-key-bg_sp.png) center center no-repeat;
	background-size: 80%;
	position: relative;
}
.warranty .key::before {
	content: "";
	background: url(img/warranty_text01.svg) no-repeat;
	background-size: 410px;
	width: 410px;
	height: 112px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* gallery */
.gallery .key {
	background: url(img/gallery-key-bg_sp.png) center center no-repeat;
	background-size: 80%;
	position: relative;
}
.gallery .key::before {
	content: "";
	background: url(img/gallery_text01.svg) no-repeat;
	background-size: 360px;
	width: 360px;
	height: 125px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* privacy */
.privacy .key {
	height: auto;
}

/* blog */
.blog_archive .key {
	background: url(img/blog-key-bg_sp.png) center center no-repeat;
	background-size: 440px;
	position: relative;
}
.blog_archive .key::before {
	content: "";
	background: url(img/blog_text01.svg) no-repeat;
	background-size: 240px;
	width: 240px;
	height: 76px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.blog_single .key {
	height: auto;
}


/* teams
------------------------------------------------------------------------*/
/* cont01 */
.teams .cont01.inner {
	margin: 100px auto 120px;
}
.teams .cont01 h2 {
	font-size: 25px;
	letter-spacing: 0.025em;
	line-height: 1.5;
}
.teams .cont01 .text01 {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.94;
	padding: 37px 0 80px;
}
.teams .cont01 .text01 .line {
	font-weight: 400;
	position: relative;
}
.teams .cont01 .text01 .line::before {
	content: "";
	width: 18px;
	height: 2px;
	background: #fff;
	position: absolute;
	right: -23px;
	top: 50%;
	transform: translateY(-50%);
}
.teams .cont01 .text01 .span {
	font-weight: 400;
}
.teams .cont01 h3 {
	text-align: center;
	line-height: 1;
	font-weight: 400;
	padding-bottom: 20px;
}
.teams .cont01 h3 span {
	font-weight: 400;
	position: relative;
}
.teams .cont01 h3 span::before {
	content: " ( ";
}
.teams .cont01 h3 span::after {
	content: " ) ";
}
.teams .cont01 ol {
	text-align: center;
	line-height: 2.8;
	position: relative;
}
.teams .cont01 ol::before {
	content: "";
	background: url(img/teams_text02.png) no-repeat;
	background-size: 280px;
	width: 280px;
    height: 157px;
	position: absolute;
	bottom: -240px;
	right: 0;
	left: 0;
	margin: auto;
}
.teams .cont01 ol li {
	counter-increment: num;
	font-weight: 400;
	text-align: center;
	line-height: 1.8;
	padding-bottom: 15px;
	position: relative;
}
.teams .cont01 ol li:last-of-type {
	padding-bottom: 0;
}
.teams .cont01 ol li::before {
	content: counter(num) ". ";
 	margin-right: .3em;
	margin-right: 5px;
}
.teams .cont01 ol li span {
	font-weight: 400;
	position: relative;
}
.teams .cont01 ol li span::before {
	content: " ( ";
}
.teams .cont01 ol li span::after {
	content: " ) ";
}
.teams .cont01 .team_box {
	display: flex;
	flex-direction: column;
	padding-top: 320px;
}
.teams .cont01 .team_box .box {
	display: flex;
	flex-direction: column;
	width: 80%;
	margin: auto;
}
.teams .cont01 .team_box .box h2 {
	font-size: 24px;
	font-weight: normal;
	line-height: 1;
	padding-top: 20px;
	order: 2;
}
.teams .cont01 .team_box .box h2 span {
	display: block;
	font-size: 14px;
	padding: 10px 0 15px;
}
.teams .cont01 .team_box .box .text02 {
	font-weight: normal;
	line-height: 1.75;
	margin-bottom: 60px;
	order: 3;
}
.teams .cont01 .team_box .box:last-of-type .text02 {
	margin-bottom: 0;
}
.teams .cont01 .team_box .box .img {
	order: 1;
}
.teams .cont01 .team_box .box .img img {
	width: 100%
}


/* mission
------------------------------------------------------------------------*/
/* cont01 */
.mission .cont01 {
	padding: 0 0 100px;
}
.mission .cont01 h2 {
	background: url(img/mission_text03.png) no-repeat;
	background-size: 330px;
    width: 330px;
    height: 44px;
	padding-top: 44px;
	box-sizing: border-box;
	overflow: hidden;
	margin: 10px auto 25px;
}
.mission .cont01 .text01,
.mission .cont01 .text02 {
	text-align: center;
	font-size: 13px;
	font-weight:400;
	line-height: 2.5;
}
.mission .cont01 .img01,
.mission .cont01 .img02 {
	text-align: center;
}

.mission .cont01 .text02 {
	margin-top: 30px;
	position: relative;
}
.mission .cont01 .img02 {
	margin-top: 210px
}
.mission .cont01 .text03 {
	font-size: 13px;
	font-weight: 400;
	text-align: center;
	line-height: 1;
	padding-top: 30px;
}
.mission .cont01 .box {
	text-align: center;
	margin-bottom: 20px;
}
.mission .cont01 .box:nth-of-type(1) {
	margin-top: 40px;
}
.mission .cont01 .box:last-of-type {
	margin-bottom: 0;
}
.mission .cont01 .box h3 {
	font-size: 18px;
	line-height: 1;
	background: url(img/mission_text05.png) center center no-repeat;
	background-size: 280px;
	padding-top: 90px;
	margin-bottom: 15px;
}
.mission .cont01 .box:nth-of-type(2) h3 {
	background: url(img/mission_text06.png) center center no-repeat;
	background-size: 280px;
}
.mission .cont01 .box:nth-of-type(3) h3 {
	background: url(img/mission_text07.png) center center no-repeat;
	background-size: 280px;
}
.mission .cont01 .box .text04 {
	font-size: 13px;
	font-weight: bold;
	line-height: 2.0;
}

/* mission（英語）
------------------------------------------------------------------------*/
.mission.en .text01 {
	padding-bottom: 18px;
}
.mission.en .cont01 .text02::before {
	content: none;
}
.mission .cont01 .img02 {
	position: relative;
}
.mission .cont01 .img02 {
	margin-top: 230px;
}
.mission .cont01 .img02::before {
	content: "";
	background: url(img/mission_text04.png) no-repeat;
	background-size: 260px;
	width: 260px;
	height: 157px;
	position: absolute;
	top: -180px;
	left: 50%;
	transform: translateX(-50%);
}
.mission .cont01 .box h3{
	font-weight: 500;
	letter-spacing: 0.05em;
}
.mission .cont01 .box .text04 {
	font-weight: 400;
	letter-spacing: 0.05em;
}


/* company
------------------------------------------------------------------------*/
/* cont01 */
.company .cont01 {
	padding: 100px 0 80px;
}
.company .cont01 h2 {
	width: 90%;
	margin: auto;
	font-size: 24px;
	font-weight: normal;
	letter-spacing: 0.145em;
	line-height: 1;
	text-align: center;
	border-bottom: 1px solid #fff;
	padding-bottom: 30px;
}
.company .cont01 table {
	width: 90%;
    text-align: left;
	font-size: 15px;
	letter-spacing: 0.025em;
	margin: 40px auto 0;
	position: relative;
}
.company .cont01 table tbody {
	display: block;
	max-width: 630px;
    margin: auto;
}
.company .cont01 table th {
	width: 130px;
	padding: 5px 0;
}
.company .cont01 table td {
	padding: 5px 0;
}

/* cont02 */
.company .cont02 {
	margin: 0 auto 80px;
}
.company .cont02 h2 {
	font-size: 24px;
	font-weight: normal;
	letter-spacing: 0.145em;
	line-height: 1;
	text-align: center;
	border-bottom: 1px solid #fff;
	padding-bottom: 30px;
}
.company .cont02 table {
	width: 100%;
	font-size: 15px;
	text-align: left;
	margin-top: 40px;
}
.company .cont02 table tbody {
	display: block;
}
.company .cont02 table tr:nth-of-type(3) {
	display: block;
	margin-bottom: 50px;
}
.company .cont02 table th {
	width: 115px;
	padding: 5px 0;
}
.company .cont02 table td {
	padding: 5px 0;
}
.company .cont02 table td span {
	padding-left: 15px;
}
.company .cont02 table td .map {
	margin: 20px 0 10px;
}
.company .cont02 table td .text {
	line-height: 2.4;
}

/* cont03 */
.company .cont03 {
	margin-bottom: 120px;
}
.company .cont03 h2 {
	font-size: 24px;
	font-weight: normal;
	letter-spacing: 0.145em;
	line-height: 1;
	text-align: center;
	border-bottom: 1px solid #fff;
	padding-bottom: 30px;
}
.company .cont03 .flex_box {
	width: 350px;
	margin: 40px auto 0;
	display: flex;
	flex-direction: column;
	font-size: 15px;
}
.company .cont03 .flex_box:last-of-type {
	margin-top: 60px;
}
.company .cont03 .flex_box h3 {
	line-height: 1;
	margin-bottom: 30px;
}
.company .cont03 .flex_box .center_box .box {
	margin-bottom: 40px;
}
.company .cont03 .flex_box .center_box .box:last-of-type {
	margin-bottom: 0;
}
.company .cont03 .flex_box .center_box .box h4{
	font-size: 16px;
	font-weight: normal;
	line-height: 1.6;
	padding-bottom: 5px;
}
.company .cont03 .flex_box .center_box .box .map {
	margin: 15px 0;
}
.company .cont03 .flex_box .center_box .box .map iframe {
	width: 285px;
	height: 285px;
}
.company .cont03 .flex_box .center_box .box .hours {
	line-height: 1.7;
	padding-bottom: 12px;
}
.company .cont03 .flex_box .center_box .box .tel,
.company .cont03 .flex_box .center_box .box .link {
	line-height: 1;
	padding-bottom: 15px;
}
.company .cont03 .flex_box .center_box .box .tel a,
.company .cont03 .flex_box .center_box .box .link a {
	color: #fff;
}
.company .cont03 .flex_box .relation_box .box{
	margin-bottom: 50px;
}
.company .cont03 .flex_box .relation_box .box:last-of-type {
	margin-bottom: 0;
}
.company .cont03 .flex_box .relation_box .box h4 {
	font-weight: normal;
	line-height: 1;
	padding-bottom: 10px;
}
.company .cont03 .flex_box .relation_box .box p {
	line-height: 2.2;
}
.company .cont03 .flex_box .relation_box .box .link02 a{
	color: #fff;
}

/* company(英語)
------------------------------------------------------------------------*/
.company.en .cont01 table::before {
	top: auto;
	bottom: -210px;
}
.company.en .cont01 table {
	font-size: 14px;
}
.company.en .cont01 table th {
	width: 200px;
}

.company.en .cont02 h2 {
	line-height: 1.3;
}
.company.en .cont02 table {
	font-size: 14px;
}
.company.en .cont02 table th {
	width: 140px;
}
.company.en .cont02 table tr:nth-of-type(3) {
	margin-bottom: 0;
}
.company.en .cont02 table td .map iframe {
	width: 260px;
	height: 260px;
}

.company.en .cont03 .flex_box .center_box .box .hours,
.company.en .cont03 .flex_box .center_box .box .tel,
.company.en .cont03 .flex_box .center_box .box .link {
	line-height: 2.18;
	padding-bottom: 0;
}
.company.en .cont03 .flex_box .center_box .box .map {
	margin: 18px 0 5px;
}

.company.en .cont04 {
	margin: 0 auto 80px;
}
.company.en .cont04 h2 {
	font-size: 24px;
	font-weight: normal;
	letter-spacing: 0.145em;
	line-height: 1;
	text-align: center;
	border-bottom: 1px solid #fff;
	padding-bottom: 30px;
}
.company.en .cont04 table {
	width: 100%;
	font-size: 14px;
	text-align: left;
	margin-top: 65px;
}
.company.en .cont04 table tbody {
	display: block;
	margin: auto;
}
.company.en .cont04 table th {
	width: 135px;
}
.company.en .cont04 table td {
	padding: 5px 0;
}
.company .cont03 .flex_box .relation_box .box h4 {
	line-height: 1.4;
}


/* car-single
------------------------------------------------------------------------*/
.car-single .choose_box {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-left: 185px;
	margin-top: 30px;
	position: relative;
}
.car-single .choose_box::before {
	content: "";
	background: url(img/car-single_text01.png) no-repeat;
	background-size: 100%;
	width: 150px;
	height: 15px;
	position: absolute;
	left: 20px;
	bottom: 5px;

}
.car-single .choose_box .btn a{
	font-size: 15px;
	color: #fff;
	font-weight: 600;
	letter-spacing: 0.09em;
	line-height: 1;
	position: relative;
}
.car-single .choose_box .btn a:before{
	content: "";
	position: absolute;
	 left: 0;
	bottom: -4px;
	width: 100%;
	height: 1px;
	background: #fff;
	transform: scale(0, 1);
	transform-origin: left;
	transition: 0.4s;
}
.car-single .choose_box .btn.is-active a:before {
	transform: scale(1);
}
.car-single .choose_box .btn.is-hover a:before {
	transform: scale(1);
}

/* cont01 */
.car-single .cont01.inner {
	margin: 80px auto 65px;
}
.car-single .cont01 h2 {
	font-size: 25px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.025em;
}
.car-single .cont01 .text {
	font-weight: 400;
	letter-spacing: 0.08em;
	line-height: 2.375;
	padding: 40px 0 0;
}
.car-single .cont01 .text .line {
	font-weight: 400;
	padding-left: 27px;
	position: relative;
}
.car-single .cont01 .text .line::before {
	content: "";
	width: 20px;
	height: 0.5px;
	background: #fff;
	position: absolute;
	left: 3px;
	top: 50%;
	transform: translateY(-50%);
}

/* cont02 */
.car-single .cont02 .box_01 h2 {
	font-size: 15px;
	line-height: 1;
	letter-spacing: 0.09em;
	border-bottom: 1px solid #fff;
	padding-bottom: 12px;
	margin-bottom: 30px;
}
.car-single .cont02 .box_01 .text_box {
	margin-bottom: 40px;
}
.car-single .cont02 .box_02 .text_box {
	margin-bottom: 65px;
}
.car-single .cont02 .text {
	font-weight: 400;
	line-height: 2.375;
	letter-spacing: 0.04em;
	margin-bottom: 25px;
}
.car-single .cont02 .text:last-of-type {
	margin-bottom: 0;
}
.car-single .cont02 .text .line {
	font-weight: 400;
	padding-left: 30px;
	position: relative;
}
.car-single .cont02 .text .line::before {
	content: "";
	width: 25px;
	height: 0.5px;
	background: #fff;
	position: absolute;
	left: 3px;
	top: 50%;
	transform: translateY(-50%);
}
.car-single .cont02 .img {
	text-align: center;
}
.car-single .cont02 .box_02 h2 {
	background: url(img/car-single_text01.png) no-repeat;
	background-size: 150px;
    width: 100%;
    height: 16px;
	border-bottom: 1px solid #fff;
	color: transparent;
	padding-bottom: 12px;
	margin: 50px 0 30px;
}

/* スペックの表 */
.car-single .cont02 .spec_table .title{
	text-align: center;
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
	font-size: 16px;
	line-height: 1;
	box-sizing: border-box;
	vertical-align: middle;
	padding: 10px;
	letter-spacing: 0.05em;
}

.car-single .cont02 .spec_table .flex table {
	width: 400px;
	height: 100%;
	font-family: "din-2014", sans-serif;
	font-weight: 600;
	margin-bottom: 36px;
}
.car-single .cont02 .spec_table .title + .flex table:nth-of-type(1){
	margin-bottom: 0;
}
.car-single .cont02 .spec_table .title + .flex table:nth-of-type(2){
	margin-top: -1px;
}
.car-single .cont02 .spec_table .flex table thead th{
	background: #fff;
	color: #000;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	text-align: center;
    letter-spacing: 0.05em;
	border-right: 1px solid #000;
	box-sizing: border-box;
	vertical-align: middle;
	padding: 10px;
}
.car-single .cont02 .spec_table .flex table tbody tr:last-of-type {
	border-bottom: 2px solid #fff;
}
.car-single .cont02 .spec_table .flex table tbody tr.pc{
	display: none;
}
.car-single .cont02 .spec_table .flex table tbody th {
    width: 170px;
    background: #333;
	border: 1px solid #fff;
	font-weight: 500;
	line-height: 1;
    text-align: center;
    letter-spacing: 0.05em;
	box-sizing: border-box;
	vertical-align: middle;
	padding: 10px;
}
.car-single .cont02 .spec_table .flex table tbody td {
    width: auto;
	border: 1px solid #fff;
	font-size: 16px;
    font-weight: 500;
	line-height: 1.3;
	text-align: center;
    letter-spacing: 0.05em;
	vertical-align: middle;
	box-sizing: border-box;
	padding: 10px;
}
.car-single .cont02 .spec_table .flex table tbody th.ls_sp,
.car-single .cont02 .spec_table .flex table tbody td.ls_sp {
	letter-spacing: -0.05em;
}

.car-single .cont02 .spec_table .flex table tbody td span {
	font-size: 15px;
    font-weight: 500;
	line-height: 1;
    padding: 8px 0 ;
	text-align: center;
    letter-spacing: 0.05em;
}

/* cont03 */
.car-single .cont03 {
	margin-bottom: 120px;
}
.car-single .cont03 h2 {
	background: url(img/car-single_text02.png) center center no-repeat;
	background-size: 100%;
	width: 278px;
    height: 86px;
	color: transparent;
	margin: 95px auto 20px;
}
.car-single .cont03 .swiper01 {
	position: relative;
}
.car-single .cont03 .swiper-wrapper {
	flex-direction: column;
	gap: 30px;
}
.car-single .cont03 .swiper-slide {
    width: 90%;
	margin: auto;
}
.car-single .cont03 .swiper-button-prev,
.car-single .cont03 .swiper-button-next {
	display: none;
}
.car-single .cont03 .swiper-button-prev::after,
.car-single .cont03 .swiper-button-next::after {
	display: none;
}
.car-single .cont03 .swiper-button-prev {
	left: calc(50% - 145px);
}
.car-single .cont03 .swiper-button-next {
	right: calc(50% - 145px);
}

/* car-single（英語）
------------------------------------------------------------------------*/
.car-single .cont01 h2 {
	line-height: 1.3;
}
.car-single.en .cont01 .text .line::before {
	width: 16px;
	left: 5px;
}
.car-single.en .cont02 .text .line::before {
	width: 16px;
	left: 6px;
}


/* car-archive
------------------------------------------------------------------------*/
/* cont01 */
.car-archive .cont01 {
	padding: 20px 20px 100px;
}
.car-archive .cont01 .flex_box{
	display: flex;
	gap: 20px;
	flex-direction: column;
}
.car-archive .cont01 h2{
	color: transparent;
	height: 0;
}
.car-archive .cont01 .flex_box .cont{
	display: flex;
	flex-direction: column;
    justify-content: center;
	gap: 25px 0;
	background: #000;
	text-align: center;
	box-sizing: border-box;
	border: 1px solid #fff;
	overflow: hidden;
	position: relative;
}
.car-archive .cont01 .flex_box .cont h3{
	width: 100%;
	font-size: 17px;
	line-height: 1;
	text-align: center;
	padding-top: 60px;
	background: url(img/car-archive_text02.png) center 12px no-repeat;
	background-size: 150px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 999;
}
.car-archive .cont01 .flex_box .cont h3::before{
	content: "";
	background: url(img/car-archive_text03.png) no-repeat;
	background-size: 140px;
	width: 140px;
	height: 14px;
	position: absolute;
	top: 88px;
	left: 50%;
	transform: translateX(-50%);
}
.car-archive .cont01 .flex_box .cont:nth-of-type(1) h3::before
.car-archive .cont01 .flex_box .cont:nth-of-type(2) h3::before,
.car-archive .cont01 .flex_box .cont:nth-of-type(6) h3::before {
	background: url(img/car-archive_text03.png) no-repeat;
}
.car-archive .cont01 .flex_box .cont:nth-of-type(3) h3::before,
.car-archive .cont01 .flex_box .cont:nth-of-type(4) h3::before,
.car-archive .cont01 .flex_box .cont:nth-of-type(5) h3::before,
.car-archive .cont01 .flex_box .cont:nth-of-type(7) h3::before {
	background: url(img/car-archive_text04.png) no-repeat;
	background-size: 140px;
}
.car-archive .cont01 .flex_box .cont:nth-of-type(8) h3::before {
	background: url(img/car-archive_text05.png) no-repeat;
	background-size: 140px;
}
.car-archive .cont01 .flex_box .cont .text {
	font-size: 12px;
	font-weight: 600;
	color: #000;
	line-height: 1;
	background: #fff;
	padding: 4px 6px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 999;
}
.car-archive .cont01 .flex_box .cont .button{
	width: 120px;
	height: 30px;
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid #231815;
	border-radius: 25px;
	box-sizing: border-box;
	color: #231815;
	font-size: 8px;
	font-weight: 500;
	letter-spacing: 0.145em;
	line-height: 30px;
	text-align: center;
	margin: 45px auto 20px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	transition: 0.6s;
}
.car-archive .cont01 .flex_box .cont .button:hover{
	background: #fff;
}


/* warranty
------------------------------------------------------------------------*/
.warranty .cont01{
	padding: 100px 20px;
}
.warranty .cont01 h2{
	text-align: center;
	position: relative;
	color: transparent;
}
.warranty .cont01 .DimentionX{
	content: "";
	background: url(img/warranty_text02.png) no-repeat;
	width: 222px;
	height: 19px;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.warranty .cont01 .DimentionY{
	content: "";
	background: url(img/warranty_text03.png) no-repeat;
	width: 218px;
	height: 19px;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.warranty .cont01 .DimentionZ{
	content: "";
	background: url(img/warranty_text04.png) no-repeat;
	width: 220px;
	height: 20px;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.warranty .cont01 ol{
	font-size: 14px;
	margin-top: 40px;
}
.warranty .cont01 ol li{
	line-height: 2.5;
}
.warranty .cont01 .text01{
	line-height: 2.5;
	font-weight: 400;
	padding: 20px 0 60px;
	letter-spacing: 0.05em;
}
.warranty .cont01 .text02{
	margin-top: 40px;
}
.warranty .cont01 ol li,
.warranty .cont01 .text02{
	font-weight: 400;
	letter-spacing: 0.04em;
}

/* warranty(英語)
------------------------------------------------------------------------*/
.warranty.en .cont01 ol li {
	margin-bottom: 35px;
}
.warranty.en .cont01 .text01 {
	padding-top: 0;
}


/* gallery
------------------------------------------------------------------------*/
.gallery .cont01{
	margin: 0 0 100px
}
.gallery .cont01 h2{
	color: transparent;
	height: 0;
}
.gallery .cont01 .flex_box{
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.gallery .cont01 .flex_box .cont{
    width: 100%;
    height: auto;
}


/*blog 共通項目
--------------------------------------------------------------------------*/
.blog .flex .side {
	width: 100%;
	box-sizing: border-box;
	margin: 70px auto 0;
	padding: 0 15px;
}
.blog .flex .side .cont {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	align-items: center;
	box-sizing: border-box;
	margin-top: 20px;
}
.blog .flex .side .side_box02 {
	margin: 70px 0;
}
.blog .flex .side .ttl {
	font-size: 20px;
	padding-bottom: 5px;
	border-bottom: 1px solid #ededed;
	position: relative;
}
.blog .flex .side .ttl::before {
	content: "";
	font-size: 14px;
	position: absolute;
	top: 7px;
	left: 100px;
}
.blog .flex .side .side_box01 .ttl::before {
	content: "Popular Articles";
}
.blog .flex .side .side_box02 .ttl::before {
	content: "New Articles";
}
.blog .flex .side .side_box03 .ttl::before {
	content: "Category";
	left: 110px;
}
.blog .flex .side .cont .text_box {
	padding-left: 15px;
	font-size: 14px;
}
.blog .flex .side .cont .text_box h2 {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	margin-bottom: 10px;
}
.blog .flex .side .cont .img {
	width: 150px;
	flex-shrink: 0;
}
.blog .flex .side .cont .img img {
	max-width: 100%;
}
.blog .flex .side .side_box01 .cont .img {
	position: relative;
}
.blog .flex .side .side_box01 .cont .img::before {
	content: "";
	width: 25px;
	height: 25px;
	font-size: 14px;
	color: #000;
	font-weight: 600;
	background: #f2cd44;
	line-height: 25px;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
}
.blog .flex .side .side_box01 .cont:nth-of-type(1) .img::before {
	content: "1";
}
.blog .flex .side .side_box01 .cont:nth-of-type(2) .img::before {
	content: "2";
}
.blog .flex .side .side_box01 .cont:nth-of-type(3) .img::before {
	content: "3";
}
.blog .flex .side .side_box01 .cont:nth-of-type(4) .img::before {
	content: "4";
}
.blog .flex .side .side_box01 .cont:nth-of-type(5) .img::before {
	content: "5";
}
.blog .flex .side .side_box02 .cont .img {
	position: relative;
}
.blog .flex .side .side_box02 .cont .img::before {
	content: "NEW";
	width: 50px;
	height: 25px;
	line-height: 1;
	font-size: 14px;
	box-sizing: border-box;
	padding-top: 5px;
	color: #fff;
	background: #fff;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
}
.blog .flex .side .side_box03 {
	margin: 0 0 30px;
}
.blog .flex .side .side_box03 ul {
	margin-top: 15px;
}
.blog .flex .side .side_box03 ul li {
	position: relative;
	padding-left: 32px;
}


/* blog_archive
------------------------------------------------------------------------*/
.blog .flex {
	margin: 70px auto;
}
.blog .cont01 {
	padding: 70px 15px 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px 0;
}
.blog .cont01 .cont {
	display: flex;
	flex-direction: column-reverse;
	width: 195px;
}
.blog .cont01 .cont h2 {
	font-size: 16px;
	margin-top: 15px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.blog .cont01 .cont .text_box .cate-box .cate {
	font-size: 12px;
	line-height: 1;
	color: #fff;
	letter-spacing: 0.04em;
	background: #007097;
	border-radius: 5px;
	min-width: 95px;
	padding: 7px 15px;
	text-align: center;
	display: inline-block;
	box-sizing: border-box;
	margin: 10px 0;
}
.blog .cont01 .cont .text_box .cate-box .date {
	letter-spacing: 0.04em;
}
.blog .cont01 .cont .text {
	letter-spacing: 0.03em;
	margin-top: 5px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}
.blog .date_archive {
	margin: 40px 0 100px;
	padding: 0 15px;
}
.blog .date_archive .date a {
	font-size: 15px;
}
.blog .date_archive .date a::before{
	content: "→";
	padding-right: 5px;
}

/* blog_archive(英語)
------------------------------------------------------------------------*/
.blog.en .flex .side .side_box01 .ttl::before,
.blog.en .flex .side .side_box02 .ttl::before {
	content: none;
}


/* ブログ詳細 css */
.blog_single .cont01 {
	display: block;
}
.blog_single .cont01 h1{
	padding-bottom: 10px;
	border-bottom: 1px solid #fff;
	font-size: 16px;
	line-height: 1.5;
	margin: 0 0 25px;
	font-weight: bold;
	position: relative;
}
.blog_single .cont01 .cate_box {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 20px;
}
.blog_single .cont01 .cate_box .cate{
	color: #fff;
	text-decoration: none;
	display: block;
	line-height: 1;
	font-size: 12px;
	text-align: center;
	min-width: 100px;
	padding: 7px 15px;
	border-radius: 5px;
	background: #007097;
}
.blog_single .cont01 .cate_box .date{
	font-size: 14px;
	line-height: 1;
	margin: 0;
	font-weight: bold;
}


/*post_cont
------------------------------------------------------------------------*/
.post_cont .index_nav {
	box-sizing: border-box;
	padding: 30px;
	border: none;
	border-radius: 0px;
	margin: 20px 0 45px;
	background: #333;
}
.post_cont .index_nav .title {
	font-weight: bold;
	position: relative;
	padding: 0 !important;
	padding-left: 35px !important;
	font-size: 18px;
	line-height: 1.5;
	font-weight: normal;
}
.post_cont .index_nav .title::before {
	content: '';
	width: 20px;
	height: 18px;
	background: url(img/index_icon.png) no-repeat center / 100%;
	position: absolute;
	top: 4px;
	left: 5px;
}
.post_cont .index_nav {
	position: static;
}
.post_cont .index_nav ul {
	margin: 20px 0 0 0;
	padding-bottom: 0;
}
.post_cont .index_nav ul li.index_level03 {
	margin-left: 15px;
}
.post_cont .index_nav ul li.index_level04 {
	margin-left: 30px;
}
.post_cont .index_nav ul li.index_level05 {
	margin-left: 45px;
}
.post_cont .index_nav ul li {
	display: block;
	text-align: left;
	margin-top: 30px;
	line-height: 1.2;
}
.post_cont .index_nav ul li.index_level03,
.post_cont .index_nav ul li.index_level04,
.post_cont .index_nav ul li.index_level05 {
	margin-top: 25px;
}
.post_cont .index_nav ul li a {
	font-size: 16px;
	font-weight: normal;
	text-decoration: none;
}
.post_cont .index_nav ul li.index_level03 a,
.post_cont .index_nav ul li.index_level04 a,
.post_cont .index_nav ul li.index_level05 a {
	font-size: 14px;
}
.post_cont .index_nav ul li::before {
	display: none;
}

.post_cont .has-text-align-left{
	text-align: left;
}
.post_cont .has-text-align-center{
	text-align: center;
}
.post_cont .has-text-align-right{
	text-align: right;
}

.post_cont h2{
	margin: 50px 0 30px;
	padding: 0 0 0 35px;
	font-size: 19px;
	position: relative;
	line-height: 1.2;
}
.post_cont h2:before{
	content: "";
	display: block;
	width:14px;
	height: 14px;
	border:1px solid #fff;
	position: absolute;
	top:0px;
	left:0;
}
.post_cont h2:after{
	content: "";
	display: block;
	width:14px;
	height: 14px;
	border:1px solid #ededed;
	background: #ededed;
	position: absolute;
	top:10px;
	left:10px;
}
.post_cont h3{
	margin: 45px 0 30px;
	padding: 0 0 0 30px;
	font-size: 18px;
	position: relative;
	line-height: 1.2;
}
.post_cont h3:before{
	content: "";
	display: block;
	width:13px;
	height: 13px;
	background: #ededed;
	position: absolute;
	top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.post_cont h4{
	font-size:17px;
	border-left:5px solid #ededed;
	margin: 40px 0 30px;
	padding: 2px 0 0 15px;
	line-height: 1.2;
}

.post_cont h5{
	font-size:16px;
	margin: 35px 0 30px;
	padding: 0 0 0 25px;
	position: relative;
	line-height: 1.2;
}
.post_cont h5:before{
	content: "";
	display: block;
	width:15px;
	height: 5px;
	background: #fff;
	position: absolute;
	top:10px;
	left:0;
}
.post_cont strong{
	font-weight: bold;
	color: var(--main-dark-color);
}
.post_cont em{
	font-style: italic;
	color: #fff;
}
.post_cont a{
	text-decoration: underline;
	color:#fff;
}
.post_cont > p{
	margin: 0 0 30px;
}
.post_cont ul{
	margin: 0 0 30px 23px;
	list-style-type: disc;
}
.post_cont ol{
	margin: 0 0 30px 23px;
	list-style-type: decimal;
}
.post_cont table{
	border-collapse: separate;
	border-spacing: 5px;
	width: 100%;
	margin: 0 0 30px;
	font-size: 14px;
	line-height: 1.5;
}
.post_cont table th{
	background: #007097;
	color:#fff;
	font-weight: bold;
	padding: 10px 15px;
}
.post_cont table tr:nth-of-type(1) th{
	background: #007097;
}
.post_cont table td{
	background: #333;
	padding: 10px 15px;
}
.post_cont .wp-block-quote{
	background: #333;
	padding: 50px;
	border-left: 3px solid #fff;
	margin: 0 0 30px;
	position: relative;
}
.post_cont .wp-block-quote:before,
.post_cont .wp-block-quote:after{
	content: "”";
	display: block;
	font-size: 40px;
	color:#fff;
	line-height: 1;
	position: absolute;
}
.post_cont .wp-block-quote:before{
	top: 10px;
	left: 20px;
}
.post_cont .wp-block-quote:after{
	bottom: 10px;
	right: 20px;
	transform: rotate(180deg);
}

.post_cont .wp-block-buttons{
	margin: 0 0 30px;
	display: flex;
}
.post_cont .wp-block-buttons a{
	display: block;
	text-align: center;
	background: #000;
	border: 1px solid #fff;
	box-sizing: border-box;
	line-height: 48px;
	min-width: 380px;
	height: 50px;
	color: #fff;
	font-weight: bold;
	transition: all 0.5s;
	position: relative;
	text-decoration: none;
}
.post_cont .wp-block-buttons a::after{
	content: "";
	background: url(img/btn_arrow01.png)center left / cover no-repeat;
	width: 16px;
	height: 12px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
}
.post_cont .wp-block-code{
	display: block;
	white-space: pre-wrap;
	margin: 0 0 30px;
}
.post_cont .wp-block-code code{
	display: inline-block;
	padding: 20px;
	color: #fff;
	background: #333;
}
.post_cont .wp-block-image{
	margin: 0 0 30px;
}
.post_cont .wp-block-image img{
	max-width: 100%;
}


/* privacy
------------------------------------------------------------------------*/
.privacy .cont01 {
	padding: 120px 30px 100px;
}
.privacy .cont01 h2 {
	font-size: 22px;
	text-align: center;
}
.privacy .cont01 .text01 {
	margin-top: 20px;
	font-size: 14px;
	line-height: 2;
	font-weight: 400;
}
.privacy .cont01 .box {
	margin-top: 30px;
	padding-bottom: 25px;
	border-bottom: 1px dashed #333;
}
.privacy .cont01 .box:first-of-type {
	margin-top: 30px;
}
.privacy .cont01 .box:last-of-type {
	border-bottom: none;
	padding-bottom: 0;
}
.privacy .cont01 .box h3 {
	font-size: 18px;
	font-weight: 400;
}
.privacy .cont01 .box .text02 {
	line-height: 2;
	font-size: 14px;
	font-weight: 400;
	margin-top: 10px;
}
.privacy .cont01 .box .text02 a {
	font-weight: 400;
	text-decoration: underline;
}
.privacy .cont01 .box ul {
	margin-top: 15px;
}
.privacy .cont01 .box ul li {
	font-size: 14px;
	font-weight: 400;
}
.privacy .cont01 .box ul li:nth-of-type(n+2) {
	margin-top: 10px;
}
.privacy .cont01 .box .text03 {
	line-height: 2;
	display: inline-block;
	padding: 25px;
	background: #333;
	margin-top: 20px;
	font-size: 14px;
	font-weight: 400;
}


/* footer
------------------------------------------------------------------------*/
footer{
	height: 600px;
	background: #fff;
	color: #000;
}
footer .inner .logo{
	width: 60%;
	margin: 0 auto;
	padding-top: 60px;
}
footer .inner .box01{
	margin: 60px auto 0;
	padding-left: 30px;
}
footer .inner .box01 ul{
	display: flex;
	flex-direction: column;
	gap: 15px;
	color: #000;
	font-size: 14px;
	letter-spacing: 0.04em;
	justify-content: space-evenly;
}
footer .inner .box01 ul a{
	color: #000;
	position: relative;
}
footer .inner .box01 ul a::before{
	content: "";	
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 0 6px 8px;
	border-color: transparent transparent transparent #333;
	position: absolute;
	top: 0;
	left: -14px;
	bottom: 0;
	margin: auto;
}
footer .inner .box02{
	display: flex;
	gap: 23px;
	margin: 25px 0 20px 20px;
}
footer .inner .copy{
	font-size: 12px;
	letter-spacing: 0.075em;
	margin: 0px 0 20px 20px;
	padding-top: 6px;
	color: #000;
}
footer .inner .button{
	position: fixed;
	right: 25px;
	bottom: 20px;
	background-color: #000;
	transition: 0.3s;
}
footer .inner .button a{
	font-weight: 600;
	padding: 10px 12px;
	font-size: 18px;
	letter-spacing: 0.08em;
}

.js_fixed_contact {
	position: fixed;
	right: 25px;
	bottom: 20px;
	background-color: #000;
	border: 1px solid #fff;
	transition: 0.3s;
}
.js_fixed_contact a {
	font-weight: 600;
	padding: 10px 12px;
	font-size: 18px;
	letter-spacing: 0.08em;
}


}/*SPの記述ここまで*/


/* swiper
----------------------------------------------------------*/

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;text-transform:none;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:50%;background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-slide-visible .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}


/* Colorbox Core Style: */
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:hidden; -webkit-transform: translate3d(0,0,0);}
#cboxWrapper {max-width:none;}
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative;}
#cboxLoadedContent{overflow:auto; -webkit-overflow-scrolling: touch;}
#cboxTitle{margin:0;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none; -ms-interpolation-mode:bicubic;}
.cboxIframe{width:100%; height:100%; display:block; border:0; padding:0; margin:0;}
#colorbox, #cboxContent, #cboxLoadedContent{box-sizing:content-box; -moz-box-sizing:content-box; -webkit-box-sizing:content-box;}

/* 
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay{background:url(img/overlay.png) repeat 0 0; opacity: 0.9; filter: alpha(opacity = 90);}
#colorbox{outline:0;}
    #cboxTopLeft{width:21px; height:21px; background:url(img/controls.png) no-repeat -101px 0;}
    #cboxTopRight{width:21px; height:21px; background:url(img/controls.png) no-repeat -130px 0;}
    #cboxBottomLeft{width:21px; height:21px; background:url(img/controls.png) no-repeat -101px -29px;}
    #cboxBottomRight{width:21px; height:21px; background:url(img/controls.png) no-repeat -130px -29px;}
    #cboxMiddleLeft{width:21px; background:url(img/controls.png) left top repeat-y;}
    #cboxMiddleRight{width:21px; background:url(img/controls.png) right top repeat-y;}
    #cboxTopCenter{height:21px; background:url(img/border.png) 0 0 repeat-x;}
    #cboxBottomCenter{height:21px; background:url(img/border.png) 0 -29px repeat-x;}
    #cboxContent{background:#fff; overflow:hidden;}
        .cboxIframe{background:#fff;}
        #cboxError{padding:50px; border:1px solid #ccc;}
        #cboxLoadedContent{margin-bottom:28px;}
        #cboxTitle{position:absolute; bottom:4px; left:0; text-align:center; width:100%; color:#949494;}
        /* #cboxCurrent{position:absolute; bottom:4px; left:58px; color:#949494;} */
        #cboxLoadingOverlay{background:url(img/loading_background.png) no-repeat center center;}
        #cboxLoadingGraphic{background:url(img/loading.gif) no-repeat center center;}

        /* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
        #cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {border:0; padding:0; margin:0; overflow:visible; width:auto; background:none; }
        
        /* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
        #cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {outline:0;}

        #cboxSlideshow{position:absolute; bottom:4px; right:30px; color:#0092ef;}
        #cboxPrevious{position:absolute; bottom:0; left:0; background:url(img/controls.png) no-repeat -75px 0; width:25px; height:25px; text-indent:-9999px;}
        #cboxPrevious:hover{background-position:-75px -25px;}
        #cboxNext{position:absolute; bottom:0; left:27px; background:url(img/controls.png) no-repeat -50px 0; width:25px; height:25px; text-indent:-9999px;}
        #cboxNext:hover{background-position:-50px -25px;}
        #cboxClose{position:absolute; bottom:0; right:0; background:url(img/controls.png) no-repeat -25px 0; width:25px; height:25px; text-indent:-9999px;}
        #cboxClose:hover{background-position:-25px -25px;}

/*
  The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
  when an alpha filter (opacity change) is set on the element or ancestor element.  This style is not applied to or needed in IE9.
  See: http://jacklmoore.com/notes/ie-transparency-problems/
*/
.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
}

body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url('#wp-duotone-dark-grayscale');--wp--preset--duotone--grayscale: url('#wp-duotone-grayscale');--wp--preset--duotone--purple-yellow: url('#wp-duotone-purple-yellow');--wp--preset--duotone--blue-red: url('#wp-duotone-blue-red');--wp--preset--duotone--midnight: url('#wp-duotone-midnight');--wp--preset--duotone--magenta-yellow: url('#wp-duotone-magenta-yellow');--wp--preset--duotone--purple-green: url('#wp-duotone-purple-green');--wp--preset--duotone--blue-orange: url('#wp-duotone-blue-orange');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
