@charset "utf-8";
/* CSS Document */

/*------------ 初期設定 ------------*/
p {}

/*------------ 全体 ------------*/
html {}

html.is-nav,
html.is-nav body {
	overflow: hidden;
}

body {
	color: #1E1E1E;
	-webkit-text-size-adjust: 100%;
	letter-spacing: 0.03em;
}

html,
body {
	height: 100%;
}

._hover {
	transition: opacity 0.3s linear;
	opacity: 1;
}

._hover:hover {
	opacity: 0.5;
}

.font-mont {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
}

* {
	box-sizing: border-box;
}

#contents * {
	box-sizing: content-box;
}

.bg-color__navy {
	background-color: #000029;
	color: #FFF;
}

.bg-color__light-blue {
	background-color: #E3ECF2;
}

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

table {
	table-layout: fixed;
}

ul,
ol {
	list-style: none;
	margin: 0;
	padding: 0;
}


/* Fonts
------------------------------------------------------------*/
@font-face {
	font-family: 'Noto Sans JP';
	font-weight: 300;
	src: url('/assets/font/NotoSansJP-Light.woff2') format('woff2'),
		url('./assets/font/NotoSansJP-Light.woff') format('woff'),
		url('./assets/font/NotoSansJP-Light.otf') format('otf');
	font-display: swap;
}

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

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

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

body {
	font-size: 75%;
	/* IE */
	font-weight: 400;
	font-family: 'YakuHanJP', 'Noto Sans JP', 'qMmpS Pro W3', 'Hiragino Kaku Gothic Pro', 'CI', 'Meiryo', verdana, 'Osaka', 'lr oSVbN', 'MS PGothic', Sans-Serif;
}


.anim-fadeUp {
	-webkit-transition: opacity .8s, -webkit-transform .8s;
	transition: opacity .8s, -webkit-transform .8s;
	transition: transform .8s, opacity .8s;
	transition: transform .8s, opacity .8s, -webkit-transform .8s;
	opacity: 0;
	-webkit-transform: translateY(60px);
	-ms-transform: translateY(60px);
	transform: translateY(60px);
}

.anim-fadeUp.is-show {
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}

.anim-fade {
	transition: opacity .8s;
	opacity: 0;
}

.anim-fade.is-show {
	opacity: 1;
}

/*------------ WRAPPER ------------*/
#wrapper {
	width: 100%;
	position: relative;
	overflow: hidden;
	padding-top: 79px;
}

.content-inner {
	width: 950px;
	margin: 0 auto;
}

.content-inner-1040 {
	max-width: 1040px;
	padding: 0 20px;
	box-sizing: content-box;
	margin: 0 auto;
}

.content-inner-800 {
	max-width: 800px;
	padding: 0 20px;
	box-sizing: content-box;
	margin: 0 auto;
}

.content-inner-850 {
	max-width: 850px;
	padding: 0 20px;
	box-sizing: content-box;
	margin: 0 auto;
}

.content-inner-920 {
	max-width: 920px;
	padding: 0 20px;
	box-sizing: content-box;
	margin: 0 auto;
}

.content-inner-1000 {
	max-width: 1000px;
	padding: 0 20px;
	box-sizing: content-box;
	margin: 0 auto;
}

.content-inner-1010 {
	max-width: 1010px;
	padding: 0 20px;
	box-sizing: content-box;
	margin: 0 auto;
}

.content-inner-1060 {
	max-width: 1060px;
	padding: 0 20px;
	box-sizing: content-box;
	margin: 0 auto;
}

.content-inner-1070 {
	max-width: 1070px;
	padding: 0 20px;
	box-sizing: content-box;
	margin: 0 auto;
}

.content-inner-1100 {
	max-width: 1100px;
	padding: 0 20px;
	box-sizing: content-box;
	margin: 0 auto;
}

.content-inner-1200 {
	max-width: 1200px;
	padding: 0 20px;
	box-sizing: content-box;
	margin: 0 auto;
}

.content-inner-1500 {
	max-width: 1500px;
	padding: 0 20px;
	box-sizing: content-box;
	margin: 0 auto;
}

/* .content-sub{
  max-width: 2000px;
  margin: auto;
} */

/*------------ HEADER ------------*/
a {
	cursor: pointer;
	opacity: 1;
	transition: opacity 0.3s linear;
}

a:hover {
	text-decoration: none !important;
	opacity: .5;
}

header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	background-color: #FFF;
	z-index: 100;
	box-shadow: 0 3px 5px rgba(0, 0, 0, .07);
}

.flex-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
	padding: 0 58px 0 39px;
	max-width: 2000px;
	margin: auto;
}

.flex-header__li:nth-child(1) {
	position: relative;
	z-index: 5;
}

.flex-header__li:nth-child(2) {
	max-width: 1030px;
	flex-grow: 1;
	margin-left: 20px;
}

.list-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.list-nav a {
	color: inherit;
	text-decoration: none;
}

.list-nav>li:nth-child(n+2) {
	margin-left: 10px;
}

.list-nav>li:last-child {
	margin-left: -10px;
	flex-shrink: 0;
	transition: margin .3s;
}

.list-nav>li:last-child.is-active {
	margin-left: 10px;
}

.nav__head {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .15em;
	position: relative;
	z-index: 5;
}

.nav__search {
	height: 34px;
	border-radius: 17px;
	border: 1px solid transparent;
	padding: 0 10px;
	display: flex;
	align-items: center;
	position: relative;
	z-index: 5;
	margin-right: 25px;
	transition: all .3s;
}

.nav__search input[type="text"] {
	width: 0px;
	margin-right: 0;
	height: 24px;
	border: none;
	transition: width .3s, margin .3s;
}

.nav__search.is-active {
	border-color: #1E1E1E;
	padding-right: 35px;
	margin-right: 0px;
}

.nav__search.is-active input[type="text"] {
	width: 100px;
	margin-right: 5px;
}

.nav__search__open {
	cursor: pointer;
	position: relative;
	display: flex;
}

.nav__search__open .search__submit {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 5;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
	display: none;
}

.nav__search.is-active .nav__search__open .search__submit {
	display: block;
}

.nav__search__close {
	opacity: 0;
	position: absolute;
	top: 50%;
	right: 19px;
	width: 9px;
	transform: translateY(-50%);
	pointer-events: none;
	transition: opacity .3s;
}

.nav__search__close img {
	display: block;
}

.nav__search.is-active .nav__search__close {
	opacity: 1;
	pointer-events: auto;
	cursor: pointer;
}

.navigation.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Montserrat', sans-serif !important;
	font-weight: 500 !important;
	margin-top: 70px;
}

.page-numbers.current {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	margin: 0 10px;
	background: #ADADAF;
	color: #fff;
	width: 32px;
}

a.page-numbers {
	width: fit-content;
	font-size: 20px;
	margin: 0 10px;
}


.nav__btn__shop {
	background-color: #1E1E1E;
	height: 28px;
	border-radius: 14px;
	color: #FFF !important;
	justify-content: center;
	align-items: center;
	width: 170px;
	display: flex;
	font-size: 13px;
	border: 1px solid #1E1E1E;
	position: relative;
	z-index: 5;
	transition: .2s;
	opacity: 1 !important;
}

.nav__btn__shop:before {
	content: "";
	width: 16px;
	height: 15px;
	background: url("../images/common/icon_cart.svg") no-repeat center center;
	background-size: contain;
	margin-right: 7px;
	position: relative;
	top: -1px;
}

.nav__megamenu:before {
	content: "";
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 470px;
	z-index: -1;
	background-color: #FFF;
	box-shadow: 0 3px 5px rgba(0, 0, 0, .07);
}

.js-megamenu:hover .nav__head:before {
	content: "";
	width: 100%;
	border-bottom: 2px solid #1E1E1E;
	position: absolute;
	left: 0;
	bottom: -37px;
	padding-bottom: 37px;
	z-index: 2;
}

.js-megamenu:hover .nav__head:after {
	content: "";
	width: 180%;
	position: absolute;
	left: -40%;
	bottom: -37px;
	padding-bottom: 37px;
	z-index: 1;
}

.megamenu {
	position: fixed;
}

.megamenu a:hover {
	text-decoration: underline;
}

.flex-megamenu-product {
	display: flex;
	justify-content: space-between;
	top: 150px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 1040px;
	padding: 0 20px;
}

.flex-megamenu-product__li:nth-child(n+2) {
	margin-left: 20px;
}

.megamenu-product__head {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .15em;
	white-space: nowrap;
}

.list-megamenu-product {
	margin-top: 31px;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .15em;
}

.list-megamenu-product>li:nth-child(n+2) {
	margin-top: 20px;
}

.flex-megamenu-app {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	top: 150px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 1050px;
	padding: 0 20px;
}

.flex-megamenu-app__li {
	width: calc((100% - 150px) / 3);
}

.flex-megamenu-app__li:nth-child(1) {
	width: 150px;
	padding-top: 7px;
}

.flex-megamenu-app__li:nth-child(n+5) {
	margin-top: 57px;
}

.flex-megamenu-app__li:nth-child(3n+5) {
	margin-left: 150px;
}

.megamenu-app__item {
	display: flex;
	align-items: center;
}

.megamenu-app__item .icon {
	flex-shrink: 0;
	flex-grow: 0;
}

.megamenu-app__item .info {
	margin-left: 16px;
	display: flex;
	flex-direction: column;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .15em;
	padding-right: 1em;
}

.megamenu-app__item[target="_blank"] .ttl:after {
	content: "";
	width: 16px;
	height: 11px;
	background: url(../images/common/icon_blank.svg) no-repeat center center;
	background-size: contain;
	position: relative;
	top: 1px;
	flex-shrink: 0;
	flex-grow: 0;
	margin-left: .5em;
	display: inline-block;
}

.megamenu__list {
	position: absolute;
	top: 150px;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .15em;
}

.megamenu__list a:hover {
	text-decoration: underline;
}

.megamenu__list li:nth-child(n+2) {
	margin-top: 30px;
}

.flex-megamenu-shop {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	top: 175px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 760px;
	padding: 0 20px;
}

.flex-megamenu-shop__li {
	flex-grow: 1;
	width: calc((100% - 50px) / 2);
}

.flex-megamenu-shop__li:nth-child(even) {
	margin-left: 50px;
}

.flex-megamenu-shop__li:nth-child(n+3) {
	margin-top: 40px;
}

.flex-megamenu-shop .btn-common__shop {
	border: 1px solid #1E1E1E;
	width: 100%;
}

.js-megamenu__shop {
	position: relative;
}

.js-megamenu__shop:hover:before {
	content: "";
	width: 100%;
	position: absolute;
	left: 0;
	bottom: -37px;
	padding-bottom: 37px;
	z-index: 2;
}

.nav__megamenu {
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s;
}

.js-megamenu:hover .nav__megamenu,
.js-megamenu__shop:hover .nav__megamenu {
	opacity: 1;
	pointer-events: auto;
}

/*------------ NAVI ------------*/


/*------------ TOP ------------*/
.content-top-mv {
	position: relative;
	z-index: 2;
}

.content-top-mv .img-scroll {
	position: absolute;
	right: 143px;
	bottom: 34px;
	z-index: 10;
}

.content-top-mv .img-scroll span {
	position: relative;
	animation: scroll 2.5s ease-in-out infinite;
}

.mv-slide__item {
	padding-top: 50%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	display: block;
	cursor: pointer;
}

.mv-slide .swiper-pagination-bullet {
	width: 5px;
	height: 5px;
	display: inline-block;
	border-radius: 50%;
	background: #B7B7B7;
	opacity: 1;
}

.mv-slide .swiper-pagination-bullet-active {
	width: 6px;
	height: 6px;
}

.mv-slide .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.mv-slide .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 5px;
}

.mv-slide .swiper-horizontal>.swiper-pagination-bullets,
.mv-slide .swiper-pagination-bullets.swiper-pagination-horizontal,
.mv-slide .swiper-pagination-custom,
.mv-slide .swiper-pagination-fraction {
	bottom: 30px;
}

.top-pickup__body {
	width: 270px;
	overflow: visible;
}

@keyframes scroll {
	0% {
		top: 0px;
	}

	50% {
		top: 10px;
	}

	100% {
		top: 0px;
	}
}

.content-top-about {
	margin-top: 135px;
	position: relative;
}

.top-about__mv {
	width: 78.9vw;
	padding-top: 42.96%;
	background: url("../images/top/pic_about.jpg") no-repeat center center;
	background-size: cover;
}

.img-bg__circle {
	position: absolute;
	z-index: -1;
}

.img-bg__circle>span {
	display: block;
}

.img-bg__circle._circle1 {
	top: -98px;
	right: 11.56vw;
	animation: horizontal2 15s ease-in-out infinite alternate;
}

.img-bg__circle._circle1>span {
	animation: vertical1 8s ease-in-out .5s infinite alternate;
}

.img-bg__circle._circle1>span>img {
	animation: rotate1 50s linear .5s infinite;
}

.img-bg__circle._circle2 {
	bottom: -134px;
	left: -207px;
	animation: horizontal1 10s ease-in-out infinite alternate;
}

.img-bg__circle._circle2>span {
	animation: vertical1 6s ease-in-out infinite alternate;
}

.img-bg__circle._circle2>span>img {
	animation: rotate2 56s linear .5s infinite;
}

.img-bg__circle._circle3 {
	top: -262px;
	right: -130px;
	animation: horizontal1 8s ease-in-out 1s infinite alternate;
}

.img-bg__circle._circle3>span {
	animation: vertical2 5s ease-in-out .5s infinite alternate;
}

.img-bg__circle._circle3>span>img {
	animation: rotate1 58s linear .5s infinite;
}

.img-bg__circle._circle4 {
	top: 62px;
	left: -105px;
	animation: horizontal2 13s ease-in-out infinite alternate;
}

.img-bg__circle._circle4>span {
	animation: vertical1 8s ease-in-out .5s infinite alternate;
}

.img-bg__circle._circle4>span>img {
	animation: rotate2 50s linear .5s infinite;
}

@keyframes vertical1 {
	0% {
		transform: translateY(0)
	}

	100% {
		transform: translateY(-30px)
	}
}

@keyframes vertical2 {
	0% {
		transform: translateY(0)
	}

	100% {
		transform: translateY(30px)
	}
}

@keyframes horizontal1 {
	0% {
		transform: translateX(0)
	}

	100% {
		transform: translateX(-30px)
	}
}

@keyframes horizontal2 {
	0% {
		transform: translateX(0)
	}

	100% {
		transform: translateX(30px)
	}
}

@keyframes rotate1 {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes rotate2 {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(-360deg);
	}
}

.flex-top-about {
	margin-top: 100px;
	display: flex;
	justify-content: space-between;
}

.flex-top-about__li:nth-child(1) {}

.flex-top-about__li:nth-child(2) {
	margin-left: 40px;
}

.top-about__ttl {
	font-size: 22px;
}

.top-about__lead {
	font-size: 18px;
	font-weight: 500;
	margin-top: 14px;
	letter-spacing: .15em;
}

.top-about__body {
	font-size: 16px;
	line-height: 1.75;
	letter-spacing: .1em;
}

.top-about__body p+p {
	margin-top: 1.75em;
}

.top-about__btn {
	margin-top: 55px;
	display: flex;
	justify-content: center;
}

.btn-common {
	display: flex;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .05em;
	color: #FFF;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	height: 36px;
	border-radius: 18px;
	background-color: #1E1E1E;
	padding: 0 20px;
	border: 1px solid #1E1E1E;
	position: relative;
	top: 0;
	transition: all .3s;
	opacity: 1;
}

.btn-common:hover {
	opacity: .5;
	/*top:-3px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);*/
}

.btn-common>span {
	display: flex;
	align-items: center;
	position: relative;
	top: -1px;
}

.btn-common>span:after {
	content: "";
	margin-left: 20px;
	width: 6px;
	height: 11px;
	background: url("../images/common/icon_btn_arrow.svg") no-repeat center center;
	background-size: contain;
	position: relative;
	top: 1px;
	flex-shrink: 0;
	flex-grow: 0;
}

.btn-common.btn-common__white {
	background-color: transparent;
	color: #1E1E1E;
}

.btn-common.btn-common__white>span:after {
	background: url("../images/common/icon_btn_arrow_b.svg") no-repeat center center;
}

.btn-common.btn-common__white[target="_blank"]>span:after {
	width: 19px;
	height: 13px;
	background: url("../images/common/icon_blank.svg") no-repeat center center;
}

.content-top-ne {
	margin-top: 130px;
}

.content-top-ne>div {
	position: relative;
}

.top-ne__mv {
	position: absolute;
	left: 505px;
	top: -30px;
	background: url("../images/top/pic_ne.jpg") no-repeat center center;
	background-size: cover;
	width: 560px;
	max-width: 43.75vw;
	height: 610px;
}


@media (min-width:1120px) {

	header .sp__wide,
	footer .sp__wide {
		display: none !important;
	}

	.js-megamenu__shop:hover .nav__btn__shop {
		background-color: #FFF;
		color: #1E1E1E !important;
	}

	.nav__btn__shop:hover {
		text-decoration: none !important;
	}

	.js-megamenu__shop:hover .nav__btn__shop:before {
		background: url("../images/common/icon_cart_w.svg") no-repeat center center;
	}
}


@media (min-width:1120px) {

	header .sp__wide,
	footer .sp__wide {
		display: none !important;
	}

	.js-megamenu__shop:hover .nav__btn__shop {
		background-color: #FFF;
		color: #1E1E1E !important;
	}

	.nav__btn__shop:hover {
		text-decoration: none !important;
	}

	.js-megamenu__shop:hover .nav__btn__shop:before {
		background: url("../images/common/icon_cart_w.svg") no-repeat center center;
	}
}

/*------------ HEADER ipad ------------*/

@media (max-width:1120px) {
	.flex-header {
		height: 60px;
		padding: 0 10px 0 10px;
	}

	#wrapper {
		width: 100%;
		padding-top: 49px;
	}

	/*------------ HEADER ------------*/
	#btn_menu {
		display: block;
		position: fixed;
		top: 10px;
		right: 30px;
		width: 30px;
		height: 30px;
		transition: all .2s;
		cursor: pointer;
		z-index: 9999;
		opacity: 0.9;
	}

	#btn_menu span {
		display: block;
		position: absolute;
		left: 0;
		width: 30px;
		height: 2px;
		background-color: #333333;
		border-radius: 4px;
		transition: all .3s;
	}

	.toggle_scroll span {
		background-color: #333333;

	}

	#btn_menu span:nth-child(1) {
		top: 4px;
	}

	#btn_menu span:nth-child(2) {
		top: 14px;
	}

	#btn_menu span:nth-child(3) {
		bottom: 4px;
	}

	@media screen and (min-width: 700px) {
		.toggle_btn:hover span:nth-child(2) {
			width: 20px;
		}
	}

	#btn_menu.is-active span {
		background-color: #333333;
	}

	#btn_menu.is-active span:nth-child(1) {
		-webkit-transform: translateY(10px) rotate(-315deg);
		transform: translateY(10px) rotate(-315deg);
	}

	#btn_menu.is-active span:nth-child(2) {
		opacity: 0;
	}

	#btn_menu.is-active span:nth-child(3) {
		-webkit-transform: translateY(-10px) rotate(315deg);
		transform: translateY(-10px) rotate(315deg);
	}

	header {}

	.flex-header {
		justify-content: center;
		height: 50px;
		padding: 0;
	}

	.flex-header__li:nth-child(1) {}

	.flex-header__li:nth-child(1) img {
		width: 80px;
	}

	.flex-header__li:nth-child(2) {
		background-color: #fff;
		max-width: none;
		flex-grow: 1;
		margin-left: 0;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		padding-left: 50px;
		overflow: auto;
		width: 100%;
		transition: all .5s;
		z-index: 3;
		transform: translateX(100%);
		top: 50px;
	}

	body.w-sp .flex-header__li:nth-child(2) {}

	.flex-header__li:nth-child(1).is-active~.flex-header__li:nth-child(2) {
		transform: translateX(0%);
	}

	.list-nav {
		padding-top: 10vw;
		padding-bottom: 10vw;
		display: flex;
		align-items: stretch;
		justify-content: flex-start;
		flex-direction: column;
	}

	.list-nav a {
		color: inherit;
		text-decoration: none;
		display: block;
		position: relative;
	}

	.list-nav>li {
		border-bottom: 1px solid #1E1E1E;
	}

	.list-nav>li.nav__btn__shop__wrap,
	.list-nav>li.nav__search__wrap {
		border-bottom: none;
		padding-right: 50px;
	}

	.list-nav>li:nth-child(n+2) {
		margin-left: 0;
	}

	.list-nav>li:last-child {
		margin-left: 0;
		flex-shrink: 0;
	}

	.list-nav>li:last-child.is-active {
		margin-left: 0;
	}

	.list-nav>li:nth-child(1) .nav__head {
		border-top: 1px solid #1E1E1E;
	}

	.nav__head {
		font-size: 14px;
		font-weight: 400;
		letter-spacing: .1em;
		padding: 30px 20px;
		display: block;
	}

	.nav__search {
		border-color: #ddd;
		height: 80px;
		border-radius: 4vw;
		border: 1px solid transparent;
		padding: 0 3vw;
		justify-content: center;
		margin-right: 0;
	}

	.nav__search.is-active {
		padding-right: 5vw;
		background: #fff;
	}

	.nav__search .icon img {
		width: 30px;
	}

	.nav__search .ttl {
		font-size: 22px;
		font-weight: 500;
		letter-spacing: .15em;
		margin-left: 1vw;
		position: relative;
		top: -.05em;
	}

	.nav__search input[type="text"] {
		height: 6vw;
	}

	.nav__search.is-active input[type="text"] {
		width: 50vw;
		margin-right: 1vw;
		font-size: 16px;
	}

	.nav__search__close {
		right: 3.5vw;
		width: 2.66vw;
	}

	.nav__search__close img {
		width: 2.66vw;
	}

	.nav__search__wrap {
		padding-right: 3.6vw;
		margin-top: 12.53vw;
	}

	.nav__btn__shop__wrap {
		padding-right: 3.6vw;
		margin-top: 9.06vw;
	}

	.nav__btn__shop {
		height: 8vw;
		border-radius: 4vw;
		width: 100%;
		font-size: 16px;
		justify-content: flex-start;
		padding: 0 6.66vw;
		display: flex !important;
		transition: all .3s;
	}

	.nav__btn__shop.is-active {
		background-color: #fff;
		border-color: #ddd;
		color: #1E1E1E !important;
	}

	.nav__btn__shop.js-nav-accordion .icon-nav-arrow {
		top: 32px;
	}

	.nav__btn__shop.js-nav-accordion .icon-nav-arrow:before,
	.nav__btn__shop.js-nav-accordion .icon-nav-arrow:after {
		background-color: #FFF;
		transition: background-color .3s;
	}

	.nav__btn__shop.js-nav-accordion.is-active .icon-nav-arrow:before,
	.nav__btn__shop.js-nav-accordion.is-active .icon-nav-arrow:after {
		background-color: #1E1E1E;
	}

	.nav__btn__shop:before {
		width: 4.4vw;
		height: 4.26vw;
		margin-right: 2vw;
		position: relative;
		top: -1px;
	}

	.nav__btn__shop.is-active:before {
		background-image: url("../images/common/icon_cart_w.svg");
	}

	.nav__megamenu:before {
		display: none;
	}

	.js-megamenu:hover .nav__head:before,
	.js-megamenu:hover .nav__head:after {
		display: none;
	}

	.megamenu {
		position: static;
	}

	.flex-megamenu-product {
		display: flex;
		justify-content: flex-start;
		flex-direction: column;
		top: auto;
		left: auto;
		transform: translateX(0);
		width: 100%;
		max-width: none;
		padding: 0 0 5.33vw 5.73vw;
	}

	.flex-megamenu-product__li:nth-child(n+2) {
		margin-left: 0;
		margin-top: 30px;
	}

	.megamenu-product__head {
		font-size: 14px;
		font-weight: 400;
		letter-spacing: .1em;
		white-space: nowrap;
	}

	.list-megamenu-product {
		margin-top: 30px;
		font-size: 14px;
		font-weight: 400;
		letter-spacing: .1em;
		padding-left: 50px;
	}

	.list-megamenu-product>li:nth-child(n+2) {
		margin-top: 30px;
	}

	.flex-megamenu-app {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		flex-direction: column;
		top: auto;
		left: auto;
		transform: translateX(0);
		width: 100%;
		max-width: none;
		padding: 0 0 8vw 4.13vw;
	}

	.flex-megamenu-app__li {
		width: 100%;
	}

	.flex-megamenu-app__li:nth-child(n+2) {
		margin-top: 50px;
	}

	.flex-megamenu-app__li:nth-child(1) {
		width: 100%;
		padding-top: 0;
	}

	.flex-megamenu-app__li:nth-child(3n+5) {
		margin-left: 0;
	}

	.megamenu-app__item {
		display: flex !important;
		align-items: center;
	}

	.megamenu-app__item .icon {
		flex-shrink: 0;
		flex-grow: 0;
		width: 40px;
	}

	.megamenu-app__item .info {
		margin-left: 4.4vw;
		display: flex;
		flex-direction: column;
		font-size: 14px;
		font-weight: 400;
		letter-spacing: .1em;
		padding-right: 0;
	}

	.megamenu-app__item[target="_blank"] .ttl:after {
		width: 4.13vw;
	}

	.megamenu__list {
		position: static;
		top: auto;
		font-size: 14px;
		font-weight: 400;
		letter-spacing: .1em;
		padding-left: 5.73vw;
		padding-bottom: 4.8vw;
	}

	.megamenu__list a:hover {
		text-decoration: underline;
	}

	.megamenu__list li:nth-child(n+2) {
		margin-top: 30px;
	}

	.flex-megamenu-shop {
		display: flex;
		justify-content: flex-start;
		flex-direction: column;
		flex-wrap: wrap;
		top: auto;
		left: auto;
		transform: translateX(0);
		width: 100%;
		max-width: none;
		padding: 0;
	}

	.flex-megamenu-shop__li {
		flex-grow: 1;
		width: 100%;
	}

	.flex-megamenu-shop__li:nth-child(even) {
		margin-left: 0;
	}

	.flex-megamenu-shop__li:nth-child(n+1) {
		margin-top: 40px;
	}

	.flex-megamenu-shop .btn-common__shop {
		background-color: #fff;
		border-color: #ddd;
		width: 100%;
		display: flex;
		padding: 30px 20px;
		border-radius: 100px;
	}

	.js-megamenu__shop {
		position: relative;
	}

	.js-megamenu__shop:hover:before {
		display: none;
	}

	.nav__megamenu {
		opacity: 1;
		pointer-events: auto;
		transition: opacity .3s;
	}

	.js-megamenu:hover .nav__megamenu,
	.js-megamenu__shop:hover .nav__megamenu {
		opacity: 1;
		pointer-events: auto;
	}

	.icon-nav-arrow {
		position: absolute;
		right: 5.86vw;
		top: .3vw;
		width: 15px;
		height: 15px;
		background: url("../images/common/icon_btn_arrow_b.svg") no-repeat center center;
		background-size: 1.46vw auto;
	}

	.nav__head .icon-nav-arrow {
		top: 35px;
	}

	.js-nav-accordion .icon-nav-arrow {
		background: none;
		transform: rotate(0deg);
		transition: transform .3s;
	}

	.js-nav-accordion.is-active .icon-nav-arrow {
		transform: rotate(180deg);
	}

	.js-nav-accordion .icon-nav-arrow:before,
	.js-nav-accordion .icon-nav-arrow:after {
		content: "";
		background-color: #1E1E1E;
		position: absolute;
	}

	.js-nav-accordion .icon-nav-arrow:before {
		width: 100%;
		height: 1px;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}

	.js-nav-accordion .icon-nav-arrow:after {
		width: 1px;
		height: 100%;
		left: 50%;
		top: 0;
		transform: translateX(-50%);
		opacity: 1;
		transition: opacity .3s;
	}

	.js-nav-accordion.is-active .icon-nav-arrow:after {
		opacity: 0;
	}

	.js-nav-accordion__target {
		display: none;
	}

	/* #mask.is-active {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 150%;
    height: 150%;
    overflow: hidden;
    background: #f2f2f2;
    opacity: .3;
    z-index: 2;
    cursor: pointer;
    } */

	/*------------ FOOTER ------------*/

	.btn-pagetop {
		top: -20vw;
		right: 3.33vw;
	}

	.btn-pagetop img {
		width: 15px;
	}

	footer {
		padding: 9.33vw 0 10.66vw !important;
		margin-top: 71.73vw;
	}

	.flex-footer__li {
		width: 100%;
	}

	.logo-footer {
		display: flex;
		justify-content: center;
	}

	.logo-footer img {
		width: 18.13vw;
	}

	.img-footer-neby {
		display: none;
	}

	.flex-footer-sns {
		justify-content: center;
		margin-top: 10.93vw;
	}

	.flex-footer-sns img {
		height: 6.26vw;
		width: auto;
	}

	.flex-footer-sns__li:nth-child(n+2) {
		margin-left: 10.66vw;
	}

	.flex-footer {
		justify-content: flex-start;
		flex-direction: column;
	}

	.flex-footer__li:nth-child(1) {
		margin-right: 0;
		flex-shrink: 0;
		flex-grow: 0;
	}

	.flex-footer__li:nth-child(2) {
		flex-grow: 1;
		flex-shrink: 1;
		margin-top: 12.66vw;
	}

	.flex-footer-nav {
		justify-content: flex-start;
		flex-direction: column;
		font-weight: 400;
		border-bottom: 1px solid #FFF;
	}

	.flex-footer-nav__li:nth-child(n+2) {
		margin-left: 0;
	}

	.footer-nav__head {
		font-size: 4.26vw;
		padding: 4vw 0 4vw 3.33vw;
		position: relative;
		display: block;
	}

	.footer-nav__wrap {
		margin-top: 0;
	}

	.list-footer-nav__sub {
		font-size: 3.2vw;
		font-weight: 400;
		letter-spacing: .1em;
		padding: 0 0 5.33vw 9vw;
	}

	.list-footer-nav__sub a {
		display: block;
		position: relative;
	}

	.list-footer-nav__sub>li:nth-child(n+2) {
		margin-top: 5.33vw;
	}

	.list-footer-nav {
		/*border-top: 1px solid #FFF;*/
	}

	.list-footer-nav>li {
		border-top: 1px solid #FFF;
	}

	.list-footer-nav>li:nth-child(n+2) {
		margin-top: 0;
	}

	.list-footer-nav__app {
		margin-top: 0;
		padding: 0 0 5.33vw 9vw;
	}

	.list-footer-nav__app>li:nth-child(n+2) {
		margin-top: 5.33vw;
	}

	.flex-footer-nav-app {
		display: flex;
		font-size: 3.2vw;
		font-weight: 400;
		letter-spacing: .1em;
		align-items: center;
	}

	.flex-footer-nav-app__li:nth-child(1) {
		width: 6.66vw;
		margin-right: 4..4vw;
	}

	.flex-footer-nav-app__li:nth-child(2) {
		padding-top: 0;
	}

	.flex-footer-nav-app__li:nth-child(2)>ul>li:nth-child(n+2) {
		margin-top: 1em;
	}

	.flex-footer-nav-app__li:nth-child(2) a[target="_blank"]:after {
		width: 4.13vw;
		height: 2.8vw;
	}

	.flex-footer-policy {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		font-size: 4.26vw;
		font-weight: 400;
		letter-spacing: .1em;
		margin-top: 11.73vw;
	}

	.flex-footer-policy a {
		display: flex;
		justify-content: center;
		align-items: center;
		border: 1px solid #FFF;
		height: 15.33vw;
		width: 76vw;
		border-radius: 7.66vw;
	}

	.flex-footer-policy a:after {
		content: "";
		width: 1.46vw;
		height: 3.46vw;
		background: url("../images/common/icon_btn_arrow.svg") no-repeat center center;
		background-size: 1.46vw auto;
		margin-left: 3.33vw;
		position: relative;
		top: 1px;
	}

	.flex-footer-policy small {
		font-size: 3vw;
		white-space: nowrap;
	}

	.flex-footer-policy__li:nth-child(n+2) {
		margin-left: 0;
	}

	.flex-footer-policy__li:nth-child(2) {
		margin-top: 8.93vw
	}

	.flex-footer-policy__li:nth-child(3) {
		margin-top: 12.8vw
	}

	.btn-footer-shop {
		display: none
	}

	.btn-common__shop {
		width: 100%;
		height: 8.53vw;
		border-radius: 4.26vw;
		padding: 0 2.66vw;
		font-size: 3.06vw;
	}

	.btn-common__shop:hover {
		text-decoration: none;
	}

	.btn-common__shop .icon {
		margin-right: 1.73vw;
	}

	.btn-common__shop .icon img {
		width: 40px;
	}

	.btn-common__shop .ttl:after {
		width: 4.13vw;
		height: 2.8vw;
		margin-left: 3.2vw;
	}

	footer .icon-nav-arrow {
		background: url("../images/common/icon_btn_arrow.svg") no-repeat center center;
	}

	.footer-nav__head .icon-nav-arrow {
		top: 5.2vw;
	}

	footer .js-nav-accordion .icon-nav-arrow:before,
	footer .js-nav-accordion .icon-nav-arrow:after {
		background-color: #FFF;
	}

	footer .flex-megamenu-shop__li:nth-child(1) {
		margin-top: 0;
	}

	footer .flex-megamenu-shop {
		padding-bottom: 5.33vw;
	}

}



