html {
	width: 100%;
	/* height: 100vh;
    */
	height: calc(var(--vh) * 100);
}

.fs-l-page {
	overflow-x: hidden;
}

/* リセット */
/* *,*::before,*::after{
   box-sizing:border-box;
   margin:0;
   padding:0;
}
ol,ul{
   list-style:none
}
table{
   border-collapse:collapse
}
textarea{
   white-space:revert
}
*/
/* コンテンツ */
.contents {
	/* display: none;
    */
	opacity: 0;
}

.contents.activate {
	/* display: block;
    */
	opacity: 1;
	animation: fadeIn 0.5s ease-in 0s;
}

.opening_animation>.contents_inner {
	width: 100%;
	height: 100vh;
	height: calc(var(--vh) * 100);
	background-color: transparent;
	/* display: flex;
    */
	/* align-items: center;
    */
	/* justify-content: center;
    */
}

/* opening_animation */
particle {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	background-repeat: no-repeat;
	background-position: center center;
	width: 100%;
	height: 100%;
	/* z-index: -1;
    */
}

.opening_animation.activate {
	display: block;
	opacity: 1;
}

.opening_animation .opening_btn {
	display: none;
	opacity: 0;
}

.opening_animation.activate .opening_btn {
	display: block;
	opacity: 1;
	animation: fadeIn 2s ease 0s 1 normal;
}

.opening_animation .opening_massage {
	display: none;
	opacity: 0;
}

.opening_animation.activate .opening_massage {
	display: block;
	opacity: 1;
	animation: fadeIn 2s ease 0s 1 normal;
}

.opening_animation img {
	width: 100%;
}

