@charset "utf=8";

/* ==========================================
カスタムプロパティ
========================================== */

:root {
	/* base color */
	--base-font-color: #1B1E19;
	--black01: #1B1E19;
	--black02: #151713;
	--white: #FAFBF8;
	--gray01: #857F7D;
	--gray02:#626361;
	--gray03: #989997;
	--gray04: #D6D9D4;
	--required: #E50000;

	/* ui color */
	--ui-border-color: #555;
	--ui-focus-color: #333;

	/* site color */
	--primary: #83AA40;
	--secondary: rgba(250, 251, 248, .3);
	--tertiary: #C1DB94;
	--quaternary: #6f726d;
	--fifth: #E3E4E1;


	/* btn color */
	/* --btn-primary: var(--primary);
	--btn-primary-hover: var(--primary-hover);
	--btn-secondary: var(--secondary);
	--btn-secondary-hover: var(--secondary-hover);
	--btn-tertiary: var(--tertiary);
	--btn-tertiary-hover: var(--tertiary-hover);
	--btn-quaternary: var(--quaternary);
	--btn-quaternary-hover: var(--quaternary-hover);
	--btn-fifth: var(--fifth);
	--btn-fifth-hover: var(--fifth-hover);
	--btn-sixth: var(--sixth);
	--btn-sixth-hover: var(--sixth-hover); */

	/* font family */
	--base-font-family: "Shippori Mincho", serif, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	/* --base-font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif; */
	--font-family01: "Domine", serif;
	/* --font-family02: ; */
	/* --font-family03: ; */

	--text-shadow-black: 0px 0px 15px rgba(27, 30, 25, 1);
	--mask-black: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 100%);
}

/* ==========================================
共通
========================================== */

html {
	/* font-size: var(--root-font-size); */
	font-size: 62.5%;
}

body {
	margin: 0 auto;
	max-width: 192rem;
	width: 100%;
	line-height: 1.6;
	font-size: 1.6rem;
	font-weight: 500;
	font-family: var(--base-font-family);
	color: var(--base-font-color);
	background: var(--white);
}

input {
	appearance: auto;
	border: 1px solid var(--ui-border-color);
}

input:focus-visible {
	outline: 1px solid var(--ui-focus-color);
	border-color: var(--ui-focus-color);
}

textarea {
	border: 1px solid var(--ui-border-color);
}

textarea:focus-visible {
	outline: 1px solid var(--ui-focus-color);
	border-color: var(--ui-focus-color);
}

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

header {
    position: relative;
    z-index: 99;
}

header, footer, main {
    max-width: 192rem;
    width: 100%;
    margin: 0 auto;
}

.padding-x {
	padding: 0 1.5rem;
}

.frame {
	max-width: 142rem;
	width: 100%;
	margin: 0 auto;
}

.flex-1 {
    flex: 1;
}

.anchor-box {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 4rem;
    width: 100%;
    margin: 0 auto 0 auto;
}

.fontA {
	font-family: "Domine", serif;
}

.bold {
	font-weight: 900;
}

.pc {
	display: block !important;	
}

.pc-flex {
	display: flex !important;	
}

.sp {
	display: none !important;	
}

.sp-flex {
	display: none !important;	
}

.navi-link:hover {
	text-decoration: underline;
}

.link-border a {
	text-decoration: none !important;
}

.link-border a:hover {
	text-decoration: underline !important;	
} 

/* ==========================================
色・マスク・ボタン
========================================== */

.primary {
    color: var(--primary);
}

.black {
    color: var(--black01);
}

.white {
	color: var(--white)
}

.gray02 {
	color: var(--gray02)
}

.gray03 {
	color: var(--gray03)
}

.bg-white {
	background: var(--white);
}

.bg-black {
	background: var(--black02);	
}

.bg-primary {
	background: var(--primary);	
}

.bg-fifth {
	background: var(--fifth);
}

.mask {
	position: relative;
}