@media (max-width:890px) {
	.top-ne__mv {
		max-width: calc(100vw - 490px);
	}
}

.top-ne__txt {
	position: absolute;
	right: 65px;
	bottom: 160px;
}

.top-ne__inner {
	/*padding-right: 400px;*/
	padding-bottom: 123px;
	width: 450px;
}

.top-ne__body {
	margin-top: 67px;
	font-size: 16px;
	letter-spacing: .1em;
	line-height: 1.75;
}

.top-ne__btn {
	margin-top: 60px;
	display: flex;
	justify-content: flex-start;
}

.content-top-bgcolor {
	padding-top: 129px;
	padding-bottom: 158px;
}

.top-combi__inner {
	padding-top: 272px;
	/*padding-left: 630px;*/
	display: flex;
	justify-content: flex-end;
	position: relative;
	z-index: 2;
}

.top-combi__inner>div {
	width: 470px;
}

.top-combi__ttl {
	font-size: 22px;
}

.top-combi__lead {
	font-size: 18px;
	letter-spacing: .15em;
	margin-top: 14px;
}

.top-combi__body {
	font-size: 16px;
	letter-spacing: .1em;
	margin-top: 46px;
	line-height: 1.75;
}

.top-combi__mv {
	width: 761px;
	height: 518px;
	background: url("../images/top/img_combination.jpg") no-repeat center center;
	background-size: cover;
	position: absolute;
	top: 0;
	left: -90px;
	z-index: 1;
}

.content-top-combi>div {
	position: relative;
}

.content-top-pickup {
	margin-top: 115px;
}

.ttl-border__u {
	display: flex;
	flex-direction: column;
	font-size: 22px;
	margin-bottom: 29px;
}

.ttl-border__u:after {
	content: "";
	margin-top: 20px;
	height: 1px;
	width: 128px;
	background-color: #1E1E1E;
}

.bg-color__navy .ttl-border__u:after {
	background-color: #FFF;
}

.flex-top-pickup {
	display: flex;
	justify-content: space-between;
}

.flex-top-pickup__li:nth-child(2) {}

.flex-slide-arrow {
	display: flex;
}

.flex-slide-arrow__li:nth-child(2) {
	margin-left: 20px;
}

.icon-arrow-slide {
	background-color: #FFF;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: block;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 8px auto;
	cursor: pointer;
}

.icon-arrow-slide._prev {
	background-image: url("../images/common/icon_arrow_slide_l.svg");
}

.icon-arrow-slide._next {
	background-image: url("../images/common/icon_arrow_slide_r.svg");
}

.top-pickup__item-wrap {
	display: flex;
}

.top-pickup__item {
	width: 270px;
	position: relative;
	z-index: 1;
	padding: 40px 20px 33px;
	color: #1E1E1E;
	text-align: center;
	height: auto;
}

.top-pickup__item:before {
	content: "";
	background-color: #FFF;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: -1;
	border-radius: 30px;
	left: 0;
	top: 0;
}

.top-pickup__item.product_color {
	margin-bottom: 5px;
}

.top-pickup__item.product_color::before {
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	;
}

.content-Carousel {
	padding-bottom: 50px;
}

.product-Headline.font-mont {
	text-align: center;
	margin: 50px 0;
	font-size: 28px;
}

.top-pickup__ttl.product_mod {
	margin-bottom: 30px;
}

.flex-slide-arrow.arrow-product {
	justify-content: center;
	margin-top: 20px;
}

.white_back .icon-arrow-slide {
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}


@media screen and (max-width: 760px) {
	.product-Headline__text {
		font-size: 2.93vw !important;
	}

	.product-Headline.font-mont {
		margin: 0 0 6vw 0;
		font-size: 4.5vw;
	}


	.top-pickup__ttl.product_mod {
		margin-bottom: 5vw;
	}

	.content-Carousel {
		padding-bottom: 0px;
	}

	a.btn-common.btn-small.btn-common__white._hover {
		/* width: 44vw; */
		height: 9.33vw;
		min-width: 0;
		font-size: 3vw;
	}
}

.product-Headline__text {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .1em;
}

.item__ttl {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: .1em;
}

.item__product {
	font-size: 26px;
	font-weight: 700;
	letter-spacing: .02em;
	margin-top: 12px;
}

.item__img {
	margin: 40px -5px 0;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	height: 160px;
}

.item__body {
	margin-top: 44px;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: .1em;
	line-height: 1.73;
}

.item__body_mod {
	margin-top: 20px;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: .1em;
	line-height: 1.73;
	text-align: left;
}

.item__btn {
	margin-top: 35px;
	padding: 0 25px;
}

.content-top-apps {
	margin-top: 54px;
}

.flex-top-apps {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.flex-top-apps__li {
	width: calc((100% - (15px * 2)) / 3);
	background-color: #FFF;
	border-radius: 30px;
	padding: 29px 28px 23px;
	text-align: center;
	margin-left: 15px;
	display: flex;
	flex-direction: column;
	color: #1E1E1E;
}

.flex-top-apps__li:nth-child(3n+1) {
	margin-left: 0;
}

.flex-top-apps__li:nth-child(n+4) {
	margin-top: 15px;
}

.flex-top-apps__li .apps_ttl {
	margin-top: 25px;
}

.flex-top-apps__li .apps_body {
	font-size: 15px;
	letter-spacing: .1em;
	line-height: 1.73;
	margin-top: 30px;
}

.flex-top-apps__li .apps_img {
	font-size: 15px;
	letter-spacing: .1em;
	line-height: 1.73;
	margin-top: auto;
	padding-top: 10px;
	min-height: 144px;
	display: flex;
	align-items: center;
	justify-content: center
}

.flex-top-apps__li .apps_btn {
	margin-top: 20px;
}

.flex-top-apps__li .apps_btn .btn-common {
	padding: 0 5px;
}

.content-top-news {
	padding: 150px 0 150px;
}

.content-top-news>div {
	position: relative;
}

.flex-top-news {
	display: flex;
	flex-wrap: wrap;
}

.flex-top-news__li {
	width: calc((100% - (80px * 2)) / 3);
	margin-left: 80px;
}

.flex-top-news__li a {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.flex-top-news__li:nth-child(3n+1) {
	margin-left: 0;
}

.flex-top-news__li:nth-child(n+4) {
	margin-top: 40px;
}

.top-news__date {
	font-size: 12px;
	margin-bottom: 17px;
}

.flex-news-cat {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: -10px;
}

.flex-news-cat__li {
	margin-right: 10px;
	margin-bottom: 10px;
}

.icon-news {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 15px;
	font-size: 12px;
	letter-spacing: .05em;
	color: #FFF;
	background-color: #1E1E1E;
	border-radius: 10px;
	height: 20px;
	line-height: 1;
}

.top-news__ttl {
	font-size: 16px;
	letter-spacing: .1em;
	line-height: 1.75;
	margin-top: auto;
	padding-top: 17px;
}

.flex-top-news__li a {
	text-decoration: none;
	color: inherit;
}

.top-news__ttl a:hover {
	/*text-decoration: underline;*/
}

.top-news__btn {
	display: flex;
	justify-content: center;
	margin-top: 70px;
}



.content-top-live {
	padding: 85px 0 167px;
	margin-bottom: -270px;
}

.top-live__head {
	text-align: center;
}

.top-live__lead {
	font-size: 20px;
	font-weight: 500;
	letter-spacing: .15em;
	margin-top: 60px;
}

.top-live__head .ttl-border__u {
	margin-top: 57px;
	align-items: center;
	margin-bottom: 47px;
}

.top-live__head {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.top-live__body {
	position: relative;
	z-index: 1;
}

.top-live__btn {
	display: flex;
	justify-content: center;
	margin-top: 48px;
}


/*-----LIVE-----*/
.top-live__body ul {
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto;
}

.top-live__body ul>li {
	width: 350px;
	margin-right: 10px;
	margin-bottom: 40px;
	background-color: #FFF;
	border-radius: 12px;
	overflow: hidden;
}

.top-live__body ul>li:nth-child(3n) {
	margin-right: 0;
}

.top-live__body ul>li>a {
	display: block;
	text-decoration: none;
	background: #c2c2c2;
	border-radius: 0;
	position: relative;
	height: 100%;
	/*border:solid 1px #b8b3be;*/
}

.top-live__body ul>li>a>.image_area {
	display: block;
	position: relative;
	height: 175px;
	background: #000;
	border-radius: 12px 12px 0 0;
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-position: center center;
}

.top-live__body ul>li>a .icon_area {
	position: absolute;
	left: 0;
	top: 175px;
	display: flex;
	width: 100%;
}

.top-live__body ul>li>a .icon_area .icon01 {
	display: flex;
	background: #4f2580;
	width: 182px;
	align-items: flex-start;
}

.top-live__body ul>li>a .icon_area .icon01 span,
.top-live__body ul>li>a .icon_area .icon02 span {
	font-size: 11px;
	color: #F2F2F2;
	display: block;
	padding: 18px 0 0 0;
	/*border-left:solid 1px #b8b3be;*/
	width: 100%;
	text-align: center;
	height: 100%;
	box-sizing: border-box;
}

.top-live__body ul>li>a .icon_area img {
	height: 52px;
}

.top-live__body ul>li>a .icon_area .icon02 {
	display: flex;
	background: #2a64c4;
	width: 168px;
	align-items: flex-start;
}

.top-live__body ul>li>a>.detail_area {
	display: flex;
	padding: 64px 10px 10px 12px;
	letter-spacing: 0.05em;
	position: relative;
	justify-content: space-between;
	text-align: center;
}

.top-live__body ul>li>a>.detail_area>.image {
	width: 136px;
	text-align: center;
}

.top-live__body ul>li>a>.detail_area>.image img {
	height: 80px;
	width: auto;
	object-fit: contain;
	object-position: center top;
}

.top-live__body ul>li>a>.detail_area>.txt {
	margin-left: 0px;
	font-weight: 500;
	color: #333;
	width: 214px;
	text-align: left;
}

.top-live__body ul>li>a>.detail_area>.txt>span {
	display: block;
}

.top-live__body ul>li>a>.detail_area>.txt>span.sp {
	display: none;
}

.top-live__body ul>li>a>.detail_area>.txt>span.date {
	font-size: 13px;
	margin-bottom: 8px;
	line-height: 1.2;
}

.top-live__body ul>li>a>.detail_area>.txt>span.ttl {
	font-size: 15px;
	line-height: 1.2;
	margin-bottom: 10px;
}

.top-live__body ul>li>a>.detail_area>.txt>span.sub_ttl {
	font-size: 12px;
	line-height: 1.33;
	margin-bottom: 8px;
}

.top-live__body ul>li>a>.detail_area>.txt>span.tag {
	font-size: 11px;
	color: #323232;
	line-height: 1.455;
}

@media screen and (max-width: 1140px) {
	.top-live__body ul {
		width: 750px;
		justify-content: space-between;
	}

	.top-live__body ul>li {
		margin-right: 0px;
	}

	.top-live__body ul>li:nth-child(3n) {
		margin-right: 0;
	}
}

@media screen and (max-width: 768px) {
	.content-top-live .content-inner-1070 {
		padding: 0;
	}

	.top-live__body ul {
		max-width: 94.6vw;
		margin: 2.6vw auto 0;
		padding: 0;
		display: flex;
		justify-content: space-between;
	}

	.top-live__body ul>li {
		padding-top: 4vw;
		width: 46.6vw;
		margin-right: 0px;
		padding-bottom: 0;
		background-color: transparent;
	}

	.top-live__body ul>li:nth-child(3n) {
		margin-right: 0;
	}

	.top-live__body ul>li>a {
		border-radius: 1.56vw;
		height: 100%;
		opacity: 1 !important;
	}

	.top-live__body ul>li>a>.image_area {
		display: block;
		height: 28vw;
		border-radius: 1.56vw 1.56vw 0 0;
		position: relative;
	}

	.top-live__body ul>li>a .icon_area {
		position: absolute;
		left: 0;
		top: 28vw;
		display: block;
	}

	.top-live__body ul>li>a .icon_area .icon01 {
		width: 100%;
	}

	.top-live__body ul>li>a .icon_area img {
		width: 46.85%;
		height: auto;
		/*border-right:solid 0.26vw #b8b3be;*/
	}

	.top-live__body ul>li>a .icon_area .icon01 span,
	.top-live__body ul>li>a .icon_area .icon02 span {
		font-size: 2.8vw;
		padding: 2.7vw 0 0 0;
		border: none;
	}

	.top-live__body ul>li>a .icon_area .icon02 {
		width: 100%;
	}

	.top-live__body ul>li>a>.detail_area {
		display: flex;
		padding: 32vw 2.6vw 2.6vw;
	}

	.top-live__body ul>li>a>.detail_area .image {
		width: 100%;
	}

	.top-live__body ul>li>a>.detail_area .image img {
		height: 14.93vw;
		width: auto;
	}

	.top-live__body ul>li>a>.detail_area>.txt {
		width: 100%;
		margin-left: 0px;
	}

	.top-live__body ul>li>a>.detail_area>.txt>span.sp {
		display: block;
	}

	.top-live__body ul>li>a>.detail_area>.txt>span.date {
		font-size: 2.93vw;
		margin-bottom: 3vw;
	}

	.top-live__body ul>li>a>.detail_area>.txt>span.ttl {
		font-size: 3.2vw;
		margin-bottom: 1.3vw;
	}

	.top-live__body ul>li>a>.detail_area>.txt>span.image {
		width: 20vw;
		margin-bottom: 2.6vw;
	}

	.top-live__body ul>li>a>.detail_area>.txt>span.sub_ttl {
		font-size: 2.93vw;
		margin-bottom: 1.3vw;
	}

	.top-live__body ul>li>a>.detail_area>.txt>span.tag {
		font-size: 2.6vw;
	}
}

/*------------ VISION ------------*/
.content-sub-mv {
	position: relative;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 250px;
}

.content-sub-mv._vision {
	background-image: url("../images/vision/img_mv.png");
}

.content-sub-mv._company {
	background-image: url("../images/company/img_mv.png");
}

.content-sub-mv._business {
	background-image: url("../images/business/img_mv.png");
}

.content-sub-mv._history {
	background-image: url("../images/history/img_mv.png");
}

.content-sub-mv._recruit {
	background-image: url("../images/recruit/img_mv.png");
}

.content-sub-mv._news {
	background-image: url("../images/news/img_mv.png");
}

.content-sub-mv._product {
	background-image: url("../images/products/img_mv.png");
}

.content-sub-mv._app {
	background-image: url("../images/app/img_mv_r.png");
	background-color: #191919;
	background-size: auto 100%;
}

.content-sub-mv._about {
	background-image: url("../images/about/img_mv.png");
}

.content-sub-mv._search {
	background-color: #E3ECF2;
}

.content-sub-mv._bluegray {
	background-color: #E3ECF2;
}

._search .search_name {
	font-size: 14px;
}



.content-sub-mv__inner {
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 30px;
	font-weight: 500;
	letter-spacing: .05em;
}

.content-sub-mv__inner h2 {
	font-size: 20px;
	text-align: center;
	margin: 30px;
}


.text-color__white * {
	color: #FFF !important;
}

.ne_icon {
	width: 120px;
	height: 15px;
	display: inline-block;
	mask-position: center center;
	-webkit-mask-position: center center;
	mask-size: contain;
	-webkit-mask-size: contain;
	mask-repeat: no-repeat;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-image: url("/assets/images/common/img_neby.svg");
	mask-image: url("/assets/images/common/img_neby.svg");
}

.breadcrumbs__wrap {
	position: absolute;
	top: 25px;
	left: 39px;
	z-index: 10;
}

.breadcrumbs__wrap.active_window {
	position: absolute;
	top: 10px;
	left: 14px;
	z-index: 10;
	backdrop-filter: blur(5px);
	padding: 15px;
	border-radius: 2px;
}


.breadcrumbs {
	color: #1E1E1E;
	font-size: 10px;
	display: flex;
	margin-top: 10px;
}

.breadcrumbs a {
	color: inherit;
}

.breadcrumbs>li:nth-child(n+2):before {
	content: ">";
	margin: 0 .25em;
}

.content-sub-vision {
	padding-top: 30px;
}

.flex-vision {
	display: flex;
}

.flex-vision__li {
	width: calc((100vw - 10px) / 2);
	height: calc((100vw - 10px) / 2);
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #FFF;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.flex-vision__li:nth-child(1) {
	background-image: url("../images/vision/bg_vision01.png");
}

.flex-vision__li:nth-child(2) {
	background-image: url("../images/vision/bg_vision02.png");
	margin-left: 10px;
}

.flex-vision__txt1 {
	font-size: .93vw;
	letter-spacing: .05em;
}

.flex-vision__txt2 {
	font-size: 1.17vw;
	font-weight: 500;
	letter-spacing: .15em;
}

.flex-vision__txt3 {
	font-size: 2.03vw;
	margin-top: 2.18vw;
	letter-spacing: .05em;
}

.flex-vision__txt4 {
	font-size: 1.32vw;
	font-weight: 500;
	letter-spacing: .15em;
	margin-top: 1em;
}

.content-sub-development {
	padding-top: 80px;
}

.content-inner-710 {
	width: 710px;
	margin: 0 auto;
}

.ttl-section__wrap {
	margin-bottom: 40px;
	text-align: center;
}

.ttl-section__en {
	font-size: 13px;
	letter-spacing: .05em;
}

.ttl-section {
	font-size: 16px;
	letter-spacing: .15em;
	font-weight: 500;
}

.table-company {
	width: 100%;
	border-top: 1px solid #ABABAD;
}

.table-company th,
.table-company td {
	border-bottom: 1px solid #ABABAD;
	padding-top: 30px;
	padding-bottom: 30px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: .1em;
	vertical-align: top;
}

.table-company th {
	padding-left: 30px;
	width: 145px;
	padding-right: 1em;
}

/*------------ COMPANY ------------*/
.content-sub-company {
	padding-top: 135px;
}

.text-alignR {
	text-align: right;
}

.link-map {
	display: inline-flex;
	align-items: center;
	color: #1E1E1E;
	border: 1px solid #1E1E1E;
	font-size: 11px;
	padding: 3px 6px;
	margin-left: 10px;
}

.link-map:hover {
	text-decoration: none;
}

.link-map span {
	position: relative;
	top: -.2em;
}

.link-map i {
	margin-left: 3px;
}

.link-map img {
	display: block;
}

/*------------ BUSINESS ------------*/
.content-sub-mv__inner .font-jp {
	font-size: 27px;
	font-weight: 700;
}

.content-sub-business__lead {
	padding: 98px 0 112px;
	text-align: center;
	line-height: 1.75;
}

.content-sub-business__lead__ttl {
	font-size: 18px;
	font-weight: 500;
	letter-spacing: .15em;
	margin-bottom: 35px;
}

.content-sub-business__lead__body {
	font-size: 16px;
	letter-spacing: .1em;
}

.content-sub-business {
	padding: 60px 0 52px;
}

.flex-business {
	display: flex;
	justify-content: space-between;
}

.flex-business__li {
	width: calc((100% - 57px) / 2);
	display: flex;
	flex-direction: column;
}

.flex-business__ttl {
	text-align: center;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: .15em;
	margin-bottom: 40px;
}

.flex-business__body {
	font-size: 16px;
	letter-spacing: .1em;
	line-height: 1.75;
}

.flex-business__body p+p {
	margin-top: 1.75em;
}

.flex-business__img {
	margin-top: auto;
	padding-top: 50px;
}

.content-sub-business__contact {
	text-align: center;
	padding-top: 90px;
}

.content-sub-business__contact__lead {
	font-size: 18px;
	font-weight: 500;
	letter-spacing: .15em;
	line-height: 1.75;
}

.content-sub-business__contact__btn {
	display: flex;
	justify-content: center;
	margin-top: 72px;
}

.btn__border {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #1E1E1E;
	text-decoration: none !important;
	border: 1px solid #231815;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: .15em;
	padding: 1.1em;
	line-height: 1;
}

/*------------ HISTORY ------------*/
.content-sub-hitory {
	padding-top: 135px;
}

.list-history__wrap {
	position: relative;
	margin-top: 6vw;
}

.list-history__block {
	width: 48.04vw;
	position: absolute;
	padding-top: 1.56vw;
	font-size: 1.01vw;
	font-weight: 500;
	letter-spacing: .1em;
}

.list-history__block._left {
	left: 0;
	padding-right: 2.34vw;
	padding-left: 5.46vw;
}

.list-history__block._right {
	right: 0;
	padding-left: 2.34vw;
	padding-right: 4.2vw;
}

.list-history__year {
	font-size: 2.03vw;
	letter-spacing: .02em;
	margin-bottom: 2.18vw;
}

.list-history__year {
	position: relative;
}

.list-history__year:before {
	content: "";
	width: 3.12vw;
	height: 2px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: #A4A4A6;
}

.list-history__block._left .list-history__year:before {
	right: -4.3vw;
}

.list-history__block._right .list-history__year:before {
	left: -4.3vw;
}

.list-history__block._left .list-history__year {
	text-align: right;
}

.list-history__block._right .list-history__year {
	text-align: left;
}

.list-history__wrap:before {
	content: "";
	height: 345.4vw;
	width: 2px;
	background-color: #A4A4A6;
	margin: 0 auto;
	display: block;
}

.list-history__wrap:after {
	content: "";
	height: .78vw;
	width: 1.25vw;
	position: absolute;
	bottom: -1px;
	left: 50%;
	transform: translateX(-50%);
	background: url("../images/history/icon_arrow.svg") no-repeat center center;
	background-size: contain;
}

.list-history__block._1992 {
	top: 2.5vw;
	height: 20.7vw;
}

.list-history__block._1996 {
	top: 5.31vw;
	height: 30.46vw;
}

.list-history__block._1997 {
	top: 23.98vw;
	height: 19.29vw;
}

.list-history__block._1998 {
	top: 36.5vw;
	height: 16.79vw;
}

.list-history__block._2000 {
	top: 62.34vw;
	height: 22.26vw;
}

.list-history__block._2002 {
	top: 65.15vw;
	height: 16.79vw;
}

.list-history__block._2003 {
	top: 82.7vw;
	height: 10.54vw;
}

.list-history__block._2004 {
	top: 85.39vw;
	height: 17.96vw;
}

.list-history__block._2005 {
	top: 93.98vw;
	height: 16.4vw;
}

.list-history__block._2006 {
	top: 104.14vw;
	height: 27.73vw;
}

.list-history__block._2007 {
	top: 111.17vw;
	height: 17.96vw;
}

.list-history__block._2008 {
	top: 129.92vw;
	height: 17.96vw;
}

.list-history__block._2009 {
	top: 132.65vw;
	height: 15.15vw;
}

.list-history__block._2010 {
	top: 157.34vw;
	height: 16.79vw;
}

.list-history__block._2011 {
	top: 160vw;
	height: 19.53vw;
}

.list-history__block._2012 {
	top: 174.92vw;
	height: 20.15vw;
}

.list-history__block._2013 {
	top: 180.31vw;
	height: 49.21vw;
}

.list-history__block._2014 {
	top: 195.85vw;
	height: 39.84vw;
}

.list-history__block._2015 {
	top: 230.31vw;
	height: 51.32vw;
}

.list-history__block._2016 {
	top: 236.48vw;
	height: 15.39vw;
}

.list-history__block._2017 {
	top: 252.65vw;
	height: 15.39vw;
}

.list-history__block._2018 {
	top: 268.82vw;
	height: 24.45vw;
}

.list-history__block._2019 {
	top: 282.42vw;
	height: 27.03vw;
}

.list-history__block._2020 {
	top: 294.06vw;
	height: 24.45vw;
}

.list-history__block._2021 {
	top: 310.23vw;
	height: 27.03vw;
}

.list-history__block img._1992-1 {
	width: 10.15vw;
}

.list-history__block img._1996-1 {
	width: 16.71vw;
}

.list-history__block img._1996-2 {
	width: 16.01vw;
}

.list-history__block img._1997-1 {
	width: 19.37vw;
}

.list-history__block img._1998-1 {
	width: 9.6vw;
}

.list-history__block img._2000-1 {
	width: 12.5vw;
}

.list-history__block img._2002-1 {
	width: 11.64vw;
}

.list-history__block img._2004-1 {
	width: 12.81vw;
}

.list-history__block img._2006-1 {
	width: 16.01vw;
}

.list-history__block img._2006-2 {
	width: 16.01vw;
}

.list-history__block img._2007-1 {
	width: 10.54vw;
}

.list-history__block img._2008-1 {
	width: 10.7vw;
}

.list-history__block img._2009-1 {
	width: 9.84vw;
}

.list-history__block img._2010-1 {
	width: 11.64vw;
}

.list-history__block img._2011-1 {
	width: 11.48vw;
}

.list-history__block img._2012-1 {
	width: 35.15vw;
}

.list-history__block img._2013-1 {
	width: 39.14vw;
}

.list-history__block img._2013-2 {
	width: 9.68vw;
}

.list-history__block img._2013-3 {
	width: 9.76vw;
}

.list-history__block img._2014-1 {
	width: 10.93vw;
}

.list-history__block img._2014-2 {
	width: 10.93vw;
}

.list-history__block img._2014-3 {
	width: 10.93vw;
}

.list-history__block img._2015-1 {
	width: 10.93vw;
}

.list-history__block img._2015-2 {
	width: 10.93vw;
}

.list-history__block img._2015-3 {
	width: 10.93vw;
}

.list-history__block img._2015-4 {
	width: 9.84vw;
}

.list-history__block img._2016-1 {
	width: 9.53vw;
}

.list-history__block img._2017-1 {
	width: 13.9vw;
}

.list-history__block img._2018-1 {
	width: 8.2vw;
}

.list-history__block img._2019-1 {
	width: 8.04vw;
}

.list-history__block img._2019-2 {
	width: 8.04vw;
}

.list-history__block img._2020-1 {
	width: 8.12vw;
}

.list-history__block img._2020-2 {
	width: 8.12vw;
}

.list-history__block img._2021-1 {
	width: 10vw;
}

.list-history__block img._2021-2 {
	width: 8.98vw;
}

.flex-history {
	display: flex;
	align-items: center;
}

.flex-history+.flex-history {
	margin-top: .93vw;
}

.list-history__block._space .flex-history+.flex-history {
	margin-top: 4vw;
}

.flex-history__li:nth-child(1) {
	width: 14.06vw;
	flex-shrink: 0;
	flex-grow: 0;
	text-align: center;
}

.flex-history__li:nth-child(2) {
	flex-shrink: 1;
	flex-grow: 1;
	margin-left: 2.34vw;
}

.list-history__block._right .flex-history__li:nth-child(1) {
	width: 12.06vw;
}

.flex-history._wide .flex-history__li:nth-child(1) {
	width: 16.4vw;
}

.flex-history._column {
	flex-direction: column;
}

.flex-history._column .flex-history__li {
	width: 100% !important;
}

.flex-history._column .flex-history__li:nth-child(1) {
	text-align: left;
}

.flex-history._column .flex-history__li:nth-child(2) {
	margin-left: 0;
	margin-top: 1.56vw;
	padding-left: 1em;
}

.flex-history._up {
	margin-top: -1.56vw;
}

.flex-history._up2 {
	margin-top: -3vw;
}

.list-history__period {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	font-size: 26px;
	letter-spacing: .02em;
	background-color: #FFF;
}

.list-history__period>span {
	opacity: .3;
}

.list-history__period._1990 {
	top: -3.59vw;
}

.list-history__period._2000 {
	top: 56.48vw;
}

.list-history__period._2010 {
	top: 151.48vw;
}

.list-history__lead {
	padding-left: 1em;
}

.list-history__lead+.list-history__lead {
	margin-top: 1em;
}

.list-history__lead+.flex-history {
	margin-top: 1.95vw;
}

.list-history__year+.list-history__lead {
	margin-top: -.78vw;
}

.flex-history__space {
	margin-top: 6.64vw;
}

/*------------ NEWS ------------*/
.content-sub a {
	color: #1E1E1E;
}

.flex-tab {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin-bottom: 58px;
	width: 750px;
	margin: 0 auto;
}

.flex-tab__li {
	width: 150px;
}

.flex-tab__li:nth-child(n+6) {
	margin-top: 46px;
}

.flex-tab__li>a {
	font-size: 15px;
	text-decoration: none;
	color: inherit;
	display: block;
	width: 100%;
	text-align: center;
	padding: 0 0 1em;
	line-height: 1;
	border-bottom: 2px solid #C3C3C5;
	transition: border .3s;
}

.flex-tab__li>a:hover {
	opacity: 1;
}

.flex-tab__li>a.is-active {
	pointer-events: none;
}

.flex-tab__li>a.is-active,
.flex-tab__li>a:hover {
	border-bottom-color: #4F2580;
}

.pagenavi-wrap {
	margin-top: 74px;
}

.pagenavi-wrap .wp-pagenavi {
	clear: both;
}

.pagenavi-wrap .wp-pagenavi a,
.pagenavi-wrap .wp-pagenavi span {
	text-decoration: none;
	border: none;
	padding: 0;
	margin: 0;
}

.pagenavi-wrap .wp-pagenavi a:hover,
.pagenavi-wrap .wp-pagenavi span.current {
	border-color: transparent;
}

.pagenavi-wrap .wp-pagenavi span.current {
	font-weight: 500;
}

.pagenavi-wrap .wp-pagenavi {
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Montserrat', sans-serif !important;
	font-weight: 500 !important;
}

.pagenavi-wrap .wp-pagenavi .current,
.pagenavi-wrap .wp-pagenavi .page,
.pagenavi-wrap .wp-pagenavi .extend,
.pagenavi-wrap .wp-pagenavi .nextpostslink,
.pagenavi-wrap .wp-pagenavi .previouspostslink,
.pagenavi-wrap .wp-pagenavi .first,
.pagenavi-wrap .wp-pagenavi .last {
	width: 32px;
	height: 32px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	color: #333;
	background-color: transparent;
	transition: all .3s;
	text-decoration: none;
}

.pagenavi-wrap .wp-pagenavi .current,
.pagenavi-wrap .wp-pagenavi .page {
	margin: 0 3px;
}

.pagenavi-wrap .wp-pagenavi .nextpostslink {
	font-size: 0;
	background: url("../images/common/icon_next.svg") no-repeat center center;
	margin-left: 39px;
}

.pagenavi-wrap .wp-pagenavi .previouspostslink {
	font-size: 0;
	background: url("../images/common/icon_prev.svg") no-repeat center center;
	margin-right: 39px;
}

.pagenavi-wrap .wp-pagenavi .first {
	font-size: 0;
	background: url("../images/common/icon_first.svg") no-repeat center center;
}

.pagenavi-wrap .wp-pagenavi .last {
	font-size: 0;
	background: url("../images/common/icon_last.svg") no-repeat center center;
}

.pagenavi-wrap .wp-pagenavi .current,
.pagenavi-wrap .wp-pagenavi .page,
.pagenavi-wrap .wp-pagenavi .nextpostslink,
.pagenavi-wrap .wp-pagenavi .previouspostslink,
.pagenavi-wrap .wp-pagenavi .extend {}

.pagenavi-wrap .wp-pagenavi .current,
.pagenavi-wrap .wp-pagenavi .page:hover {
	background: #ADADAF;
	color: #FFF;
}

.pagenavi-wrap .wp-pagenavi .extend {
	border: none;
	background: transparent;
}

.list-news {
	margin-top: 96px;
	border-top: 1px solid #ADADAF;
}

.list-news>li {
	border-bottom: 1px solid #ADADAF;
}

.flex-news-sub {
	display: flex;
	padding: 20px 0 35px;
}

.flex-news-sub__li:nth-child(1) {
	font-size: 15px;
	letter-spacing: .05em;
	white-space: nowrap;
	margin-right: 20px;
	flex-shrink: 0;
	flex-grow: 0;
}

.flex-news-sub__li:nth-child(2) {
	flex-shrink: 1;
	flex-grow: 1;
}

.sub-news__ttl {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: .05em;
	margin-top: 20px;
	line-height: 1.7;
}

.sub-news__body {
	font-size: 15px;
	letter-spacing: .05em;
	margin-top: 15px;
	line-height: 1.7;
}

/*------------ PRODUCT ------------*/
.bg-color__black {
	background-color: #000000;
	color: #FFF;
}

.bg-color__gray {
	background-color: #D7D7D7;
}

.content-sub-product {
	padding-top: 15px;
	padding-bottom: 0;
}

.product-block__wide {
	padding: 12.73vw 14.84vw 13.28vw 12.5vw;
}

.flex-product-sub {
	display: flex;
	align-items: center;
}

.flex-product-sub__li:nth-child(1) {
	margin-right: 9vw;
}

.flex-product-sub__li:nth-child(2) img {
	width: 34.68vw;
	max-width: none;
}

.product-block__name1 {
	font-size: 1.95vw;
	letter-spacing: .05em;
}

.product-block__name2 {
	font-size: .93vw;
	font-weight: 500;
	letter-spacing: .1em;
	margin-top: 1vw;
}

.product-block__body {
	font-size: 1.09vw;
	font-weight: 500;
	letter-spacing: .1em;
}

.product-block__wide .product-block__body {
	margin-top: 3.35vw;
	font-size: 14px;
}

.product-block__wide .product-block__btn {
	margin-top: 3.67vw;
}

.product-block__btn .btn-common {
	width: 17.18vw;
}

.flex-product-index__li:nth-child(3) .product-block__btn .btn-common,
.flex-product-index__li:nth-child(4) .product-block__btn .btn-common {
	width: 23.43vw;
}

.flex-product-index {
	display: flex;
	flex-wrap: wrap;
}

.flex-product-index__li {
	width: calc((100% - 10px) / 2);
	margin-top: 10px;
	padding: 2vw 10vw 1vw;
	height: 46.87vw;
}

.flex-product-index__li:nth-child(even) {
	margin-left: 10px;
}

.flex-product-index .product-block__pic {
	margin-top: 2.34vw;
	height: 25vw;
	width: 100%;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
}

.flex-product-index__li:nth-child(1) .product-block__pic {
	background-size: 21.75vw auto;
}

.flex-product-index__li:nth-child(3) .product-block__pic {
	background-size: 8vw auto;
}

.flex-product-index__li:nth-child(4) .product-block__pic {
	background-size: 23.32vw auto;
}

.flex-product-index .product-block__body {
	margin-top: 1.4vw;
}

.flex-product-index .product-block__btn {
	margin-top: 1.32vw;
	display: flex;
	justify-content: center;
}

.bg-color__black .btn-common.btn-common__white {
	border-color: #FFF;
	color: #FFF;
}

.bg-color__black .btn-common.btn-common__white>span:after {
	background: url(../images/common/icon_btn_arrow.svg) no-repeat center center;
}

.content-sub-product .btn-common {
	font-size: 1.09vw;
	height: 2.72vw;
	border-radius: 1.36vw;
	padding: 0 1em;
}

/*------------ APP ------------*/
.content-sub-app {
	padding-bottom: 50px;
	margin-bottom: 0;
}

.flex-app-sub {
	padding: 80px 0 50px;
	display: flex;
	align-items: center;
}

.flex-app-sub+.flex-app-sub {
	border-top: 1px solid #C6C6C6;
}

.flex-app-sub:nth-of-type(even) {
	flex-direction: row-reverse;
}

.flex-app-sub__li:nth-child(1) {
	width: 482px;
	flex-shrink: 0;
	flex-grow: 0;
	margin-right: 50px;
}

.flex-app-sub:nth-of-type(even) .flex-app-sub__li:nth-child(1) {
	margin-right: 0;
	margin-left: 50px;
}

.flex-app-sub__li:nth-child(2) {
	flex-shrink: 1;
	flex-grow: 1;
}

.flex-app-sub-ttl {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.flex-app-sub-ttl__li:nth-child(2) {
	font-size: 20px;
	margin-left: 28px;
}

.app-sub__body {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: .1em;
	line-height: 1.75;
}

.flex-app-sub-btn {
	display: flex;
	align-items: center;
	margin-top: 35px;
}

.flex-app-sub-btn__li:nth-child(n+2) {
	margin-left: 7px;
}

.app-sub__btn {
	margin-top: 29px;
}

.app-sub__btn .btn-common {
	width: 200px;
}

.app-sub__btn .btn-common[target="_blank"] {
	width: 160px;
}

.app-sub__btn .btn-common>span:after {
	margin-left: 1em;
}

/*------------ ABOUT ------------*/
.logo__mv {
	margin-top: 25px;
}

.content-sub-about {
	padding: 15px 0 0;
}

.content-sub-about__mv {
	width: 100%;
	padding-top: 48.43%;
	background: url("../images/about/img_about00.jpg") no-repeat center center;
	background-size: cover;
}

.content-sub-about__lead {
	text-align: center;
	padding: 90px 0 80px;
}

.content-sub-about__ttl {
	margin-bottom: 40px;
}

.content-sub-about__ttl__jp {
	font-size: 18px;
	font-weight: 500;
	letter-spacing: .15em;
}

.content-sub-about__ttl__en {
	font-size: 16px;
	margin-top: 10px;
}

.content-sub-about__body {
	font-size: 16px;
	letter-spacing: .1em;
	line-height: 1.75;
}

.content-sub-about__body p+p {
	margin-top: 1.75em;
}

.content-sub-about__block {
	position: relative;
}

.content-sub-about__block+.content-sub-about__block {
	margin-top: 120px;
}

.content-sub-about__eyecatch {
	display: flex;
	justify-content: flex-start;
}

.content-sub-about__block:nth-of-type(even) .content-sub-about__eyecatch {
	justify-content: flex-end;
}

.content-sub-about__eyecatch>div {
	width: 77.34vw;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.content-sub-about__eyecatch>div:before {
	content: "";
	padding-top: 33.13%;
	display: block;
}

.content-sub-about__eyecatch._pic1>div {
	background-image: url("../images/about/img_about01.jpg");
}

.content-sub-about__eyecatch._pic2>div {
	background-image: url("../images/about/img_about02.jpg");
}

.content-sub-about__eyecatch._pic3>div {
	background-image: url("../images/about/img_about03.jpg");
}

.content-sub-about__eyecatch._pic4>div {
	background-image: url("../images/about/img_about04.png");
}

.content-sub-about__eyecatch._pic5>div {
	background-image: url("../images/about/img_about05.png");
}

.content-sub-about__eyecatch._pic6>div {
	background-image: url("../images/about/img_about06.png");
}

.flex-sub-about {
	display: flex;
	margin-top: 60px;
}

.content-sub-about__block:nth-of-type(even) .flex-sub-about {
	flex-direction: row-reverse;
}

.flex-sub-about__li:nth-child(1) {
	flex-grow: 1;
	flex-shrink: 0;
}

.flex-sub-about__li:nth-child(2) {
	width: 480px;
	flex-shrink: 1;
}

.flex-sub-about__li:nth-child(2) p {
	font-size: 15px;
	letter-spacing: .1em;
	line-height: 1.75;
}

.flex-sub-about__li:nth-child(2) p+p {
	margin-top: 1.75em;
}

.content-sub-about__block:nth-of-type(odd) .flex-sub-about__li:nth-child(2) {
	margin-left: 70px;
}

.content-sub-about__block:nth-of-type(even) .flex-sub-about__li:nth-child(1) {
	margin-left: 100px;
}

.flex-sub-about__ttl1 {
	font-size: 18px;
	font-weight: 500;
	letter-spacing: .15em;
}

.flex-sub-about__ttl2 {
	font-size: 16px;
	font-weight: 400;
	margin-top: 30px;
}

.flex-sub-about__num {
	margin-top: 30px;
	display: flex;
}

.flex-sub-about__num__hires {
	padding-top: 38px;
}

.flex-sub-about__num__li:nth-child(n+2) {
	margin-left: 160px;
}

.flex-sub-about__num>div {
	font-size: 70px;
	font-weight: 300;
	color: #818181;
}

.content-sub-about .content-inner-1000 {
	position: relative;
}

.img-bg__circle._circle-about1 {
	top: -150px;
	right: -120px;
	animation: horizontal2 15s ease-in-out infinite alternate;
}

.img-bg__circle._circle-about1>span {
	animation: vertical1 8s ease-in-out .5s infinite alternate;
}

.img-bg__circle._circle-about1>span>img {
	animation: rotate1 50s linear .5s infinite;
}

.img-bg__circle._circle-about2 {
	bottom: -170px;
	left: -100px;
	animation: horizontal1 10s ease-in-out infinite alternate;
}

.img-bg__circle._circle-about2>span {
	animation: vertical1 6s ease-in-out infinite alternate;
}

.img-bg__circle._circle-about2>span>img {
	animation: rotate2 56s linear .5s infinite;
}

.img-bg__circle._circle-about3 {
	bottom: -265px;
	right: -130px;
	animation: horizontal1 8s ease-in-out 1s infinite alternate;
}

.img-bg__circle._circle-about3>span {
	animation: vertical2 5s ease-in-out .5s infinite alternate;
}

.img-bg__circle._circle-about3>span>img {
	animation: rotate1 58s linear .5s infinite;
}

.img-bg__circle._circle-about4 {
	top: 0;
	left: 11.71vw;
	animation: horizontal2 13s ease-in-out infinite alternate;
}

.img-bg__circle._circle-about4>span {
	animation: vertical1 8s ease-in-out .5s infinite alternate;
}

.img-bg__circle._circle-about4>span>img {
	animation: rotate2 50s linear .5s infinite;
}

.img-bg__circle._circle-about5 {
	animation: horizontal2 13s ease-in-out infinite alternate;
}

.img-bg__circle._circle-about5>span {
	animation: vertical1 8s ease-in-out .5s infinite alternate;
}

.img-bg__circle._circle-about5>span>img {
	animation: rotate2 50s linear .5s infinite;
}

/*------------ PRODUCT-LIST ------------*/
.new_products_list2 {
	margin-top: 85px;
}

.list-product {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 10px;
}

.list-product>li {
	width: calc((100% - (130px * 2)) / 3);
	margin-left: 130px;
}

.list-product>li:nth-child(3n+1) {
	margin-left: 0;
}

.list-product>li:nth-child(n+4) {
	margin-top: 80px;
}

.list-product>li>a {
	display: block;
	position: relative;
}

.list-product__tag {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
}

.list-product__tag ._tag {
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFF;
}

.list-product__tag ._tag__new {
	background-color: #d84d1e;
	width: 65px;
	font-size: 17px;
}

.list-product__tag ._tag__finished {
	background-color: #B4B4B4;
	width: 80px;
	font-size: 12px;
}

.list-product__pic img {
	object-fit: cover;
	object-position: center center;
	width: 100%;
	height: 220px;
	min-height: 220px;
}

.list-product__ttl {
	text-align: center;
	margin-top: 25px;
	font-size: 18px;
}

.list-product__price {
	text-align: center;
	margin-top: 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.list-product__price ._price span {
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
}

.list-product__price ._price i {
	font-size: 16px;
	font-style: normal;
	line-height: 1;
}

.list-product__price ._limited {
	font-size: 16px;
	color: #b52523;
	line-height: 1;
	margin-top: 15px;
}

.list-product__price ._pickup {
	color: #b52523;
	margin-top: 10px;
	margin-bottom: -15px;
}

.list-product__price ._line {
	position: relative;
}

.list-product__price ._line:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 98%;
	height: 1px;
	background-color: #1e1e1e;
}

.list-product__cat {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 190px;
	min-height: 30px;
	color: #FFF;
	text-align: center;
	border-radius: 15px;
	font-size: 15px;
	background-color: #1e1e1e;
	margin: 30px auto 0;
}

.list-product__body {
	margin-top: 15px;
	font-size: 14px;
	letter-spacing: .05em;
	line-height: 1.42;
}

.list-product__tax {
	display: flex;
	flex-wrap: wrap;
	padding-top: 20px;
	margin-top: -7px;
}

.list-product__tax>li {
	border-radius: 12px;
	border: 1px solid #1E1E1E;
	font-size: 12px;
	margin-right: 4px;
	margin-top: 7px;
	min-height: 24px;
	padding: .05em .5em;
	display: flex;
	justify-content: center;
	align-items: center;
}

.list-product__tax>li>span {
	position: relative;
	/* top: -.1em; */
}

.list-product__icon {
	display: flex;
	flex-wrap: wrap;
	margin-top: -10px;
	margin-right: -10px;
	padding-top: 20px;
}

.list-product__icon>li {
	margin-top: 10px;
	margin-right: 10px;
}

.list-product__icon>li img {
	height: 45px;
	width: auto;
}

/*------------ NEWS-DETAIL ------------*/
.content-sub-mv._news__detail {
	height: auto;
	padding: 25px 39px 40px;
}

.content-sub-mv._news__detail .breadcrumbs__wrap {
	position: static;
}

.post-news__ttl {
	font-size: 16px;
	font-weight: 500;
	margin-top: 25px;
}

.post-news__date {
	font-size: 15px;
	font-weight: 400;
	margin-top: 20px;
	color: #595757;
}

.post-news__body {
	margin-top: 25px;
}

.post-news__body a {
	color: #2A64DC;
}

.post-news__body hr {
	display: block;
	height: 1px;
	background-color: #f2f2f2;
	border: none;
	margin: 20px 0;
}


.post-news__body figure {
	margin: 0;
	padding: 0;
}

.post-news__body>*+img,
.post-news__body>*+figure img,
.post-news__body>*+a img,
.post-news__body>*+p img {
	margin-top: 25px;
}

.post-news__body p,
.post-news__body div {
	font-size: 15px;
	line-height: 1.75;
}

.post-news__body>*+h2 {
	margin-top: 100px;
}

.post-news__body h2 {
	font-size: 15px;
	font-weight: 500;
	padding-bottom: 20px;
	position: relative;
	margin-bottom: 40px;
}

.post-news__body h2:before {
	content: "";
	width: 90px;
	height: 2px;
	background-color: #1e1e1e;
	position: absolute;
	left: 0;
	bottom: 0;
	display: block;
}

.post-news__body>*+h3 {
	margin-top: 93px;
}

.post-news__body h3 {
	padding: 7px 0 9px 28px;
	position: relative;
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 51px;
}

.post-news__body h3:before {
	content: "";
	width: 2px;
	height: 100%;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	background-color: #1e1e1e;
}

.post-news__body>*+ul,
.post-news__body>*+ol {
	margin-top: 40px;
	margin-bottom: 40px;
}

.post-news__body ul,
.post-news__body ol {
	font-size: 15px;
}

.post-news__body ul li:nth-child(n+2),
.post-news__body ol li:nth-child(n+2) {
	margin-top: .5em;
}

.post-news__body ul li,
.post-news__body ol li {
	padding-left: 0;
	list-style: decimal;
}

.post-news__body ul li {
	position: relative;
	list-style: none;
}

/* .post-news__body ul li:before {
	content: "";
	width: 11px;
	height: 11px;
	background-color: #1e1e1e;
	position: absolute;
	left: -1em;
	top: .4em;
} */

.post-news__body ol,
.post-news__body ul {
	padding-left: 1em;
}

.post-news__body img {
	display: block;
	margin: 20px auto;
}

.post-news__body img+figcaption {
	font-size: 12px;
	margin-top: 20px;
}

.post-news__body table {
	border-collapse: collapse;
	/* セルの線を重ねる */
	table-layout: fixed;
	width: 100%;
	margin: 10px auto font-size:14px;
}

.post-news__body tr {
	border: 1px solid #d9d9d9;
}

.post-news__body th,
.post-news__body td {
	border: 1px solid #d9d9d9;
	padding: 10px;
	/* 余白指定 */

}

.post-news__body * {
	max-width: 100%;
}

/* .post-news__body a[target="_blank"]:after {
  content: "";
  width: 16px;
  height: 11px;
  background: url(../images/common/icon_blank.svg) no-repeat center center;
  background-size: contain;
  position: relative;
  top: 1px;
  flex-shrink: 0;
  flex-grow: 0;
  margin-left: 0.5em;
  display: inline-block;
}

.post-news__body a img[target="_blank"]:after {
  display: none;
} */



.post-news__btn {
	margin-top: 100px;
	display: flex;
	justify-content: center;
}

.post-news__btn .btn-common {
	width: 220px;
}

/*------------ PRODUCT-DETAIL ------------*/
#main_smn {
	padding-top: 67px;
	padding-bottom: 50px;
}

#main_smn ul {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: center;
}

#main_smn li {
	float: none;
	margin-right: 0;
	width: calc((100% - (15px * 3)) / 4);
	margin-left: 15px;
	transform: scale(1);
	transition: transform .3s;
}

#main_smn li:nth-child(4n+1) {
	margin-left: 0;
}

#main_smn li:nth-child(n+5) {
	margin-top: 15px;
}