.opening_btn {
	z-index: 1;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.opening_btn a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.opening_massage {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	text-align: center;
	bottom: 2vw;
	color: #000000;
	z-index: 1;
}

/* kv */
.kv {
	position: relative;
}

.kv .swiper-slide {
	-webkit-backface-visibility: hidden;
	/* -webkit-transform-style: preserve-3d; */
}

.kv .swiper-slide img {
	width: 100%;
	display: block;
	-webkit-transform: perspective(0);
}

.kv .progressBar.lateral::after {
	content: '';
	display: block;
	background-color: #000000;
	position: absolute;
	bottom: 1px;
	width: 53vw;
	height: 1px;
	z-index: 1;
}

.kv .progressBar.vertical::after {
	content: '';
	display: block;
	background-color: #000000;
	position: absolute;
	left: 2px;
	top: 0;
	width: 1px;
	height: 53vw;
	z-index: 1;
}

.kv .progressBar::after {
	opacity: 0;
}

.kv .progressBar.active::after {
	transition: opacity 1s;
	opacity: 1;
}

/* １枚目が縦から始まる場合は、scaleY(0)のコメントを外す*/
.kv .progressBar .swiper-progress-bar {
	transform: scaleX(0);
	/* transform: scaleY(0);
    */
	position: absolute;
	z-index: 2;
	background-color: #CDE2D4;
	/* transition: transform 3s linear;
    */
	transition: transform 3s ease;
	/* swiper:barDurationの秒数に合わせる */
	opacity: 1;
}

.third-item[data-color] {
	background: green;
}

.kv .swiper-parts {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.kv .swiper-button-prev {
	position: relative;
	left: 0;
	top: 0;
	margin-top: 0;
}

.kv .swiper-button-next {
	position: relative;
	left: 0;
	top: 0;
	margin-top: 0;
}

.kv .swiper-button-next {
	background-image: url(/wp-content/themes/mytrex/img/top/slider/next@2x.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.kv .swiper-button-prev {
	background-image: url(/wp-content/themes/mytrex/img/top/slider/next@2x.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transform: scale(-1, 1);
	/* 左右反転 */
}

.kv .swiper-button-prev:after,
.kv .swiper-button-next:after {
	display: none;
}

.kv .swiper-pagination {
	position: relative;
	left: 0;
	top: 0;
	text-align: left;
	width: auto;
	display: inline-block;
	padding: 0 0.7vw;
}

.kv .progressBar.lateral .swiper-progress-bar {
	left: 0;
	bottom: 0;
	width: 53vw;
	height: 4px;
}

.kv .progressBar.vertical .swiper-progress-bar {
	left: 0;
	top: 0;
	width: 4px;
	height: 53vw;
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
	/* 10秒かけてズームアウトさせる */
	/* animation: zoomOut 10s linear 0s;
    */
	animation-fill-mode: both;
}

@keyframes fadeIn {
	0% {
		display: none;
		opacity: 0;
	}

	1% {
		display: block;
		opacity: 0;
	}

	100% {
		display: block;
		opacity: 1;
	}
}

@keyframes zoomOut {

	/* 1.15倍させる指定 */
	0% {
		transform: scale(1.15);
	}

	100% {
		transform: scale(1);
	}
}

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

	/* pc */
	.sp {
		display: none;
	}

	.pc {
		display: block;
	}

	particle {
		background-size: cover;
	}

	.opening_massage {
		font-size: 1.0vw;
	}

	.opening_btn a {
		width: 24.3vw;
	}

	.kv .swiper-parts {
		justify-content: center;
		/* position: relative;
        */
		bottom: 2.0vw;
		font-size: 1.0vw;
		position: absolute;
		left: 0;
		right: 0;
	}

	.kv .progressBar::after {
		content: '';
		display: block;
		background-color: #000000;
		position: absolute;
		bottom: 2.6vw;
		right: 0;
		width: 20vw;
		height: 1px;
		z-index: 1;
	}

	.kv .progressBar .swiper-progress-bar {
		right: 0;
		bottom: 2.5vw;
		width: 20vw;
		height: 4px;
	}

	.kv .swiper-button-next,
	.kv .swiper-button-prev {
		width: 1.25vw;
		height: 1.25vw;
	}
}

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

	/* sp */
	.sp {
		display: block;
	}

	.pc {
		display: none;
	}

	particle {
		background-size: cover;
	}

	.opening_massage {
		font-size: 2.4vw;
	}

	.opening_btn a {
		width: 62.4vw;
	}

	.kv .swiper-parts {
		/* position: relative;
        */
		bottom: 4.0vw;
		right: 3.0vw;
		font-size: 2.4vw;
		position: absolute;
	}

	.progressBar {
		position: absolute;
	}

	.kv .swiper-button-next,
	.kv .swiper-button-prev {
		width: 2.8vw;
		height: 2.8vw;
	}
}

/* コンテンツ */
@media screen and (min-width: 768px) {
	main {
		margin-top: 0;
	}

	.kv {
		margin-bottom: 8vw;
	}

	.special_content {
		width: 67.7vw;
		margin: 0 auto 10vw;
	}

	.special_content img {
		width: 100%;
		-webkit-transform: perspective(0);
	}

	.category_content {
		margin-bottom: 10vw;
	}

	.category_content_ttl {
		font-size: 1.8vw;
		text-align: center;
		margin-bottom: 5vw;
	}

	.category_list {
		display: flex;
		flex-wrap: wrap;
		/* gap: 1vw 1vw;
        */
	}

	.category_list>li {
		position: relative;
		margin-bottom: 1vw;
	}

	.category_list>li:nth-child(2n+1) {
		margin-right: 1vw;
	}

	.category_ttl {
		display: none;
		font-size: 1.56vw;
		color: #ffffff;
	}

	.category_img {
		overflow: hidden;
	}

	.category_img img {
		width: 100%;
		vertical-align: bottom;
		transition: 1s all;
	}

	.category_list>li:hover .category_img img {
		transform: scale(1.2, 1.2);
		transition: 1s all;
	}

	.category_list>li:hover .category_ttl {
		display: block;
		position: absolute;
		background-color: rgba(0, 0, 0, .4);
		color: #fff;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		-moz-transition: .3s;
		-o-transition: .3s;
		transition: .3s;
		text-align: center;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.category_list>li:nth-child(1) {
		width: 58.1%;
	}

	.category_list>li:nth-child(2) {
		width: 40.6%;
	}

	.category_list>li:nth-child(3) {
		width: 40.6%;
	}

	.category_list>li:nth-child(4) {
		width: 58.1%;
	}

	.product_content {
		margin-bottom: 10vw;
	}

	.product_content_ttl {
		font-size: 1.8vw;
		text-align: center;
		margin-bottom: 5vw;
	}

	.product_list {
		/* gap: 2vw 2vw;
        */
		margin-right: -2.4%;
	}

	.product_list>li {
		/* width: 23.2%;
        */
		width: 22.6%;
		margin-right: 2.4%;
		margin-bottom: 2vw;
	}

	.product_list>li:nth-child(4n) {
		/* margin-right: 0;
        */
	}

	.product_list>li:first-child {
		background-color: #ffffff;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.product_list>li:first-child::after {
		display: none;
	}

	.product_list>li:first-child img {
		width: 80%;
	}

	.support_content {
		background-color: #F3F3F3;
		margin: 0 calc(50% - 50vw);
		padding: 4vw calc(50vw - 50%);
		width: 100vw;
	}

	.support_link {
		display: flex;
		align-items: center;
		justify-content: space-between;
		/* gap: 0 5vw;
        */
		background-color: #ffffff;
		padding: 1.5vw;
		width: 67vw;
		margin: auto;
	}

	.support_link:hover {
		color: #76B28A;
	}

	.support_txt {
		display: flex;
		justify-content: center;
		align-items: center;
		/* gap: 0 2vw;
        */
		width: calc(100% - 26vw - 5vw);
	}

	.support_ttl {
		font-size: 1.8vw;
		margin-right: 2vw;
	}

	.support_contact {
		font-size: 0.9vw;
	}

	.support_img {
		width: 26vw;
		margin-left: 5vw;
	}

	.support_img img {
		width: 100%;
	}

	.journal_head {
		display: flex;
		justify-content: space-between;
		align-items: end;
		margin-bottom: 3vw;
	}

	.journal_logo {
		width: 14vw;
	}

	.journal_logo img {
		width: 100%;
	}

	.journal_ttl {
		font-size: 0.9vw;
	}

	.journal_more {
		font-size: 0.9vw;
		padding-bottom: 0.2vw;
		border-bottom: 1px solid #000;
	}

	.journal_more img {
		width: 1vw;
	}

	.journal_content {
		width: 65vw;
		margin: 0 auto 10vw;
	}

	.journal_list {
		display: flex;
		margin-left: -2vw;
		margin-right: -2vw;
	}

	.journal_list li {
		width: 19vw;
		margin: 0 2vw;
	}

	.journal_list_thumb {
		margin-bottom: 1vw;
	}

	.journal_list_thumb img {
		width: 100%;
		height: 13vw;
		object-fit: cover;
	}

	.journal_list_ttl {
		font-size: 0.8vw;
		line-height: 1.7;
		overflow: hidden;
		/* height: 5vw;
        */
	}
}

@media screen and (max-width: 767px) {
	.contents+main {
		margin-top: 0;
	}

	.contents.activate+main {
		margin-top: 12vw;
	}

	.kv {
		min-height: 164.5vw;
		margin-bottom: 23vw;
	}

	.special_content {
		/* background-color: #F5F5F5; */
		padding: 0vw 2vw;
		margin-bottom: 26vw;
		position: relative;
	}

	.special_content a:hover {
		color: inherit;
	}

	.special_content img {
		width: 100%;
		-webkit-transform: perspective(0);
	}

	.special_content_more {
		font-size: 2.4vw;
		display: flex;
		align-items: baseline;
		justify-content: flex-end;
		gap: 0 1vw;
		position: inherit;
		margin-top: 2vw;
		padding-top: 3vw;
	}

	.special_content_more::after {
		content: '';
		display: block;
		width: 2.4vw;
		height: 0.8vw;
		background: url(/wp-content/themes/mytrex/img/icon/more@2x.png) no-repeat left top;
		background-size: contain;
	}
	.special_content .swiper-slide:not(:last-child) {
		margin-bottom: 3vw;
	}
	.special_content .swiper-slide img {
		aspect-ratio: 1300 / 430;
	}

	.category_content {
		margin-bottom: 29vw;
	}

	.category_content_ttl {
		font-size: 4.2vw;
		text-align: center;
		margin-bottom: 9vw;
	}

	.category_list {
		display: flex;
		flex-wrap: wrap;
		gap: 1vw 1vw;
		margin: 0 2vw;
	}

	.category_list>li {
		position: relative;
	}

	.category_ttl {
		font-size: 3.7vw;
		line-height: 6vw;
		color: #ffffff;
		position: absolute;
		background-color: rgba(0, 0, 0, .4);
		color: #fff;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		-moz-transition: .3s;
		-o-transition: .3s;
		transition: .3s;
		text-align: center;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.category_img {
		overflow: hidden;
	}

	.category_img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		vertical-align: bottom;
		transition: 1s all;
	}

	.category_list>li:hover .category_img img {
		transform: scale(1.2, 1.2);
		transition: 1s all;
	}

	.category_list>li:nth-child(1) {
		width: 100%;
	}

	.category_list>li:nth-child(2) {
		width: 49.48%;
	}

	.category_list>li:nth-child(2) .category_img {
		height: 46vw;
	}

	.category_list>li:nth-child(3) {
		width: 49.48%;
	}

	.category_list>li:nth-child(3) .category_img {
		height: 46vw;
	}

	.category_list>li:nth-child(4) {
		width: 100%;
	}

	.product_content {
		margin-bottom: 21vw;
	}

	.product_content_ttl {
		font-size: 4.2vw;
		text-align: center;
		margin-bottom: 9vw;
	}

	.product_list {
		gap: 2vw 2vw;
	}

	.product_list>li {
		width: 48.89%;
	}

	.product_list>li:first-child {
		background-color: #ffffff;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.product_list>li:first-child::after {
		display: none;
	}

	.product_list>li:first-child img {
		width: 80%;
	}

	.product_content_more {
		text-align: right;
		font-size: 2vw;
		position: relative;
		margin-right: 2vw;
		padding-right: 5vw;
	}

	.product_content_more .icon-wrap {
		position: absolute;
		right: 0;
		top: 50%;
		transform: translatey(-50%);
		width: 4vw;
		height: 4vw;
		background: #D2E2D6;
		border-radius: 50%;
	}

	.product_content_more .icon {
		position: relative;
		display: inline-block;
		width: 100%;
		height: 100%;
	}

	.product_content_more .icon:before,
	.product_content_more .icon:after {
		position: absolute;
		content: "";
		display: block;
		transition: all 0.4s;
		background: #000000;
		left: 50%;
		top: 50%;
		width: 50%;
		height: 1px;
		transform: translate(-50%, -50%);
	}

	.product_content_more .icon:before {
		transform: translate(-50%, -50%) rotate(90deg);
	}

	/*＋、－切り替え*/
	.product_content_more.is_open .icon:before {
		transform: translate(-50%, -50%) rotate(0deg);
	}

	.support_content {
		position: relative;
		margin: 0 2vw;
	}

	.support_link {
		display: block;
	}

	.support_link:hover {
		color: inherit;
	}

	.support_txt {
		position: absolute;
		z-index: 1;
		color: #fff;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		-moz-transition: .3s;
		-o-transition: .3s;
		transition: .3s;
		text-align: center;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-flow: column;
	}

	.support_ttl {
		font-size: 4.2vw;
		margin-bottom: 6.5vw;
	}

	.support_contact {
		font-size: 3.0vw;
	}

	.support_img img {
		width: 100%;
	}

	.support_img {
		position: relative;
	}

	.support_img::after {
		content: '';
		display: block;
		width: 88%;
		height: 88%;
		border: 1px solid #ffffff;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	.journal_content {
		margin-bottom: 13vw;
	}

	.journal_head {
		margin-bottom: 8vw;
	}

	.journal_logo {
		width: 39vw;
		margin: 0 auto 6.6vw;
	}

	.journal_logo img {
		width: 100%;
	}

	.journal_ttl {
		text-align: center;
		font-size: 2.6vw;
		line-height: 1.9;
	}

	.journal_list {
		margin-bottom: 3vw;
	}

	.journal_list li {
		width: 71vw;
		margin: auto;
	}

	.journal_list li:not(:first-child) {
		display: none;
	}

	.journal_list_thumb {
		margin-bottom: 3vw;
	}

	.journal_list_thumb img {
		width: 100%;
		height: 49vw;
		object-fit: cover;
	}

	.journal_list_ttl {
		font-size: 2.4vw;
		line-height: 1.7;
		overflow: hidden;
		height: 14vw;
	}

	.journal_foot {
		text-align: right;
		margin-right: 2vw;
	}

	.journal_foot .journal_more {
		display: inline-block;
		font-size: 2.4vw;
		border-bottom: 1px solid #000;
		padding-bottom: 0.8vw;
	}

	.journal_foot .journal_more img {
		width: 2.8vw;
		vertical-align: baseline;
	}
}

/* page_top */
#pageTop {
	position: fixed;
	bottom: 2vw;
	right: 2vw;
	z-index: 10000;
}

#pageTop img {
	width: 100%;
}

#pageTop i {
	padding-top: 6px;
}

#pageTop a {
	display: block;
	z-index: 999;
	padding: 8px 8px 8px 8px;
	border-radius: 0px;
	width: 35px;
	height: 35px;
	background-color: #231815;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
}