.btn01 {
    /* max-width: 30.8rem;
    width: 100%; */
    display: inline-block;
    font-size: 2rem;
    font-weight: 600;
    position: relative;
    transition: all .3s;
}

.btn01 a {
	display: block;
	padding: 0 5.8rem 1rem 0;
}

.btn01:before {
    content: "";
    display: block;
    width: 100%;
    height: 0.1rem;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    transition: all .3s;
}

.btn01.white:before {
    background: var(--gray01);
}

.btn01.white:hover:before {
    background: var(--white);
}

.btn01-arrow:after {
    content: "";
    display: block;
    width: 1.8rem;
    height: 0.4rem;
    position: absolute;
    top: 1.3rem;
    bottom: auto;
    right: 0;
    transition: .3s;
}

.btn01-arrow.white:after {
    background: url(../../../../uploads/btn_arrow_right_white.svg) no-repeat center;
}

.btn01-arrow:hover:after {
    right: -.5rem;
}

.btn02 {
    display: inline-block;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.4em;
    position: relative;
    padding: 0 0 0 2rem;
}

.btn02-arrow:before{
    content: "";
    display: block;
    width: 1.5rem;
    height: 0.9rem;
    position: absolute;
    top: 1rem;
    bottom: auto;
    left: 0;
    transform: rotate(270deg);
    z-index: 10;
    transition: .3s;
}

.btn02-arrow.white:before {
    background: url(../../../../uploads/btn_arrow_down_white.svg) no-repeat center;
}

.btn02:after {
    content: "";
    display: block;
    width: 95%;
    height: 0.1rem;
    position: absolute;
    top: auto;
    bottom: 0;
	right: 0;
    z-index: 10;
    transition: .3s;	
}

.btn02.white:after {
    background: var(--white);
}

.btn02:hover::after {
    content: none;
}

.btn03 {
    max-width: 16.2rem;
    height: 4rem;
    width: 100%;
    border: .1rem solid;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 1.5rem 5rem;
    position: relative;
    cursor: pointer;
}

.btn03 a {
	padding: .8rem 1.5rem;
}

.btn03-arrow:after {
    content: "";
    display: block;
    width: 1.6rem;
    height: 0.35rem;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 5rem;
    margin: auto;
    transition: .3s;
}

.btn03-arrow.black:after {
    background: url(../../../../uploads/btn_arrow_right_black.svg) no-repeat center;
}

.btn03:hover::after {
    right: 3.5rem;
}

.btn04 {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 30rem;
    width: 100%;
    height: 6rem;
    font-size: 1.8rem;
    font-weight: 500;
	transition: all .3s;
}

.btn04 a {
    display: block;
	width: 100%;
    padding: 1.5rem;
	text-align: center;
	transition: all .3s;
}

.btn04.bg-white:hover {
    background: var(--primary);
}

.btn-row {
	display: flex;
	align-items: center;
	justify-content: center;
}

.ec-link {
    padding: 1.5rem;
    font-family: var(--font-family01);
    letter-spacing: 0.03em;
	transition: all .3s;
}

.ec-link figure {
    max-width: 3.9rem;
    width: 100%;
    margin: 0 .95rem 0 0;
	display: flex;
	align-items: center;
}

.ec-link-color {
    color: var(--black01);
    background: var(--primary);
}

.ec-link-color:hover {
    color: var(--black01);
    background: var(--tertiary);
	transition: all .3s;
}

.btob-link {
    max-width: 30rem;
    width: 47.24%;
    height: 6rem;
    padding: 1.5rem;
    font-size: 1.8rem;
    font-weight: 500;
	transition: all .3s;
}

.btob-link-color {
    color: var(--white);
    border: 1px solid var(--white);
    background: var(--secondary);
}

.btob-link-color:hover {
    background: var(--black01);
	transition: all .3s;
}

.btob-link-en, .btob-link-ko, .btob-link-cn {
    display: none;
}