#main_smn li .frame {
	display: none;
}

#main_smn li.active,
#main_smn li:hover {
	transform: scale(1.07);
}

.flex-product-ttl {
	display: flex;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 10px;
	padding-left: 5px;
}

.flex-product-ttl__li:nth-child(2) {
	margin-left: 30px;
}

#products_detail_navi {
	height: auto;
	border-radius: 0;
	background: #fff;
	box-shadow: none;
	margin: 0 auto;
	padding-top: 20px;
	width: 100%;
	max-width: none;
}

.table_spec.hosyou {
	padding: 0px;
	margin-bottom: 5px;
	font-size: 15px;
	line-height: 1.75;
	width: 100%;
	margin: 0 0 40px 0;
}

.list-products-detail-nav {
	position: static;
	transform: none;
}

.btn-products-detail-buy {
	display: flex;
	width: 170px;
	height: 26px;
	border-radius: 13px;
	background: #1e1e1e;
	position: static;
	transform: none;
	color: #FFF;
	text-align: center;
	font-weight: bold;
	box-sizing: border-box !important;
	padding-top: 0;
	padding-left: 0;
	justify-content: center;
	align-items: center;
}

.btn-products-detail-buy:before {
	display: none;
}

.btn-products-detail-buy>span {
	display: flex;
	align-items: center;
}

.btn-products-detail-buy>span>span:nth-child(1) {
	font-size: 14px;
}

.btn-products-detail-buy>span>span:nth-child(2) {
	font-size: 10px;
	margin-left: 1em;
}

.products_detail_navi_inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	/* border-top: 1px solid #d9d9d9;
	border-bottom: 1px solid #d9d9d9; */
	padding: 10px 45px 10px 5px;
}

.list-products-detail-nav>li {
	margin-right: 25px;
}

.list-products-detail-nav>li>a {
	font-size: 13px;
	font-weight: 700;
	color: #1e1e1e;
	display: flex;
	align-items: center;
}

.list-products-detail-nav>li>a:after {
	content: "";
	width: 17px;
	height: 10px;
	background: url("../images/products/icon_arrow.svg") no-repeat center center;
	background-size: contain;
	margin-left: 8px;
}

#products_detail_navi.fix {
	height: auto;
	width: 100%;
	z-index: 90;
	display: none;
}

@media (max-width:1120px) {
	#products_detail_navi.fix {
		top: 40px;
	}
}

h3.line {
	border-bottom: none;
	display: flex;
	text-align: center;
	flex-direction: column;
	margin-top: 70px;
	padding-bottom: 0;
	margin-bottom: 70px;
	line-height: 1.7;
}

h3.line span:nth-child(1) {
	font-size: 25px;
	font-weight: 500;
	letter-spacing: .02em;
}

h3.line span:nth-child(2) {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .05em;
	margin-top: .2em;
}

/* 全体のスタイルを調整 */
.movie_list * {
	color: #1E1E1E !important;
	box-sizing: border-box;
	/* 要素がはみ出さないように */
}

.movie_list a {
	display: flex;
	text-decoration: none;
	flex-wrap: wrap;
	/* 幅が狭い場合に折り返しを可能にする */
}

/* レイアウト全体の調整 */
.movie__flex {
	display: flex;
	flex-wrap: wrap;
	/* 要素がはみ出さないように折り返し */
	margin: 30px 0;
	padding: 20px;
	justify-content: space-between;
	/* コンテンツ間の余白を均等に */
	align-items: flex-start;
	/* 上揃えで配置 */
}

/* サムネイルの調整 */
.movie__thumbnail {
	flex: 1 1 300px;
	/* 最小幅300px、必要に応じて広がる */
	max-width: 500px;
}

.movie__thumbnail img {
	width: 100%;
	height: auto;
	max-width: 100%;
	/* 親要素からはみ出さない */
	border-radius: 8px;
	/* デザインを少し向上 */
}

/* 説明部分の調整 */
.movie__desc {
	flex: 1 1 300px;
	/* 最小幅300px、必要に応じて広がる */
	max-width: 500px;
	margin-left: 20px;
	word-wrap: break-word;
	/* 長いテキストが折り返される */
}

.movie__desc .ttl {
	display: block;
	margin-bottom: 20px;
	font-size: 16px;
	font-weight: bold;
}

.movie.sp {
	padding-bottom: 13.33vw;
	/* スマホ向けの調整 */
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
	.movie__flex {
		flex-direction: column;
		/* スマホでは縦並び */
		align-items: center;
		/* 中央寄せ */
	}

	.movie__desc {
		margin-left: 0;
		/* スペースをリセット */
		text-align: center;
		/* テキスト中央寄せ */
	}
}


.movie_list.template_a .comment .ttl:before,
.movie_list.template_b .comment .ttl:before,
.movie_list.template_c .comment .ttl:before,
hr._line,
.block_product hr {
	display: block;
	width: 100%;
	height: 2px;
	background: #d9d9d9;
	border: none;
	border-radius: 10px;
}

hr._line,
.block_product__ hr {
	margin: 0;
}

.block_product table {
	table-layout: fixed;
	width: 100%;
	margin-bottom: 50px;
	font-size: 14px;
}

.block_product table,
td,
th {
	width: 100%;
}

.block_product table,
td,
th:last-of-type {
	border-bottom: none;
}

.block_product tr {
	border-bottom: 1px solid #d9d9d9;
	border-collapse: collapse;
}

.block_product tr:last-of-type {
	border-bottom: none;
}

.block_product td th {
	padding: 20px 0;
	width: 30px;
	height: 25px;
}

.block_product th {
	width: 80%;
	padding: 20px;
}

.block_prodact_btn {
	margin-top: 50px;
	width: fit-content;
	margin: 50px auto 0px;
}

.block_prodact_btn a {
	;
	color: #1e1e1e;
}



.table__comparison {
	padding-bottom: 50px;
}

.table__comparison a p {
	text-align: center;
	margin: 0px 0 20px 0;
	font-weight: 600;
	line-height: 1.8;
	font-size: 17px;
	letter-spacing: .05em;
	font-family: 'Montserrat';
	color: #1a1a1a !important;
}

.table__comparison a img {
	width: 300px;
	margin-bottom: 20px;
}

.table__comparison a img {
	transition: .3s all;
}

.table__comparisona img:hover {
	transform: scale(1.05, 1.05);
	transition: .3s all;
}


/* テーブルの横スクロール対策（必要なら） */
.table__comparison {
	overflow-x: auto;
	width: 100%;
}

/* テーブル全体の幅を固定（セル幅が揃いやすくなる） */
.table__comparison table {
	width: 100%;
	table-layout: fixed;
	/* ★セル幅を均等にする重要ポイント */
	border-collapse: collapse;
	font-size: 13px;
}

/* 画像サイズ固定（PC） */
.table__comparison td img {
	width: 300px;
	height: auto;
	display: block;
	margin: 0 auto;
}

/* 各セルの最小幅（画像300px用） */
.table__comparison td {
	min-width: 320px;
	text-align: center;
}

/* 左側のth（項目名） */
.table__comparison th {
	width: 140px;
	white-space: nowrap;
}

/* ▼ SP時：画像200px、セル幅も縮小する */
@media screen and (max-width: 768px) {
	.table__comparison td img {
		width: 150px;
	}

	.table__comparison td {
		min-width: 150px;
	}
}

span.font-mont {}



.table__comparison tr {
	border-bottom: 1px solid #d9d9d9;
	border-collapse: collapse;
}

.table__comparison tr:first-of-type {
	text-align: center;
	margin-bottom: 40px;

}

.table__comparison tr:last-of-type {
	border-bottom: none;
}

.table__comparison td th {
	padding: 20px 0;
	width: 30px;
	height: 25px;
}

.table__comparison th {
	padding: 20px 5px;
}



th.table-header {
	background: #fff;
	left: 0;
	position: sticky;
	background: linear-gradient(to right, #FFFFFF, #fff);
	text-align: center;
}



.table__comparison_fix {
	padding-bottom: 50px;
}

.table__comparison_fix a p {
	text-align: center;
	margin: 0px 0 20px 0;
	font-weight: 600;
	line-height: 1.8;
	font-size: 18px;
	letter-spacing: .05em;
	font-family: 'Montserrat';
	color: #1a1a1a !important;
}

.table__comparison_fix a img {
	width: 300px;
	margin-bottom: 20px;
}

.table__comparison_fix a img {
	transition: .3s all;
}

.table__comparisona img:hover {
	transform: scale(1.05, 1.05);
	transition: .3s all;
}


.table__comparison_fix table {
	table-layout: fixed;
	text-align: center;
	width: 100%;
	font-size: 14px;
	margin-bottom: 20px;
}

.table__comparison_fix table,
.table__comparison_fix td,
.table__comparison_fix th {
	width: fit-content;
	min-width: 700px;
	margin: auto;
}

.table__comparison_fix table,
.table__comparison_fix td,
.table__comparison_fix th:last-of-type {
	border-bottom: none;
}

.table__comparison_fix tr {
	border-bottom: 1px solid #d9d9d9;
	border-collapse: collapse;
}

.table__comparison_fix tr:first-of-type {
	text-align: center;
	margin-bottom: 40px;

}

.table__comparison_fix tr:last-of-type {
	border-bottom: none;
}

.table__comparison_fix td th {
	padding: 20px 0;
	width: 30px;
	height: 25px;
}

.table__comparison_fix th {
	padding: 20px 5px;
}


.movie_list .comment .body {
	padding-top: 40px !important;
	line-height: 1.75;
}

.table_spec.spec1 {
	float: none;
}

.table_spec.spec2 {
	float: none;
	margin-top: 30px;
}

.table_spec.spec1 th,
.table_spec.spec1 td {
	width: 33.33%;
}

.table_spec.spec2 th,
.table_spec.spec2 td {
	width: 50%;
}

.table_spec.spec2 td small {
	display: inline-block;
	margin-top: 10px;
}

.table_spec {
	width: 100%;
	margin-bottom: 90px;
}

.table_spec table {
	width: 100%;
	table-layout: fixed;
}

.product-spec-wrap {
	width: 100%;
	margin: 0 auto;
}

.table_spec th,
.table_spec td {
	background-color: transparent !important;
	font-size: 14px;
	border: 2px solid #d9d9d9;
	color: #1e1e1e !important;
	text-align: center !important;
	padding: 8px;
}

.table_spec th {
	font-weight: 500;
}

.anchor {
	display: block;
	margin-top: -174px;
	padding-top: 174px;
	z-index: -1;
	pointer-events: none;
}

.option-wrap {
	display: flex;
	justify-content: center;
}

.option-wrap p.option {
	text-align: left;
	font-size: 13px;
	font-weight: 500;
}

.block_product {
	padding-bottom: 70px;
}

.list_btn_support {
	display: flex;
	justify-content: center;
}

.list_btn_support li {
	display: block;
	margin: 0 55px;
}

.list_btn_support li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 302px;
	height: 36px;
	border: 1px solid #1e1e1e;
	border-radius: 18px;
	line-height: 1;
	text-align: center;
	color: #1e1e1e;
	background: none;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	position: relative;
}

.list_btn_support li a:before {
	content: "";
	width: 5px;
	height: 10px;
	background: url("../images/products/icon_arrow_r.svg") no-repeat center center;
	background-size: contain;
	position: absolute;
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
}

.list_btn_support li a:hover {
	background: none;
}

.list_tws_support2 li a {
	margin-top: 60px;
}

.slide_product {
	position: relative;
}

.flex-features {
	display: flex;
}

.flex-features._v {
	flex-direction: column;
}

.flex-features._h1 {
	flex-direction: row;
	align-items: center;
}

.flex-features._h2 {
	flex-direction: row-reverse;
	align-items: center;
}

.flex-features:nth-of-type(n+2) {
	margin-top: 70px;
}

.flex-features__ttl__wrap {
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 25px;
}

.flex-features__ttl__wrap:before {
	content: "";
	height: 2px;
	width: 60px;
	background-color: #1e1e1e;
	position: absolute;
	left: 0;
	bottom: 0;
}

.flex-features__ttl {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.75;
	letter-spacing: .05em;
}

.flex-features__subttl {
	font-size: 15px;
	margin-top: 15px;
	letter-spacing: .05em;
}

.flex-features__body {
	font-size: 16px;
	line-height: 1.75;
	letter-spacing: .1em;
}

.flex-features._h1 .flex-features__li:nth-child(2),
.flex-features._h2 .flex-features__li:nth-child(2) {
	width: 600px;
	flex-grow: 0;
	flex-shrink: 0;
}

.flex-features._h1 .flex-features__li:nth-child(2) {
	margin-left: 50px;
}

.flex-features._h2 .flex-features__li:nth-child(2) {
	margin-right: 50px;
}

.flex-features._v .flex-features__li:nth-child(2) {
	margin-top: 35px;
}

.flex-features .flex-features__li:nth-child(2) {
	display: flex;
	justify-content: space-between;
}

.flex-features__img:nth-child(2) {
	margin-left: 15px;
}

.flex-features__caption {
	font-size: 16px;
	margin-top: 15px;
}

.btn-features__wrap {
	margin-top: 70px;
}

.btn-features__inner {
	width: 100vw;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	padding: 65px 20px 0;
}

.list-btn-features {
	display: flex;
	justify-content: center;

}

.list-btn-features a {
	color: #1e1e1e;
}

.list_btn_support li a:hover {
	background: none !important;
}

.list-btn-features>li:nth-child(n+2) {
	margin-left: 30px;
}

.btn-features,
.btn-features__pdf {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 34px;
	border-radius: 17px;
	border: 1px solid #1e1e1e;
	font-size: 15px;
	font-weight: 500;
	padding: .1em 1em;
	box-shadow: 0 3px 5px rgba(0, 0, 0, .07);
}