#pageTop a:hover {
	text-decoration: none;
	background-color: #ffffff;
}

/* popup line */
@media screen and (max-width: 767px) {
	#line_frds {
		border-style: none;
		margin: 0 auto;
		padding: 0.5vw 0vw;
	}

	#line_frds img {
		width: 100vw;
	}

	#line_frds:hover {
		opacity: 0.8;
		transition: 0.8s;
	}

	#line_frds_pdct {
		border-style: none;
		margin: 0 auto;
		padding: 21vw 0vw 0.5vw;
	}

	#line_frds_pdct img {
		width: 100vw;
	}

	#line_frds_pdct:hover {
		opacity: 0.8;
		transition: 0.8s;
	}

	.button-open-line {
		display: block;
		margin: 0 auto;
		width: 100%;
		padding: 0 0;
		background-color: #ffffff78;
		color: #004479;
		border-radius: 10vw;
		cursor: pointer;
		border: none;
	}

	.button-open-line:hover {
		margin: 0 auto;
		width: 100%;
		padding: 0 0;
		background-color: #ffffff36;
		color: #004479;
		transition: 0.7s;
	}

	.modal-window-line {
		display: none;
		position: fixed;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 90vw;
		height: auto;
		z-index: 999999;
	}

	.button-close-line {
		position: absolute;
		top: 5vw;
		transform: translate(-50%, -50%);
		width: 6vw;
		height: 6vw;
		right: -1vw;
		cursor: pointer;
		border: 1px solid #afafaf;
		margin: 0 auto;
		background: #fff;
		border-radius: 7vw;
		font-size: 4vw;
		line-height: 1;
		padding: 0vw;
	}

	.popup_overlay {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		background-color: rgba(0, 0, 0, 0.5);
		width: 100%;
		height: 100%;
		z-index: 99999;
	}

	.js-close-line {
		position: absolute;
	}

	.popup_line_cnt {
		padding: 5vw 0vw 5vw;
		background: #fff;
	}

	.popup_line_cnt1 {
		text-align: center;
		padding: 1vw 0vw 3vw;
	}

	.popup_line_cnt1 img {
		width: 20vw;
	}

	.popup_line_cnt1_txt {
		font-size: 3.5vw;
		font-weight: 600;
		text-align: center;
		padding-bottom: 4vw;
	}

	.popup_line_cnt2 {
		text-align: center;
	}

	.popup_line_cnt2 img {
		width: 100%
	}

	.popup_line_cnt4 {
		display: block;
		text-align: center;
	}

	.popup_line_cnt4:hover {
		opacity: 0.8;
		transition: all .5s;
	}

	.popup_line_cnt4 img {
		width: 100%
	}

	.popup_line_close1 {
		float: left;
		width: 1.8vw;
		height: 1.8vw;
		border-radius: 3vw;
		border: 1px solid #afafaf;
		font-size: 1.2vw !important;
		padding: 0.1vw 0.1vw;
		line-height: 1.5;
	}

	.popup_line_close2 {
		font-size: 1.5vw;
	}

	.popup_line_cnt3 {
		padding: 3vw 0vw 2vw;
	}

	.popup_line_cnt3 a {
		background: #000;
		border-bottom: 3px;
		padding: 2vw 2vw 2vw 4vw;
		text-decoration: none;
		font-size: 3vw;
		width: 34vw;
		margin: 0 auto;
		display: flex;
		border-radius: 5px;
	}

	.popup_line_cnt3_txt {
		font-size: 4vw;
		line-height: 1;
		letter-spacing: .1vw;
		color: #fff;
		float: left;
	}

	.popup_line_cnt3_icon {
		font-size: 2vw;
		transform: rotate(-90deg);
		line-height: 1;
		float: left;
		color: #fff;
		margin-left: 2vw;
	}
}

@media screen and (min-width: 768px) {
	#line_frds {
		border-style: none;
		margin: 0 auto;
		padding: 0.5vw 0vw;
	}

	#line_frds img {
		width: 38vw;
	}

	#line_frds:hover {
		opacity: 0.8;
		transition: 0.8s;
	}

	#line_frds_pdct {
		border-style: none;
		margin: 0 auto;
		padding: 3.5vw 0vw 0.5vw;
	}

	#line_frds_pdct img {
		width: 38vw;
	}

	#line_frds_pdct:hover {
		opacity: 0.8;
		transition: 0.8s;
	}

	.button-open-line {
		display: block;
		margin: 0 auto;
		width: 100%;
		padding: 0 0;
		background-color: inherit;
		color: #004479;
		border-radius: 10px 0 0 10px;
		cursor: pointer;
		height: 11.02vw;
		border: none;
		overflow: hidden;
	}

	.button-open-line:hover {
		margin: 0 auto;
		width: 100%;
		padding: 0 0;
		background-color: #ffffff36;
		color: #004479;
		transition: 0.7s;
	}

	.modal-window-line {
		display: none;
		position: fixed;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 80vw;
		height: auto;
		z-index: 999999;
	}

	.button-close-line {
		position: absolute;
		bottom: 0vw;
		transform: translate(-50%, -50%);
		width: 7vw;
		height: 3vw;
		left: 40vw;
		cursor: pointer;
		border: 0;
		margin: 0 auto;
		background: #fff;
	}

	.popup_overlay {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		background-color: rgba(0, 0, 0, 0.5);
		width: 100%;
		height: 100%;
		z-index: 99999;
	}

	.js-close-line {
		position: absolute;
	}

	.popup_line_cnt {
		padding: 2vw 0vw 6vw;
		background: #fff;
	}

	.popup_line_cnt1 {
		text-align: center;
		padding: 1vw 0vw 3vw;
	}

	.popup_line_cnt1 img {
		width: 50vw;
	}

	.popup_line_cnt1_txt {
		font-size: 2vw;
	}

	.popup_line_cnt2 {
		text-align: center;
	}

	.popup_line_cnt2 img {
		width: 100%;
	}

	.popup_line_cnt4 {
		display: block;
		text-align: center;
	}

	.popup_line_cnt4:hover {
		opacity: 0.8;
		transition: all .5s;
	}

	.popup_line_cnt4 img {
		width: 100%;
	}

	.popup_line_close1 {
		float: left;
		width: 1.8vw;
		height: 1.8vw;
		border-radius: 3vw;
		border: 1px solid #afafaf;
		font-size: 1.3vw !important;
		padding: 0.25vw 0.2vw;
		line-height: 1;
	}

	.popup_line_close2 {
		font-size: 1.3vw;
		line-height: 1.4;
	}
}

/* popup line */
/* float bnr line */
@media screen and (max-width: 767px) {
	.banner_line {
		width: 15vw;
		bottom: 1vw;
		position: fixed;
		left: 0;
		box-sizing: border-box;
	}

	.banner_line :hover {
		opacity: 0.8;
		transition: 0.8s;
	}

	.banner_line .button-open-line {
		border-radius: 0vw;
	}

	.banner_line img {
		width: 100%;
	}
}

@media screen and (min-width: 768px) {
	.banner_line {
		width: 3.5vw;
		top: 7vw;
		position: fixed;
		right: 0;
		box-sizing: border-box;
	}

	.banner_line :hover {
		opacity: 0.8;
		transition: 0.8s;
	}

	.banner_line img {
		width: 100%;
	}
}

/* float bnr line */

/* item bnr line */
@media screen and (max-width: 767px) {
	.item_bnr_line {
		padding: 0vw 3vw;
	}

	.item_bnr_line:hover {
		opacity: 0.8;
		transition: 0.8s;
	}

	.item_bnr_line img {
		width: 100%;
	}

	.item_bnr_line_notbuy {
		padding: 0vw 3vw;
	}

	.item_bnr_line_notbuy:hover {
		opacity: 0.8;
		transition: 0.8s;
	}

	.item_bnr_line_notbuy img {
		width: 100%;
	}

	.lineid_content {
		display: block;
		padding: 0vw 2vw 10vw;
	}

	.lineid_content:hover {
		opacity: 0.8;
		transition: all .5s;
	}

	.lineid_content img {
		width: 100%;
	}

	.lineid_content_ttl {
		text-align: center;
		padding-bottom: 4vw;
	}

	.lineid_content_ttl img {
		width: 57vw;
	}
}

@media screen and (min-width: 768px) {
	.item_bnr_line {
		padding: 0;
		position: relative;
		top: -4vw;
	}

	.item_bnr_line:hover {
		opacity: 0.8;
		transition: 0.8s;
	}

	.item_bnr_line img {
		width: 100%;
	}

	.item_bnr_line_notbuy {
		padding: 0;
	}

	.item_bnr_line_notbuy:hover {
		opacity: 0.8;
		transition: 0.8s;
	}

	.item_bnr_line_notbuy img {
		width: 100%;
	}

	.lineid_content {
		display: block;
		padding-bottom: 10vw;
		width: 67vw;
		margin: auto;
	}

	.lineid_content:hover {
		opacity: 0.8;
		transition: all .5s;
	}

	.lineid_content img {
		width: 100%;
	}
}

/* item bnr line */

/* 2023/07 改修 */
.mytrex_content {
    opacity: 0;
}
.mytrex_content.is-active{
    animation-name:blurAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
}
@keyframes blurAnime{
    from {
        filter: blur(5px);
        transform: scale(1.02);
        opacity: 0;
    }
    to {
        filter: blur(0);
        transform: scale(1);
        opacity: 1;
    }
}
/* @font-face {
    font-family: "fs-icon";
    src: url("https://mytrex.itembox.design/system/font/fs-icon.ttf?3p00k1") format("truetype"), url("https://mytrex.itembox.design/system/font/fs-icon.woff?3p00k1") format("woff"), url("https://mytrex.itembox.design/system/font/fs-icon.svg?3p00k1#fs-icon") format("svg");
    font-weight: normal;
    font-style: normal;
} */
@font-face {
	font-family: 'icomoon';
	src:  url('/wp-content/themes/mytrex/fonts/icomoon.eot?q600zz');
	src:  url('/wp-content/themes/mytrex/fonts/icomoon.eot?q600zz#iefix') format('embedded-opentype'),
	  url('/wp-content/themes/mytrex/fonts/icomoon.ttf?q600zz') format('truetype'),
	  url('/wp-content/themes/mytrex/fonts/icomoon.woff?q600zz') format('woff'),
	  url('/wp-content/themes/mytrex/fonts/icomoon.svg?q600zz#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: block;
}
[data-rating="0.0"]::before {
    content: "\e9d7\e9d7\e9d7\e9d7\e9d7";
}
[data-rating="0.5"]::before {
    content: "\e9d8\e9d7\e9d7\e9d7\e9d7";
}
[data-rating="1.0"]::before {
    content: "\e9d9\e9d7\e9d7\e9d7\e9d7";
}
[data-rating="1.5"]::before {
    content: "\e9d9\e9d8\e9d7\e9d7\e9d7";
}
[data-rating="2.0"]::before {
    content: "\e9d9\e9d9\e9d7\e9d7\e9d7";
}
[data-rating="2.5"]::before {
    content: "\e9d9\e9d9\e9d8\e9d7\e9d7";
}
[data-rating="3.0"]::before {
    content: "\e9d9\e9d9\e9d9\e9d7\e9d7";
}
[data-rating="3.5"]::before {
    content: "\e9d9\e9d9\e9d9\e9d8\e9d7";
}
[data-rating="4.0"]::before {
    content: "\e9d9\e9d9\e9d9\e9d9\e9d7";
}
[data-rating="4.5"]::before {
    content: "\e9d9\e9d9\e9d9\e9d9\e9d8";
}
[data-rating="5.0"]::before {
    content: "\e9d9\e9d9\e9d9\e9d9\e9d9";
}

@media screen and (min-width: 768px) {
    .contents.kv {
        /* aspect-ratio: 16 / 9; */
    }
	.contents.kv img {
        aspect-ratio: 16 / 9;
    }
    .mytrex_content {
        display: flex;
        width: 65vw;
        margin: 0 auto 10vw;
    }
    .mytrex_content_ttl {
        width: 25.5vw;
        padding-right: 4.5vw;
        padding-top: 2.5vw;
        /* border-right: 1px solid #000000; */
        position: relative;
    }
    .mytrex_content_ttl::before {
        content: "";
        width: 1px;
        height: 100%;
        background-color: #261e1c;
        position: absolute;
        top: 0;
        right: 0;
    }
    .mytrex_content_lead {
        font-size: 2.0vw;
        letter-spacing: 0.24em;
        margin-bottom: 2vw;
        white-space: nowrap;
    }
    .mytrex_content_logo img {
        width: 100%;
    }
    .mytrex_content_txt {
        padding-left: 5vw;
        padding-top: 2.5vw;
        padding-bottom: 3.0vw;
        font-size: 1.0vw;
        letter-spacing: 0.2em;
        line-height: 2.45;
    }
    .mytrex_content_txt p:not(:last-child) {
        margin-bottom: 2vw;
    }
    .scrolldown::after{
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 40px;
        background: #c1dccc;
        animation: pathmove 2.0s ease-in-out infinite;
        opacity:1;
    }
    @keyframes pathmove{
        0%{
            height:0;
            top:0;
            opacity: 1;
        }
        50%{
            height:40px;
            opacity: 1;
        }
        100%{
            height:0;
            top:100%;
            opacity: 1;
        }
    }

    .product_slider_content {
        width: 75vw;
        margin-inline: auto;
        margin-bottom: 10vw;
    }
    .product_slider {
        position: relative;
        padding-left: 6vw;
        padding-right: 6vw;
    }
    .item_content_ttl {
        font-size: 1.6vw;
        letter-spacing: 0.1em;
        text-align: center;
        /* padding-bottom: 3vw; */
        position: relative;
    }
    .item_content_ttl::after {
        content: '';
        display: block;
        width: 1px;
        height: 2vw;
        background-color: #000000;
        margin: 3vw auto 0;
    }
    .item_list {
        /* display: flex; */
        margin-bottom: 4vw;
    }
    .item_list > li {
        /* width: 22.6%; */
        /* margin-right: 2.4%; */
        text-align: center;
    }
    .item_list .item_img img {
        width: 100%;
    }
    .item_list .item_name_ja {
        font-size: 0.8vw;
        /* letter-spacing:0.12em; */
        letter-spacing: 0.03em;
        margin-bottom: 0.5vw;
    }
    .item_list .item_name_en {
        font-size: 1.3vw;
        letter-spacing: 0.09em;
        margin-bottom: 2.0vw;
        font-weight: 600;
        min-height: 2em;
    }
	.item_list .item_name_en sup {
		font-size: .8vw;
	}
    .item_list .item_ttl {
        font-size: 0.9vw;
        letter-spacing: 0.10em;
        line-height: 1.7;
        margin-bottom: 2.0vw;
    }
    .item_list .item_star:before {
        /* font-family: 'fs-icon' !important; */
		font-family: 'icomoon' !important;
        speak: none;
        font-style: normal;
        font-weight: 400;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        color: #e59a15;
        font-size: 1.2vw;
        margin-right: 0.8vw;
    }
	.item_list .item_star {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.item_list .item_new {
		color: #e59a15;
	}
	.item_list [data-rating="1.0"].item_new:before {
		content: "\e9d9";
	}
    .item_list .item_star_review {
        font-size: 0.88vw;
        letter-spacing: 0.05em;
    }
    .item_more_txt {
        text-align: center;
        font-size: 0.9vw;
        letter-spacing: 0.16em;
    }
    .item_more_txt a {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .item_more_txt img {
        width: 1.3vw;
        margin-left: 1vw;
    }
    .info-pop {
        margin-bottom: 6vw;
		display: flex;
    	justify-content: center;
    }
    .product_slider .swiper-button-prev  {
        background-image: none;
    }
    .product_slider .swiper-button-next {
        background-image: none;
    }
    .product_slider .swiper-button-prev::after,
    .product_slider .swiper-button-next::after {
        bottom: 0;
        content: "";
        height: 0;
        margin: auto;
        position: absolute;
        top: 0;
        width: 0;
    }
    .product_slider .swiper-button-prev::after {
        display: inline-block;
        width: 10px;
        height: 10px;
        margin: 0 10px;
        border-left: 1px solid #424245;
        border-bottom: 1px solid #424245;
        transform: rotate(45deg);
    }
    .product_slider .swiper-button-next::after {
        display: inline-block;
        width: 10px;
        height: 10px;
        margin: 0 10px;
        border-left: 1px solid #424245;
        border-bottom: 1px solid #424245;
        transform: rotate(225deg);
    }
    .special_content .swiper {
        aspect-ratio: 130 / 43;
    }

	.tag_content {
		width: 64vw;
		margin-inline: auto;
		margin-bottom: 8vw;
	}
	.tag_content_ttl {
		font-size: 1.6vw;
		letter-spacing: .1em;
		text-align: center;
		position: relative;
	}
	.tag_content_ttl:after {
		content: '';
		display: block;
		width: 1px;
		height: 2vw;
		background-color: #000;
		margin: 1.5vw auto 2vw;
	}
	.tag_list {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.tag_list li a {
		display: block;
		width: 14vw;
		padding: 2vw 0;
		border: 1px solid #231815;
		border-radius: 10px;
		font-size: 0.9vw;
		letter-spacing: 0.09em;
		color: #231815;
		text-align: center;
		margin-bottom: 2vw;
		transition: all .2s ease;
	}
	.tag_list li a:hover {
		border: 1px solid #c1dccc;
		background-color: #c1dccc;
		color: #fff;
	}
}
@media screen and (max-width: 767px) {
    .contents.kv {
        /* aspect-ratio: 375 / 617; */
    }
	.contents.kv img {
        aspect-ratio: 375 / 617;
    }
    .mytrex_content {
        margin-inline: 10vw;
        margin-bottom: 20vw;
    }
    .mytrex_content_ttl {
        margin-bottom: 13vw;
    }
    .mytrex_content_lead {
        font-size: 7.4vw;
        letter-spacing: 0.12em;
        margin-bottom: 6vw;
    }
    .mytrex_content_logo {
        width: 44vw;
    }
    .mytrex_content_logo img {
        width: 100%;
    }
    .mytrex_content_txt {
        font-size: 3.3vw;
        letter-spacing: 0.18em;
        line-height: 2.4;
    }
    .mytrex_content_txt p:not(:last-child) {
        margin-bottom: 8vw;
    }
    .product_slider_content {
        margin-bottom: 20vw;
    }
    .item_content_ttl {
        font-size: 4.2vw;
        letter-spacing: 0.1em;
        text-align: center;
    }
    .item_content_ttl::after {
        content: '';
        display: block;
        width: 1px;
        height: 4vw;
        background-color: #000000;
        margin: 5vw auto 0;
    }
    .item_list {
        /* display: flex;
        flex-wrap: wrap;
        justify-content: center; */
        margin-bottom: 10vw;
    }
    .item_list li {
        width: 48.89%;
        text-align: center;
    }
    .item_list .item_img img {
		aspect-ratio: 1 / 1;
        width: 100%;
    }
    .item_list .item_name_ja {
        font-size: 2.1vw;
        letter-spacing: 0.10em;
        margin-bottom: 1.5vw;
    }
    .item_list .item_name_en {
        font-size: 4.6vw;
        letter-spacing: 0.05em;
        margin-bottom: 2.5vw;
        font-weight: 600;
        min-height: 2em;
    }
	.item_list .item_name_en sup {
		font-size: 2.1vw;
		vertical-align: middle;
	}
    .item_list .item_ttl {
        font-size: 2.4vw;
        letter-spacing: 0.01em;
        line-height: 1.7;
        margin-bottom: 4.5vw;
    }
	.item_list .item_star {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.item_list .item_new {
		color: #e59a15;
	}
	.item_list [data-rating="1.0"].item_new:before {
		content: "\e9d9";
	}
    .item_list .item_star_review {
        font-size: 2.2vw;
        letter-spacing: 0.05em;
    }
    .item_list .item_star:before {
        /* font-family: 'fs-icon' !important; */
		font-family: 'icomoon' !important;
        speak: none;
        font-style: normal;
        font-weight: 400;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        color: #e59a15;
        font-size: 2.5vw;
        margin-right: 2vw;
    }
    .item_more_txt {
        font-size: 3.3vw;
        letter-spacing: 0.12em;
        text-align: center;
    }
    .item_more_txt a {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .item_more_txt img {
        width: 3vw;
        margin-left: 3vw;
    }
    .info-pop {
        margin-bottom: 15vw;
    }
    .product_slider {
        padding-left: 10vw;
        padding-right: 10vw;
        position: relative;
    }
    .product_slider .swiper-button-prev  {
        background-image: none;
        left: 15px;
    }
    .product_slider .swiper-button-next {
        background-image: none;
        right: 15px;
    }
    .product_slider .swiper-button-prev::after,
    .product_slider .swiper-button-next::after {
        bottom: 0;
        content: "";
        height: 0;
        margin: auto;
        position: absolute;
        top: 0;
        width: 0;
    }
    .product_slider .swiper-button-prev::after {
        display: inline-block;
        width: 20px;
        height: 20px;
        /* margin: 0 10px; */
        border-left: 1px solid #424245;
        border-bottom: 1px solid #424245;
        transform: rotate(45deg);
    }
    .product_slider .swiper-button-next::after {
        display: inline-block;
        width: 20px;
        height: 20px;
        /* margin: 0 10px; */
        border-left: 1px solid #424245;
        border-bottom: 1px solid #424245;
        transform: rotate(225deg);
    }

	.tag_content {
		width: 80vw;
		margin-inline: auto;
		margin-bottom: 15vw;
	}
	.tag_content_ttl {
		font-size: 4.2vw;
		letter-spacing: .1em;
		text-align: center;
		position: relative;
	}
	.tag_content_ttl:after {
		content: '';
		display: block;
		width: 1px;
		height: 4vw;
		background-color: #000;
		margin: 5vw auto 5vw;
	}
	.tag_list {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.tag_list li a {
		display: block;
		width:37vw;
		padding: 5vw 0;
		border: 1px solid #231815;
		border-radius: 10px;
		font-size: 2.6vw;
		letter-spacing: 0.07em;
		color: #231815;
		text-align: center;
		margin-bottom: 4.5vw;
		transition: all .2s ease;
	}
	.tag_list li a:hover {
		border: 1px solid #c1dccc;
		background-color: #c1dccc;
		color: #fff;
	}
	.special_content .swiper-wrapper {
		display: block;
	}
}

@media screen and (max-width: 767px) {
	.info-pop-link1 {
		padding-bottom: 3vw;
	}
	.info-pop-icon {
		float: none;
		margin: 0 auto 3vw;
	}
	.info-pop-link2 {
		width: 59vw;
		margin-inline: auto;
	}
}
@media screen and (min-width: 768px) {
	.info-pop-link2 {
		width: 14vw;
		margin-inline: auto;
	}
	.info-pop-link1 {
		padding-bottom: 1.5vw;
	}
	.info-pop-link-l {
		padding-left: 3.8vw;
		padding-right: 3.8vw;
	}
}