.en-US .btob-link-jp, .ko-KR .btob-link-jp, .zh-CN .btob-link-jp {
    display: none;
}

.en-US .btob-link-en {
    display: flex;
}

.ko-KR .btob-link-ko {
    display: flex;
}

.zh-CN .btob-link-cn {
    display: flex;
}

/* ==========================================
タイトル・テキスト
========================================== */

.en-title01 {
	font-family: var(--font-family01);
	font-size: 4rem;
}

.jp-title01 {
	font-size: 4.8rem;
	letter-spacing: 0.05em;
	line-height: 1.4em;
}

.jp-title02 {
	font-size: 3.5rem;
	letter-spacing: 0.05em;
	line-height: 1.4em;
}

.title-deco01 {
	position: relative;	
	display: inline;
	z-index: 1;
}

.title-deco01:after {
	content: "";
	width: 5rem;
	height: 5rem;
	position: absolute;
    top: -2rem;
    left: -3.7rem;
	background: var(--primary);
	z-index: -1;
}

.text01 {
	font-size: 1.8rem;
	letter-spacing: 0.05em;
	line-height: 2.2em;
}

.text-center {
	text-align: center !important;
}


/* ==========================================
スマホ固定ヘッダー
========================================== */

.sp-header {
	width: 100%;
	height: 8rem;
	display: none;
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
}

.sp-header-block {
	width: 100%;
	height: 100%;
	flex: 1;
	border-right: solid 1px;
}

.sp-header-block-color {
	background: var(--primary);
	border-color: var(--white);
	color: var(--white);
}

.sp-header-link {
	width: 100%;
	height: 100%;
}