.btn-features>span {
	position: relative;
	top: -.05em;
}

.btn-features>span:after {
	content: "";
	width: 5px;
	height: 10px;
	background: url(../images/products/icon_arrow_r.svg) no-repeat center center;
	background-size: contain;
	margin-left: 11px;
	display: inline-block;
	position: relative;
	top: -1px;
}

.btn-features[target="_blank"]>span:after {
	content: "";
	background: url(../images/common/icon_blank.svg) no-repeat center center;
	width: 18px;
	height: 13px;
	background-size: contain;
	margin-left: 11px;
	display: inline-block;
	position: relative;
	top: 1px;
}

.btn-features__pdf>span:after {
	content: "";
	width: 45px;
	height: 14px;
	background: url(../images/products/icon_pdf.svg) no-repeat center center;
	background-size: contain;
	margin-left: 11px;
	display: inline-block;
	position: relative;
	top: 0px;
}

#contents * {
	box-sizing: border-box;
}

#contents .content-inner-1010 {
	box-sizing: content-box;
}

#contents {
	padding-bottom: 0;
}

#bnr_area_top .bx-viewport {
	min-height: 0 !important;
}

.products-item {
	padding: 0;
}

.products-item:first-of-type {
	padding: 0;
}

.flex-products-item {
	display: flex;
	align-items: center;
	padding: 0;
}

.flex-products-item .modal {
	padding: 0;
}

.products-item__award ul {
	font-size: 14px;
	font-weight: 500;
	margin-top: 0px;
}


.products-item__award li {
	font-size: 14px;
	font-weight: 500;
	margin-top: 20px;
}

.products-item__award__flex {
	display: flex;
}

.products-item__award__flex img {
	height: 120px;
}

.products-item__award__flex li {
	margin-right: 10px;
}

.products-item__award__flex li:last-child {
	margin-right: 0px;
}

.flex-products-item__li {
	width: 50%;
}

.flex-products-item__li:nth-child(1) {
	display: flex;
	justify-content: center;
}

.flex-products-item__li:nth-child(1) img {
	width: 423px;
}

.flex-products-item__li:nth-child(2) {
	margin-left: 50px;
}

.products-item__cat {
	font-size: 15px;
}


.products-item__series {
	font-size: 15px;
	margin-top: 10px;
}

.products-item__ttl {
	font-size: 30px;
	margin-top: 3px;
}

.list-item-color {
	margin-top: 7px;
	display: flex;
	align-items: center;
}

.list-item-color>li:nth-child(n+2) {
	margin-left: 10px;
}

.list-item-color ._circle {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 0.1px solid #b1b1b1;
	box-shadow: 0 3px 5px rgba(0, 0, 0, .07);
}

.item_slide_inner {
	max-width: 423px;
	width: 100%;
}

/* slider切り替え */
a.color_btn {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

a.color_btn:hover {
	opacity: 1;
}

a.color_btn::after {
	content: "";
	position: absolute;
	display: inline-block;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-webkit-backface-visibility: hidden;
	width: 2.3em;
	height: 2.3em;
	border-radius: 50%;
	border: 1px solid #ddd;
	box-shadow: 0 3px 5px rgba(0, 0, 0, .07);
	opacity: 0;
	transition: all 0.5s ease;

	/* 追加: Safari向けのベンダープレフィックス */
	-webkit-transform-origin: center;
	transform-origin: center;
}

/*Safariだけに適用されるCSSハック*/
@media screen and (-webkit-min-device-pixel-ratio:0) and (min-width:751px) {

	::i-block-chrome,
	セレクタ {
		プロパティ: 値;
	}
}

a.color_btn.active::after {
	opacity: 1;
}

.products-item__body {
	font-size: 14px;
	font-weight: 500;
	margin-top: 10px;
}

.products-item__body ul {
	font-size: 13px;
	font-weight: 400;
	margin-top: 10px;
}

.products-item__body ul>li {
	padding-left: 1.5em;
	position: relative;
}

.products-item__body ul>li:nth-child(n+2) {
	margin-top: .2em;
}

.products-item__body ul>li:before {
	content: "";
	background: url("../images/products/icon_check.svg") no-repeat center center;
	width: 1em;
	height: 1em;
	position: absolute;
	left: 0;
	top: .3em;
}

.products-item__supportkikan {
	font-size: 15px;
	line-height: 1.9;
}

.products-item__supportkikan p {
	margin-left: 180px;
	margin-bottom: 30px;
}

.products-item__supportkikan {
	font-size: 15px;
	line-height: 1.9;
}

.flex-products-price {
	margin-top: 10px;
	display: flex;
	align-items: flex-end;
}

.flex-products-price__li:nth-child(2) {
	margin-left: 10px;
	color: #b52523;
}

.flex-products-price ._line {
	position: relative;
}

.flex-products-price ._line:before {
	content: "";
	width: 100%;
	height: 1px;
	background-color: #1e1e1e;
	position: absolute;
	left: 0;
	top: 50%;
}

.flex-products-price ._price>span {
	font-size: 30px;
	font-weight: 700;
}

.flex-products-price ._price>i {
	font-size: 13px;
	font-style: normal;
}

.flex-products-price ._limited {
	font-size: 16px;
}

.flex-products-item .btn-common__shop {
	border: 1px solid #1E1E1E;
	margin-top: 15px;
}

.products-item__point {
	font-size: 15px;
	font-weight: 500;
	color: #e60012;
	margin-top: 10px;
}

.products-item__btn {
	margin-top: 20px;
}

.products-item .btn-common__shop {
	width: auto;
	max-width: 300px;
	height: 32px;
	border-radius: 16px;
	padding: 0 11px;
	font-size: 14px;
}

.products-item .btn-common__shop .ttl:after {
	width: 18px;
	height: 13px;
	margin-left: 11px;
}

.products-item__shop .btn-common__shop {
	font-size: 16px;
	width: 100%;
	max-width: 386px;
	height: 42px;
	border-radius: 21px;
	letter-spacing: .15em;
}

.products-item__shop .btn-common__shop .icon img {
	width: 30px;
}

.products-item__btn .btn-common__shop .icon img {
	width: auto;
}

.products-item__btn__lead {
	font-size: 13px;
}

.products-item__btn__fa {
	margin-top: 10px;
}

.products_modal.fix {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	z-index: 1000;
	overflow: auto;
	padding: 20px;
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s;
}

.products_modal.fix.is-active {
	opacity: 1;
	pointer-events: auto;
}

.products_modal__bg {
	position: fixed;
	z-index: -1;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, .8);
}

.products_modal .products-item {
	background-color: #FFF;
	border-radius: 30px;
	width: 100%;
	max-width: 1210px;
	position: relative;
	z-index: 1;
	padding: 60px
}

.products_modal_close {
	position: absolute;
	top: 23px;
	right: 23px;
	cursor: pointer;
}

.products_contents.fix {
	padding-top: 0px;
}

/* =========================
  BASE / common
========================= */
.flex-products-item {
	padding: 0 0 50px
}

/* =========================
  MAIN PRODUCT (hero slider)
========================= */
#main_product {
	max-width: 2300px;
	margin: 0 auto
}

#main_product_slide {
	width: 100%
}

#main_product_slide .swiper-slide {
	overflow: hidden;
	aspect-ratio: 2200/880
}

#main_product_slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block
}

@media (max-width:767px) {
	#main_product_slide .swiper-slide {
		aspect-ratio: auto;
		height: auto
	}

	#main_product_slide img {
		width: 100%;
		height: auto;
		object-fit: initial
	}
}

/* =========================
  PRODUCT DETAIL NAV (fixed)
========================= */
#products_detail_navi.product-detail-nav {
	position: fixed;
	left: 0;
	right: 0;
	top: 80px;
	z-index: 90;
	opacity: 0;
	transform: translateY(20px);
	pointer-events: none;
	background: rgba(255, 255, 255, .45);
	backdrop-filter: blur(14px) saturate(160%);
	-webkit-backdrop-filter: blur(14px) saturate(160%);
	border-top: 1px solid rgba(255, 255, 255, .35);
	box-shadow: 0 -4px 14px rgba(0, 0, 0, .08);
	transition: opacity .25s ease, transform .25s cubic-bezier(.25, .8, .25, 1);
	contain: layout paint;
}

#products_detail_navi.product-detail-nav.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto
}

#products_detail_navi .product-detail-nav__inner {
	padding: 4px 0
}

nav#products_detail_navi {
	padding: 0
}

.products_detail_navi_inner {
	max-width: 1000px;
	margin: 5px auto;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.flex-product-ttl {
	margin: 0
}

.flex-product-ttl__li,
.flex-product-ttl__li.font-mont {
	font-size: 15px
}

.flex-product-ttl__li:nth-child(2) {
	margin-left: 10px
}

.list-products-detail-nav>li>a:after {
	width: 10px;
	height: 10px
}

.btn-products-detail-buy {
	font-size: 13px
}

@media (max-width:1120px) {
	#products_detail_navi.product-detail-nav {
		top: 50px;
		padding: 0 30px
	}

	a._hover.modal_open.btn-products-detail-buy {
		display: none
	}
}

@media (max-width:768px) {
	#products_detail_navi .products_detail_navi_inner {
		display: none;
		flex-direction: column;
		gap: 8px
	}

	#products_detail_navi .products_detail_navi_inner.is-open {
		display: flex
	}

	nav#products_detail_navi {
		display: none
	}
}

/* =========================
  Swiper pagination (global)
  「下に15px」配置が必要なスライダー向け
  ※ swiper によっては親の overflow / 高さ次第で見切れます
========================= */
.swiper .swiper-pagination {
	position: absolute;
	top: calc(100% + 15px);
	left: 0;
	right: 0;
	bottom: auto;
	text-align: center;
	pointer-events: auto;
}

/* =========================
  GALLERY (thumb swiper)
========================= */
.product-gallery {
	margin: 20px auto;
}

.product-gallery-thumb {
	position: relative;
	overflow: visible;
	padding-bottom: 0;
	isolation: isolate;
	-webkit-tap-highlight-color: transparent;
}

.product-gallery-thumb .swiper-slide {
	width: auto;
	flex: 0 0 auto;
	box-sizing: border-box;
	line-height: 0;
}

@media (min-width:768px) {
	.product-gallery-thumb .swiper-slide {
		width: 600px !important
	}
}

.swiper-button_warp {
	position: relative;
	padding: 40px;
	margin-bottom: 20px
}

@media (max-width:768px) {
	.swiper-button_warp {
		display: none
	}
}

.product-gallery-thumb .gallery-thumb {
	display: block;
	width: 100%;
	overflow: hidden;
	position: relative;
	transform: translateZ(0);
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	border: 0;
	padding: 0;
	background: transparent;
	cursor: pointer;
}

.product-gallery-thumb .gallery-thumb:focus {
	outline: none
}

.product-gallery-thumb .gallery-thumb:focus-visible {
	outline: 2px solid rgba(0, 0, 0, .55);
	outline-offset: 3px
}

.product-gallery-thumb .gallery-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin: 0 !important;
	max-width: none;
	transform: translateZ(0) scale(1);
	transform-origin: center center;
	transition: transform .35s ease, opacity .25s ease;
	will-change: transform;
}

.product-gallery-thumb .gallery-thumb:hover img,
.product-gallery-thumb .gallery-thumb:focus-visible img {
	transform: translateZ(0) scale(1.06);
	opacity: .92;
}

/* thumb arrows */
.product-gallery-thumb .swiper-button-prev,
.product-gallery-thumb .swiper-button-next {
	position: absolute;
	top: 50%;
	margin-top: -20px;
	z-index: 5;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: 1px solid #1e1e1e;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
	transition: opacity .2s ease, background .2s ease, box-shadow .2s ease;
	-webkit-tap-highlight-color: transparent;
	user-select: none;
}

.product-gallery-thumb .swiper-button-prev:hover,
.product-gallery-thumb .swiper-button-next:hover {
	opacity: .5;
	box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
}

.product-gallery-thumb .swiper-button-prev {
	left: calc(50% - 30px);
	transform: translateX(-50%)
}

.product-gallery-thumb .swiper-button-next {
	left: calc(50% + 30px);
	transform: translateX(-50%)
}

.product-gallery-thumb .swiper-button-prev::after,
.product-gallery-thumb .swiper-button-next::after {
	display: none
}

.product-gallery-thumb .swiper-button-prev::before,
.product-gallery-thumb .swiper-button-next::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 14px;
	height: 14px;
	border-bottom: 1px solid #1a1a1a;
	border-right: 1px solid #1a1a1a;
}

.product-gallery-thumb .swiper-button-prev::before {
	transform: translate(-35%, -50%) rotate(135deg)
}

.product-gallery-thumb .swiper-button-next::before {
	transform: translate(-65%, -50%) rotate(-45deg)
}

/* fixed 5-bullets window */
.product-gallery-thumb .swiper-pagination {
	position: absolute;
	top: calc(100% + 15px);
	left: 50% !important;
	right: auto !important;
	bottom: auto !important;
	transform: translateX(-50%) !important;

	width: 90px !important;
	min-width: 90px !important;
	max-width: 90px !important;
	overflow: hidden !important;
	white-space: nowrap !important;
	text-align: center;

	padding: 0 2px;
	box-sizing: content-box;
	pointer-events: auto;
	-webkit-tap-highlight-color: transparent;
}

.product-gallery-thumb .swiper-pagination .fixed-bullets-track {
	display: inline-flex;
	align-items: center;
	will-change: transform;
	transform: translateX(0);
}

.product-gallery-thumb .swiper-pagination .swiper-pagination-bullet {
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 999px;
	margin: 0 6px;
	background: #cfcfcf;
	opacity: .25;
	transform: scale(.85);
	transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

.product-gallery-thumb .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #111;
	opacity: 1;
	transform: scale(1.25);
}

.product-gallery-thumb .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active-prev,
.product-gallery-thumb .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active-next {
	opacity: .75;
	transform: scale(1);
}

.product-gallery-thumb .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active-prev-prev,
.product-gallery-thumb .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active-next-next {
	opacity: .5;
	transform: scale(.92);
}

/* 残存クラスの誤判定を潰す（必要なら） */
.product-gallery-thumb .swiper-pagination-bullet.is-active,
.product-gallery-thumb .swiper-pagination-bullet.is-near {
	background: inherit;
	opacity: inherit;
	transform: inherit;
}

/* =========================
  GALLERY MODAL (overlay + content)
========================= */
.gallery-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
	visibility: hidden;
	pointer-events: none;
}

.gallery-modal.is-active {
	visibility: visible;
	pointer-events: auto
}

.gallery-modal.is-active.is-closing {
	visibility: visible;
	pointer-events: none
}

.gallery-modal__overlay {
	position: absolute;
	inset: 0;
	z-index: 10000;
	backdrop-filter: saturate(180%) blur(20px);
	-webkit-backdrop-filter: saturate(180%) blur(20px);
	pointer-events: none;
}

.gallery-modal__overlay::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0);
	transition: background .22s ease-out;
}

.gallery-modal.is-active .gallery-modal__overlay::before {
	background: #fff
}

.gallery-modal.is-active.is-closing .gallery-modal__overlay::before {
	background: rgba(255, 255, 255, 0) !important
}

.gallery-modal__content {
	position: relative;
	z-index: 10001;
	padding: 0;
	margin: 0;
	max-width: 100vw;
	max-height: 100dvh;
	max-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity .22s ease-out;
	will-change: opacity;
	background: #fff;
}

.gallery-modal.is-active .gallery-modal__content {
	opacity: 1
}

.gallery-modal.is-active.is-closing .gallery-modal__content {
	opacity: 0 !important
}

.gallery-modal__inner {
	width: 100vw;
	max-width: 3000px;
	max-height: 100%;
	display: flex;
	flex-direction: column;
	gap: 12px;
	position: relative;
	z-index: 10001;
}

/* close icon (span ×) */
#gallery-modal .gallery-modal__close {
	position: fixed;
	top: max(12px, env(safe-area-inset-top));
	right: max(12px, env(safe-area-inset-right));
	width: 44px;
	height: 44px;
	padding: 0;
	border: none;
	border-radius: 999px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	z-index: 10002;
	opacity: .9;
	transition: opacity .18s ease-out, transform .18s ease-out;
	-webkit-tap-highlight-color: transparent;
}

#gallery-modal .gallery-modal__close:hover {
	opacity: 1;
	transform: translateY(-1px)
}

#gallery-modal .gallery-modal__close:focus {
	outline: none
}

#gallery-modal .gallery-modal__close:focus-visible {
	outline: 2px solid rgba(0, 0, 0, .55);
	outline-offset: 2px
}

#gallery-modal .gallery-modal__close-icon {
	position: relative;
	width: 30px;
	height: 30px;
	display: block
}

#gallery-modal .gallery-modal__close-icon::before,
#gallery-modal .gallery-modal__close-icon::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 30px;
	height: 1px;
	background: #1a1a1a;
	transform-origin: center;
	border-radius: 999px;
}

#gallery-modal .gallery-modal__close-icon::before {
	transform: translate(-50%, -50%) rotate(45deg)
}

#gallery-modal .gallery-modal__close-icon::after {
	transform: translate(-50%, -50%) rotate(-45deg)
}

/* modal main Swiper */
.gallery-modal-main {
	width: 100%;
	flex: 1 1 auto;
	min-height: 0;
	position: relative;
	overflow: visible !important;
}

.gallery-modal-main .swiper-wrapper {
	height: 100%
}

.gallery-modal-main .swiper-slide {
	display: flex !important;
	align-items: center;
	justify-content: center;
	height: 100%;
}

#gallery-modal .gallery-modal-main img {
	max-width: 100%;
	max-height: 85vh;
	height: auto;
	object-fit: contain;
	padding: 0;
	margin: 0 !important;
	display: block;
}

/* counter */
#gallery-modal .gallery-modal-counter {
	position: fixed;
	left: 0;
	right: 0;
	top: 12px;
	margin: 0 auto;
	padding: 8px 14px;
	width: fit-content;
	z-index: 10002;
	font-size: 14px;
	letter-spacing: .04em;
	border-radius: 999px;
	color: #1a1a1a;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	user-select: none;
	pointer-events: none;
	white-space: nowrap;
	font-family: 'Montserrat', sans-serif;
}

/* modal arrows (viewport fixed) */
#gallery-modal.gallery-modal.is-active .gallery-modal-main>.swiper-button-prev,
#gallery-modal.gallery-modal.is-active .gallery-modal-main>.swiper-button-next {
	position: fixed !important;
	top: 50% !important;
	bottom: auto !important;
	transform: translateY(-50%) !important;
	z-index: 10001;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: .85;
	transition: opacity .25s ease;
	will-change: opacity, transform;
	-webkit-tap-highlight-color: transparent;
}

#gallery-modal.gallery-modal.is-active .gallery-modal-main>.swiper-button-prev {
	left: max(12px, env(safe-area-inset-left)) !important;
	right: auto !important;
}

#gallery-modal.gallery-modal.is-active .gallery-modal-main>.swiper-button-next {
	right: max(12px, env(safe-area-inset-right)) !important;
	left: auto !important;
}

#gallery-modal.gallery-modal.is-active .gallery-modal-main>.swiper-button-prev:hover,
#gallery-modal.gallery-modal.is-active .gallery-modal-main>.swiper-button-next:hover {
	opacity: 1
}

#gallery-modal.gallery-modal.is-active .gallery-modal-main>.swiper-button-prev::after,
#gallery-modal.gallery-modal.is-active .gallery-modal-main>.swiper-button-next::after {
	font-size: 18px;
	color: #111;
}

/* fullscreen / zoom buttons (mask) */
#gallery-modal .gallery-modal__fullscreen,
#gallery-modal .gallery-modal__zoom {
	position: fixed;
	top: 14px;
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	cursor: pointer;
	z-index: 10002;
	background-color: #1a1a1a;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-repeat: no-repeat;
	mask-position: center;
}

#gallery-modal .gallery-modal__fullscreen:hover,
#gallery-modal .gallery-modal__zoom:hover {
	opacity: 1;
	transform: translateY(-1px)
}

#gallery-modal .gallery-modal__fullscreen {
	right: 62px;
	-webkit-mask-image: url("/assets/images/products/open_full.svg");
	mask-image: url("/assets/images/products/open_full.svg");
	-webkit-mask-size: 34px 34px;
	mask-size: 38px 38px;
}

#gallery-modal .gallery-modal__zoom {
	right: 108px;
	-webkit-mask-image: url("/assets/images/products/zoomin.svg");
	mask-image: url("/assets/images/products/zoomin.svg");
	-webkit-mask-size: 34px 34px;
	/* 元が mask-size: 38px 3px になっていたので修正（意図がない限り 38px 38px が妥当） */
	mask-size: 38px 38px;
}

#gallery-modal.is-zoomed .gallery-modal__zoom {
	-webkit-mask-image: url("/assets/images/products/zoomoff.svg");
	mask-image: url("/assets/images/products/zoomoff.svg");
}

/* UI auto-hide (zoomも含める) */
#gallery-modal .gallery-modal-main>.swiper-button-prev,
#gallery-modal .gallery-modal-main>.swiper-button-next,
#gallery-modal .swiper-pagination,
#gallery-modal .gallery-modal-counter,
#gallery-modal .gallery-modal__close,
#gallery-modal .gallery-modal__fullscreen,
#gallery-modal .gallery-modal__zoom,
#gallery-modal .gallery-key-hint {
	transition: opacity .22s ease, transform .22s ease;
	will-change: opacity, transform;
}

#gallery-modal.gallery-modal.is-active.is-ui-hidden .gallery-modal-main>.swiper-button-prev,
#gallery-modal.gallery-modal.is-active.is-ui-hidden .gallery-modal-main>.swiper-button-next,
#gallery-modal.gallery-modal.is-active.is-ui-hidden .swiper-pagination,
#gallery-modal.gallery-modal.is-active.is-ui-hidden .gallery-modal-counter,
#gallery-modal.gallery-modal.is-active.is-ui-hidden .gallery-modal__close,
#gallery-modal.gallery-modal.is-active.is-ui-hidden .gallery-modal__fullscreen,
#gallery-modal.gallery-modal.is-active.is-ui-hidden .gallery-modal__zoom,
#gallery-modal.gallery-modal.is-active.is-ui-hidden .gallery-key-hint {
	opacity: 0 !important;
	pointer-events: none !important;
}

#gallery-modal.gallery-modal.is-active.is-ui-hidden .gallery-modal-main>.swiper-button-prev {
	transform: translateY(-50%) translateX(-12px) !important;
}

#gallery-modal.gallery-modal.is-active.is-ui-hidden .gallery-modal-main>.swiper-button-next {
	transform: translateY(-50%) translateX(12px) !important;
}

#gallery-modal.gallery-modal.is-active.is-ui-hidden .gallery-modal__close,
#gallery-modal.gallery-modal.is-active.is-ui-hidden .gallery-modal__fullscreen,
#gallery-modal.gallery-modal.is-active.is-ui-hidden .gallery-modal__zoom,
#gallery-modal.gallery-modal.is-active.is-ui-hidden .gallery-key-hint {
	transform: translateY(-10px) !important;
}

/* key hint */
#gallery-modal .gallery-key-hint {
	position: fixed;
	right: 16px;
	bottom: 16px;
	z-index: 10001;
	display: flex;
	gap: 6px;
	align-items: center;
	opacity: .9;
	pointer-events: auto;
}

#gallery-modal .gallery-key-hint .key {
	-webkit-appearance: none;
	appearance: none;
	border: 0;
	margin: 0;
	min-width: 34px;
	height: 30px;
	padding: 0 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 9px;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
	color: #1a1a1a;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	border-radius: 5px;
	border: .5px solid #ddd;
	user-select: none;
	white-space: nowrap;
	cursor: pointer;
	transition: opacity .18s ease, transform .18s ease, background .18s ease;
	-webkit-tap-highlight-color: transparent;
}

#gallery-modal .gallery-key-hint .key:hover {
	opacity: 1;
	background: rgba(255, 255, 255, .78)
}

#gallery-modal .gallery-key-hint .key:active {
	transform: translateY(1px)
}

#gallery-modal .gallery-key-hint .key:focus {
	outline: none
}

#gallery-modal .gallery-key-hint .key:focus-visible {
	outline: 2px solid rgba(0, 0, 0, .55);
	outline-offset: 2px
}

#gallery-modal .gallery-key-hint .key.key-esc {
	min-width: 46px;
	font-size: 11px
}

/* =========================
  Responsive (SP)
========================= */
@media (max-width:768px) {
	.item_slide_inner {
		box-sizing: border-box;
		width: 100%;
		max-width: 100%;
		padding: 10px 24px 20px;
	}

	.product-gallery-thumb .gallery-thumb {
		aspect-ratio: 1/1;
		transform: none;
	}

	#gallery-modal .gallery-modal-main img {
		padding: 0
	}

	/* SP: hide modal arrows */
	#gallery-modal.gallery-modal.is-active .gallery-modal-main>.swiper-button-prev,
	#gallery-modal.gallery-modal.is-active .gallery-modal-main>.swiper-button-next {
		display: none !important
	}

	/* SP: overlay clickable */
	.gallery-modal__overlay {
		pointer-events: auto
	}

	/* SP: hide hint keys */
	#gallery-modal .gallery-key-hint .key {
		display: none
	}

	/* SP: fullscreen不要なら非表示 */
	#gallery-modal .gallery-modal__fullscreen {
		display: none
	}

	#gallery-modal .gallery-modal__zoom {
		right: 50px
	}
}

/* =========================
  Generic slider / color button
========================= */
.item_slide_inner {
	max-width: 423px;
	width: 100%
}

.item-swiper {
	width: 100%
}

.sp_modal_btn {
	display: none
}

/* =========================
  Swiper Zoom : cursor icon
========================= */
#gallery-modal .swiper-zoom-container {
	cursor: zoom-in
}

#gallery-modal .swiper-slide-zoomed .swiper-zoom-container {
	cursor: zoom-out
}

/* =========================
  iOS tap highlight suppression (modal)
========================= */
#gallery-modal .swiper,
#gallery-modal .swiper * {
	-webkit-tap-highlight-color: transparent
}

/* =========================
  product-gallery-thumb focus ring suppression
  ※ アクセシビリティ優先なら「完全無効化」は非推奨
========================= */
.product-gallery-thumb,
.product-gallery-thumb * {
	-webkit-tap-highlight-color: transparent
}

.product-gallery-thumb :focus,
.product-gallery-thumb :focus-visible,
.product-gallery-thumb [tabindex]:focus,
.product-gallery-thumb [tabindex]:focus-visible,
.product-gallery-thumb [role="button"]:focus,
.product-gallery-thumb [role="button"]:focus-visible,
.product-gallery-thumb button:focus,
.product-gallery-thumb button:focus-visible {
	outline: none !important;
	box-shadow: none !important;
}

.product-gallery-thumb .swiper-pagination-bullet:focus,
.product-gallery-thumb .swiper-pagination-bullet:focus-visible {
	transform: none !important;
}

.product-gallery-thumb .swiper-button-prev:focus,
.product-gallery-thumb .swiper-button-prev:focus-visible,
.product-gallery-thumb .swiper-button-next:focus,
.product-gallery-thumb .swiper-button-next:focus-visible {
	filter: none !important;
}



/* ボタンStyle */
span.icon.purchase {
	width: 25px;
	margin-left: 5px;
}

#main_product .bx-controls {
	display: none;
}

#main_product_slide>li:nth-child(n+2) {
	display: none;
}

.bx-viewport #main_product_slide>li {
	display: block;
}

#contents .wp-pagenavi {
	clear: both;
}

#contents .wp-pagenavi a,
#contents .wp-pagenavi span {
	text-decoration: none;
	border: 1px solid #BFBFBF;
	padding: 3px 5px;
	margin: 2px;
}

#contents .wp-pagenavi a:hover,
#contents .wp-pagenavi span.current {
	border-color: #000;
}

#contents .wp-pagenavi span.current {
	font-weight: bold;
}

#contents .wp-pagenavi {
	text-align: center;
	padding-top: 30px;
}

#contents .wp-pagenavi span,
#contents .wp-pagenavi a {
	display: inline-block;
	margin-right: 15px;
	font-size: 14px;
}

#contents .wp-pagenavi a {
	font-size: 14px;
	color: #cccccc;
	opacity: 1 !important;
}

#contents .wp-pagenavi .current {
	color: #666666;
}

#lp_body * {
	box-sizing: content-box;
}

#lp_body a:hover {
	opacity: 1;
}

.contact_form_txt01 {
	color: #1e1e1e;
}

#lp_body .btm_image.child16 {
	margin-bottom: 0;
	padding-bottom: 50px;
}

/*------------ NEW FORMS 2023-08-29 ------------*/
/* General Styles */
.support__content {
	width: 100%;
	max-width: 800px;
	margin: auto;
}

/* Headings */
.support__content_inner h1 {
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 30px;
}

.support__content_inner h2 {
	font-size: 15px;
	font-weight: 700;
	margin-inline-end: 0px;
}

/* Margin and Padding */
.support__content_inner {
	margin: 10px;
	margin-top: 60px;
}

.support__support__contact_form_txt01 {
	text-align: center;
	margin: 20px auto;
}

.contact_block {
	max-width: 1000px;
	margin: auto;
}

.support-overview__title {
	text-align: center;
	margin: 50px 0 30px 0;
	font-size: 20px;
}


.text_wapper {
	padding: 40px;
	border: 1px solid #1e1e1e;
	width: 100%;
	margin: auto;
}

.text_wapper p {
	font-size: 14px;
}

/* support */

.contact_block_flex {
	max-width: 1000px;
	margin: auto;
	display: flex;
}

.contact_block {
	display: flex !important;
	margin: 20px;
	align-items: revert-layer;
	width: 300px;
	text-align: center;
	display: block;
	justify-content: center;
	align-items: center;
	border: 1px solid #1e1e1e;
	padding: 20px;
	font-size: 15px;
}

span.contact_image {
	display: block;
	margin-bottom: 10px;
}


/* ====== 完了画面 UI ====== */
.contact-complete__wrap {
	max-width: 960px;
	margin: 40px auto;
	padding: 28px 22px;
}


.contact-complete__head {
	text-align: center;
	margin-bottom: 150px;
}


.contact-complete__head h3 {
	font-size: 1.5rem;
	margin-top: 8px;
}


.contact-complete__icon {
	display: inline-block;
	margin-bottom: 12px;
	color: #027589;
}


.contact-complete__lead {
	margin: 12px 0 10px;
	line-height: 1.8;
	font-size: 1.05rem;
}


.contact-complete__time {
	color: #666;
	font-size: .95rem;
	margin: 0;
}


.contact-complete__title {
	margin: 20px 0 8px;
	font-weight: 700;
}


.contact-complete__list {
	padding-left: 1.2em;
	margin: 0 0 12px;
}


.contact-complete__list li {
	margin: .25em 0;
}


.contact-complete__text {
	margin: 0 0 16px;
	font-size: 1.1rem;
	line-height: 1.9;
}


.contact-complete__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: center;
	margin: 32px 0;
}


.btn {
	display: inline-block;
	padding: .85em 1.5em;
	border-radius: 9999px;
	border: 1px solid #ccc;
	text-decoration: none;
	font-size: 1rem;
}


.btn._primary {
	background: ##E3ECF2;
	border-color: ##E3ECF2;
	color: #fff;
}


.btn._primary:hover {
	opacity: .92;
}


.btn._ghost {
	background: #fff;
	color: #333;
}


.btn._ghost:hover {
	background: #f6f6f6;
}


.contact-complete__note {
	font-size: 1rem;
	color: #555;
	text-align: center;
}


/* （任意）小画面で少しだけ縮めたい場合 */
@media (max-width: 480px) {
	.contact-complete__head h3 {
		font-size: 5.6vw;
	}


	.contact-complete__lead {
		font-size: 4vw;
	}


	.btn {
		font-size: .95rem;
	}
}


.contact_block_flex {}

@media screen and (max-width:760px) {
	.contact_block {
		width: 90%;
		margin: 20px auto;
	}

	.contact_block_flex {
		margin: auto;
		display: block;
		width: 100%;
	}

	input[type=text] {
		font-size: 16px;
	}

	input.wpcf7-form-control {
		font-size: 16px;
	}

	select.wpcf7-form-control.wpcf7-select {
		-webkit-appearance: none;
		appearance: none;
		width: 100%;
		padding: 5px;
		height: 48px;
		margin-bottom: 10px;
		font-size: 16px;
	}

}

.text_wrapper {
	border: 1px solid #BFBFBF;
	max-width: 600px;
	margin: 50px auto;
	padding: 10px 30px;
	font-size: 13px;
}

.text_wrapper p {
	margin-bottom: 10px;
}

.text_wrapper p:last-child {
	font-size: 13px;
}

.text_wrapper {
	line-height: 1.7;
	padding: 2rem;
	max-width: 720px;
	margin: 2rem auto;
}

.text_wrapper p {
	margin-bottom: 1.rem;
}

.text_wrapper ul {
	padding-left: 1.2rem;
	margin-bottom: 1.2rem;
}

.text_wrapper li {
	margin-bottom: 0.3 rem;
	list-style-type: disc;
}

.text_wrapper strong,
.text_wrapper b {
	color: #222;
	font-weight: 600;
}

@media (max-width: 600px) {
	.text_wrapper {
		padding: 1.5rem 1rem;
		font-size: 0.95rem;
	}
}

.product-warranty {
	padding: 30px 10px;
	margin-bottom: 50px;
	background: #f4f4f4;
}

.product-warranty p {
	font-size: 14px;
	line-height: 1.6;
	text-align: center;
	color: #333333;
}

.product-warranty h2 {
	text-align: center;
	margin-bottom: 20px;
	font-size: 20px;
}

.product-warranty h3 {
	font-size: 16px;
	margin-bottom: 19px;
	text-align: center;
	margin: 20px;
}

.authorized-retailers {
	/* list-style-type: disc; */
	padding-left: 0;
	margin-bottom: 10px;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	column-gap: 10px;
	text-align: center;
}

.authorized-retailers li {
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 5px;
	border: 1px solid #ddd;
	border-radius: 50px;
}

@media screen and (max-width: 780px) {
	.authorized-retailers {
		grid-template-columns: repeat(3, 1fr);
		column-gap: 10px;
	}

	.product-warranty p {
		font-size: 3.2vw;
	}

	.product-warranty h2 {
		font-size: 5.7vw;
	}

	.product-warranty h3 {
		font-size: 3.7vw;
	}

}

@media screen and (max-width: 460px) {
	.authorized-retailers {
		grid-template-columns: repeat(2, 1fr);
		column-gap: 5px;
	}
}



/* Contact Form Styles */

table.support__contact_form_table {
	width: 100%;
}

.support__contact_block02_l_txt01_2 {
	font-size: 14px;
	margin-top: 10px;
}

.support__contact_form_block01.clearfix {
	width: 100%;
	max-width: 600px;
	margin: auto;
	padding: 20px 50px;
	text-align: center;
	background: #f2f2f2;
	border-radius: 2px;
}

a.tel_support {
	font-size: 33px;
	font-weight: 700;
	text-decoration: none;
}

.tel_support .supplement {
	font-size: 16px;
}

.submit_btn input[type="submit"] {
	display: inline-block;
	width: 300px;
	padding: 15px 0 11px;
	margin-top: 20px;
	font-size: 18px;
	font-weight: normal;
	color: #000000;
	cursor: pointer;
	border: solid 1px #666666;
	border-radius: 25px;
	background: url(../images/contact/image_contact03.gif) no-repeat 95% center #FFF;
}

.submit_btn .back_btn {
	float: left;
}

.submit_btn .back_btn input[type="submit"] {
	float: left;
	background: url(../images/contact/image_contact04.gif) no-repeat 5% center #FFF;
}

.submit_btn .send_btn2 {
	float: right;
}




a.tel_support {
	font-size: 33px;
	font-weight: 700;
	text-decoration: none;
}

.tel_support .supplement {
	font-size: 16px;
}

.submit_btn input[type="submit"] {
	display: inline-block;
	/* width: 300px;  (必要であればコメントアウト外して使用) */
	padding: 10px 0 11px;
	margin-top: 20px;
	/* 親で中央揃えにするなら不要なら削除 */
	font-size: 18px;
	font-weight: normal;
	color: #000000;
	cursor: pointer;
	border: solid 1px #666666;
	border-radius: 25px;
	background: url(../images/contact/image_contact03.gif) no-repeat 95% center #FFF;
	height: auto !important;
	/* padding-bottom: 40px; */
}

.submit_btn .back_btn {
	float: left;
}


.submit_btn .back_btn input[type="submit"] {
	float: left;
	background: url(../images/contact/image_contact04.gif) no-repeat 5% center #FFF;
}

.submit_btn .send_btn2 {
	float: right;
}


.submit_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	*/
}

.submit_btn {
	text-align: center;
}

.submit_btn input[type="submit"] {
	display: inline-block;
	width: 300px;
	padding: 15px 0 11px;
	font-size: 18px;
	color: #000;
	border: 1px solid #666;
	border-radius: 25px;
	background: url(../images/contact/image_contact03.gif) no-repeat 95% center #FFF;
}


/* Error Styles */
span.error,
.error,
p span.error {
	color: #FF0000 !important;
	display: none;
}

/* Confirmation and Complete Styles */
.confirm_area .form_kojin,
.confirm_area .form_caution {
	display: none;
}

.complte_block {
	margin-top: 50px;
}

.complte_block p.complete_txt {
	margin-top: 50px;
	text-align: center;
	font-size: 14px;
	color: #666666;
}

.pop_txt {
	width: 90%;
	margin: 0 auto;
}

.confirm_area .submit_btn {
	width: 700px;
	margin: 0 auto;
}

.confirm_area .send_btn {
	float: right;
}

/* Table Styles */
.support__content_inner table th,
.support__content_inner table td {
	width: 100%;
	display: block;
	text-align: justify;
}

.support__content_inner th {
	padding: 0;
	margin-bottom: 10px;
	padding-left: 10px;
	border-left: 3px solid #333;
	font-size: 14px;
}

.support__content_inner td {
	margin-bottom: 10px;
}

/* Links and Buttons */
a.support__contact_form_link01.btn_pop {
	text-align: center;
}

.support__contact_form_link01 a {
	padding: .5em;
	border-radius: 100px;
	border: solid 1px #666666;
}

.support__contact_form_link01 {
	width: inherit;
	margin: 60px auto;
	text-align: center;
}

/* Form Styles */


form.wpcf7-form.init {
	margin: 30px auto;
}

input.wpcf7-form-control,
textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required {
	width: 100%;
	padding: 5px;
	height: 48px;
	margin-bottom: 10px;
}

span.wpcf7-form-control-wrap.radiomusic_radio {
	padding: 10px 0;
	display: block;
}

select.wpcf7-form-control.wpcf7-select {
	width: 100%;
	padding: 5px;
	height: 48px;
	margin-bottom: 10px;
}

/* wp video Styles */

video.video_radius {
	border-radius: 10px;
}

.wp-video {
	width: 100%;
	height: auto;
}

.is-type-video {
	width: 100%;
	max-width: 100%;
	margin: 1em 0;
}

.is-type-video .wp-block-embed__wrapper {
	position: relative;
	padding-bottom: 56.25%;
	overflow: hidden;
}

.is-type-video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/* Required Fields */
span.required {
	color: #f00;
	font-size: 12px;
}

/* Additional Text Styles */
.contact_form_link02 {
	text-align: center;
	margin-bottom: 20px;
}

p.support__contact_form_txt03 {
	font-size: 14px;
}

p.support__contact_form_txt02 {
	font-size: 15px;
	margin-bottom: 10px;
}

.privacy_policy {
	text-align: center;
	font-size: 14px;
	margin-bottom: 20px;
}

.reCAPTCHA_policy {
	text-align: center;
	font-size: 11px;
}

/* Media Queries (if applicable) */

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

	.support__content_inner h1 {
		font-size: 5.7vw !important;
	}

	a.tel_support {
		font-size: 7vw;
	}

	.tel_support .supplement {
		font-size: 4vw;
	}

	.support__content_inner th {
		font-size: 4vw;
	}
}

/*------------ FOOTER ------------*/

.btn-pagetop {
	position: absolute;
	top: -78px;
	right: 143px;
	transform: translateY(-100%);
}

footer {
	background-color: #000 !important;
	padding: 54px 0 21px !important;
	color: #FFF;
	margin-top: 270px;
	position: relative;
}

footer>div {
	position: relative;
}

footer a {
	color: inherit;
	text-decoration: none;
}

footer a:hover {
	text-decoration: underline;
}

.img-footer-neby {
	margin-top: 41px;
}

.flex-footer-sns {
	display: flex;
	margin-top: 42px;
}

.flex-footer-sns__li:nth-child(n+2) {
	margin-left: 24px;
}

.flex-footer {
	display: flex;
	justify-content: space-between;
}

.flex-footer__li:nth-child(1) {
	margin-right: 105px;
	flex-shrink: 0;
	flex-grow: 0;
}

.flex-footer__li:nth-child(2) {
	flex-grow: 1;
	flex-shrink: 1;
}

.flex-footer-nav {
	display: flex;
	justify-content: space-between;
	font-weight: 500;
}

.flex-footer-nav__li:nth-child(n+2) {
	margin-left: 20px;
}

.footer-nav__head {
	font-size: 14px;
}

.footer-nav__wrap {
	margin-top: 33px;
}

.list-footer-nav__sub {
	font-size: 12px;
}

.list-footer-nav__sub>li:nth-child(n+2) {
	margin-top: 1em;
}

.list-footer-nav>li:nth-child(n+2) {
	margin-top: 23px;
}

.list-footer-nav__app {
	margin-top: 30px;
}

.list-footer-nav__app>li:nth-child(n+2) {
	margin-top: 23px;
}

.flex-footer-nav-app {
	display: flex;
	font-size: 12px;
}

.flex-footer-nav-app__li:nth-child(1) {
	width: 42px;
	flex-shrink: 0;
	flex-grow: 0;
	margin-right: 13px;
}

.flex-footer-nav-app__li:nth-child(2) {
	padding-top: 3px;
}

.flex-footer-nav-app__li:nth-child(2) a[target="_blank"]:after {
	content: "";
	width: 16px;
	height: 11px;
	background: url(../images/common/icon_blank_w.svg) no-repeat center center;
	background-size: contain;
	position: relative;
	top: 1px;
	flex-shrink: 0;
	flex-grow: 0;
	margin-left: 0.5em;
	display: inline-block;
}

.flex-footer-nav-app__li:nth-child(2)>ul>li:nth-child(n+2) {
	margin-top: 1em;
}

.flex-footer-policy {
	display: flex;
	font-size: 11px;
	margin-top: 90px;
}

.flex-footer-policy small {
	font-size: 10px;
}

.flex-footer-policy__li:nth-child(n+3) {
	margin-left: 74px;
}

.btn-footer-shop {
	position: absolute;
	left: 20px;
	top: 366px;
}

.btn-common__shop {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	background-color: #FFF;
	width: 275px;
	height: 32px;
	border-radius: 16px;
	color: #1e1e1e;
	padding: 0 11px;
	font-size: 14px;
	font-weight: 500;
	position: relative;
	top: 0;
	transition: all .3s;
	box-shadow: 0 3px 5px rgba(0, 0, 0, .07);
}

/*
.btn-common__shop:hover{
  opacity: 1;
  top:-3px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}
*/
.btn-common__shop:hover {
	text-decoration: none;
}

.btn-common__shop .icon {
	margin-right: 14px;
}

.btn-common__shop .ttl:after {
	content: "";
	background: url("../images/common/icon_blank.svg") no-repeat center center;
	width: 18px;
	height: 13px;
	background-size: contain;
	margin-left: 11px;
	display: inline-block;
	position: relative;
	top: 1px;
}

.pick_up_none {
	margin-top: 100px;
	margin-bottom: 100px;
	text-align: center;
	font-size: 24px;
}


.Audio_Sample.flex {
	justify-content: space-between;
}

.Audio_Sample_inner {
	width: 250px;
	hight: 250px;
	margin: 10px;
}

.Audio_Sample.flex {
	display: flex;
	justify-content: space-around;
	flex-wrap: nowrap;
}

@media (max-width: 768px) {
	.Audio_Sample.flex {
		flex-wrap: wrap;
	}

	.Audio_Sample_inner {
		width: 150px !important;
		hight: 150px !important;
		margin: 10px;
	}
}


@media screen and (max-width: 768px) {
	.pick_up_none {
		margin-top: 16vw;
		margin-bottom: 16vw;
		font-size: 6vw;
	}
}



@media (min-width:769px) {
	.sp {
		display: none !important;
	}
}

@media (max-width:768px) {
	.pc {
		display: none !important;
	}

	body {
		-webkit-text-size-adjust: 100%;
		overflow: auto;
	}

	/*------------ WRAPPER ------------*/
	#wrapper {
		width: 100%;
		position: relative;
		overflow: hidden;
		padding-top: 48px;
	}

	.content-inner {
		max-width: 100%;
		padding: 0 15px;
		box-sizing: border-box;
	}

	.content-inner-1040 {
		max-width: 100%;
		padding: 0 15px;
		box-sizing: border-box;
	}

	.content-inner-800 {
		max-width: 100%;
		padding: 0 15px;
		box-sizing: border-box;
	}

	.content-inner-850 {
		max-width: 100%;
		padding: 0 15px;
		box-sizing: border-box;
	}

	.content-inner-920 {
		max-width: 100%;
		padding: 0 15px;
		box-sizing: border-box;
	}

	.content-inner-1000 {
		max-width: 100%;
		padding: 0 15px;
		box-sizing: border-box;
	}

	.content-inner-1010 {
		max-width: 100%;
		padding: 0 15px;
		box-sizing: border-box;
	}

	.content-inner-1060 {
		max-width: 100%;
		padding: 0 15px;
		box-sizing: border-box;
	}

	.content-inner-1070 {
		max-width: 100%;
		padding: 0 15px;
		box-sizing: border-box;
	}

	.content-inner-1100 {
		max-width: 100%;
		padding: 0 15px;
		box-sizing: border-box;
	}

	.content-inner-1200 {
		max-width: 100%;
		padding: 0 15px;
		box-sizing: border-box;
	}

	.content-inner-1500 {
		max-width: 100%;
		padding: 0 15px;
		box-sizing: border-box;
	}

	/*------------ TOP ------------*/
	.content-top-mv {
		position: relative;
	}

	.content-top-mv .img-scroll {
		right: 3.33vw;
		bottom: 9.73vw;
	}

	.content-top-mv .img-scroll img {
		width: 3.2vw;
	}

	.mv-slide__item {
		padding-top: 175.33%;
	}

	.mv-slide .swiper-horizontal>.swiper-pagination-bullets,
	.mv-slide .swiper-pagination-bullets.swiper-pagination-horizontal,
	.mv-slide .swiper-pagination-custom,
	.mv-slide .swiper-pagination-fraction {
		display: none;
	}

	.content-top-about {
		margin-top: 13.86vw;
	}

	.top-about__mv {
		width: 89.33vw;
		height: 50.66vw;
		padding-top: 0;
		margin: 0 auto;
	}

	.img-bg__circle {
		width: 35.2vw
	}

	.img-bg__circle._circle1 {
		top: -13.86vw;
		right: 1.73vw;
	}

	.img-bg__circle._circle2 {
		bottom: 8vw;
		left: 2.66vw;
	}

	.img-bg__circle._circle3 {
		top: -36vw;
		right: 4vw;
	}

	.img-bg__circle._circle4 {
		display: none;
	}

	.flex-top-about {
		margin-top: 7.2vw;
		flex-direction: column;
		justify-content: flex-start;
	}

	.flex-top-about__li:nth-child(1) {}

	.flex-top-about__li:nth-child(2) {
		margin-left: 0;
		margin-top: 10.4vw;
	}

	.top-about__ttl {
		font-size: 5.6vw;
	}

	.top-about__lead {
		font-size: 4vw;
		font-weight: 300;
		margin-top: 2vw;
		letter-spacing: .1em;
	}

	.top-about__body {
		font-size: 4vw;
	}

	.top-about__body p+p {
		margin-top: 0;
	}

	.top-about__btn {
		margin-top: 7.33vw;
	}

	.btn-common {
		font-size: 3.73vw;
		font-weight: 400;
		height: 15.33vw;
		border-radius: 7.66vw;
		padding: 0 5.33vw;
		min-width: 68.66vw;
	}

	.btn-common>span {
		display: flex;
		align-items: center;
		position: relative;
		top: -1px;
	}

	.btn-common>span:after {
		margin-left: 4vw;
		width: 1.6vw;
		height: 2.93vw;
		top: 1px;
	}

	.btn-common.btn-common__white[target="_blank"]>span:after {
		width: 5.06vw;
		height: 3.46vw;
	}

	.content-top-ne {
		margin-top: 20.66vw;
		margin-bottom: -11.2vw;
	}

	.top-ne__mv {
		position: relative;
		left: 5.33vw;
		top: 0;
		background: url("../images/top/pic_ne_sp.png") no-repeat center center;
		width: 80.66vw;
		height: 88.66vw;
		margin-left: auto;
		background-size: cover;
		max-width: none;
	}

	.top-ne__inner {
		/*padding-right: 400px;*/
		padding-bottom: 24.53vw;
		width: 100%;
	}

	.top-ne__ttl {
		text-align: center;
	}

	.top-ne__ttl img {
		width: 33.33vw;
	}

	.top-ne__body {
		margin-top: 10.26vw;
		font-size: 4vw;
	}

	.top-ne__btn {
		margin-top: 6.66vw;
		display: flex;
		justify-content: center;
	}

	.content-top-bgcolor {
		padding-top: 40vw;
		padding-bottom: 40vw;
	}

	.top-combi__inner {
		padding-top: 0;
		justify-content: flex-start;
	}

	.top-combi__inner>div {
		width: 100%;
	}

	.top-combi__ttl {
		font-size: 5.86vw;
	}

	.top-combi__lead {
		font-size: 4vw;
		font-weight: 300;
		letter-spacing: .1em;
		margin-top: 4vw;
	}

	.top-combi__body {
		font-size: 4vw;
		margin-top: 10.66vw;
	}

	.top-combi__mv {
		width: 100vw;
		height: 94.4vw;
		position: relative;
		top: 0;
		left: -5.33vw;
		margin-top: 13.33vw;
	}

	.content-top-combi>div {
		position: relative;
	}

	.content-top-pickup {
		margin-top: 10vw;
	}

	.ttl-border__u {
		font-size: 5.86vw;
		margin-bottom: 17.06vw;
	}

	.ttl-border__u:after {
		margin-top: 5.33vw;
		width: 34.13vw;
	}

	.flex-top-pickup {
		display: flex;
		justify-content: space-between;
	}

	.flex-top-pickup__li:nth-child(2) {}

	.flex-slide-arrow {
		display: none;
	}

	.top-pickup__body {
		width: 100%;
		overflow: hidden;
	}

	.top-pickup__body * {
		box-sizing: border-box;
	}

	.top-pickup__item:nth-child(n+4) {
		display: none;
	}

	.btn-more__pickup {
		display: flex;
		justify-content: center;
		margin-top: 11.86vw;
		text-align: center;
	}

	.btn-more__pickup>div {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.btn-more__pickup .txt {
		font-size: 4vw;
		font-weight: 400;
		letter-spacing: .05em;
	}

	.btn-more__pickup .txt:before {
		content: "\3082\3063\3068\898B\308B";
	}

	.btn-more__pickup.is-active .txt:before {
		content: "\9589\3058\308B";
	}

	.btn-more__pickup .icon {
		margin-top: 4vw;
		transform: rotate(0deg);
		transition: transform .3s;
	}

	.btn-more__pickup.is-active .icon {
		transform: rotate(180deg);
	}

	.btn-more__pickup .icon img {
		width: 5.6vw;
	}

	.top-pickup__item-wrap {
		display: flex;
		flex-direction: column;
		padding: 0 4.66vw;
		margin-top: 1.5vw;
	}

	.top-pickup__item {
		padding: 7.2vw 3.73vw 5.2vw;
		text-align: left;
		width: 100%;
	}

	.top-pickup__item+.top-pickup__item {
		margin-top: 6vw;
	}

	.top-pickup__item:before {
		border-radius: 4vw;
	}

	.item__ttl {
		font-size: 3.2vw;
	}

	.item__product {
		font-size: 5.33vw;
		margin-top: 1.33vw;
		padding-right: 30.66vw;
	}

	.item__img {
		position: absolute;
		right: 2.66vw;
		top: 2.66vw;
		margin: 0;
		width: 30.66vw;
		height: 30.66vw;
		background-size: cover;
	}

	.item__body {
		margin-top: 3.6vw;
		font-size: 2.93vw;
		line-height: 1.63;
		padding-right: 30.66vw;
	}

	.item__body_mod {
		margin-top: 3.6vw;
		font-size: 2.93vw;
		line-height: 1.63;
		padding-right: 30.66vw;
	}

	.item__btn {
		margin-top: 6vw;
		padding: 0;
		display: flex;
		justify-content: center;
	}

	.item__btn .btn-common {
		width: 44vw;
		height: 9.33vw;
		min-width: 0;
	}

	.content-top-apps {
		margin-top: 17.73vw;
	}

	.flex-top-apps {
		display: flex;
		justify-content: flex-start;
		flex-direction: column;
	}

	.flex-top-apps__li {
		width: 100%;
		border-radius: 4vw;
		padding: 29px 28px 23px;
		text-align: center;
		margin-left: 0;
		display: flex;
		flex-direction: column;
		color: #1E1E1E;
	}

	.flex-top-apps__li:nth-child(3n+1) {
		margin-left: 0;
	}

	.flex-top-apps__li:nth-child(n+2) {
		margin-top: 6.93vw !important;
	}

	.apps_icon__wrap {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.flex-top-apps__li .apps_icon img {
		width: 18.4vw;
	}

	.flex-top-apps__li .apps_ttl {
		margin-top: 0;
		margin-left: 3.46vw;
	}

	.flex-top-apps__li .apps_ttl img {
		height: 4vw;
		width: auto;
	}

	.flex-top-apps__li .apps_body {
		font-size: 2.93vw;
		line-height: 1.63;
		margin-top: 4.66vw;
	}

	.flex-top-apps__li .apps_img {
		margin-top: 4.33vw;
		padding-top: 0;
		height: auto;
		min-height: 0;
		display: block;
	}

	.flex-top-apps__li .apps_img img {
		width: 100%;
	}

	.flex-top-apps__li .apps_btn {
		margin-top: 6.66vw;
	}

	.flex-top-apps__li .apps_btn .btn-common {
		padding: 0 1.33vw;
		font-size: 3.33vw;
		height: 9.33vw;
	}

	.content-top-news {
		padding: 22.66vw 0 18.93vw;
	}

	.flex-top-news {
		flex-direction: column;
		margin-top: -10vw;
	}

	.flex-top-news__li {
		width: 100%;
		margin-left: 0;
	}

	.flex-top-news__li:nth-child(3n+1) {
		margin-left: 0;
	}

	.flex-top-news__li:nth-child(n+2) {
		margin-top: 7.33vw !important;
	}

	.top-news__date {
		font-size: 3.2vw;
		margin-bottom: 4.53vw;
	}

	.flex-news-cat {
		display: flex;
		flex-wrap: wrap;
		margin-bottom: -2.13vw;
		padding-right: 15vw;
	}

	.flex-news-cat__li {
		margin-right: 2.13vw;
		margin-bottom: 2.13vw;
	}

	.icon-news {
		padding: 0 1em;
		font-size: 3.2vw;
		border-radius: 2.66vw;
		height: 5.33vw;
	}

	.top-news__ttl {
		font-size: 4vw;
		margin-top: 4vw;
		padding-top: 0;
		height: auto !important;
	}

	.top-news__btn {
		margin-top: 10vw;
	}



	.content-top-live {
		padding: 15.73vw 0 19.6vw;
		margin-bottom: 0;
	}

	.top-live__head {
		text-align: center;
	}

	.top-live__icon img {
		width: 45.2vw;
	}

	.top-live__lead {
		font-size: 4.33vw;
		margin-top: 5.2vw;
	}

	.top-live__head .ttl-border__u {
		margin-top: 13.86vw;
		margin-bottom: 16.53vw;
	}

	.top-live__btn {
		margin-top: 12vw;
	}

	/*------------ VISION ------------*/
	.content-sub-mv {
		height: 40vw;
	}

	.content-sub-mv__inner {
		font-size: 5vw;
		line-height: 1.55;
	}

	.content-sub-mv._vision {
		background-image: url("../images/vision/img_mv_sp.png");
	}

	.content-sub-mv._company {
		background-image: url("../images/company/img_mv_sp.png");
	}

	.content-sub-mv._business {
		background-image: url("../images/business/img_mv_sp.png");
	}

	.content-sub-mv._history {
		background-image: url("../images/history/img_mv_sp.png");
	}

	.content-sub-mv._recruit {
		background-image: url("../images/recruit/img_mv_sp.png");
	}

	.content-sub-mv._news {
		background-image: url("../images/news/img_mv_sp.png");
	}

	.content-sub-mv._product {
		background-image: url("../images/products/img_mv_sp.png");
	}

	.content-sub-mv._app {
		background-image: url("../images/app/img_mv_sp_r.png");
	}

	.content-sub-mv._about {
		background-image: url("../images/about/img_mv_sp.png");
	}

	.breadcrumbs__wrap {
		display: none;
	}

	.content-sub-vision {
		padding-top: 10.26vw;
	}

	.flex-vision {
		flex-direction: column;
	}

	.flex-vision__li {
		width: 100%;
		height: 100vw;
	}

	.flex-vision__li:nth-child(2) {
		margin-left: 0;
		margin-top: 1.33vw;
	}

	.flex-vision__txt1 {
		font-size: 4vw;
	}

	.flex-vision__txt2 {
		font-size: 4vw;
		margin-top: .4em;
	}

	.flex-vision__txt3 {
		font-size: 6.66vw;
		margin-top: 5vw;
	}

	.flex-vision__txt4 {
		font-size: 4vw;
		margin-top: .8em;
	}

	.content-sub-development {
		padding-top: 25vw;
	}

	.content-inner-710 {
		width: 100%;
		padding: 0 5.33vw;
	}

	.ttl-section__wrap {
		margin-bottom: 12.66vw;
	}

	.ttl-section__en {
		font-size: 3.73vw;
		letter-spacing: .1em;
	}

	.ttl-section {
		font-size: 5.86vw;
		letter-spacing: .02em;
	}

	.table-company {
		width: 100%;
		border-top: none;
	}

	.table-company th,
	.table-company td {
		padding-top: 0;
		padding-bottom: 5.33vw;
		font-size: 4vw;
		font-weight: 500;
		letter-spacing: .1em;
		display: block;
	}

	.table-company th {
		padding-top: 5.33vw;
		padding-bottom: 2.66vw;
		padding-left: 0;
		width: 100%;
		padding-right: 0;
		font-size: 4.26vw;
		letter-spacing: .05em;
		border-bottom: none;
	}

	.table-company tr:nth-child(1) th {
		padding-top: 0;
	}

	/*------------ COMPANY ------------*/
	.content-sub-company {
		padding-top: 12.53vw;
	}

	.link-map {
		display: none;
	}

	.content-sub-company .table-company td {
		font-size: 3.46vw;
	}

	/*------------ BUSINESS ------------*/
	.content-sub-mv__inner .font-jp {
		font-size: 5.33vw;
	}

	.content-sub-business__lead {
		padding: 17.6vw 0 14.13vw;
		text-align: left;
		line-height: 1.75;
	}

	.content-sub-business__lead__ttl {
		font-size: 4.26vw;
		margin-bottom: 6vw;
	}

	.content-sub-business__lead__body {
		font-size: 4vw;
	}

	.content-sub-business {
		padding: 13.33vw 0 20vw;
	}

	.flex-business {
		flex-direction: column;
		justify-content: flex-start;
	}

	.flex-business__li {
		width: 100%;
	}

	.flex-business__li:nth-child(n+2) {
		margin-top: 26.66vw;
	}

	.flex-business__ttl {
		font-size: 4.26vw;
		margin-bottom: 11.33vw;
	}

	.flex-business__body {
		font-size: 4vw;
	}

	.flex-business__img {
		margin-top: 13.33vw;
		padding-top: 0;
	}

	.content-sub-business__contact {
		padding-top: 18.66vw;
	}

	.content-sub-business__contact__lead {
		font-size: 4.26vw;
		letter-spacing: .1em;
		white-space: nowrap;
	}

	.content-sub-business__contact__btn {
		margin-top: 10vw;
	}

	.btn__border {
		font-size: 3.73vw;
		padding: 1.1em 1.2em;
	}

	/*------------ HISTORY ------------*/
	.content-sub-hitory {
		padding-top: 11.2vw;
	}

	.list-history__wrap {
		margin-top: 0;
		padding: 0 3.33vw 17.33vw;
	}

	.list-history>li:nth-child(n+2) {
		margin-top: 20vw;
	}

	.list-history__block {
		width: 100%;
		position: static;
		padding: 6vw 4.66vw 7.06vw !important;
		font-size: 4vw;
		font-weight: 400;
		height: auto !important;
	}

	.list-history__year {
		font-size: 5.33vw;
		margin-bottom: 3.33vw;
		line-height: 1;
	}

	.list-history__year {
		position: relative;
	}

	.list-history__year:before {
		display: none;
	}

	.list-history__block._left .list-history__year {
		text-align: left;
	}

	.list-history__block._right .list-history__year {
		text-align: left;
	}

	.list-history__wrap:before {
		height: 100%;
		margin: 0;
		position: absolute;
		left: 50%;
		right: auto;
		transform: translateX(-50%);
		z-index: -1;
	}

	.list-history__wrap:after {
		height: 1.86vw;
		width: 1.86vw;
		border-radius: 50%;
		bottom: -1px;
		left: 50%;
		transform: translateX(-50%);
		background: none;
		background-color: #AEAEB0;
	}

	.list-history__block img._1992-1 {
		width: 27.73vw;
	}

	.list-history__block img._1996-1 {
		width: 41.06vw;
	}

	.list-history__block img._1996-2 {
		width: 39.33vw;
	}

	.list-history__block img._1997-1 {
		width: 52.93vw;
	}

	.list-history__block img._1998-1 {
		width: 26.26vw;
	}

	.list-history__block img._2000-1 {
		width: 34.13vw;
	}

	.list-history__block img._2002-1 {
		width: 39.86vw;
	}

	.list-history__block img._2004-1 {
		width: 43.86vw;
	}

	.list-history__block img._2006-1 {
		width: 39.33vw;
	}

	.list-history__block img._2006-2 {
		width: 39.33vw;
	}

	.list-history__block img._2007-1 {
		width: 32.4vw;
	}

	.list-history__block img._2008-1 {
		width: 36.53vw;
	}

	.list-history__block img._2009-1 {
		width: 33.73vw;
	}

	.list-history__block img._2010-1 {
		width: 39.73vw;
	}

	.list-history__block img._2011-1 {
		width: 31.46vw;
	}

	.list-history__block img._2012-1 {
		width: 86.4vw;
	}

	.list-history__block img._2013-1 {
		width: 85.6vw;
	}

	.list-history__block img._2013-2 {
		width: 9.68vw;
	}

	.list-history__block img._2013-3 {
		width: 9.76vw;
	}

	.list-history__block img._2014-1 {
		width: 23.86vw;
	}

	.list-history__block img._2014-2 {
		width: 23.86vw;
	}

	.list-history__block img._2014-3 {
		width: 24vw;
	}

	.list-history__block img._2015-1 {
		width: 20.8vw;
	}

	.list-history__block img._2015-2 {
		width: 20.8vw;
	}

	.list-history__block img._2015-3 {
		width: 20.8vw;
	}

	.list-history__block img._2015-4 {
		width: 20.8vw;
	}

	.list-history__block img._2016-1 {
		width: 27.6vw;
	}

	.list-history__block img._2017-1 {
		width: 52.4vw;
	}

	.list-history__block img._2018-1 {
		width: 20.66vw;
	}

	.list-history__block img._2019-1 {
		width: 26vw;
	}

	.list-history__block img._2019-2 {
		width: 20.13vw;
	}

	.list-history__block img._2020-1 {
		width: 27.46vw;
	}

	.list-history__block img._2020-2 {
		width: 21.86vw;
	}

	.list-history__block img._2021-1 {
		width: 32.93vw;
	}

	.list-history__block img._2021-2 {
		width: 26.53vw;
	}

	.flex-history-pic {
		margin-top: 4.66vw;
		display: flex;
		align-items: center;
	}

	.flex-history-pic__li:nth-child(n+2) {
		margin-left: 2vw;
	}

	.flex-history {
		display: flex;
		align-items: center;
		padding-left: 0 !important;
	}

	.flex-history+.flex-history {
		margin-top: 1em;
	}

	.list-history__block._space .flex-history+.flex-history {
		margin-top: 1em;
	}

	.flex-history__li:nth-child(1) {
		display: none;
	}

	.flex-history__li:nth-child(2) {
		flex-shrink: 1;
		flex-grow: 1;
		margin-left: 0;
	}

	.list-history__block._right .flex-history__li:nth-child(1) {
		width: 12.06vw;
	}

	.flex-history._wide .flex-history__li:nth-child(1) {
		width: 16.4vw;
	}

	.flex-history._column {
		flex-direction: column;
	}

	.flex-history._column .flex-history__li {
		width: 100% !important;
	}

	.flex-history._column .flex-history__li:nth-child(1) {
		text-align: left;
	}

	.flex-history._column .flex-history__li:nth-child(2) {
		margin-left: 0;
		margin-top: 0;
		padding-left: 0;
	}

	.flex-history._up {
		margin-top: 0;
	}

	.flex-history._up2 {
		margin-top: 0;
	}

	.list-history__period {
		position: static;
		left: auto;
		transform: translateX(0);
		text-align: center;
		font-size: 8vw;
	}

	.list-history__lead {
		padding-left: 0;
	}

	.list-history__lead+.list-history__lead {
		margin-top: 0;
	}

	.list-history__lead+.flex-history {
		margin-top: 0;
	}

	.list-history__year+.list-history__lead {
		margin-top: 0;
	}

	.flex-history__space {
		margin-top: 1em;
	}

	/*------------ NEWS ------------*/
	.flex-tab {
		margin-bottom: 0;
		width: auto;
	}

	.flex-tab__li {
		width: calc((100% - (2.66vw * 3)) / 4);
		margin-left: 2.66vw;
	}

	.flex-tab__li:nth-child(4n+1) {
		margin-left: 0;
	}

	.flex-tab__li:nth-child(n+5) {
		margin-top: 2em;
	}

	.flex-tab__li>a {
		font-size: 3.46vw;
		padding: 0 0 .2em;
		line-height: 1.4em;
		min-height: 3.8em;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.pagenavi-wrap {
		margin-top: 20vw;
	}

	.pagenavi-wrap .wp-pagenavi .current,
	.pagenavi-wrap .wp-pagenavi .page,
	.pagenavi-wrap .wp-pagenavi .extend,
	.pagenavi-wrap .wp-pagenavi .nextpostslink,
	.pagenavi-wrap .wp-pagenavi .previouspostslink,
	.pagenavi-wrap .wp-pagenavi .first,
	.pagenavi-wrap .wp-pagenavi .last {
		width: 5.33vw;
		height: 5.33vw;
		font-size: 4vw;
	}

	.pagenavi-wrap .wp-pagenavi .current,
	.pagenavi-wrap .wp-pagenavi .page {
		margin: 0 0.53vw;
	}

	.pagenavi-wrap .wp-pagenavi .nextpostslink {
		font-size: 0;
		margin-left: 6.53vw;
		background-size: 1.66vw auto;
	}

	.pagenavi-wrap .wp-pagenavi .previouspostslink {
		font-size: 0;
		margin-right: 6.53vw;
		background-size: 1.66vw auto;
	}

	.pagenavi-wrap .wp-pagenavi .first {
		font-size: 0;
		background-size: 3.46vw auto;
	}

	.pagenavi-wrap .wp-pagenavi .last {
		font-size: 0;
		background-size: 3.46vw auto;
	}

	.list-news {
		margin-top: 12.66vw;
		border-top: none;
	}

	.list-news>li:nth-child(1) .flex-news-sub {
		padding-top: 0;
	}

	.flex-news-sub {
		flex-direction: column;
		padding: 10.66 0 10.66;
	}

	.flex-news-sub .flex-news-cat {
		padding-right: 0;
	}

	.flex-news-sub__li:nth-child(1) {
		font-size: 3.2vw;
		letter-spacing: 0;
		margin-right: 0;
		flex-shrink: 1;
		flex-grow: 1;
	}

	.flex-news-sub__li:nth-child(2) {
		margin-top: 4.53vw;
		flex-shrink: 1;
		flex-grow: 1;
	}

	.sub-news__ttl {
		font-size: 4vw;
		font-weight: 500;
		letter-spacing: .05em;
		margin-top: 1em;
	}

	.sub-news__body {
		font-size: 3.73vw;
		letter-spacing: .05em;
		margin-top: 1em;
	}

	/*------------ PRODUCT ------------*/
	.content-sub-product {
		padding-top: 10.93vw;
		padding-bottom: 0;
	}

	.product-block__wide {
		padding: 0 3.12vw 16vw;
		background-color: transparent;
	}

	.flex-product-sub {
		align-items: flex-start;
		flex-direction: column-reverse;
	}

	.flex-product-sub__li:nth-child(1) {
		margin-right: 0;
		padding-top: 8.53vw;
	}

	.flex-product-sub__li:nth-child(2) {
		width: 100%;
	}

	.product-block__pic {
		width: 100vw;
		position: relative;
		left: -3.12vw;
		text-align: center;
	}

	.flex-product-sub__li:nth-child(2) img {
		width: 71.2vw;
		padding: 11.06vw 0;
	}

	.product-block__name1 {
		font-size: 5.86vw;
	}

	.product-block__name2 {
		font-size: 3.73vw;
		margin-top: 2.66vw;
	}

	.product-block__body {
		font-size: 4vw !important;
		font-weight: 400;
	}

	.product-block__body {
		margin-top: 7.33vw !important;
	}

	.product-block__btn {
		margin-top: 6.93vw !important;
		display: flex;
		justify-content: center;
	}

	.product-block__btn .btn-common {
		width: 6.86vw !important;
	}

	.flex-product-index {
		flex-direction: column;
		margin-bottom: -16vw;
	}

	.flex-product-index__li {
		width: 100%;
		margin-top: 0;
		padding: 0 3.12vw 16vw;
		height: auto;
		display: flex;
		flex-direction: column;
		background-color: transparent;
		color: #1E1E1E;
	}

	.flex-product-index__li:nth-child(even) {
		margin-left: 0;
	}

	.flex-product-index .product-block__pic {
		margin-top: 0;
		order: -1;
		width: 100vw;
		height: 67.33vw;
		margin-bottom: 8.53vw;
	}

	.flex-product-index__li:nth-child(1) .product-block__pic {
		background-size: 48.8vw auto;
	}

	.flex-product-index__li:nth-child(2) .product-block__pic {
		background-size: auto 96%;
		background-position: center top;
	}

	.flex-product-index__li:nth-child(3) .product-block__pic {
		background-size: 21.06vw auto;
	}

	.flex-product-index__li:nth-child(4) .product-block__pic {
		background-size: 61.73vw auto;
	}

	.bg-color__black .btn-common.btn-common__white {
		border-color: #1E1E1E;
		color: #1E1E1E;
	}

	.bg-color__black .btn-common.btn-common__white>span:after {
		background: url("../images/common/icon_btn_arrow_b.svg") no-repeat center center;
	}

	.content-sub-product .btn-common {
		font-size: 3.73vw;
		height: 15.32vw;
		border-radius: 7.66vw;
		padding: 0 1em;
	}

	.content-sub-product .btn-common em {
		top: .5vw !important;
	}

	/*------------ APP ------------*/
	.content-sub-app {
		padding-bottom: 11.33vw;
		margin-bottom: 0;
	}

	.flex-app-sub {
		position: relative;
		padding: 58.66vw 0 16vw;
		align-items: flex-start;
		flex-direction: column;
	}

	.flex-app-sub:nth-of-type(even) {
		flex-direction: column;
	}

	.flex-app-sub__li:nth-child(1) {
		width: 100%;
		flex-shrink: 0;
		flex-grow: 0;
		margin-right: 0;
	}

	.flex-app-sub__li:nth-child(1) img {
		width: 100%;
	}

	.flex-app-sub:nth-of-type(even) .flex-app-sub__li:nth-child(1) {
		margin-right: 0;
		margin-left: 0;
	}

	.flex-app-sub__li:nth-child(2) {
		flex-shrink: 1;
		flex-grow: 1;
		margin-top: 7.73vw;
	}

	.flex-app-sub-ttl {
		align-items: center;
		flex-direction: column;
		text-align: center;
		margin-bottom: 0;
		position: absolute;
		top: 16vw;
		width: 100%;
	}

	.flex-app-sub-ttl img {
		width: 23.86vw;
	}

	.flex-app-sub-ttl__li:nth-child(2) {
		font-size: 5.33vw;
		margin-left: 0;
		margin-top: 3.86vw;
	}

	.app-sub__body {
		font-size: 4vw;
	}

	.flex-app-sub-btn {
		justify-content: space-between;
		margin-top: 7.33vw;
	}

	.flex-app-sub-btn img {
		height: 13.33vw;
		width: auto;
	}

	.flex-app-sub-btn__li:nth-child(n+2) {
		margin-left: 3.6vw;
	}

	.app-sub__btn {
		margin-top: 9.33vw;
		display: flex;
		justify-content: center;
	}

	.app-sub__btn .btn-common {
		width: 68.66vw !important;
	}

	/*------------ ABOUT ------------*/
	.logo__mv {
		margin-top: 3vw;
	}

	.logo__mv img {
		width: 29.33vw;
	}

	.content-sub-about {
		padding: 10.66vw 0 0;
	}

	.content-sub-about__mv {
		padding-top: 134.4%;
		background: url("../images/about/img_about00_sp.png") no-repeat center center;
		background-size: cover;
	}

	.content-sub-about__lead {
		text-align: left;
		padding: 22vw 0 20.66vw;
	}

	.content-sub-about__ttl {
		margin-bottom: 9.33vw;
	}

	.content-sub-about__ttl__jp {
		font-size: 5.33vw;
		font-weight: 700;
		letter-spacing: normal;
	}

	.content-sub-about__ttl__en {
		font-size: 4vw;
		font-weight: 300;
		margin-top: 2.66vw;
	}

	.content-sub-about__body {
		font-size: 4vw;
	}

	.content-sub-about__body p {
		display: inline;
	}

	.content-sub-about__body p+p {
		margin-top: 0;
	}

	.content-sub-about__block+.content-sub-about__block {
		margin-top: 26.66vw;
	}

	.content-sub-about__eyecatch>div {
		width: 80.66vw;
	}

	.content-sub-about__eyecatch>div:before {
		padding-top: 79.5%;
	}

	.content-sub-about__eyecatch._pic1>div {
		background-image: url("../images/about/img_about01_sp.jpg");
	}

	.content-sub-about__eyecatch._pic2>div {
		background-image: url("../images/about/img_about02_sp.jpg");
	}

	.content-sub-about__eyecatch._pic3>div {
		background-image: url("../images/about/img_about03_sp.jpg");
	}

	.content-sub-about__eyecatch._pic4>div {
		background-image: url("../images/about/img_about04_sp.jpg");
	}

	.content-sub-about__eyecatch._pic5>div {
		background-image: url("../images/about/img_about05_sp.jpg");
	}

	.content-sub-about__eyecatch._pic6>div {
		background-image: url("../images/about/img_about06_sp.jpg");
	}

	.flex-sub-about {
		margin-top: 18.66vw;
		flex-direction: column !important;
		position: relative;
	}

	.flex-sub-about__li:nth-child(1) {
		flex-grow: 1;
		flex-shrink: 1;
	}

	.flex-sub-about__li:nth-child(2) {
		width: 100%;
		flex-shrink: 1;
		margin-top: 9.33vw;
	}

	.flex-sub-about__li:nth-child(2) p {
		font-size: 4vw;
	}

	.flex-sub-about__li:nth-child(2) p+p {
		margin-top: 0;
	}

	.content-sub-about__block:nth-of-type(odd) .flex-sub-about__li:nth-child(2) {
		margin-left: 0;
	}

	.content-sub-about__block:nth-of-type(even) .flex-sub-about__li:nth-child(1) {
		margin-left: 0;
	}

	.flex-sub-about__ttl1 {
		font-size: 5.33vw;
		font-weight: 700;
		line-height: 1.5;
		letter-spacing: normal;
	}

	.flex-sub-about__ttl2 {
		font-size: 4vw;
		font-weight: 300;
		margin-top: 2vw;
	}

	.flex-sub-about__num {
		margin-top: 0;
		display: flex;
	}

	.flex-sub-about__num .font-mont {
		display: none;
	}

	.flex-sub-about__num__hires {
		padding-top: 0;
		position: absolute;
		left: 9vw;
		top: -37vw;
	}

	.flex-sub-about__num__hires img {
		width: 21.6vw;
	}

	.flex-sub-about__num__li:nth-child(n+2) {
		margin-left: 0;
	}

	.img-bg__circle._circle-about1 {
		top: -21.33vw;
		right: 8vw;
	}

	.img-bg__circle._circle-about2 {
		bottom: -20.66vw;
		left: 2vw;
	}

	.img-bg__circle._circle-about3 {
		bottom: -46vw;
		right: 1.33vw;
	}

	.img-bg__circle._circle-about4 {
		top: 13.33vw;
		left: 1.33vw;
	}

	.img-bg__circle._circle-about5 {
		top: 0;
		left: 2.66vw;
	}

	/*------------ PRODUCT-LIST ------------*/
	.new_products_list2 {
		margin-top: 10.4vw;
	}

	.list-product {
		display: flex;
		flex-wrap: wrap;
		padding: 0 2.4vw;
	}

	.list-product>li {
		width: calc((100% - 9.33vw) / 2);
		margin-left: 9.33vw;
	}

	.list-product>li:nth-child(3n+1) {
		margin-left: 9.33vw;
	}

	.list-product>li:nth-child(2n+1) {
		margin-left: 0;
	}

	.list-product>li:nth-child(n+3) {
		margin-top: 16vw;
	}

	.list-product__tag ._tag {
		height: 4.53vw;
	}

	.list-product__tag ._tag__new {
		width: 12.66vw;
		font-size: 3.2vw;
	}

	.list-product__tag ._tag__finished {
		width: 16vw;
		font-size: 2.13vw;
	}

	.list-product__pic img {
		height: 37.33vw;
		min-height: 0;
	}

	.list-product__ttl {
		margin-top: 5.33vw;
		font-size: 3.46vw;
	}

	.list-product__price {
		margin-top: 2.66vw;
	}

	.list-product__price ._price span {
		font-size: 4.8vw;
	}

	.list-product__price ._price i {
		font-size: 3.2vw;
	}

	.list-product__price ._limited {
		font-size: 2.66vw;
		margin-top: 2.66vw;
	}

	.list-product__price ._pickup {
		margin-top: 1.33vw;
		margin-bottom: -1.33vw;
	}

	.list-product__cat {
		width: 100%;
		min-height: 5.33vw;
		border-radius: 2.66vw;
		font-size: 2.93vw;
		margin-top: 4vw;
	}

	.list-product__body {
		margin-top: 4vw;
		font-size: 2.93vw;
		line-height: 1.5;
	}

	.list-product__tax {
		flex-direction: column;
		padding-top: 4vw;
		margin-top: -.8vw;
	}

	.list-product__tax>li {
		width: 100%;
		border-radius: 2.13vw;
		border: 1px solid #1E1E1E;
		font-size: 2.93vw;
		margin-right: 0;
		margin-top: .8vw;
		min-height: 4.26vw;
		padding: .05em .5em;
	}

	.list-product__tax>li>span {
		top: -.05em;
	}

	.list-product__icon {
		margin-top: -2.66vw;
		padding-top: 4vw;
		margin-right: -2.66vw;
	}

	.list-product__icon>li {
		margin-right: 2.66vw;
		margin-top: 2.66vw;
	}

	.list-product__icon>li img {
		height: 8vw;
		width: auto;
	}

	/*------------ NEWS-DETAIL ------------*/
	.content-sub-mv._news__detail {
		padding: 0;
	}

	.content-sub-news__detail {
		padding-top: 13.33vw;
	}

	.post-news__ttl {
		font-size: 4.26vw;
		margin-top: 6.66vw;
	}

	.post-news__date {
		font-size: 4.26vw;
		margin-top: 4vw;
	}

	.post-news__body {
		margin-top: 4.66vw;
	}

	.post-news__body figure {
		margin: 0;
		padding: 0;
	}

	.post-news__body>*+img,
	.post-news__body>*+figure img,
	.post-news__body>*+a img,
	.post-news__body>*+p img {
		margin-top: 4.66vw;
	}

	.post-news__body p,
	.post-news__body div {
		font-size: 4vw;
	}

	.post-news__body>*+h2 {
		margin-top: 13.33vw;
	}

	.post-news__body h2 {
		font-size: 4vw;
		padding-bottom: 4vw;
		margin-bottom: 9.33vw;
	}

	.post-news__body h2:before {
		width: 18.66vw;
		height: 2px;
	}

	.post-news__body>*+h3 {
		margin-top: 12vw;
	}

	.post-news__body h3 {
		padding: .3em 0 .3em 1em;
		font-size: 4vw;
		margin-bottom: 12vw;
	}

	.post-news__body h3:before {
		width: 2px;
		height: 100%;
	}

	.post-news__body>*+ul,
	.post-news__body>*+ol {
		margin-top: 6.66vw;
		margin-bottom: 6.66vw;
	}

	.post-news__body ul,
	.post-news__body ol {
		font-size: 4vw;
	}

	.post-news__body ul li:before {
		width: 3.2vw;
		height: 3.2vw;
	}

	.post-news__body img+figcaption {
		font-size: 3.33vw;
		margin-top: 4vw;
	}

	.post-news__body * {
		max-width: 100%;
	}

	.post-news__body a[target="_blank"]:after {
		width: 4.13vw;
		height: 2.8vw;
	}

	.post-news__body hr {
		margin: 4.66vw auto;
	}

	.post-news__body table {
		font-size: 2.8vw;
		margin: 20px auto;
	}

	.post-news__btn {
		margin-top: 11.33vw;
	}

	.post-news__btn .btn-common {
		width: 68.66vw;
	}

	/*------------ PRODUCT-DETAIL 	------------*/
	#main_smn {
		display: none;
	}

	#main_product {
		margin-bottom: 14vw;
	}

	.bx-controls {
		display: block;
	}

	#main_product .bx-wrapper .bx-pager,
	#main_product .bx-wrapper .bx-controls-auto {
		bottom: -8vw;
	}

	#main_product .bx-wrapper .bx-pager.bx-default-pager a {
		background: #FFF;
		border: 1px solid #787878;
		width: 1.6vw;
		height: 1.6vw;
		margin: 0 1.86vw;
		-moz-border-radius: 50%;
		-webkit-border-radius: 50%;
		border-radius: 50%;
		opacity: 1 !important;
	}

	#main_product .bx-wrapper .bx-pager.bx-default-pager a.active {
		background: #787878;
	}

	.flex-product-ttl {
		font-size: 3.5vw;
		font-weight: 400;
		margin-bottom: 0;
		padding-bottom: 1vw;
		padding-left: 0;
		border-bottom: 1px solid #d9d9d9;
		position: relative;
	}

	.flex-product-ttl__li:nth-child(2) {
		font-size: 3.5vw;
		margin-left: 1em;
	}

	.flex-product-ttl ._icon {
		width: 4vw;
		height: 4vw;
		position: absolute;
		right: 3.4vw;
		top: -7.4vw;
		transform: rotate(0deg);
		transition: transform .3s;
	}

	.flex-product-ttl.is-active ._icon {
		transform: rotate(180deg);
	}

	.flex-product-ttl.is-active ._icon:after {
		opacity: 0;
	}

	.flex-product-ttl ._icon:before,
	.flex-product-ttl ._icon:after {
		content: "";
		background-color: #1e1e1e;
		position: absolute;
	}

	.flex-product-ttl ._icon:before {
		width: 100%;
		height: 2px;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}

	.flex-product-ttl ._icon:after {
		width: 2px;
		height: 100%;
		left: 50%;
		top: 0;
		transform: translateX(-50%);
		opacity: 1;
		transition: opacity .3s;
	}

	#products_detail_navi {
		height: auto;
		border-radius: 0;
		background: #fff;
		box-shadow: none;
		margin: 0 auto;
		padding-top: 13.2vw;
		width: 100%;
		max-width: none;
	}

	#products_detail_navi,
	#products_detail_navi.fix {
		max-width: 100vw;
		height: auto;
		border-radius: 0;
		margin: 0 auto;
	}

	.list-products-detail-nav {
		position: static;
		transform: none;
		flex-direction: column;
		width: 100%;
	}

	.btn-products-detail-buy {
		display: flex;
		width: 33.33vw;
		height: 8vw;
		border-radius: 4vw;
		background: #1e1e1e;
		color: #FFF;
		text-align: center;
		font-weight: bold;
		box-sizing: border-box !important;
		padding-top: 0;
		padding-left: 0;
		justify-content: center;
		align-items: center;
		position: absolute;
		top: 3.66vw;
		left: 50%;
		transform: translateX(-50%);
	}

	.btn-products-detail-buy:before {
		display: none;
	}

	.btn-products-detail-buy>span>span:nth-child(1) {
		font-size: 4vw;
	}

	.btn-products-detail-buy>span>span:nth-child(2) {
		font-size: 2.26vw;
		margin-left: 1em;
	}

	.products_detail_navi_inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
		border-top: none;
		border-bottom: none;
		padding: 0;
	}

	.list-products-detail-nav {
		padding: 2.66vw 0;
		border-bottom: 1px solid #d9d9d9;
		display: none;
	}

	.list-products-detail-nav>li {
		margin-right: 0;
		width: 100%;
	}

	.list-products-detail-nav>li>a {
		font-size: 3vw;
		font-weight: 400;
		justify-content: space-between;
		padding: 2.93vw 0;
	}

	.list-products-detail-nav>li>a:after {
		width: 3.46vw;
		height: 1.86vw;
		margin-left: 0;
	}

	#products_detail_navi.fix {
		height: auto;
		width: calc(100vw + 2px);
		max-width: none;
		top: 12.66vw;
		padding-left: 1px;
		padding-right: 1px;
	}

	.slide_product a {
		opacity: 1 !important;
	}

	h3.line {
		margin-top: 50px;
		padding-bottom: 0;
		margin-bottom: 50px;
	}

	h3.line span:nth-child(1) {
		/* font-size: 5.86vw; */
		font-size: 3.73vw;
	}

	h3.line span:nth-child(2) {
		font-size: 3.73vw;
	}

	.movie_list.template_a {
		width: 100%;
		margin: 0 auto;
	}

	.movie_list * {
		color: #1E1E1E !important;
	}

	.movie_list.template_a .comment .ttl {
		font-size: 4vw;
		font-weight: 500;
		padding-top: 0;
		padding-bottom: 2vw;
	}

	.movie_list.template_a .comment .ttl:before,
	.movie_list.template_b .comment .ttl:before,
	.movie_list.template_c .comment .ttl:before,
	hr._line,
	.block_product hr {
		display: block;
		width: 100%;
		height: 1px;
		background: #d9d9d9;
		border: none;
	}



	.movie_list .comment .body {
		padding-top: 3vw !important;
		font-size: 3.5vw;
		padding-bottom: 2vw;
		display: block;
	}

	.movie_ttl {
		font-size: 4.0vw;
		display: block;
		font-weight: bold;
	}

	.table_spec.spec1 {
		float: none;
	}

	.table_spec.spec2 {
		float: none;
		margin-top: 15px;
	}

	.table_spec.spec1 th,
	.table_spec.spec1 td {
		width: 33.33%;
	}

	.table_spec.spec2 th,
	.table_spec.spec2 td {
		width: 50%;
	}

	.table_spec {
		width: 100%;
		table-layout: fixed;
	}

	.table_spec.spec1 th,
	.table_spec.spec1 td {
		display: table-cell;
	}

	.product-spec-wrap {
		width: 100%;
		margin: 0 auto;
	}

	.table_spec th,
	.table_spec td {
		background-color: transparent !important;
		font-size: 3.06vw;
		border: 1px solid #d9d9d9;
		color: #1e1e1e !important;
		text-align: center !important;
		padding: .3em;
	}

	.table_spec th {
		font-weight: 500;
	}

	.table_spec td {
		font-size: 2.53vw;
	}

	.anchor {
		display: block;
		margin-top: -34.52vw;
		padding-top: 34.52vw;
		z-index: -1;
		pointer-events: none;
	}

	.option-wrap {
		display: flex;
		justify-content: center;
	}

	.option-wrap p.option {
		text-align: left;
		font-size: 4vw;
		font-weight: 400;
	}

	.list_btn_support {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		flex-direction: column;
	}

	.list_btn_support li {
		display: block;
		margin: 0;
	}

	.list_btn_support li:nth-child(n+2) {
		margin-top: 4.66vw;
	}

	.list_btn_support li a {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 68.66vw;
		height: 15.33vw;
		border: 1px solid #1e1e1e;
		border-radius: 7.66vw;
		line-height: 1;
		text-align: center;
		color: #1e1e1e;
		background: none !important;
		text-decoration: none;
		font-size: 3.73vw;
		font-weight: 500;
		position: relative;
	}

	.list_btn_support li a:before {
		width: 1.33vw;
		height: 2.66vw;
		right: 12.66vw;
	}

	.list_btn_support li a:hover {
		background: none;
	}

	.list_tws_support2 li a {
		margin-top: 11.33vw;
	}

	.list_tws_support2 li img {
		margin: 0;
	}

	.slide_product {
		position: relative;
	}

	.flex-features {
		flex-direction: column !important;
		align-items: flex-start !important;
	}

	.flex-features:nth-of-type(n+2) {
		margin-top: 15.33vw;
	}

	.flex-features__ttl__wrap {
		padding-bottom: 3.33vw;
		margin-bottom: 10vw;
	}

	.flex-features__ttl__wrap:before {
		width: 16vw;
	}

	.flex-features__ttl {
		font-size: 4.53vw;
		font-weight: 500;
	}

	.flex-features__ttl.font-mont {
		font-weight: 600;
	}

	.flex-features__subttl {
		font-size: 4vw;
		margin-top: 2.66vw;
		line-height: 1.33;
	}

	.flex-features__body {
		font-size: 4vw;
	}

	.flex-features .flex-features__li:nth-child(2),
	.flex-features .flex-features__li:nth-child(2) {
		width: 101vw !important;
		position: relative;
		left: -5.6vw;
		margin-top: 6vw !important;
	}

	.flex-features._h1 .flex-features__li:nth-child(2) {
		margin-left: 0;
	}

	.flex-features._h2 .flex-features__li:nth-child(2) {
		margin-right: 0;
	}

	.flex-features .flex-features__li:nth-child(2) {
		display: flex;
		justify-content: space-between;
	}

	.flex-features__img {
		display: flex;
		flex-direction: column-reverse;
		align-items: center;
		text-align: center;
	}

	.flex-features__img:nth-of-type(2) {
		margin-left: 2vw;
		padding-right: 5.33vw;
	}

	.flex-features__img:nth-last-of-type(2) {
		padding-left: 5.33vw;
	}

	.flex-features__caption {
		font-size: 3vw;
		margin-top: 0;
		margin-bottom: .5em;
	}

	.block_product {
		padding-bottom: 13.33vw;
	}



	.block_product td,
	th {
		padding: 10px 0;
		width: 30px;
		font-size: 2.5vw;
	}

	.block_product th {
		width: 6.5vw;
		padding: 20px 0px 20px 0;
	}


	.table__comparison tr {
		border-bottom: 1px solid #d9d9d9;
	}


	.table__comparison a p {
		font-size: 3.3vw;
		text-align: center;
		margin: 0px 0 5px 0;
	}

	.table__comparison td,
	th {
		padding: 15px 10px;
		width: 30px;
		font-size: .8rem;
	}

	.table__comparison th {
		width: 6.5vw;
		padding: 20px 5px;
	}

	.table__comparison_fix table,
	.table__comparison_fix td,
	.table__comparison_fix th {
		width: 100%;
		margin: auto;
		min-width: initial;
	}

	.table__comparison_fix tr {
		border-bottom: 1px solid #d9d9d9;
	}


	.table__comparison_fix a p {
		font-size: 3.3vw;
		text-align: center;
		margin: 0px 0 5px 0;
	}

	.table__comparison_fix td,
	th {
		padding: 15px 10px;
		width: 30px;
		font-size: 2.5vw;
	}

	.table__comparison_fix th {
		width: 6.5vw;
		padding: 20px 5px;
	}


	.btn-features__wrap {
		margin-top: 24vw;
	}


	.btn-features__inner {
		width: 100%;
		position: relative;
		left: auto;
		transform: none;
		padding: 13.33vw 0 0;
	}

	.list-btn-features {
		width: 100%;
		flex-direction: column;
	}

	.list-btn-features a {
		color: #1e1e1e;
	}

	.list-btn-features>li {
		width: 100%;
	}

	.list-btn-features>li:nth-child(n+2) {
		margin-left: 0;
		margin-top: 6vw;
	}

	.btn-features,
	.btn-features__pdf {
		min-height: 12.66vw;
		border-radius: 6.33vw / 50%;
		font-size: 3.26vw;
		text-align: center;
		line-height: 1.4;
		padding: 0.3em 1em;
		margin: 0 10vw;

	}

	.btn-features>span {
		position: relative;
		top: -.05em;
	}

	.btn-features>span:after {
		width: 1.33vw;
		height: 2.66vw;
		margin-left: 2.92vw;
		top: -1px;
	}

	.btn-features[target="_blank"]>span:after {
		width: 4.8vw;
		height: 3.46vw;
		margin-left: 2.92vw;
		top: 1px;
	}

	.btn-features__pdf>span:after {
		width: 12vw;
		height: 3.92vw;
		margin-left: 2.92vw;
		top: 0px;
	}

	#contents .content-inner-1010 {
		box-sizing: content-box;
	}

	.products-item {
		padding: 0;
	}

	.flex-products-item {
		margin-top: 30px;
		align-items: flex-start;
		flex-direction: column;
	}

	.flex-products-item__li {
		width: 100%;
	}

	.flex-products-item__li:nth-child(1) {
		display: flex;
		justify-content: center;
	}

	.flex-products-item__li:nth-child(1) img {
		width: 74.66vw;
	}

	.flex-products-item__li:nth-child(2) {
		margin-left: 0;
		margin-top: 0;
	}

	.products-item__cat {
		font-size: 3.73vw;
	}

	.products-item__video.sp {
		width: 80%;
		margin: 20px auto;
	}

	.products-item__series {
		font-size: 3.73vw;
		margin-top: 2vw;
	}

	.products-item__ttl {
		font-size: 6.66vw;
		margin: .4vw auto;
	}

	.products-item__img.sp {
		width: 60vw;
		margin: auto;
	}

	.list-item-color {
		margin-top: 3.33vw;
		justify-content: center;
	}

	.list-item-color>li:nth-child(n+2) {
		margin-left: 3vw;
	}

	.list-item-color ._circle {
		width: 1.5em;
		height: 1.5em;
		border-radius: 50%;
		border: .1px solid #b1b1b1;
	}

	.list-item-color.list-item-color-center {
		margin-top: .4vw;
		justify-content: center;
	}

	.item_slide_inner {
		max-width: inherit;
		width: 100%;
		padding: 10px 40px 20px 40px;
	}

	a.color_btn::after {
		width: 2em;
		height: 2em;
	}

	.products-item__body {
		font-size: 4vw;
		font-weight: 400;
		margin-top: 3.33vw;
	}

	.products-item__body ul {
		font-size: 3.46vw;
		font-weight: 400;
		margin-top: 3.33vw;
	}

	.products-item__body ul>li {
		padding-left: 1.5em;
		position: relative;
	}

	.products-item__body ul>li:nth-child(n+2) {
		margin-top: .4em;
	}

	.products-item__body ul>li:before {
		content: "";
		background: url("../images/products/icon_check.svg") no-repeat center center;
		width: 1em;
		height: 1em;
		position: absolute;
		left: 0;
		top: .3em;
	}

	.flex-products-price {
		margin-top: 3.33vw;
		display: flex;
		align-items: flex-end;
		white-space: nowrap;
	}

	.products-item__btn__fa {
		margin-top: 3.33vw;

	}

	.flex-products-price__li:nth-child(2) {
		margin-left: 3.33vw;
		color: #b52523;
	}

	.flex-products-price ._line {
		position: relative;
	}

	.flex-products-price ._line>span {
		font-size: 5.06vw !important;
	}

	.flex-products-price ._line>i {
		font-size: 3.2vw !important;
	}

	.flex-products-price ._line:before {
		content: "";
		width: 100%;
		height: 1px;
		background-color: #1e1e1e;
		position: absolute;
		left: 0;
		top: 50%;
	}

	.flex-products-price ._price>span {
		font-size: 6.66vw;
		font-weight: 700;
	}

	.flex-products-price ._price>i {
		font-size: 3.8vw;
		font-style: normal;
	}

	.flex-products-price ._limited {
		font-size: 3.46vw;
		margin-bottom: -.2em;
	}

	.flex-products-item .btn-common__shop {
		border: 1px solid #1E1E1E;
		font-size: 3.4vw;
		width: 100%;
		max-width: none;
		height: 12.66vw;
		border-radius: 6.33vw;
		letter-spacing: .15em;
		margin-top: 4vw;
	}

	.flex-products-item .btn-common__shop .ttl {
		margin-left: 5px;
	}

	.products-item__shop .btn-common__shop {
		margin-top: 6vw;
	}

	.flex-products-item .btn-common__shop .icon img {
		width: 8.26vw;
	}

	.products-item__point {
		font-size: 4.26vw;
		font-weight: 500;
		color: #e60012;
		margin-top: 3vw;
	}

	.products-item__btn {
		margin-top: 5vw;
	}

	.products-item .btn-common__shop .ttl:after {
		width: 4.13vw;
		height: 2.8vw;
		margin-left: 3.2vw;
	}

	.products-item__btn__lead {
		/* font-size: 4vw; */
		font-size: 3.46vw;
	}

	.products-item__award ul {
		margin-top: 3.33vw;
	}

	.products-item__award__flex img {
		height: 20vw;
	}



	.products_modal.fix {
		display: flex;
		justify-content: center;
		align-items: center;
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background: transparent;
		z-index: 1000;
		overflow: auto;
		padding: 2.4vw;
		opacity: 0;
		pointer-events: none;
		transition: opacity .3s;
	}

	.products_modal.fix.is-active {
		opacity: 1;
		pointer-events: auto;
	}

	.products_modal__bg {
		position: fixed;
		z-index: -1;
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
		background-color: rgba(0, 0, 0, .8);
	}

	.products_modal .products-item {
		background-color: #FFF;
		border-radius: 4vw;
		width: 100%;
		max-width: none;
		position: relative;
		z-index: 1;
	}

	.products_modal_close {
		top: 2.53vw;
		right: 2.53vw;
	}

	.products_modal_close img {
		width: 9.73vw;
	}

	.products_modal .flex-products-item__li:nth-child(1) img {
		width: 53.33vw;
	}

	.products_modal .products-item {
		padding: 0;
	}

	.products_modal .products-item .content-inner-1010 {
		overflow: auto;
		max-height: 85vh;
		max-height: 94dvh;
		max-height: calc(var(--vh, 1vh) * 94);
		padding: 2.66vw 5.33vw 8vw;
	}

	.products_modal .products-item__btn {
		margin-top: 4.66vw;
	}

	.products_contents.fix {
		padding-top: 0;
		display: none;
	}

	.list-item-btn__sp {
		display: flex;
		justify-content: space-between;
		margin: 2vw -2vw 0;
	}

	.btn-modal {
		height: 8vw;
		display: flex;
		justify-content: center;
		align-items: center;
		color: #FFF;
		font-size: 2.93vw;
		font-weight: 500;
		border-radius: 4vw;
		padding: .1em 1em;
		white-space: nowrap;
	}

	.btn-modal:after {
		content: "";
		background: url("../images/common/icon_blank_w.svg") no-repeat center center;
		width: 4.13vw;
		height: 2.8vw;
		background-size: contain;
		margin-left: 1.5vw;
		display: inline-block;
		position: relative;
		top: 1px;
	}

	.btn-modal._b {
		background-color: #4e76ad;
	}

	.btn-modal._r {
		background-color: #a10000;
	}

	.btn-modal._y {
		background-color: #e79c2b;
	}

	#lp_body {
		padding-bottom: 40px;
	}

	#lp_body .btm_image.child16 {
		padding-bottom: 0;
	}
}

@media (min-width:1121px) {

	header .sp__wide,
	footer .sp__wide {
		display: none !important;
	}

	.js-megamenu__shop:hover .nav__btn__shop {
		background-color: #FFF;
		color: #1E1E1E !important;
	}

	.nav__btn__shop:hover {
		text-decoration: none !important;
	}

	.js-megamenu__shop:hover .nav__btn__shop:before {
		background: url("../images/common/icon_cart_w.svg") no-repeat center center;
	}
}


@media (max-width:760px) {

	html.is-nav,
	html.is-nav body {
		overflow: hidden;
	}

	header .pc__wide,
	footer .pc__wide {
		display: none !important;
	}

	#wrapper {
		padding-top: 48px;
	}

	/*------------ HEADER ------------*/
	/* #btn_menu{
    position:fixed;
    right:7.2vw;
    top:3.73vw;
    width: 6.66vw;
    height:5.33vw;
    display:block;
    z-index:2000;
  }
  #btn_menu span {
    display: block;
    background: #1E1E1E;
    width: 100%;
    height: .26vw;
    position: absolute;
    left: 0;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
  }
  #btn_menu span:first-child {
    top: 0;
  }
  #btn_menu span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  #btn_menu span:last-child {
    bottom: 0;
  }
  #btn_menu.is-active span:first-child {
    -webkit-transform: translateY(15px) rotate(45deg);
    -moz-transform: translateY(15px) rotate(45deg);
    -ms-transform: translateY(15px) rotate(45deg);
    transform: translateY(15px) rotate(45deg);
  }
  #btn_menu.is-active span:nth-child(2) {
    opacity: 0;
  }
  #btn_menu.is-active span:last-child {
    -webkit-transform: translateY(-15px) rotate(-45deg);
    -moz-transform: translateY(-15px) rotate(-45deg);
    -ms-transform: translateY(-15px) rotate(-45deg);
    transform: translateY(-2.5vw) rotate(-45deg);
  } */

	#btn_menu {
		display: block;
		position: fixed;
		top: 10px;
		right: 20px;
		width: 30px;
		height: 30px;
		transition: all .5s;
		cursor: pointer;
		z-index: 9999;
		opacity: 0.9;
	}

	#btn_menu span {
		display: block;
		position: absolute;
		left: 0;
		width: 30px;
		height: 2px;
		background-color: #474747;
		border-radius: 4px;
		transition: all .5s;
	}

	.toggle_scroll span {
		background-color: #f2f2f2;

	}

	#btn_menu span:nth-child(1) {
		top: 4px;
	}

	#btn_menu span:nth-child(2) {
		top: 14px;
	}

	#btn_menu span:nth-child(3) {
		bottom: 4px;
	}

	@media screen and (min-width: 700px) {
		.toggle_btn:hover span:nth-child(2) {
			width: 20px;
		}
	}

	#btn_menu.is-active span {
		background-color: #9d9d9d;
	}

	#btn_menu.is-active span:nth-child(1) {
		-webkit-transform: translateY(10px) rotate(-315deg);
		transform: translateY(10px) rotate(-315deg);
	}

	#btn_menu.is-active span:nth-child(2) {
		opacity: 0;
	}

	#btn_menu.is-active span:nth-child(3) {
		-webkit-transform: translateY(-10px) rotate(315deg);
		transform: translateY(-10px) rotate(315deg);
	}


	header {}

	.flex-header {
		justify-content: center;
		/* height: 12.66vw; */
		padding: 0;
		height: 48px;
	}

	.flex-header__li:nth-child(1) {}

	.flex-header__li:nth-child(1) img {
		width: 100%;
		height: 30px;
	}

	.flex-header__li:nth-child(2) {
		max-width: none;
		flex-grow: 1;
		margin-left: 0;
		position: fixed;
		top: 2.6vw;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: #FFF;
		padding-left: 10.66vw;
		overflow: auto;
		transform: translateX(100%);
	}

	body.w-sp .flex-header__li:nth-child(2) {
		transition: transform .3s;
	}

	.flex-header__li:nth-child(1).is-active~.flex-header__li:nth-child(2) {
		transform: translateX(0%);
	}

	.list-nav {
		padding-top: 10vw;
		padding-bottom: 10vw;
		display: flex;
		align-items: stretch;
		justify-content: flex-start;
		flex-direction: column;
	}

	.list-nav a {
		color: inherit;
		text-decoration: none;
		display: block;
		position: relative;
	}

	.list-nav>li {
		border-bottom: 1px solid #1E1E1E;
	}

	.list-nav>li.nav__btn__shop__wrap,
	.list-nav>li.nav__search__wrap {
		border-bottom: none;
		padding-right: 10.66vw;
	}

	.list-nav>li:nth-child(n+2) {
		margin-left: 0;
	}

	.list-nav>li:last-child {
		margin-left: 0;
		flex-shrink: 0;
	}

	.list-nav>li:last-child.is-active {
		margin-left: 0;
	}

	.list-nav>li:nth-child(1) .nav__head {
		border-top: 1px solid #1E1E1E;
	}

	.nav__head {
		font-size: 3.2vw;
		font-weight: 400;
		letter-spacing: .1em;
		padding: 5.33vw .8vw;
		display: block;
	}

	.nav__search {
		height: 8vw;
		border-radius: 4vw;
		border: 1px solid transparent;
		padding: 0 3vw;
		justify-content: center;
		margin-right: 0;
	}

	.nav__search.is-active {
		padding-right: 5vw;
	}

	.nav__search .icon img {
		width: 4.93vw;
	}

	.nav__search .ttl {
		font-size: 3.2vw;
		font-weight: 500;
		letter-spacing: .15em;
		margin-left: 1vw;
		position: relative;
		top: -.05em;
	}

	.nav__search input[type="text"] {
		height: 6vw;
	}

	.nav__search.is-active input[type="text"] {
		width: 50vw;
		margin-right: 1vw;
		font-size: 16px;
	}

	.nav__search__close {
		right: 3.5vw;
		width: 2.66vw;
	}

	.nav__search__close img {
		width: 2.66vw;
	}

	.nav__search__wrap {
		padding-right: 3.6vw;
		margin-top: 12.53vw;
	}


	.nav__btn__shop__wrap {
		padding-right: 3.6vw;
		margin-top: 9.06vw;
	}

	.nav__btn__shop {
		height: 8vw;
		border-radius: 4vw;
		width: 100%;
		font-size: 3.46vw;
		justify-content: flex-start;
		padding: 0 6.66vw;
		display: flex !important;
		transition: all .3s;
	}

	.nav__btn__shop.is-active {
		background-color: #FFF;
		border-color: #FFF;
		color: #1E1E1E !important;
	}

	.nav__btn__shop.js-nav-accordion .icon-nav-arrow {
		top: 1.6vw;
	}

	.nav__btn__shop.js-nav-accordion .icon-nav-arrow:before,
	.nav__btn__shop.js-nav-accordion .icon-nav-arrow:after {
		background-color: #FFF;
		transition: background-color .3s;
	}

	.nav__btn__shop.js-nav-accordion.is-active .icon-nav-arrow:before,
	.nav__btn__shop.js-nav-accordion.is-active .icon-nav-arrow:after {
		background-color: #1E1E1E;
	}

	.nav__btn__shop:before {
		width: 4.4vw;
		height: 4.26vw;
		margin-right: 2vw;
		position: relative;
		top: -1px;
	}

	.nav__btn__shop.is-active:before {
		background-image: url("../images/common/icon_cart_w.svg");
	}

	.nav__megamenu:before {
		display: none;
	}

	.js-megamenu:hover .nav__head:before,
	.js-megamenu:hover .nav__head:after {
		display: none;
	}

	.megamenu {
		position: static;
	}

	.flex-megamenu-product {
		display: flex;
		justify-content: flex-start;
		flex-direction: column;
		top: auto;
		left: auto;
		transform: translateX(0);
		width: 100%;
		max-width: none;
		padding: 0 0 5.33vw 5.73vw;
	}

	.flex-megamenu-product__li:nth-child(n+2) {
		margin-left: 0;
		margin-top: 5.33vw;
	}

	.megamenu-product__head {
		font-size: 3.2vw;
		font-weight: 400;
		letter-spacing: .1em;
		white-space: nowrap;
	}

	.list-megamenu-product {
		margin-top: 20px;
		font-size: 14px;
		font-weight: 400;
		letter-spacing: .1em;
		padding-left: 9.33vw;
	}

	.list-megamenu-product>li:nth-child(n+2) {
		margin-top: 5.33vw;
	}

	.flex-megamenu-app {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		flex-direction: column;
		top: auto;
		left: auto;
		transform: translateX(0);
		width: 100%;
		max-width: none;
		padding: 0 0 8vw 4.13vw;
	}

	.flex-megamenu-app__li {
		width: 100%;
	}

	.flex-megamenu-app__li:nth-child(n+2) {
		margin-top: 8.4vw;
	}

	.flex-megamenu-app__li:nth-child(1) {
		width: 100%;
		padding-top: 0;
	}

	.flex-megamenu-app__li:nth-child(3n+5) {
		margin-left: 0;
	}

	.megamenu-app__item {
		display: flex !important;
		align-items: center;
	}

	.megamenu-app__item .icon {
		flex-shrink: 0;
		flex-grow: 0;
		width: 6.66vw;
	}

	.megamenu-app__item .info {
		margin-left: 4.4vw;
		display: flex;
		flex-direction: column;
		font-size: 3.2vw;
		font-weight: 400;
		letter-spacing: .1em;
		padding-right: 0;
	}

	.megamenu-app__item[target="_blank"] .ttl:after {
		width: 13vw;
		height: 2.8vw;
	}

	.megamenu__list {
		position: static;
		top: auto;
		font-size: 3.2vw;
		font-weight: 400;
		letter-spacing: .1em;
		padding-left: 5.73vw;
		padding-bottom: 4.8vw;
	}

	.megamenu__list a:hover {
		text-decoration: underline;
	}

	.megamenu__list li:nth-child(n+2) {
		margin-top: 30px;
	}

	.flex-megamenu-shop {
		display: flex;
		justify-content: flex-start;
		flex-direction: column;
		flex-wrap: wrap;
		top: auto;
		left: auto;
		transform: translateX(0);
		width: 100%;
		max-width: none;
		padding: 0;
	}

	.flex-megamenu-shop__li {
		flex-grow: 1;
		width: 100%;
	}

	.flex-megamenu-shop__li:nth-child(even) {
		margin-left: 0;
	}

	.flex-megamenu-shop__li:nth-child(n+1) {
		margin-top: 8vw;
	}

	.flex-megamenu-shop .btn-common__shop {
		border: 1px solid #1E1E1E;
		width: 100%;
		display: flex;
	}

	.js-megamenu__shop {
		position: relative;
	}

	.js-megamenu__shop:hover:before {
		display: none;
	}

	.nav__megamenu {
		opacity: 1;
		pointer-events: auto;
		transition: opacity .3s;
	}

	.js-megamenu:hover .nav__megamenu,
	.js-megamenu__shop:hover .nav__megamenu {
		opacity: 1;
		pointer-events: auto;
	}

	.icon-nav-arrow {
		position: absolute;
		right: 5.86vw;
		top: .3vw;
		width: 4vw;
		height: 4vw;
		background: url("../images/common/icon_btn_arrow_b.svg") no-repeat center center;
		background-size: 1.46vw auto;
	}

	.nav__head .icon-nav-arrow {
		top: 5.5vw;
	}

	.js-nav-accordion .icon-nav-arrow {
		background: none;
		transform: rotate(0deg);
		transition: transform .3s;
	}

	.js-nav-accordion.is-active .icon-nav-arrow {
		transform: rotate(180deg);
	}

	.js-nav-accordion .icon-nav-arrow:before,
	.js-nav-accordion .icon-nav-arrow:after {
		content: "";
		background-color: #1E1E1E;
		position: absolute;
	}

	.js-nav-accordion .icon-nav-arrow:before {
		width: 100%;
		height: 1px;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
	}

	.js-nav-accordion .icon-nav-arrow:after {
		width: 1px;
		height: 100%;
		left: 50%;
		top: 0;
		transform: translateX(-50%);
		opacity: 1;
		transition: opacity .3s;
	}

	.js-nav-accordion.is-active .icon-nav-arrow:after {
		opacity: 0;
	}

	.js-nav-accordion__target {
		display: none;
	}


	/*------------ FOOTER ------------*/

	.btn-pagetop {
		top: -20vw;
		right: 3.33vw;
	}

	.btn-pagetop img {
		width: 3.2vw;
	}

	footer {
		padding: 9.33vw 0 10.66vw !important;
		margin-top: 71.73vw;
	}

	.flex-footer__li {
		width: 100%;
	}

	.logo-footer {
		display: flex;
		justify-content: center;
	}

	.logo-footer img {
		width: 18.13vw;
	}

	.img-footer-neby {
		display: none;
	}

	.flex-footer-sns {
		justify-content: center;
		margin-top: 10.93vw;
	}

	.flex-footer-sns img {
		height: 6.26vw;
		width: auto;
	}

	.flex-footer-sns__li:nth-child(n+2) {
		margin-left: 10.66vw;
	}

	.flex-footer {
		justify-content: flex-start;
		flex-direction: column;
	}

	.flex-footer__li:nth-child(1) {
		margin-right: 0;
		flex-shrink: 0;
		flex-grow: 0;
	}

	.flex-footer__li:nth-child(2) {
		flex-grow: 1;
		flex-shrink: 1;
		margin-top: 12.66vw;
	}

	.flex-footer-nav {
		justify-content: flex-start;
		flex-direction: column;
		font-weight: 400;
		border-bottom: 1px solid #FFF;
	}

	.flex-footer-nav__li:nth-child(n+2) {
		margin-left: 0;
	}

	.footer-nav__head {
		font-size: 4.26vw;
		padding: 4vw 0 4vw 3.33vw;
		position: relative;
		display: block;
	}

	.footer-nav__wrap {
		margin-top: 0;
	}

	.list-footer-nav__sub {
		font-size: 3.2vw;
		font-weight: 400;
		letter-spacing: .1em;
		padding: 0 0 5.33vw 9vw;
	}

	.list-footer-nav__sub a {
		display: block;
		position: relative;
	}

	.list-footer-nav__sub>li:nth-child(n+2) {
		margin-top: 5.33vw;
	}

	.list-footer-nav {
		/*border-top: 1px solid #FFF;*/
	}

	.list-footer-nav>li {
		border-top: 1px solid #FFF;
	}

	.list-footer-nav>li:nth-child(n+2) {
		margin-top: 0;
	}

	.list-footer-nav__app {
		margin-top: 0;
		padding: 0 0 5.33vw 9vw;
	}

	.list-footer-nav__app>li:nth-child(n+2) {
		margin-top: 5.33vw;
	}

	.flex-footer-nav-app {
		display: flex;
		font-size: 3.2vw;
		font-weight: 400;
		letter-spacing: .1em;
		align-items: center;
	}

	.flex-footer-nav-app__li:nth-child(1) {
		width: 6.66vw;
		margin-right: 4..4vw;
	}

	.flex-footer-nav-app__li:nth-child(2) {
		padding-top: 0;
	}

	.flex-footer-nav-app__li:nth-child(2)>ul>li:nth-child(n+2) {
		margin-top: 1em;
	}

	.flex-footer-nav-app__li:nth-child(2) a[target="_blank"]:after {
		width: 4.13vw;
		height: 2.8vw;
	}

	.flex-footer-policy {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		font-size: 4.26vw;
		font-weight: 400;
		letter-spacing: .1em;
		margin-top: 11.73vw;
	}

	.flex-footer-policy a {
		display: flex;
		justify-content: center;
		align-items: center;
		border: 1px solid #FFF;
		height: 15.33vw;
		width: 76vw;
		border-radius: 7.66vw;
	}

	.flex-footer-policy a:after {
		content: "";
		width: 1.46vw;
		height: 3.46vw;
		background: url("../images/common/icon_btn_arrow.svg") no-repeat center center;
		background-size: 1.46vw auto;
		margin-left: 3.33vw;
		position: relative;
		top: 1px;
	}

	.flex-footer-policy small {
		font-size: 3vw;
		white-space: nowrap;
	}

	.flex-footer-policy__li:nth-child(n+2) {
		margin-left: 0;
	}

	.flex-footer-policy__li:nth-child(2) {
		margin-top: 8.93vw
	}

	.flex-footer-policy__li:nth-child(3) {
		margin-top: 12.8vw
	}

	.btn-footer-shop {
		position: absolute;
		left: 20px;
		top: 366px;
	}



	.btn-common__shop {
		width: 100%;
		height: 8.53vw;
		border-radius: 4.26vw;
		padding: 0 2.66vw;
		font-size: 3.06vw;
	}

	.btn-common__shop:hover {
		text-decoration: none;
	}

	.btn-common__shop .icon {
		margin-right: 1.73vw;
	}

	.btn-common__shop .icon img {
		width: 5.6vw;
	}

	.btn-common__shop .ttl:after {
		width: 4.13vw;
		height: 2.8vw;
		margin-left: 3.2vw;
	}

	footer .icon-nav-arrow {
		background: url("../images/common/icon_btn_arrow.svg") no-repeat center center;
	}

	.footer-nav__head .icon-nav-arrow {
		top: 5.2vw;
	}

	footer .js-nav-accordion .icon-nav-arrow:before,
	footer .js-nav-accordion .icon-nav-arrow:after {
		background-color: #FFF;
	}

	footer .flex-megamenu-shop__li:nth-child(1) {
		margin-top: 0;
	}

	footer .flex-megamenu-shop {
		padding-bottom: 5.33vw;
	}
}


.content_error {
	text-align: center;
}

/*-------- 404 --------*/
p.content_error_b {
	font-size: 20px;
	margin-top: 50px;
	font-weight: bold;
}

p.content_error_p {
	font-size: 15px;
	line-height: 1.75;
}

a.content_error_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 302px;
	height: 36px;
	border: 1px solid #1e1e1e;
	border-radius: 18px;
	line-height: 1;
	text-align: center;
	color: #1e1e1e;
	background: none;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	margin: 50px auto;
}

@media screen and (max-width: 760px) {
	p.content_error_b {
		font-size: 18px;
		line-height: 1.4;
	}

	p.content_error_p {
		font-size: 14px;
		text-align: left;
	}

	a.content_error_btn {
		font-size: 12px;
	}
}

/*-------- products page modify 20220127 radius --------*/

.block_product h3 {
	margin: 60px 0 20px 0;
	font-size: 24px;
	line-height: 1.7;
	font-weight: bold;
}

.block_product h3:first-child {
	margin: 0 0 20px 0;
}

.block_product h4 {
	margin: 60px 0 20px 0;
	font-size: 24px;
	line-height: 1.7;
	font-weight: bold;
}

.block_product h4:first-child {
	margin: 0 0 20px 0;
}

.block_product h5 {
	font-size: 1.3em;
	background: transparent;
	/* border-left: solid 5px #666; */
}

.block_product h6 {
	margin: 30px 0 20px 0;
	padding: 0.25em 0.5em;
	font-size: 1.2em;
	background: transparent;
}

.block_product p {
	line-height: 1.75;
}

.block_product img {
	margin: 20px 0 0px 0
}

.block_product video {
	width: 100%;
	margin: 0;
	vertical-align: bottom;
}

.pic img:empty {
	margin: 0 0 0px 0 !important;
}

li.option {
	position: relative;
	padding-left: 15px;
	list-style-type: none;
	font-size: 14px;
	margin-bottom: 5px;

}

li.option:before {
	content: "";
	position: absolute;
	top: .4em;
	left: 0;
	width: 10px;
	height: 10px;
	background: #1e1e1e;
	border-radius: 50%;
}

/* .pic{
  display: none;
} */


#dl_btn,
#link_btn {
	font-size: 15px;
	font-weight: 500;
	margin: 5px 0;
	color: #474747;
	padding: 0.4em 1em;
	border: 1px solid #1e1e1e;
	border-radius: 25px;
	transition: all 0.3s 0s ease;
	line-height: 3.5;
}

#link_btn:hover,
#dl_btn:hover {
	background: #ddd;
}


#link_btn:after {
	content: "";
	background: url(../images/common/icon_blank.svg) no-repeat center center;
	width: 18px;
	height: 13px;
	background-size: contain;
	margin-left: 11px;
	display: inline-block;
	position: relative;
	top: 1px;
}

#dl_btn:after {
	content: "";
	width: 45px;
	height: 14px;
	background: url(../images/products/icon_pdf.svg) no-repeat center center;
	background-size: contain;
	margin-left: 11px;
	display: inline-block;
	position: relative;
	top: 0px;
}

.product_news {
	font-size: 15px;
}

.product_news h3 {
	word-break: keep-all;
	line-break: strict;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.news-wrap li {
	font-size: 15px;
	line-height: 2.0;
	width: 100%;
	margin: 0 0 5px 0;
}

.news-wrap li:last-child {
	margin: 0 0 0 0;
}

.news-wrap li h4 {
	font-size: 20px;
	line-height: 1.7;
	font-weight: bold;
}

.news-wrap {
	margin-top: 30px;
}

.news_banner {
	text-align: center;
	width: 100%;
	display: block;
	position: relative;
	height: 50px;
	background: #fafafa;
}

.news_banner a {}

.news_banner p {
	color: #333;
	font-size: 13px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

/* Product News Wrap */
.product_news_wrap {
	max-width: 860px;
	margin: 0 auto;
	padding: -1px 0;
}

/* タイトル */
.product_news_wrap h3 {
	position: relative;
	margin-bottom: 1.8rem;
	font-weight: 700;
	font-size: clamp(20px, 2.2vw, 24px);
	line-height: 1.4;
}

.product_news_wrap h3 span {
	display: block;
}

.product_news_wrap h3 .font-mont {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 0.9em;
	color: #666;
	margin-top: 0.2rem;
}

/* アンカー補正 */
.anchor {
	scroll-margin-top: 80px;
}

/* 本文 */
.product_news_wrap article {
	background: #fff;
	border-radius: 12px;
	padding: 30px;
	line-height: 1.85;
	color: #111;
	font-feature-settings: "palt";
	margin-bottom: 30px;
}

/* 段落・見出し・リスト */
.product_news_wrap article>p {
	margin: 0 0 1em;
}

.product_news_wrap article div+div {
	margin-top: 1.2rem;
}

.product_news_wrap article h4 {
	margin: 0 0 .5rem 0 !important;
	font-weight: 700;
	font-size: clamp(16px, 2vw, 18px);
	line-height: 1.6;
}

.product_news_wrap article ol {
	margin: .6rem 0 1rem 1.25rem;
	padding: 0;
	list-style-type: disc;
	/* ← ドットを表示 */
}

.product_news_wrap article ol li {
	position: relative;
	padding-left: 1.2em;
	list-style: none;
	counter-increment: item;
}

.product_news_wrap article ol li::before {
	content: counter(item) ". ";
	position: absolute;
	left: 0;
	color: #111;
}




/* サポートリンク */
.product_news_wrap article nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	list-style: none;
	padding: 0;
	margin: 1rem 0 0;
}

.product_news_wrap article nav li {
	margin: 0;
}

.product_news_wrap article nav a {
	display: inline-block;
	padding: .65em 1.2em;
	border-radius: 999px;
	border: 1px solid #111;
	text-decoration: none;
	color: #111;
	transition: opacity .2s ease;
}

.product_news_wrap article nav a:hover {
	opacity: .8;
}

@media (max-width: 768px) {
	.product_news_wrap {
		padding: 24px 0;
	}

	.product_news_wrap article {
		padding: 20px 0;
	}

	.product_news_wrap h3 {
		font-size: 4.0vw !important;
	}

	/* 間隔調整 */
	.product_news_wrap article p+ul,
	.product_news_wrap article p+ol {
		margin-top: .5rem;
	}
}



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

	.block_product h3 {
		font-size: 4.7vw;
		margin: 30px 0 20px 0;
	}

	.block_product h3:first-child {
		margin: 0 0 20px 0;
	}


	.block_product h4 {
		font-size: 4.7vw;
		margin: 30px 0 20px 0;
	}

	.block_product h4:first-child {
		margin: 0 0 20px 0;
	}

	.block_product h5 {
		font-size: 3.5vw;
		padding: 0;
		margin: 10px 0 5px 0;
	}

	.block_product h6 {
		text-align: center;
		font-size: 1.2em;
	}

	.block_product p {
		font-size: 3.5vw;
	}

	.block_product img {
		margin: 25px 0 0px 0
	}

	.pic img {
		margin: 0 0 0px 0 !important;
	}

	li.option {
		position: relative;
		font-size: 2.8vw;
	}

	li.option:before {
		content: "";
		position: absolute;
		top: .4em;
		left: 0;
		width: 10px;
		height: 10px;
		background: #1e1e1e;
		border-radius: 50%;
	}

	#dl_btn,
	#link_btn {
		font-size: 3.0vw;
	}
}

/*-------- products page modify 20220519 radius --------*/

.i_container {
	text-align: left;
	margin: auto;
	margin-bottom: 80px;
	align-items: center;
	width: 100%;
}

.i_container.center {
	text-align: center;
}

.i_container.non_margin {
	margin-bottom: 40px;
}

.i_container h2 {
	margin: 70px 0;
	font-size: 28px;
	line-height: 1.7;
	text-align: center;
}

.i_container h3 {
	margin: 0 !important;
	font-size: 24px;
	line-height: 1.7;
}

.i_container.center h4::after {
	border-bottom: 0px;
}

.i_container h4 {
	margin: 0px 0 20px 0;
	font-weight: 600;
	position: relative;
	line-height: 1.75;
	font-size: 16px;
	letter-spacing: .05em;
	padding: 10px 0;
	font-family: 'Montserrat';
}

.i_container h4::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0px;
	width: 60px;
	border-bottom: solid #333333 2px;
	border-radius: 10px;
}

.i_container img {
	width: auto;
	margin: 0;
}

.image.flex {
	justify-content: center;
}

.i_container.min_logo img {
	height: 50px;
	width: auto;
	margin: auto 20px;
}

.i_container .text {}

.i_container ul {
	width: fit-content;
	margin: auto;
}

.i_container li {
	list-style-type: disc;
	margin-bottom: 10px;
	font-size: 17px;
	line-height: 1.7;
}


.text p:first-of-type {
	margin-top: 20px;
	margin-bottom: 5px;
}

.text p {
	padding: 0px;
	margin-bottom: 5px;
	font-size: 15px;
	line-height: 1.75;
	width: 100%;
	margin: 0 0 40px 0;
}

.text p:last-of-type {
	margin-bottom: 25px;
}

.flex {
	display: flex;
	align-items: center;
	width: 100%;
}

.i_container.flex {
	justify-content: space-between;
}

.flex .text {
	width: 380px;
	margin: 0;
	margin: 20px 0 0 0;
}

.flex .image {
	width: 100%;
	max-width: 600px;

}

.rev {
	flex-flow: row-reverse;
}

.Square {
	width: 100%;
	text-align: center;
}

.Square img {
	width: 100%;
	max-width: 500px;
	text-align: center;
}

.catch_long {
	margin: 40px auto;
	font-size: 19px;
	line-height: 2;
}

.i_container .margin_mod {
	margin-bottom: 180px;
}

.video_wrapper.space {
	margin-bottom: 15px;
}

#small {
	margin: 5px 0 0 0 0;
	font-size: 13px;
	margin: 10px 0;
}

#small:first-of-type {
	margin-top: 10px;
}

.top_catch {
	text-align: center;
	margin-bottom: 60px;
	font-size: 18px;
}

.i_container.center.catch .text {
	margin-bottom: 56px;
}

.i_container.center.min_logo {
	/* margin-top: 100px; */
	margin-top: 70px;
	margin-bottom: 20px;
}

.i_container.center.min_logo h3 {
	font-size: 25px;
	font-weight: 500;
	letter-spacing: .02em;
}

.i_container.center.min_logo h4 {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .05em;
	margin-top: 0.2em;
	padding: 0;
}


.i_container__app_dl.flex {
	width: 100%;
	margin: auto;
	margin-top: 30px;
	align-items: center;
}


input.wpcf7-form-control.wpcf7-date.wpcf7-validates-as-date {
	width: max-content;
}

textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required {
	height: 200px !important;
}

.i_container__app_dl .item {
	width: 50%;
	padding: 0 20px;
	text-align: center;
	align-items: end;
}

.i_container__app_dl img {
	width: 150px;
}

.i_container__app_dl .item:last-child {
	border-left: solid;
	border-color: #ddd;
}

.i_container__app_dl.flex {
	justify-content: space-around;
}

.i_container__app_dl_icon_flex {
	display: flex;
	justify-content: center;
	width: 100%;
}

.i_container__app_dl .item_innner {
	text-align: center;
	/* margin-right: 50px; */
}

.i_container__app_dl_icon_flex:first-child {
	/* margin-right: 10px; */
	border-right: 1px solid #cccccc;
}

.body_item_tryon {
	display: flex;
	justify-content: center;
}


.body_item_tryon h3:first-of-type,
.body_item_tryon h4:first-of-type {
	margin-top: 0px;
}

.body_item_tryon h3 {
	font-size: 20px;
	margin-top: 20px;
	margin-bottom: 5px;
}

.body_item_tryon h4 {
	font-size: 14px;
	margin-top: 20px
}

.body_item_tryon p,
.body_item_tryon ul li {
	font-size: 14px;
}

.body_item_tryon li {
	margin-bottom: 10px;
}

.body_item_tryon li:first-of-type {
	margin-top: 5px;
	margin-bottom: 10px;
}

.body_item_tryon li:last-of-type {
	margin-bottom: 0px;
}

.body_item_tryon a.map_icon {
	object-fit: contain;
	background: #f2f2f2;
	padding: 2px 8px;
	display: block;
	color: #1a1a1a;
	border-radius: 20px;
	font-size: 12px;
	width: fit-content;
	margin: 5px 0;
}

.text_tryon {
	padding-bottom: 70px;
}

a.map_icon::after {
	content: "";
	display: block;
	background: url(../images/products/icon_map.svg) no-repeat left top;
	background-size: 100% auto;
	width: 8px;
	height: 16px;
	position: absolute;
	left: -12px;
	top: 3px;
}


.i_container.center.margin_mod {
	display: inline-block;
}

.i_container.margin_mod {
	margin-bottom: 120px;
}

.i_container .left {
	width: 100%;
	text-align: left;
}

.icon_row img {
	width: 100%;
	max-width: 100px;
	margin: 20px 0px 120px 0px;
}


.tab-main {
	margin: 10px 5px 0px 5px;
}

.tab-main .tab-name {
	display: inline-block;
	border: 1px solid #999;
	border-bottom: none;
	background-color: #;
	margin: 0px px;
	padding: 20px;
	font-size: 0.9em;
	color: #007185;
	border: none;
	margin-bottom: 20px;
	/* box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1); */
	border: 1px solid;
	border-color: #007185;
	text-align: center;
	width: 50%;
}

.tab-name:first-of-type {
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
}

.tab-name:last-of-type {
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}

.tab-main input[name="tab-radio"],
.tab-main .tab-display {
	display: none;
}

.tab-main .tab-display {
	/* border: 1px solid #ddd; */
	/* padding: 10px; */
	min-height: 100px;
	border-radius: 2px;
	padding: 5px;
}

.tab-main #t-A:checked~.t-A-display,
.tab-main #t-B:checked~.t-B-display {
	display: block;
}

.tab-main input[name="tab-radio"]:checked+.tab-name {
	background-color: #007185;
	color: #f2f2f2;
	border-color: #007185;
}


.youtube {
	width: 100%;
	aspect-ratio: 16 / 9;
	margin-bottom: 20px;
}

.youtube iframe {
	width: 100%;
	height: 100%;
}

/* =========================================================
  FULLBLEED (parallax + optional blur bg) - Unified
  - SP(〜768px): 非表示
  - 769〜2300px: 高さ 860px 固定（従来）
  - 2301px〜:
      - 通常：アスペ固定（高さは幅に追従）＝上下クロップ回避
      - blur：高さ 860px 固定（従来のまま）
  - blur背景: .fullbleed--blur のときだけ発火（JSが --blur-bg をセット）
========================================================= */

:root {
	--fullbleed-w: 2300;
	--fullbleed-h: 860;
}

/* ---------- Mobile (〜768px): fullbleed非表示 ---------- */
@media (max-width: 768px) {
	.i_container.fullbleed {
		display: none;
	}

	.i_container.margin_mod {
		margin-bottom: 60px;
	}

	.icon_row img {
		width: 22.22vw;
		margin: 20px 0 60px;
	}
}

/* ---------- PC base (769px〜) ---------- */
@media (min-width: 769px) {
	.i_container.fullbleed {
		position: relative;
		left: 50%;
		transform: translateX(-50%);
		width: 100vw;
		overflow: hidden;
	}

	.i_container.fullbleed .image {
		position: relative;
		margin: 0 auto;
		overflow: hidden;
		z-index: 1;
	}

	.i_container.fullbleed .image>img {
		position: absolute;
		left: 50%;
		top: 50%;

		width: 100%;
		height: 100%;
		object-fit: cover;

		transform: translate3d(-50%, -50%, 0) scale(1.06);
		transform-origin: center center;

		z-index: 2;
		will-change: transform, opacity;

		opacity: 0;
		animation: fadeSoftNoReturn 1.8s cubic-bezier(0.33, 1, 0.68, 1) forwards;

		-webkit-mask-image: none;
		mask-image: none;
	}
}

/* ---------- 769〜2300px: 従来（高さ固定） ---------- */
@media (min-width: 769px) and (max-width: 2300px) {
	.i_container.fullbleed {
		height: 860px;
	}

	.i_container.fullbleed::before {
		content: none;
	}

	.i_container.fullbleed .image {
		width: 100%;
		height: 100%;
		max-width: none;
	}
}

/* =========================================================
  2301px〜（通常 / 非ブラー）
  - 高さ固定を解除し、箱を aspect-ratio 固定で高さを幅に追従させる
  - これにより、外幅(100vw)まで拡張しても縦横比が崩れにくい
========================================================= */
@media (min-width: 2301px) {
	.i_container.fullbleed:not(.fullbleed--blur) {
		height: auto;
	}

	.i_container.fullbleed:not(.fullbleed--blur) .image {
		width: 100vw;
		max-width: none;
		aspect-ratio: var(--fullbleed-w) / var(--fullbleed-h);
		height: auto;
	}

	.i_container.fullbleed:not(.fullbleed--blur)::before {
		content: none;
		/* blur背景は通常OFF */
	}
}

/* =========================================================
  2301px〜: BLUR版（.fullbleed--blur のときだけ）
  ※ご提示のCSSと同一パラメータ
  - height: 860px 固定
  - 背景 scale(1.18) + blur(30px)
  - 前面 scale(1.06)
  - fade 1.8s / cubic-bezier(0.33, 1, 0.68, 1)
  - --fade: clamp(56px, 4.2vw, 180px)
  - 境界膜 rgba(255,255,255,.20) + blur(8px)
========================================================= */
@media screen and (min-width: 2301px) {
	.i_container.fullbleed.fullbleed--blur {
		position: relative;
		left: 50%;
		transform: translateX(-50%);
		width: 100vw;
		height: 860px;
		overflow: hidden;
	}

	/* 背景（100vw） */
	.i_container.fullbleed.fullbleed--blur::before {
		content: "";
		position: absolute;
		inset: 0;

		left: 50%;
		width: 100vw;
		height: 100%;
		transform: translateX(-50%) scale(1.18);

		z-index: 0;

		background-image: var(--blur-bg, none);
		background-position: center;
		background-size: cover;
		background-repeat: no-repeat;

		filter: blur(30px);
		opacity: 1;
		pointer-events: none;
	}

	/* 前面枠（2300px固定） */
	.i_container.fullbleed.fullbleed--blur .image {
		position: relative;
		height: 100%;
		max-width: 2300px;
		margin: 0 auto;
		overflow: hidden;
		z-index: 1;
	}

	.i_container.fullbleed.fullbleed--blur .image>img {
		position: absolute;
		left: 50%;
		top: 50%;

		width: 100%;
		height: 100%;
		object-fit: cover;

		transform: translate3d(-50%, -50%, 0) scale(1.06);
		transform-origin: center center;

		z-index: 2;
		will-change: transform, opacity;

		opacity: 0;
		animation: fadeSoftNoReturn 1.8s cubic-bezier(0.33, 1, 0.68, 1) forwards;

		--fade: clamp(56px, 4.2vw, 180px);

		-webkit-mask-image: linear-gradient(to right,
				transparent 0,
				black var(--fade),
				black calc(100% - var(--fade)),
				transparent 100%);
		mask-image: linear-gradient(to right,
				transparent 0,
				black var(--fade),
				black calc(100% - var(--fade)),
				transparent 100%);
		-webkit-mask-repeat: no-repeat;
		mask-repeat: no-repeat;
		-webkit-mask-size: 100% 100%;
		mask-size: 100% 100%;
	}

	/* 境界なじませ膜 */
	.i_container.fullbleed.fullbleed--blur .image::before {
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;

		background: linear-gradient(to right,
				rgba(255, 255, 255, .20) 0%,
				rgba(255, 255, 255, 0) var(--fade),
				rgba(255, 255, 255, 0) calc(100% - var(--fade)),
				rgba(255, 255, 255, .20) 100%);
		filter: blur(8px);

		z-index: 3;
		pointer-events: none;
	}
}

/* フェードアニメ（同一） */
@keyframes fadeSoftNoReturn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}


/* ---------- prefers-reduced-motion ---------- */
@media (prefers-reduced-motion: reduce) {
	.i_container.fullbleed .image>img {
		animation: none !important;
		opacity: 1 !important;
	}
}

/* ---------- Fade animation ---------- */
@keyframes fadeSoftNoReturn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}



/* .body_item_tryon ul{
 column-count: 2;
} */

.google_map {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 800px;
	margin: 50px auto;
	z-index: 0;
}

.google_map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}



table.contact_form_table {
	table-layout: fixed;
	width: 100%;
}

.i_container__app_dl.flex.sp {
	width: 90%;
	margin: auto;
	align-items: baseline;
}

.i_container__app_dl .item {
	width: 50%;
	padding: 0 20px;
	text-align: center;
}

.i_container__app_dl .item:last-child {
	border-left: solid;
	border-color: #ddd;
}

.i_container .bx-wrapper .bx-controls-direction a {
	display: none;
}

.bx-wrapper {
	margin-bottom: 0px;
}

.i_container__app_dl_icon_flex .batch {
	display: grid;
	margin-left: 50px;
}

.i_container .Column2 {
	display: flex;
	align-items: stretch;
	flex-direction: row;
}

.i_container .Column2 .text {
	flex: 1;
	line-height: 1.75;
}

.Column_item {
	text-align: left;
	width: 50%;
}

.Column_item h5 {
	text-align: center;
}

.Column_item .text {
	margin-top: 20px;
	line-height: 1.8;
}

.Column_item:nth-child(2n) {
	margin-left: 30px;
}


.bx-wrapper .bx-pager.bx-default-pager a {
	background: #ddd !important;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #1e1e1e !important;
}

.bx-wrapper {
	padding-left: 0;
}


@media screen and (max-width: 1120px) {
	.i_container {
		width: 100%;
		margin: 0 auto;
		display: inherit;
		margin-bottom: 55px;
	}

	.text {
		width: 100% !important;
		margin: 0;
	}

	.flex .image {
		width: 100%;
		max-width: 100%;
	}

	.text {
		line-height: 2.0;
		width: 100%;
	}

	.products-item__supportkikan p {
		margin-left: 0px;
	}
}

@media screen and (max-width: 760px) {
	.i_container {
		width: 100%;
		margin: 0 auto;
		display: inherit;
		margin-bottom: 55px;
	}

	.i_container img {
		width: 100%;
	}


	.i_container h2 {
		margin: 50px 0;
		font-size: 5vw;
	}

	.i_container h3 {
		font-size: 4.0vw;
	}

	.i_container.center.catch h3 {
		font-size: 4.1vw;
	}

	.i_container h4 {
		font-size: 3.0vw;
		line-height: 1.6;
		letter-spacing: .05em;
		padding: 7px 0 12px 0;
	}

	.i_container.center p {
		text-align: left;
	}

	.i_container ul {}

	.i_container li {
		width: 90%;
		margin: auto;
		font-size: 3.4vw;
	}

	.text {
		font-size: 14px;
		line-height: 1.8;
		width: 100%;
	}

	.text p,
	.i_container .text p {
		padding: 0px;
		margin-bottom: 15px;
		font-size: 3.5vw;
	}

	.i_container.center.min_logo {
		/* margin-top: 100px; */
		margin-top: 12.66vw;
		margin-bottom: 13.33vw;
	}

	.i_container.center.min_logo h3 {
		font-size: 5.86vw;
	}

	.i_container.center.min_logo h4 {
		font-size: 3.73vw;
		margin-bottom: 15.33vw;
	}

	.i_container.min_logo img {
		height: 45px;
		width: auto;
		margin-right: 0px;
		margin: 0px 4vw;
	}


	.table__comparison table {
		display: block;
		overflow-x: scroll;
		white-space: nowrap;
		-webkit-overflow-scrolling: touch;
	}

	th .table-header {
		width: 80px;
		background: #fff;
		position: sticky;
		background: linear-gradient(to right, #FFFFFF, #fff);
		text-align: center;
	}


	.table__comparison a img {
		width: 35vw;
	}

	.products-item__supportkikan p {
		font-size: 2.8vw;

	}


	.body_item_tryon h3:first-of-type {
		margin-top: 0px;
	}

	.body_item_tryon h3 {
		font-size: 4.7vw;
		margin-top: 20px;
		margin-bottom: 5px;
	}

	.body_item_tryon h4 {
		font-size: 3.3vw;
		margin-top: 20px
	}

	.body_item_tryon p,
	.body_item_tryon ul li {
		font-size: 2.8vw;
	}

	.body_item_tryon li {
		margin-bottom: 5px;
	}

	.body_item_tryon li:first-of-type {
		margin-top: 5px;
		margin-bottom: 5px;
	}

	.body_item_tryon li:last-of-type {
		margin-bottom: 0px;
	}

	.Column_item .text {
		font-size: 13px;
	}

	.i_container.center.catch .text {
		margin-bottom: 55px;
	}

	.google_map {
		position: relative;
		width: 100%;
		height: 0;
		padding-top: 75%;
	}

	.google_map iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}



	table.contact_form_table {
		table-layout: fixed;
		width: 100%;
	}

	.google_map {
		padding-top: 80%;
	}

	.i_container__app_dl.flex.sp {
		width: 90%;
		margin: auto;
		align-items: baseline;
	}

	.i_container__app_dl .item {
		width: 50%;
		padding: 0 20px;
		text-align: center;
	}

	.i_container__app_dl .item:last-child {
		border-left: solid;
		border-color: #ddd;
	}

	.i_container__app_dl_icon_flex {
		display: block;
	}

	.item_innner {
		height: 35vw;
		margin: auto;
		text-align: center;
	}

	.item_innner img {
		margin: auto;
		text-align: center;
		width: 22.5vw;
	}

	.i_container__app_dl_icon_flex .batch {
		width: 80%;
		margin: auto;
	}

	.i_container__app_dl_icon_flex .batch a img {
		width: 100%;
		min-height: 40px;
	}

	.i_container__app_dl .item_innner {
		width: 100%;
	}

	.news-wrap li h4 {
		font-size: 4.0vw;
	}

	.news_banner {
		height: 12.66vw;
		max-height: 50px;
		background: #fafafa;
	}


	.news_banner p {
		font-size: 2.8vw;
		white-space: nowrap;
	}

	.i_container .Column2 {
		/* display: initial; */
	}

	.Column_item {
		margin: 0 10px;
		width: 100%;
	}

	.Column_item h5 {
		font-size: 0.7em;
		margin: 0;
		font-weight: bold;
	}

	.Column_item:nth-child(2n) {
		margin-left: initial;
	}

	.bx-wrapper .bx-pager,
	.bx-wrapper .bx-controls-auto {
		position: absolute:0;
		bottom: 0px !important;
		margin-bottom: 0px;
	}

	.video_wrapper.space {
		margin-bottom: 3px;
	}
}

/* support_template */

.content-sub-support_table {
	padding-top: 135px;
}

.content-sub-support_table h2 {
	font-size: 20px;
	text-align: center;
	margin-bottom: 60px;
}

.content-sub-support_table table {
	word-break: keep-all;
	line-break: strict;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.content-sub-support_table a {
	text-decoration: underline;
}

.content-sub-support_table .dme_support img {
	width: 80px;
}


.support-table_footnote p {
	font-size: 13px;
	margin: 5px 0px 5px 0px
}

.support-table__footnote p {
	font-size: 13px;
}

.support-table_footnote p:first-child {
	margin: 15px 0px 5px 0px
}

.support-table_footnote p:last-child {
	margin: 5px 0px 0px 0px
}

.support-table__footnote p {
	font-size: 13px;
	margin: 5px 0px 5px 0px
}

/* .support_table_footnote p::before {
    content: '※';
} */

@media screen and (max-width: 760px) {
	.content-sub-support_table {
		padding-top: 12.53vw;
	}

	.content-sub-support_table h2 {
		font-size: 4.7vw;
		margin-bottom: 30px;
	}

	.content-sub-support_table table th,
	.content-sub-support_table table td {
		font-size: 14px;
		padding: 5px 0;
		text-align: center;
		height: 50px;
		width: 30%;
	}

	.wapper.dme_support img {
		width: 60%;
	}

	th#size_fixed {
		width: 90px;
	}


}

/* 
対応アクセサリー */

.support__subtitle {
	text-align: center;
	margin: 30px;
	font-size: 18px;
}

.parts_wrapper {
	margin-bottom: 100px;
	font-size: 14px;
}

.Parts_order_inner li {
	display: flex;
	justify-content: space-around;
	align-items: center;
	border-top: 1px solid #d9d9d9;
}

.Parts_order_inner li:last-child {
	border-bottom: 1px solid #d9d9d9;
}

.parts_name {
	width: 50%;
}

.parts_price {
	width: 20%;
	text-align: center;
}

.parts__order {
	margin: 30px 0;
}

.parts__order a {
	color: #1e1e1e;
}

.fuzoku_img__warp {
	text-align: center;
	margin-top: 20px;
}

@media screen and (max-width: 760px) {
	.Parts_order_inner li {
		display: block;
		text-align: center;
		padding: 20px 0 0 0;
		margin: 0 10px;
	}

	.parts_name,
	.parts_price {
		width: 100%;
	}

	.parts__order {
		margin: 20px 0;
		font-size: 12px;
	}
}



/* Swiper-NeSTREAM LIVE */

.swiper {
	display: block;
}

.swiper a {
	text-decoration: none;
}

.js-swiper2 {
	margin-top: 50px;
}

.js-swiper2 a:hover {
	opacity: 1;
}

.js-swiper2 .swiper-slide {
	display: block;
	opacity: .9;
	position: relative;
	width: 100%;
	aspect-ratio: 12 / 5;
	max-width: 900px;
}

.js-swiper2 .swiper-slide [class^="swiper-button-"]::after {
	font-size: 30px;
}

.js-swiper2 .swiper-slide.js-swiper2 .swiper-slide-active {
	opacity: 1;
	transition: all .3s ease;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
}

.js-swiper2 .swiper-slide_text {
	position: relative;
	display: flex;
	justify-content: left;
	align-items: stretch;
	left: 00%;
	height: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 10px;
	border-radius: 6px;
	background-color: #000029;
	color: #f2f2f2;
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
}

.js-swiper2 .swiper-slide_inner {
	width: 50%;
	margin-top: 5%;
	margin-left: 5%;
}

.js-swiper2 .swiper-slide_inner a,
.js-swiper2 .swiper-slide_inner img {
	border: none;
}

.js-swiper2 .swiper-slide_image {
	width: 100%;
}

.js-swiper2 .swiper-slide_inner p {
	color: #f2f2f2;
}

.js-swiper2 .swiper-slide_image {
	position: absolute;
	top: 50%;
	right: 0;
	z-index: 1;
	transform: translateY(-50%);
	width: 55%;
	aspect-ratio: 16 / 9;
	box-shadow: 0 10px 10px -6px rgba(0, 0, 0, .3);
}

.js-swiper2 .swiper-slide_image_inner {
	position: relative;
	padding-top: 60%;
	overflow: hidden;
}

.js-swiper2 .swiper-slide_image_inner img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.js-swiper2 .swiper-slide__overview {
	margin-bottom: 10px;
	font-weight: 300;
	font-size: 14px;
	line-height: 1.7;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.js-swiper2 .swiper-slide__title {
	font-weight: bold;
	font-size: 24px;
	line-height: 1.3;
	margin: 10px 0;
	min-height: 80px;
	display: flex;
	justify-content: left;
	align-items: center;
}

/* ページネーション */
.swiper-pagination-bullets.swiper-pagination-horizontal {
	bottom: 0;
}

.swiper-pagination-bullet {
	background-color: #f2f2f2;
}

.js-swiper2 .swiper-slide__archives,
.js-swiper2 .swiper-slide__special,
.js-swiper2 .swiper-slide__news,
.js-swiper2 .swiper-slide__live,
.js-swiper2 .swiper-slide__period {
	display: flex;
	justify-content: left;
	align-items: center;
	position: relative;
	list-style-type: none;
	position: relative;
	padding-left: 20px;
	font-size: 15px;
}

.js-swiper2 .swiper-slide__period {
	list-style-type: none;
	position: relative;
	padding-left: 25px;
	font-size: 13px;
}

.js-swiper2 .swiper-slide__archives::before {
	display: inline-block;
	position: absolute;
	top: .1em;
	left: 0;
	width: 16px;
	height: 16px;
	background-image: url("/images/common/stream.svg");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	content: "";
}

.js-swiper2 .swiper-slide__special::before {
	display: inline-block;
	position: absolute;
	top: .1em;
	left: 0;
	width: 16px;
	height: 16px;
	background-image: url("/images/common/star.svg");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	content: "";
}

.js-swiper2 .swiper-slide__news::before {
	display: inline-block;
	position: absolute;
	top: .1em;
	left: 0;
	width: 16px;
	height: 16px;
	background-image: url("/images/common/news.svg");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	content: "";
}

.js-swiper2 .swiper-slide__live::before {
	position: absolute;
	top: .2em;
	left: 0;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: #f50000;
	content: "";
}

.js-swiper2 .swiper-slide__period::before {
	display: inline-block;
	position: absolute;
	top: .1em;
	left: 0;
	width: 18px;
	height: 18px;
	background-image: url("/images/common/period.svg");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	content: "";
}

.js-swiper2 .swiper-slide__flex {
	display: flex;
	justify-content: left;
	align-items: center;
	margin-top: 15px;
}

.slide__logos {
	margin-left: 10px;
}

.slide__logos:first-of-type {
	margin-left: 0px;
}

.slide_quality_logo {
	width: 25px;
}

.slide_dolby_logo {
	width: 120px;
}

.slide_swiper [class^="swiper-button-"] {
	top: initial;
	bottom: 0;
}

.swiper-buttons {
	position: inherit;
	display: block;
	padding: 15px;
	width: fit-content;
	margin: auto;
	min-width: 165px;
	z-index: 999;
}

.swiper-button-next,
.swiper-button-prev {
	--swiper-navigation-color: #f2f2f2;
	top: 23px;
	z-index: 1000;
	opacity: .5;
	transition: .3s;
}

.swiper-pagination-bullet {
	opacity: .3;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
	opacity: 1;
	transition: .3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	opacity: 1;
	transition: .3;
}

.swiper-button-prev:after,
.swiper-button-next:after {
	font-size: 18px;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
	left: 6px;
	right: auto
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
	content: 'prev'
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
	right: 6px;
	left: auto
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
	content: 'next'
}


@media only screen and (max-width: 1020px) {
	.js-swiper2 .swiper-slide {
		display: block;
		opacity: .9;
		position: inherit;
		z-index: 1;
		width: 85%;
		max-width: inherit;
		aspect-ratio: inherit;
		box-shadow: 0 10px 10px -6px rgba(0, 0, 0, .3);
	}

	.js-swiper2 .swiper-slide_text,
	.js-swiper2 .swiper-slide_image {
		position: inherit;
		top: inherit;
		right: inherit;
		transform: inherit;
	}

	.js-swiper2 .swiper-slide_text {
		height: 100%;
		aspect-ratio: 4 / 3;
		margin-top: -2px;
		padding-bottom: 2px;
		border-radius: 0 0 5px 5px;
		color: #f2f2f2;
	}

	.js-swiper2 .swiper-slide_inner {
		transform: inherit;
		width: 100%;
		margin-left: 0;
		padding: 0 20px;
	}

	.js-swiper2 .swiper-slide_image {
		top: 0;
		right: 0;
		z-index: 1;
		width: 100%;
		aspect-ratio: inherit;
		box-shadow: none;
	}

	.js-swiper2 .swiper-slide_image_inner {
		border-radius: 5px 5px 0 0;
		position: relative;
		overflow: hidden;
		aspect-ratio: 16 / 9;
		padding-top: 0;
	}

	.js-swiper2 .swiper-slide__title {
		font-weight: bold;
	}

	.js-swiper2 .swiper-slide_text p {
		margin-bottom: 10px;
	}

	.js-swiper2 .swiper-slide__archives,
	.js-swiper2 .swiper-slide__special,
	.js-swiper2 .swiper-slide__news,
	.js-swiper2 .swiper-slide__live,
	.js-swiper2 .swiper-slide__period {
		padding-left: 20px;
	}

	.js-swiper2 .swiper-slide__archives,
	.js-swiper2 .swiper-slide__news {
		list-style-type: none;
		position: relative;
		padding-left: 15px;
	}

	.js-swiper2 .swiper-slide__period {
		list-style-type: none;
		position: relative;
		padding-left: 20px;
		margin-bottom: 10px;
	}

	.slide_quality_logo {
		width: 30px;
	}

	.slide_dolby_logo {
		width: 120px;
	}

	.js-swiper2 .swiper-slide__flex {
		margin-top: 0px;
	}

	.js-swiper2 .swiper-slide__flex_2 {
		margin-top: 5px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-direction: row-reverse;
	}
}

@media only screen and (max-width: 780px) {
	.js-swiper2 .swiper-slide_inner {
		padding: 4.6vw 4.6vw 0;
		margin-top: 0;
	}

	.js-swiper2 .swiper-slide__title {
		min-height: inherit;
		font-size: 4.57vw;
		margin: 1.6vw 0;
	}

	.js-swiper2 .swiper-slide_text p {
		font-size: 2.93vw;
		margin-bottom: 1.6vw;
	}

	.js-swiper2 .swiper-slide__archives,
	.js-swiper2 .swiper-slide__special,
	.js-swiper2 .swiper-slide__news,
	.js-swiper2 .swiper-slide__live,
	.js-swiper2 .swiper-slide__period {
		padding-left: 5vw;
		font-size: 2.73vw;
	}

	.js-swiper2 .swiper-slide__archives::before {
		top: 0;
		left: 0;
		width: 3.5vw;
		height: 3.5vw;
	}

	.js-swiper2 .swiper-slide__special::before {
		top: 0;
		left: 0;
		width: 3.5vw;
		height: 3.5vw;
	}

	.js-swiper2 .swiper-slide__news::before {
		top: 0;
		left: 0;
		width: 3.5vw;
		height: 3.5vw;
	}

	.js-swiper2 .swiper-slide__live::before {
		left: 0;
		width: 2.5vw;
		height: 2.5vw;
	}

	.js-swiper2 .swiper-slide__period::before {
		left: 0;
		width: 3.5vw;
		height: 3.5vw;
	}

	.js-swiper2 .swiper-slide__period {
		font-size: 2.6vw;
		margin-bottom: 1.6vw;
	}

	.slide__logos {
		margin-left: 5vw;
	}

	.slide__logos:first-of-type {
		margin-left: 0;
	}

	.slide_quality_logo {
		width: 5.5vw;
	}

	.slide_dolby_logo {
		width: 28.4vw;
	}

	.slide__logos {
		margin-left: 2vw;
	}

	.slide__logos:first-of-type {
		margin-left: 0px;
	}
}


/* symbol */

.radius_symbol_wrap {
	position: absolute;
	top: 0;
	right: 0;
	width: 5%;
	height: 100%;
}

.radius_symbol_side {
	width: 100%;
	height: 50px;
	position: relative;
}

.radius_symbol_vertical {
	width: 100%;
	height: 100%;
	position: relative;
}

.radius_symbol_side,
{
position: absolute;
}

.radius_symbol_side span:nth-child(1) {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #092351;
	transition: all 0.5s ease;
}

.radius_symbol_side span:nth-child(2) {
	position: absolute;
	right: 0;
	width: 50%;
	height: 100%;
	background-color: #027589;
}

.radius_symbol_side span:nth-child(3) {
	position: absolute;
	right: 0;
	top: 0;
	width: 25%;
	height: 100%;
	background-color: #c9102e;
}

.radius_symbol_side span:nth-child(4) {
	position: absolute;
	right: 0;
	top: 0;
	width: 25%;
	height: 50%;
	background-color: #fb4c01;
}

.radius_symbol_vertical span:nth-child(1) {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #092351;
}

.radius_symbol_vertical span:nth-child(2) {
	position: absolute;
	right: 0;
	width: 100%;
	height: 50%;
	background-color: #027589;
}

.radius_symbol_vertical span:nth-child(3) {
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	height: 25%;
	background-color: #fb4c01;
}

.radius_symbol_vertical span:nth-child(4) {
	position: absolute;
	right: 0;
	top: 0;
	width: 50%;
	height: 25%;
	background-color: #c9102e;
}

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

	.radius_symbol_wrap {
		width: 15%;
		height: 100%;
	}
}





/* responsive */
#br_pc {
	display: inline !important;
}

#br_sp {
	display: none !important;
}

@media screen and (max-width: 768px) {
	#br_pc {
		display: none !important;
	}

	#br_sp {
		display: inline !important;
	}
}

#pc {
	display: inline !important;
}

#sp {
	display: none !important;
}

@media screen and (max-width: 768px) {
	#pc {
		display: none !important;
	}

	#sp {
		display: inline !important;
	}
}

.text_wrapper p ul {
	margin-bottom: 10px;
}