.sp-header-link {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.sp-header-link:before {
	content: "";
	display: inline-block;
	max-width: 3rem;
	width: 100%;
	height: 3rem;
	font-size: 2.5rem;
	font-weight: 900;
	text-align: center;
}

/* .sp-header-link-pagetop > a:before {
	content: "\f106";
	font-family: "Font Awesome 5 Free";
} */

.sp-header-link-tel:before {
	content: "\f095";
	font-family: "Font Awesome 5 Free";
}

.sp-header-link-contact:before {
	content: "\f0e0";
	font-family: "Font Awesome 5 Free";
}

.sp-header-link-map:before {
    content: "\f279";
    font-family: "Font Awesome 5 Free";
}

.sp-header-link-online:before {
    content: "\f07a";
    font-family: "Font Awesome 5 Free";
}

.sp-header-link-text {
	font-size: 1.4rem;
	margin: .7rem 0 0;
}

/* ---------- ハンバーガーボタン ---------- */

.sp-nav-btn {
    width: 7.5rem;
    height: 7.5rem;
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	position: fixed;
    top: 0;
    bottom: auto;
	right: 0;
	z-index: 99999;
}

.sp-nav-btn-color {
	background: var(--primary);
	color: var(--black01);
}

.sp-nav-btn-bar-box {
	max-width: 4rem;
	width: 100%;
	height: 3rem;
	display: flex;
	position: relative;
}

.sp-nav-btn-bar {
	display: block;
	width: 100%;
	height: 3px;
	background: var(--black01);
	position: absolute;
	right: 0;
	left: 0;
	margin: auto;
	transition: .3s;
}

.sp-nav-btn-bar-top {
	top: 10%;
}

.sp-nav-btn-bar-center {
	top: 50%;
	transform: translateY(-50%);
}

.sp-nav-btn-bar-bottom {
	top: 90%;
	transform: translateY(-100%);
}

.sp-nav-btn-text {
	font-size: 1.4rem;
	margin: .7rem 0 0;
}

.js-open .sp-nav-btn-bar-top {
	top: 50%;
	transform: rotate(35deg) translateY(-50%);
}

.js-open .sp-nav-btn-bar-center {
	opacity: 0;
}

.js-open .sp-nav-btn-bar-bottom {
	top: 50%;
	transform: rotate(-35deg) translateY(-50%);
}

/* ---------- ハンバーガーメニュー ---------- */

.js-sp-nav {
	display: none;
	max-width: 1920px;
	width: 100%;
	margin: auto;
	padding: 0;
	position: fixed;
	top: 0;
	bottom: 0;
	right: -100%;
	transition: ease .5s;
	z-index: 999;
}

.sp-nav.js-open {
	right: 0;
}

.sp-nav-bg {
	background: var(--white);
}

.sp-nav-area {
	width: 100%;
	height: 100%;
	overflow: auto;
	padding: 10rem 1.5rem;
}

.sp-nav-list {
	padding: 10rem 0 5rem;
	width: 100%;
	/* height: 100%; */
	overflow-y: scroll;
	-ms-overflow-style: none;
}

.sp-nav-list::-webkit-scrollbar {
	display:none;
}

.sp-nav-list-item {
	width: 100%;
	display: block;
	font-weight: bold;
	line-height: 1.5em;
	letter-spacing: 0.05em;
	position: relative;
	border-bottom: solid 1px;
}

.sp-nav-list-item a{
	display: block;
	padding: 1.5rem 0;
	font-size: 1.6rem;
	text-align: center;
	transition: .3s;
}

.sp-nav-list-item a:hover{
	opacity: .6;
}

.sp-nav-list-item-color{
	border-bottom-color: var(--sp-border-color);
}

.sp-nav-list-item-en, .sp-nav-list-item-ko, .sp-nav-list-item-cn {
    display: none;
}

.en-US .sp-nav-list-item-jp, .ko-KR .sp-nav-list-item-jp, .zh-CN .sp-nav-list-item-jp {
    display: none;
}

.en-US .sp-nav-list-item-en {
    display: block;
}

.ko-KR .sp-nav-list-item-ko {
    display: block;
}

.zh-CN .sp-nav-list-item-cn {
    display: block;
}

/* ==========================================
下層共通
========================================== */

.in-cover {
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.in-cover:before {
    content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: linear-gradient(to right, rgba(0, 0, 0, 20%), rgba(0, 0, 0, 60%), rgba(0, 0, 0, 20%));
	z-index: 2;
}

.in-cover-img {
    width: 100%;
}

.in-cover-text-area {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
	z-index: 3;
}

.in-cover-title-block {
	text-align: center;
}

.in-cover-title {
    font-size: 4.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1.354166;
}

.in-cover-text-block {
	margin: 3rem 0 0 0;
	text-align: center;
}

.in-cover-text {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    line-height: 1.78em;
}

.in-cover.bg-black {
    max-width: 192rem;
    height: 43rem;
}

/*========= カテゴリー =========*/

.category-area {
    max-width: 120rem;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin: 4rem auto 0;
}

.category-box {
    max-width: 16rem;
    width: 49%;
    position: relative;
}

.category-box:nth-child(n+2) {
    margin: 0 0 0 2%;
}

.category-list-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: bold;
    /* border: solid 1px var(--gray01); */
    padding: .5rem 1rem;
    /* color: var(--white); */
    background: var(--primary);
    cursor: pointer;
    transition: .3s;
}

.category-list-title:hover {
    color: var(--black01);
    background: var(--tertiary);
}

.category-list-title.active:after {
    transform: scale(1,-1);
}

.category-list, .archive-list{
    background: var(--tertiary);
    /* border: solid 1px #eee; */
    width: 100%;
    margin: auto;
    position: absolute;
    bottom: calc(100% + 3px);
    right: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.active + .category-list {
    opacity: 1;
    visibility: visible;
}

.active + .archive-list{
    opacity: 1;
    visibility: visible;
}

.category-list > li:not(:last-child) {
    border-bottom: solid 1px #eee;
}

.archive-list > li:not(:last-child) {
    border-bottom: solid 1px #eee;
}

.category-list > li > a {
    display: block;
    padding: 8px 10px;
    position: relative;
    color: var(--black01);
}

.archive-list > li > a {
    display: block;
    padding: 8px 10px;
    position: relative;
    color: var(--black01);
}

.category-list > li > a:hover {
    background: var(--gray04);
}

.archive-list > li > a:hover {
    background: var(--gray04);
}

.category-list-title:after {
    font-family: "FontAwesome";
    font-weight: 600;
    content: '\f107';
    display: block;
    font-size: 12px;
    padding-left: 10px;
    transition: transform .3s;
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 1920px) {

	html {
		/* 10px */
		font-size: 0.52083vw;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 1550px) {

	html {
		/* 10px */
		font-size: 0.64516vw;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 1024px) {

	html {
		/* 10px */
		font-size: 0.97656vw;
	}

	.anchor-box {
		height: 6rem;
	}

	.jp-title01 {
		font-size: 3.5rem;
	}
	
	/* ---------- ハンバーガーボタン ---------- */

	.sp-nav-btn {
		display: flex;
	}

	/* ---------- ハンバーガーメニュー ---------- */

	.js-sp-nav {
		display: block;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 768px) {

	html {
		/* 10px */
		font-size: 1.30208vw;
	}

	:root {
		--mask-black: linear-gradient(0deg, rgba(0, 0, 0, 1) 18%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 100%);
	}

	/* ==========================================
	共通
	========================================== */

	.pc {
		display: none !important;	
	}

	.pc {
		display: none !important;	
	}

	.pc-flex {
		display: none !important;	
	}

	.sp {
		display: block !important;	
	}

	.sp-flex {
		display: flex !important;	
	}

	.anchor-box {
		height: 7rem;
	}

	/* ==========================================
	スマホ固定ヘッダー
	========================================== */

	.sp-header {
		display: flex;
	}


	/* ==========================================
	下層共通
	========================================== */

	.in-cover {
		/* padding: 4.5rem 0; */
		background: #151713;
	}

	.in-cover-text-area {
		margin: 2.5rem 0 0;
	}

	.in-cover-img img {
		width: 100%;
		height: 80vh !important;
		object-fit: contain;
	}

	.in-cover-text {
		font-size: 1.6rem;
	}

	.in-cover-title {
		font-size: 3.8rem;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 576px) {

	html {
		/* 12px */
		font-size: 2.08333vw;
	}

	.jp-title01 {
        font-size: 2.6rem;
    }

	.jp-title02 {
		font-size: 2.6rem;
	}

	.text01 {
		font-size: 1.5rem;
	}

	.title-deco01:after {
		width: 3rem;
		height: 3rem;
		top: -1.5rem;
		left: -1.7rem;
	}

	.anchor-box {
		height: 4rem;
	}

	/* ==========================================
	スマホ固定ヘッダー
	========================================== */

	.sp-header{
		height: 6rem;
		/* padding: 0 6rem 0 0; */
	}

	.sp-header-link > a:before{
		font-size: 2rem;
	}

	.sp-header-link-text{
		font-size: 1rem;
		margin: 0;
	}

	/* ---------- ハンバーガーボタン ---------- */

	.sp-nav-btn{
		width: 6rem;
		height: 6rem;
	}

	.sp-nav-btn-bar-box{
		max-width: 3rem;
	}

	.sp-nav-btn-text{
		font-size: 1rem;
	}

	.sp-nav-btn-text{
		margin: 0;
	}

	/* ---------- ハンバーガーメニュー ---------- */

	.sp-nav-list-item a{
		padding: 1.2rem 0;
		font-size: 1.8rem;
	}

	/* ==========================================
	下層共通
	========================================== */

	/* .in-cover-img {
		height: 30rem;
	} */

	.in-cover-title {
		font-size: 2.8rem;
	}

	/* .in-cover-text {
		font-size: 1.4rem;
	} */

	.in-cover-text br {
		display: none;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 414px) {

	html {
		/* 14px */
		font-size: 2.43055vw;
	}


}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */