/* フロント専用 基本設定
/* 編集画面には適用しなくてよい
/* google font はfunctions.phpで読み込み

/* ========================================================================== */
/*	0. Document Setup
/* ========================================================================== */
/*root setting*/
:root{
	--billboardHeight: 100vh;
	--headerHeight: 60px;
}
/* Basic Setting
----------------------------------------------------------------------------- */

.large{ font-size: 1.2em; }

.small{ font-size: 0.8em; }

b , strong{ font-weight: var(--boldFontWeight); }

/* Functional Setting
----------------------------------------------------------------------------- */

.front-hidden{ display: none;}

/*	CONTENT WIDTH SETTING
/* -------------------------------------------------------------------------- */

.content-width{ max-width: var(--contentWidth); margin-inline: auto; }

.maximum-width{ max-width: var(--maximumWidth); margin-inline: auto; }

.horizontal-margin{ width: calc(100% - 36px); margin-inline: auto; }

.sidebar-width-setting{ width: calc(100% - 36px); max-width: 136rem; margin-inline: auto; }

@media ( min-width: 700px ){

	.horizontal-margin{ width: calc(100% - 72px); }

	.sidebar-width-setting{ width: calc(100% - 3em); margin-inline: auto; }
}

/* admin-bar ---------------------------------------------------------- */

.admin-bar .screen-height{ min-height: calc(100vh - 32px); }

@media (max-width: 782px){
	.admin-bar .screen-height{ min-height: calc(100vh - 46px); }
}



/* ========================================================================== */
/*	THEME SETTING
/* ========================================================================== */

/*	Site Header
/* -------------------------------------------------------------------------- */
#site_header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--headerHeight);
	z-index: 5;
	background-color: black;
}

body.modal-active #site_header{
	background-color: transparent;
}

#site_header_inner{
	display: flex;
	gap: 2%;
	align-items: center;
	height: 100%;
	padding-left: 50px;
}

#site_header_inner .header-titles{
	height: 100%;
	padding: 5px;
}

.custom-logo-link{
	position: relative;
}

#site_header_inner .header-titles .dt-logo{
	object-fit: contain;
	height: 100%;
	width: auto;
	transition: opacity 0.3s 0.2s ease;
}

#site_header_inner .header-titles .sp-logo{
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	transition: opacity 0.3s 0.2s ease;
}

body.modal-active #site_header_inner .header-titles .dt-logo{
	opacity: 1;
}

body.modal-active #site_header_inner .header-titles .sp-logo{
	opacity: 0;
}
/* Header Navigation
-----------------------*/
/* Header Navigation Wrapper*/
#header_navigation_wrapper{
	flex-grow: 1;
	font-size: var(--rfs18);
	height: 100%;
}
/* Primary Menu */
#primary_menu_wrapper{
	display: flex;
	justify-content: flex-end;
	gap: 2%;
	height: 100%;
	margin-inline: auto 0;
}

#primary_menu{
	display: none;
	flex-grow: 1;
	justify-content: space-between;
	gap: 1%;
	height: 100%;
	font-family: var(--gothicFont);
}

@media(min-width: 1200px){
	#primary_menu{
		display: flex;
	}
}

#primary_menu > li{
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	font-size: var(--rfs16);
}

.pickup-menu{
	height: 100%;
}

#primary_menu > li > a,
#pickup_menu > li >a{
    display: grid;
    place-items: center;
}

#primary_menu > li >a{
	padding-bottom: 5px;
	position: relative;
}

#primary_menu > li >a::after{
	content: "";
	height: 3px;
	width: 100%;
	background-color: white;
	transform: scale(0);
	transition: transform 0.3s ease-out;
	position: absolute;
	top: 100%;
	clip-path: polygon(0% 50% , 50% 100% , 100% 50% , 50% 0%);
}

#primary_menu > li > a:hover::after{
	transform: scale(1);
}

.pickup-menu > li{
	flex-grow: 1;
	height: 100%;
	background-color: #CB141D;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	font-size: var(--rfs16);
}
@media(hover: hover){
	.pickup-menu > li:hover{
		background-color: var(--themeColor);
	}
}

.pickup-menu > li > a{
	color: white;
	text-align: center;
	line-height: 1.5;
	font-size: inherit;
}

/* Primary Menu Sub Menu
------------------------------------------------------------------------ */

#primary_menu .sub-menu{
	list-style: none;
	font-size: 18px;
	position: absolute;
	z-index: 1;
	top: 100%;
	right: 0;
	left: -10%;
	width: 23rem;
	padding: 1em 0 0;
	color: #ffffff;
	border-radius: 0.4rem;
}

#primary_menu ul::before{ right : 0; left : 0; height : 2rem; }

#primary_menu .sub-menu li{ display: none; color: white; background-color: var(--themeBlue);transition: background-color 0.15s linear;}

#primary_menu .sub-menu li:last-child a{ border: none;}

@media(hover: hover){
	#primary_menu .sub-menu li:hover{ background-color: var(--themeColor); color: white; }
}

#primary_menu .sub-menu a{
	display: block;
    width: 100%;
    padding: 2rem 0;
    border: none;
    background: transparent;
    margin: 0;
	text-align: center;
}

#primary_menu .sub-menu li.menu-item-has-children > a{ padding-right : 4.5rem; }

#primary_menu .sub-menu li.menu-item-has-children .icon{ position : absolute; top : calc(50% - 0.5rem); right : 1.5rem; }

/* Mobile Nav Toggle
   hamburger menu button
------------------------------------------------------------------- */
#nav_toggle_wrapper{
	width: 50px;
	height: 50px;
	display: block;
	z-index: 5;
	padding: 5px;
	margin-right: 18px;
	transition: margin 0.3s ease;
}

#nav_toggle_wrapper:has(.active){
	margin-right: calc(var(--sbw) + 18px);
}

@media(min-width: 1200px){
	#nav_toggle_wrapper{
		display: none;
	}
}

#mobile_nav_toggle{
	display : flex;
	width : 100%;
	height:100%;
	flex-wrap: wrap;
	justify-content : center;
	align-content: center;
	gap: 5px;
	color: white;
	background-color: black;
	cursor: pointer;
	z-index: 100;
}

body.modal-active #mobile_nav_toggle{
	background-color: transparent;
}

#mobile_nav_toggle svg{
	width : 50px;
	height : 38px;
	display: block;
	position: relative;
	overflow: hidden;
	transition: all 0.5s ease;
	z-index: 1;
}

@media(min-width: 700px){
	#mobile_nav_toggle svg{
		width : 50px;
		height : 38px;
	}
}
.button-text{
	font-size : var(--rfs14);
	font-weight : var(--mediumFontWeight);
	width : 100%;
	text-align: center;
	white-space : nowrap;
	word-break : break-all;
	transform-origin: bottom center;
}

svg rect#u1, svg rect#l1 ,svg rect#m1,svg rect#m2,.button-text{
	transform-origin: center;
	transition: all 0.3s linear;
}
#mobile_nav_toggle .toggle-icon > svg {
    display: block;
}

#mobile_nav_toggle.active{
	align-content: center;
	padding: 0;
}

#mobile_nav_toggle.active svg{
	width: 50px;
	height: 38px;
	transform: rotate(180deg);
}

#mobile_nav_toggle.active rect#m1{
	transform: rotate(30deg);
}
#mobile_nav_toggle.active rect#m2{
	transform: rotate(-30deg);
}
#mobile_nav_toggle.active rect#u1{
	transform: scale(0);
}
#mobile_nav_toggle.active rect#l1{
	transform: scale(0);
}

#mobile_nav_toggle.active .button-text{
	opacity: 0;
	font-size: 0;
}
@media (min-width: 500px){
	#mobile_nav_toggle{
		top : 5px;
		left : calc(100vw - 78px);
	}
}
#scroll-down-arrow{ position: absolute; display: block; width: 50px; height: 120px; bottom: 50px; left: 5%; right: auto;}

body:not(.home) #scroll-down-arrow{ display: none; }

#scroll-down-arrow img{ position: absolute; top: 0; left: 0;  }




/*	Menu Modal
/* -------------------------------------------------------------------------- */
body.fixed{
	overflow: hidden;
	margin-right: var(--sbw);
}

.menu-modal{
	position : fixed;
	z-index : 4;
	top : 0;
	right : 100%;
	bottom : 0;
	left : -100%;
	display : none;
	overflow-x : hidden;
	overflow-y : auto;
	transition : opacity 0.05s ease-in, left 0s 0.25s, right 0s 0.25s;
	opacity : 1;
	background-color: rgba(0,0,0,0.7);
}

.admin-bar .menu-modal{ top : 32px; }

@media (max-width: 782px){
	.admin-bar .menu-modal{ top : 46px; }
}

.menu-modal.show-modal{ display : flex; }

.menu-modal.active{ right : 0; left : 0; transition : opacity 0.05s ease-out; opacity : 1; }

.menu-modal-inner{
	display: block;
	overflow : auto;
	justify-content : stretch;
	width : 100%;
	padding: 100px 1em 50px;
	transition : transform 0.2s ease-in, opacity 0.2s ease-in;
	transform : translateX(150rem);
	opacity : 1;
	background : var(--themeGradient);
}

.menu-modal.active .menu-modal-inner{
	transition-timing-function : ease-out;
	transform : translateX(0);
	opacity : 1;
	backdrop-filter: blur(10px);
}

@media ( min-width: 600px ){
	.menu-modal-inner{
		padding: var(--headerHeight) 0 40px;
	}
}

/*
modal-header
*/
.modal-header{
	display: flex;
	gap: 10px;
	justify-content: flex-start;
	align-items: center;
	padding-bottom: 1em;
	border-bottom: 1px solid var(--themeColor);
	margin-bottom: 1em;
}

.modal-header a{
	display: flex;
	flex-wrap: wrap;
    gap: 0 20px;
    align-items: flex-end;
	justify-content: flex-end;
	flex-basis: calc(var(--rfs30) * 9);
}

.modal-header a img{ width: 100%; margin: 0;}

.modal-header .modal-title{
	color: var(--bgOrange);
	font-weight: var(--boldFontWeight);
	font-family: var(--englishFont);
	font-size: var(--rfs18);
	line-height: 1;
}

@media(min-width: 450px){
	.modal-header a{
		justify-content: flex-start;
		flex-wrap: nowrap;
	}
}

@media ( min-width: 600px ){
	.modal-header{ max-width: 100%;}
}

@media(min-width: 1000px){
	.modal-header{
		display: flex;
		justify-content: flex-start;
		gap: 20px;
		padding-bottom: 0.3em;
		border-bottom: 1px solid var(--themeColor);
		margin-bottom: var(--variableSpaceS);
	}
}
/*
modal-menu-upper
*/
.modal-menu-upper{
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px 6%;
	max-width: 16em;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 50px;
	margin-bottom: var(--variableSpaceS);
}

.modal-menu-upper > li{
	flex-basis: 47%;
}

.modal-menu-upper .menu-title{
	color: var(--themeColor);
	font-size: var(--rfs18);
	font-weight: var(--boldFontWeight);
	transform: rotate(0.03deg);
	transition: color 0.3s ease;
}

@media(hover: hover){
	.modal-menu-upper .menu-title:hover{
		color: var(--buttonCyan2);
	}
}

.modal-menu-upper .menu-title-eng{
	font-size: var(--rfs14);
	color: var(--themeColor);
}

@media(min-width: 600px){
	.modal-menu-upper{
		flex-wrap: nowrap;
		gap: 20px;
		max-width: 35.2em;
	}

	.modal-menu-upper > li{
		flex-basis: auto;
	}

}
/*
modal-menu
*/

.modal-menu{
	width : 100%;
	list-style: none;
	display: grid;
	grid-template-columns: 1fr;
	justify-content: center;
	margin-bottom: var(--variableSpaceS);
}

@media(min-width: 1000px){
	.modal-menu{
		flex-wrap: nowrap;
	}
}

.modal-menu > li{
	display: block;
	border-width: 0 0 0 0;
	flex-basis: 100%;
}

.modal-menu > li > .ancestor-wrapper{
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid white;
	padding-block: 1.3em;
	position: relative;
}

.modal-menu > li:not(.menu-item-has-children) .ancestor-wrapper::after{
	content: "";
	width: 2em;
	height: 1em;
	background-image: url(/images/common/right_arrow.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	position: absolute;
	right: 0;
	z-index: -1;
}

.modal-menu .sub-menu-toggle{
	width: 4em;
	height: 2.2em;
	background: transparent;
	color: white;
	cursor: pointer;
}

.modal-menu .sub-menu-toggle svg{
	width: 2em;
	height: 100%;
	margin-inline: auto 0;
}

.modal-menu .sub-menu-toggle #vertical_line{
	stroke: white;
}
.modal-menu .sub-menu-toggle.active #vertical_line{
	stroke: transparent;
}

.modal-menu >li a{
	color: white;
	width: 100%;
	display: block;
	font-size: var(--rfs20);
	transition: all 0.3s ease;
}

.modal-menu >li > a .menu-title-eng{
	font-size: var(--rfs14);
}
@media(min-width: 1000px){
	.modal-menu > li{
		flex-basis: 11em;
	}
	.modal-menu >li > a{
		margin-bottom: 1.5em;
	}
}

@media(hover: hover){
	.modal-menu li a:hover{
		color: var(--themeColor);
	}
}

/*
modal-menu sub-menu
*/
.modal-menu .sub-menu{
	list-style: none;
	padding: 0 0 0 1em;
}

.modal-menu .sub-menu.active{
	padding:  0.8em 0 0 1em;
}

.modal-menu .sub-menu li {
	border-left-width: 1rem;
	height: 0;
	transition: height 0.3s ease;
	border: none;
	font-size: var(--rfs18);
	color: inherit;
	line-height: 2;
	font-weight: 500;
	overflow: hidden;
}

.modal-menu .sub-menu.active > li{
	height: 2em;
}

@media(min-width: 1000px){
	.modal-menu .sub-menu li{
		margin-bottom: 1em;
	}
}

/*	Page Header
/* -------------------------------------------------------------------------- */
body.home #page_header{
	position : relative;
	z-index : 2;
	height: auto;
	background-color: black;
	margin-top: var(--headerHeight);
	overflow: hidden;
}

body:not(.home) #page_header{
	position : relative;
	z-index: 2;
	display : flex;
	flex-wrap: wrap;
	align-items : center;
	justify-content : center;
	background-color: var(--bodyBgColor);
	margin-top: var(--headerHeight);
}

h1.page-title{
	font-family: var(--minchoFont);
	font-size: var(--rfs20);
	text-align: center;
	color: var(--themeColor);
}

.search h1.page-title{ overflow : hidden; max-width : 95vw; word-break : keep-all; }

/* Featured Media
------------------------------------------------------------------------------*/
.featured-media{
	width: 100%;
	position: relative;
	height: 170px;
}

@media(min-width: 1000px){
	.featured-media{
		height: 300px;
	}
}

.featured-media-inner{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.featured-media img{
	object-fit: cover;
	height: 100%;
}

@media(min-width: 1000px){
	.featured-media img{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	body.kaiseimaru .featured-media img{
		object-position: left 70%;
	}
}



/* billboardMovie
----------------------------------------------------------------------------- */
#billboard video{
	display: block;
	opacity: 1;
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 121vw;
}

@media(min-width: 850px){
	#billboard video{
		height: calc(100vh - var(--headerHeight));
	}
}
/*breadcramb
------------------------------------------------------------------------------ */
.breadcramb{
	width: 100%;
	text-align: left;
	font-weight: var(--lightFontWeight);
	margin-top: 5px;
}
/* ========================================================================== */
/*	2．MAIN
/* ========================================================================== */
#site_content{
	position: relative;
	z-index: 1;
}
/* page.php
============================================================================= */

body:not(.home):not(.single-interview) #site_content{ position: relative;}

/*	index.php post_type_archive / blog / monthly_archive
----------------------------------------------------------------------------- */

.two-columns{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

@media(min-width: 1000px){
	.two-columns{
		flex-direction: row-reverse;
	}
}

.two-columns #main-column{
	flex-basis: 100%;
	background-color: white;
	padding-top: var(--variableSpaceS);
	padding-inline: 18px;
}

.two-columns #archive-sidebar{
	flex-basis: 100%;
	background-color: var(--themeGray);
	padding-top: var(--variableSpaceS);
	padding-inline: 18px;
}

@media(min-width: 700px){
	.two-columns #main-column{
		padding-inline: 36px;
	}

	.two-columns #archive-sidebar{
		padding-inline: 36px;
	}
}



@media(min-width: 1000px){

	.two-columns #main-column{
		flex-basis: 60.5%;
	}

	.two-columns #archive-sidebar{
		flex-basis: 39.5%;
		padding: 0;
		position: relative;
	}


}

/* #main-column
----------------------------------------------------------------------------- */
#main-column > article{
	width: 100%;
	margin-right: 0;
	margin-left: auto;
	padding-bottom: var(--variableSpaceS);
	padding-bottom: var(--variableSpaceS);
}

#main-column > article.hentry{
	border-bottom: 1px solid var(--themeBlue);
}

@media(min-width: 1409px){
	#main-column > article{
		width: calc(100% + 36px - (100vw - var(--sbw) - 1320px) / 2);
	}
}

/* entry-header
----------------------------------------------------------------------------- */

.entry-header{ padding: 0; background-color: inherit; }

h2.entry-title{
	margin: 0 0 0.5em;
	width: 100%;
	font-size: var(--rfs30);
}

.entry-title a{ text-decoration: none; color: inherit; }

.post-date{
	font-size: var(--rfs18);
	font-weight: var(--regularFontWeight);
	margin-bottom: 1em;
}

.post-cat{
	color: var(--themeColor);
}

/* pagenation
----------------------------------------------------------------------------- */

.nav-links{ text-align: center; }

span.page-numbers:not(.prev):not(.next){
	background-color: var(--themeColor);
	color: white;
	margin: 5px;
	display: inline-block;
	width: 1.5em;
	padding: 3px;
 }

a.page-numbers{ transition: all 0.3s ease;}

a.page-numbers:not(.prev):not(.next){
	border: 1px solid var(--footerBgColor);
	margin: 5px;
	display: inline-block;
	width: 1.5em;
	padding: 3px;
	background-color: white;
	color: var(--themeBlue);
	border: 1px solid var(--themeBlue);
}

@media(hover: hover){
	a.page-numbers:not(.prev):not(.next):hover{
		background-color: var(--themeBlue);
		color: white;
	}
}

a.page-numbers.next,a.page-numbers.prev{ color: var(--themeColor); transition: all 0.3s ease;}

@media(hover: hover){
	a.page-numbers.next:hover,a.page-numbers.prev:hover{ color: var(--textOrangeDark); }
}

a.page-numbers.prev .arrow{ display: inline-block; transform: rotate(30deg);}

a.page-numbers.next .arrow{ display: inline-block; transform: rotate(-30deg);}

.page-numbers.current{ position: relative;}

.page-numbers.current::after{
	content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    font-size: 10px;
    background-color: var(--themeColor);
    bottom: -5px;
    left: 0;
    right: 0;
    margin: auto;
}

/* #archive-sidebar
----------------------------------------------------------------------------- */
#archive-sidebar h2{
	font-size: var(--rfs20);
	font-family: inherit;
	font-weight: var(--midiumFontWeight);
	display: block;
	width: 100%;
	max-width: 350px;
	line-height: 1;
	padding: 0.59em 0;
	text-align: left;	;
	color: black;
	margin-bottom: 0.5em;
}
#archive-sidebar ul{
	margin: 0 10px;
	font-weight: var(--regularFontWeight);
	line-height: 1.5;
}

#archive-sidebar ul.cat-list li:last-child{
	margin-top: 1em;
}

#archive-sidebar select{
	font-size: var(--rfsS);
	margin: 0 10px;
	padding: 0.5em;
	width: calc(100% - 20px);
	background-color: white;
	border: 1px solid #ccc;
}
.sidebar-block-wrap{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 15px;
	max-width: 100%;
	margin: 0;
	padding-inline: 0;
}

@media(min-width: 1000px){
	.sidebar-block-wrap{
		max-width: 458px;
		margin: 0;
		justify-content: flex-start;
		padding: 36px;
	}
	.two-columns .sidebar-block-wrap.fixed{
		position: fixed;
		top: var(--headerHeight);
		right: 0;
		margin-right: calc(39.5% - 458px);
	}
}

.sidebar-block{ flex-basis: 233px; flex-grow: 1; max-width: 350px; }



/*	Single.php
============================================================================= */

/* SINGLE PAGINATION
----------------------------------------------------------------------------- */

.pagination-single{
	font-size: var(--rfsM);
	margin-top: 5rem;
}

.pagination-single-inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.pagination-single hr:first-child{
	margin: 0 0 2.8rem 0;
}

.pagination-single hr:last-child{
	margin: 2.8rem 0 0.8rem 0;
}

.pagination-single-inner > *{
	font-weight: var(--boldFontWeight);
	display: flex;
	align-items: baseline;
	text-decoration: none;
	letter-spacing: -0.0275em;
	width: 7.5em;
	color: var(--themeColor);
	font-size: var(--rfs18);
	line-height: 30px;
}

.pagination-single a.previous-post .arrow{
	margin-right: 1rem;
}

.pagination-single a.next-post .arrow{
	margin-left: 1rem;
}

.pagination-single a.return-list{
	width: 6em;
	background-color: var(--textblueLight);
	padding: 0.5em;
	font-size: var(--rfs20);
	color: black;
}

.pagination-single a .dashicons{
	width: 1em;
	height: 1em;
	font-size: 30px;

}

@media(hover: hover){
	.pagination-single a:focus .title , .pagination-single a:hover .title{
		text-decoration: underline;
	}
}

@media ( min-width: 700px ){

	.pagination-single{
		font-size: var(--rfsL);
		margin-top: 8rem;
	}

	.pagination-single.only-next .pagination-single-inner{
		justify-content: flex-end;
	}

	.pagination-single hr:first-child{
		margin: 0 0 4rem 0;
	}

	.pagination-single hr:last-child{
		margin: 4rem 0 0.8rem 0;
	}

	.pagination-single .next-post{
		text-align: right;
	}
}


/*	search.php
============================================================================= */

/* Search Results
----------------------------------------------------------------------------- */

.no-search-results-form{
	padding-top: 5rem;
}

@media ( min-width: 700px ){

	.no-search-results-form{
		padding-top: 8rem;
	}
}

/* Search Form
----------------------------------------------------------------------------- */

.search-form{ display: flex; align-items: stretch; flex-wrap: nowrap; margin: 0 0 -0.8rem -0.8rem; }

.search-form .search-field , .search-form .search-submit{ margin: 0 0 0.8rem 0.8rem; }

.search-form label{ font-size: inherit; display: flex; align-items: stretch; width: 100%; max-width: 300px; margin: 0; }

.search-form .search-field{ width: 100%; }

.search-form .search-submit{ flex-shrink: 0; }

@media(hover: hover){
	.search-form .search-submit:focus , .search-form .search-submit:hover{ text-decoration: none; }
}
/*	Error 404
============================================================================= */


.error404 #site_content{
	padding-top: 4rem;
}

.error404-content{
	text-align: center;
	color: white;
}

.error404 #site_content .search-form{
	justify-content: center;
	margin-top: 3rem;
}
@media (min-width: 700px){

	.error404 #site_content{
		padding-top: 8rem;
	}
}


/*  Site Map
============================================================================= */

/* ========================================================================== */
/*	3．FOOTER
/* ========================================================================== */


/*	Site Footer
----------------------------------------------------------------------------- */

#site_footer{
	padding : var(--variableSpaceS) 0 0;
	position : relative;
	z-index: 1;
	background-color: rgba(0,0,0,0.6);
}

/* footer widget
----------------------------------------------------------------------------- */
#footer_widget{
	display: grid;
	font-size: var(--rfs24);
	grid-template-columns: 1fr;
	grid-template-rows: auto auto auto;
	row-gap: 1.5em;
	justify-content: space-between;
}
.links{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 2%;
}

.links a{
	display: inline-flex;
	width: auto;
	height: 3.33em;
	background-color: white;
	border-radius: 1.65em;
	padding-inline: 1.5em;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease;
}

.links a img{ width: 1.25em;}

.links a:first-child{ width: 13.5em;}

.links a:last-child{ width: 10.5em}

.links a:hover{
	background-color: #FDEDCD;
}

.sns{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 2%;
}

@media(min-width: 1100px){
	#footer_widget{
		grid-template-columns: 38.5% 615px;
		grid-template-rows: 3.33em 3.5em;
	}

	.footer-logo{
		grid-column: 1 / 2;
	}

	.links{
		grid-column: 2 / 3;
		grid-row: 1 / 2;
		justify-content: space-between;
	}

	.sns{
		grid-column: 2 / 3;
		grid-row: 2 / 3;
		justify-content: space-between;
	}
}

.icons{
	display: flex;
	align-items: center;
}

.address{
	color: white;
}

.policy-link{
	color: white;
	display: block;
	text-align: right;
}
/* ページトップに戻る
----------------------------------------------------------------------------- */

a.to-the-top{
	position : fixed;
	z-index: 2;
	right : 10px;
	bottom : 1rem;
	transform : translateX(135%);
	transition: transform 0.3s ease;
	color: var(--themeBlue);
}

a.to-the-top svg{
	width: 40px;
	height: 30px;
}
a.to-the-top > *{
	pointer-events : none;
}

.to-the-top-long{
	display : none;
}

/* COPYRIGHTS
----------------------------------------------------------------------------- */
#copyrights{
	text-align: center;
	font-size: var(--rfs18);
	font-family: var(--englishFont);
	color: white;
    height: calc(var(--rfs18) * 3);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}


svg#svg_library + div{
	position: relative;
	z-index: 5;
}

/*=========================================================================== */
/* Google Map embed
============================================================================= */

.ggmap{
	position: relative;	overflow: hidden; max-width: 100%; height: 300px;text-align: center; }

.ggmap iframe , .ggmap object , .ggmap embed{ position: absolute; top: 0; left: 0; width: 100%; height: 100%; }



/*=========================================================================== */
/* Contents Setting
============================================================================= */
/*common setting
-----------------------------------------------------------------------------*/
.bg-white{
	position: relative;
	z-index: 1;
	background-color: white;
	overflow: hidden;
}

.bg-gray{
	background-color: var(--themeGray);
}

.rounded{
	border-radius: 5vw;
}

@media(min-width: 1000px){
	.rounded{
		border-radius: 50px;
	}
}

/* history list
----------------------------------------------------------------------------*/

.history-list{
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em 1em;
	font-family: var(--gothicFont);
}

.history-list .separator{
	flex-basis: 100%;
	height: 1px;
	border-bottom: 1px solid #CCCCCC;
	margin: 0.2em 0;
}

.history-list .left{
	flex-basis: 100%;
}

.history-list .right{
	flex-basis: 100%;
}

.history-list figure{
	display: inline-block;
}

@media(min-width: 600px){
	.history-list .left{
		flex-basis: 8em;
	}

	.history-list .right{
		flex-basis: calc(100% - 9em );
		padding-left: 0;
	}
}

/* pourin
-----------------------------------------------------------------------------*/
[class^="flex-pourin"]{
	display: flex;
	flex-wrap: wrap;
	flex-direction: column-reverse;
	gap: 20px 0;
}

[class^="flex-pourin"] figure{ max-width: 100%; margin: 0 auto 20px;}

[class^="flex-pourin"]::after{ content: "";clear: both;display: block;}

@media(min-width: 600px){

	[class^="flex-pourin"]{	display: block;}

	.flex-pourin-right figure{ float: left; max-width: 49%; margin: 0 6% 20px 0!important;}

	.flex-pourin-left figure{ float: right; max-width: 30%; margin: 0 0 20px 6%!important;}
}

/* gradation button
----------------------------------------------------------------------------*/
.gradation-button{
	background: linear-gradient(to bottom ,#F7DBB0 ,#FF8900);
	display: flex;
	flex-direction: column;
	padding: 15px;
	border-radius: 30px;
	text-align: center;
	transition: all 0.3s ease;
}
/*------------------------------------------------------------*/
 /* PARALLAX BG */
/*------------------------------------------------------------*/
#parallax_bg{
	width: 100%;
	height: 100vh;
	background-image: url(/images/site_bg.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-color: black;
	position: fixed;
	top: 0;
}
/*------------------------------------------------------------*/
 /* Section Header */
/*------------------------------------------------------------*/
.section-header{
	font-family: var(--englishFont);
	font-size: var(--rfs30);
	font-weight: 700;
	color: var(--themeColor);
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 0.2em;
	border-bottom: 1px solid currentColor;
	margin-bottom: 1em;
}

.section-header::before{
	content: "";
	width: 0.66em;
	height: 0.66em;
	background-image: url(/images/section_header_mark.svg);
}
/*------------------------------------------------------------*/
 /* TOP PAGE */
/*------------------------------------------------------------*/


#top_page_top{
	position: relative;
	display: grid;
	place-items: center end;
	width: 100%;
	height: 100vh;
}

#top_page_top img{
	width: 80%;
	max-width: 500px;
}

#instagram_feed{
	position: relative;
	 background-color: white;
}

#order_made{
	width: 100%;
	aspect-ratio: 1062 / 1080;
	min-height: 600px;
	background-image: url(/images/section_bg_order_made.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: grid;
	place-items: center;
	position: relative;
	overflow: hidden;
}

@media(min-width: 1077px){
	#order_made{
		height: 1080px;
		aspect-ratio:unset;
	}
}

.diamond{
	width: 100%;
	height: 685px;
	aspect-ratio: 1 / 1;
	margin-inline: auto;
	position: absolute;
	display: grid;
	place-items: center;
	padding-top: var(--variableSpaceS);
}

@media(min-width: 700px){
	.diamond{
		width: 100%;
		height: auto;
		max-width: 990px;
		position: relative;
	}
}

.diamond::before{
	content: "";
	position: absolute;
	width: 685px;
	aspect-ratio: 1 / 1;
	opacity: 0.9;
	clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
	background-color: #005741;
	mix-blend-mode: multiply;
}

@media(min-width: 700px){
	.diamond::before{
		width: 100%;
	}
}

.diamond-inner{
	position: relative;
	font-size: var(--rfs4830);
	height: 80%;
	display: grid;
	place-content: start;
	row-gap: 1em;
}

@media(min-width: 700px){
	.diamond-inner{
		place-content: start;
	}
}

.diamond figure img{
	width: 23%;
}

@media(min-width: 1077px){
	.diamond figure img{
	width: 110px;
}
}

.diamond .catch{
	font-size: inherit;
	color: #FFE67C;
	font-weight: 700;
	text-align: center;
}

.diamond .description{
	color: white;
	font-size: var(--rfs20);
	text-align: center;
}

#kagoshima_wagyu_leather{
	width: 100%;
	aspect-ratio: 1062 / 1080;
	min-height: 600px;
	background-image: url(/images/section_bg_wagyu_leather.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
	position: relative;
}

@media(min-width: 1077px){
	#kagoshima_wagyu_leather{
		height: 1080px;
		aspect-ratio:unset;
	}
}

.wagyu-inner{
	display: grid;
	place-items: center;
	position: absolute;
	font-size:  var(--rfs4830);
	margin-inline: auto;
	left: 0;
	right: 0;
	top: 45%;
	transform: translateY(-50%);
	gap: 1em;
}

.wagyu-inner .catch{
	font-size: inherit;
	color: #FFE67C;
	font-weight: 700;
	text-align: center;
}

.wagyu-inner .description{
	color: white;
	font-size: var(--rfs20);
	text-align: center;
}

#kaihatsu{
	padding-top: 37vw;
	padding-bottom: var(--variableSpaceM);
	position: relative;
	background-color: white;
}

@media(min-width: 1300px){
	#kaihatsu{
		padding-top: 480px;
	}
}

#kaihatsu::before{
	content: "";
	width: 77%;
	max-width: 1000px;
	aspect-ratio: 1000 / 630;
	background-image: url(/images/kagoshima_wagyu_leather_glove.png);
	background-size: contain;
	position: absolute;
	left: 0;
	right: 0;
	margin-inline: auto;
	top: 0;
	transform: translateY(-29%);
}

.flex-type1{
	display: flex;
	flex-wrap: wrap;
	column-gap: 3%;
	row-gap: 20px;
	font-size: var(--rfs4830);
}

.flex-type1 > *{
	flex-basis: 100%;
	max-width: 730px;
	margin-inline: auto;
}
.flex-type1 div{
	display: grid;
}

@media(min-width: 1200px){
	.flex-type1 .left{
		flex-basis: 56.2%;
	}

	.flex-type1 .right{
		flex-basis: 40.8%;
	}
}

#kaihatsu h3{
	font-size: inherit;
	color: #B28146;
	font-weight: 700;
	text-align: left;
	margin-bottom: 20px;
}

#kaihatsu p{
	font-size: var(--rfs20);
}

#process_movie{
	padding-bottom: var(--variableSpaceM);
}

#process_movie .max1400{
	background-color: #005741;
	padding: var(--variableSpaceS);
	font-size: var(--rfs4830);
	display: flex;
	flex-wrap: wrap;
	column-gap: 3%;
	row-gap: 20px;
}

#process_movie .max1400 > *{
	flex-basis: 100%;
	max-width: 800px;
	margin-inline: auto;
	display: grid;
	row-gap: 20px;
	align-content: space-between;
}

@media(min-width: 1200px){
	#process_movie .max1400 figure{
		flex-basis: 61.5%;
	}

	#process_movie .max1400 div{
		flex-basis: 35.5%;
	}
}

#process_movie iframe{
	width: 100%;
	aspect-ratio: 16 / 9;
}

#process_movie h3{
	font-size: 0.83em;
	color: #FFE67C;
	font-weight: 700;
	text-align: left;
}

#process_movie p{
	font-size: var(--rfs20);
	color: white;
}

#process_movie a{
	display: flex;
	width: 15em;
	font-size: 0.5em;
	height: 3.33em;
	justify-content: center;
	align-items: center;
	background-color: #FFFFFF;
	border-radius: 1.66em;

}

#charm .section-title-grid{
	width: 100%;
	backdrop-filter: brightness(0.5) blur(10px);
	-webkit-backdrop-filter: brightness(0.5) blur(10px);
	display: grid;
	place-items: center;
}

#charm .section-title-grid h2{
	display: grid;
	font-size: clamp(18px , calc( 3.95vw + 5.3px ) , 48px);
	grid-template-columns: 3.54em 3.6em 9.2em;
	grid-template-rows: auto auto;
	font-weight: 700;
	color: white;
	margin-inline: auto;
	margin-block: 1.3em;
}

#charm .section-title-grid h2::before{
	content: "";
	background-image: url(/images/pitcher.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: bottom;
	grid-column: 1 / 2;
	grid-row: 1 / 3;
}

#charm .section-title-grid h2 .left{
	grid-column: 2 / 3;
	grid-row: 1 / 3;
	font-size: 4.583em;
	height: 1em;
	line-height: 1;
	width: 0.8em;
}

#charm .section-title-grid h2 .right-top{
	grid-column: 3 / 4;
	grid-row: 1 / 2;
	height: 1em;
	line-height: 1em;
	margin-top: 0.8em;
}

#charm .section-title-grid h2 .right-bottom{
	grid-column: 3 / 4;
	grid-row: 2 / 3;
	font-size: 2.29em;
	height: 1em;
	line-height: 1em;
}

.charm-body{
	position: relative;
	background-color: black;
}

.charm-inner{
	position: relative;
	padding-top: var(--variableSpaceM);
}

.charm-inner::before{
	content: "";
	width: 100%;
	max-width: 1350px;
	aspect-ratio: 1350 / 1650;
	position: absolute;
	top: var(--variableSpaceS);
	left: 0;
	background-image: url(/images/section_bg_charm.png);
	background-position: top left;
	background-size: contain;
	background-repeat: no-repeat;
}

#charm .right-fix{
	position: relative;
	font-size: clamp(35px , calc( 3.24vw + 24.6px ) , 70px);
	max-width: 8.57em;
	margin-left: auto;
	margin-right: 0;
	display: grid;
	row-gap: var(--variableSpaceS);
	counter-reset: number 0;
}

#charm .right-fix > div{
	padding-block: var(--variableSpaceS);
	width: 100%;
	position: relative;
	text-align: center;
}

#charm .right-fix > div::before{
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #005741;
	opacity: 0.65;
	clip-path: polygon(16.6% 0, 100% 0%, 83.4% 100%, 0% 100%);
}

#charm .right-fix > div::after{
	counter-increment: number 1;
	content: counter(number);
	position: absolute;
	right: 10%;
	top: 10%;
	font-size: 2.85em;
	font-family: var(--englishFont);
	font-style: italic;
	color: rgba(255,255,255,0.3);
	line-height: 0.8;
}

#charm h3{
	font-size: inherit;
	color: #F0BF61;
	font-weight: 700;
	position: relative;
	margin-bottom: 0.3em;
}

#charm .right-fix p{
	color: white;
	font-size: 0.343em;
	position: relative;
}

#charm .right-fix img{
	max-width: 210px;
	width: 35%;
}

#how_to_order{
	position: relative;
	border-block: 10px solid white;
}

#online_shop{
	position: relative;
	border-bottom: 10px solid white;
}

.link-banner figure{
	position: relative;
}

.link-banner h2.section-header{
	position: absolute;
	top: 8%;
	left: 0;
	right: 0;
	margin-inline: auto;
	color: white;
	border-bottom: 1px solid white;
}

.link-banner h2.section-header::before{
	background-image: url(/images/section_header_mark_w.svg);
}

.link-banner figure{
	overflow: hidden;
}

.link-banner figure::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	mix-blend-mode: multiply;
	opacity: 0.8;
	transition: all 0.3s ease;
}

.link-banner figure img{
	transition: all 0.3s ease;
	min-height: 150px;
	object-fit: cover;
	object-position: center;
}

#how_to_order figure::after{
	background-color: #005741;
}

#online_shop figure::after{
	background-color: #EA5E00;
}

.link-banner:hover figure img{
	transform: scale(1.1);
}

.link-banner:hover figure::after{
	opacity: 0.3;
}

.link-banner a{
	display: grid;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	place-items: center;
	color: white;
	font-size: var(--rfs50);
	font-weight: 700;
}

#north_american_leather{
	position: relative;
	background-color: #FDEDCD;
	font-size: var(--rfs20);
	text-align: center;
	padding-block: 1.5em;
	margin-bottom: 5em;
}

#north_american_leather::after{
	content: "";
	width: 100%;
	height: 100%;
	background-image: url(/images/diving_catch.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: clamp(100px , 20% , 200px);
	position: absolute;
	top: 100%;
	display: grid;
	background-color: white;
}

#profile{
	background-color: black;
	position: relative;
}

#profile .flex-type1 > div{
	display: grid;
	row-gap: 20px;
}

#profile h3{
	font-size: inherit;
	color: #F0BF61;
	font-weight: 700;
	text-align: left;
}

#profile .name{
	color: white;
	font-size: var(--rfs30);
	display: flex;
	align-items: flex-end;
}

#profile .name span{
	font-size: var(--rfs20);
}

#profile .rome{
	font-family: var(--englishFont);
	font-size: var(--rfs24);
	font-weight: 500;
	color: var(--themeColor);
	letter-spacing: 0.18em;
}

#profile p{
	color: white;
	font-size: var(--rfs20);
}

#originality{
	position: relative;
	background-color: white;
}

#originality h3{
	font-size: var(--rfs40);
	color: #B28146;
	font-weight: 700;
	text-align: left;
	margin-bottom: 20px;
}

#originality p{
	font-size: var(--rfs20);
	color: black;
}

#biz_scope{
	background-color: #FDEDCD;
	padding: 15px;
}

#biz_scope .inner{
	border: 2px solid #F0BF61;
	background-color: #FDEDCD;
	padding: 1em 0.5em;
}

#biz_scope .inner div{
	font-size: var(--rfs30);
	max-width: 17.2em;
	margin-inline: auto;
	display: grid;
	place-content: center;
	row-gap: 20px;
}

#biz_scope ul{
	font-size: var(--rfs30);
	color: black;
	width: 100%;
}

.parallax-window{
	width: 100%;
	height: 700px;
	position: relative;
	display: grid;
	place-items: center;
}

.parallax-window img{
	width: 80%;
	max-width: 500px;
}
/*------------------------------------------------------------*/
 /* How to Order */
/*------------------------------------------------------------*/
#how_to_order .flex-type1{
	font-size: var(--rfs4830);
}

#how_to_order h3{
	font-size: inherit;
	color: #B28146;
	font-weight: 700;
	text-align: left;
}

#how_to_order p{
	font-size: var(--rfs20);
}

#flow h3{
	font-size: var(--rfs36);
	font-weight: 700;
	color: #B28146;
	text-align: center;
	margin-bottom: 1em;
}

.flow-block-wrap{
	counter-reset: number;
}

.flow-block{
	text-align: center;
	position: relative;
	display: grid;
	row-gap: 1em;
	font-size: var(--rfs36);
	padding: 50px var(--variableSpaceS) var(--variableSpaceS);
}

.flow-block::before{
	content: counter(number);
	counter-increment: number;
	font-size: inherit;
	font-family: var(--englishFont);
	font-weight: 500;
	width: 1.4em;
	height: 1.4em;
	display: grid;
	place-items: center;
	background-color: #005741;
	color: white;
	position: absolute;
	left: 0;
	top: 0;
}

.flow-block.store{
	background-color: #DFEFF7;
}

.flow-block.store::after{
	content: "当　店";
	color: white;
	font-size: 0.5em;
	background-color: #558CB2;
	height: 2.8em;
	width: 6.66em;
	display: grid;
	place-items: center;
	position: absolute;
	left: 2.8em;
	top: 0;
}

.flow-block.customer{
	background-color: #FDEDCD;
}

.flow-block.customer::after{
	content: "お客様";
	color: white;
	font-size: 0.5em;
	background-color: #CB141D;
	height: 2.8em;
	width: 6.66em;
	display: grid;
	place-items: center;
	position: absolute;
	left: 2.8em;
	top: 0;
}
.flow-block h4{
	font-size: var(--rfs30);
	font-weight: 700;
	color: #B28146;
}

.flow-block h4 span{
	display: block;
	font-size: 0.6em;
}

#how_to_order .flow-block p{
	font-size: var(--rfs18);
}

#flow .arrow{
	width: 60px;
	height: 30px;
	background-color: #005741;
	margin: 10px auto;
	clip-path: polygon(0 0 , 50% 100% , 100% 0);
}

.flow-block .grid-wrap{
	display: grid;
	font-size: var(--rfs24);
	grid-template-columns: 1fr;
	grid-template-rows: 5em 5em 5em;
	gap: 10px;
}

.flow-block .grid-wrap > div{
	color: #B28146;
	font-weight: 700;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	background-color: white;
	border-radius: 20px;
	column-gap: 10px;
}

@media(min-width: 900px){
	.flow-block .grid-wrap{
		grid-template-columns: 1fr 1fr 1fr;
		grid-template-rows: 5em;
	}
}

.flow-block img{
	margin: 0;
}

.order-sheet-dl{
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: auto auto;
	gap: 20px;
}

@media(min-width: 500px){
	.order-sheet-dl{
		grid-template-columns: auto auto;
		grid-template-rows: auto;
	}
}

.order-sheet-dl a{
	display: inline-flex;
	width: auto;
	height: 3.33em;
	background-color: white;
	border-radius: 1.65em;
	padding-inline: 1.5em;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease;
	font-size: var(--rfs20);
}

.order-sheet-dl a:hover{
	background-color: #FDEDCD;
}
/*----------------------------------------------------------------------------*/
/* Privacy Policy
/*----------------------------------------------------------------------------*/
#privacy_policy h3{
	font-size: var(--rfs30);
	font-weight: 700;
}
/*----------------------------------------------------------------------------- */
/* Contact Form
------------------------------------------------------------------------------*/

.wpcf7 {
	width: 100%!important;
	font-family: var(--gothicFont);
}

.wpcf7-form{ position: relative;}

.wpcf7 dl {
	display: flex;
	flex-wrap: wrap;
	margin: 2rem 1rem 4rem 1rem;
}
.wpcf7 dt {
	flex-basis: 100%;
	font-weight: var(--regularFontWeight);
}
.wpcf7 dd{
	flex-basis: 100%;
	margin: 0;
	font-weight: var(--regularFontWeight);
}

.wpcf7 select{
	padding: 0.5em;
	font-size: var(--rfs18);
	width: 100%;
}

.wpcf7 input:not([type='checkbox']),.wpcf7 textarea {
	padding: 1rem 1rem;
	box-sizing: border-box;
	width: 100%;
	font-size: var(--rfs18);
	font-family: var(--gothicFont);
	font-weight: var(--regularFontWeight);
}
.wpcf7 input[type="radio"]{display: inline-block; width: 1em;}

.wpcf7 input.p-postal-code{ width: 13em;}

.wpcf7 input[type="submit"]{
	border: none;
	color: white;
	font-size: var(--rfs24);
	width: 100%;
	max-width: 22em;
	height: 4.2em;
	background-color: var(--themeColor);
	cursor: pointer;
	border: 1px solid var(--themeColor);
	transition: var(--easeOutExpo)-in-out;
}

.wpcf7 input[type="submit"]:disabled{
	pointer-events: none
}

.wpcf7 input[type="submit"]:hover{
	background-color: white;
	color: var(--themeColor);
}

.wpcf7 input[type="number"] {
	display: inline-block;
	width: 9rem;
	padding: 1rem 0.3rem 1rem 1.8rem;
}
.wpcf7 .required {
	width: 1em;
	height: 1.66em;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	color: #558CB2;
	font-size: 1em;
	border-radius: 5px;
    transform: scale(0.8);
}
.wpcf7 .error {
	display: inline-block;
	        animation: blink 1s ease 5;

	-webkit-animation: blink 1s ease 5;
}
.wpcf7 textarea{
	box-sizing: border-box;
}

@keyframes blink {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.wpcf7 .left-top > div,
.wpcf7 .right-bottom > div {
	padding-right: 1em;
}
.wpcf7 .left-top > div {
	width: 100%;
	padding: 0.5rem 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	gap: 0.5em;
}

.wpcf7 .left-top .item-name{ line-height: 1; width: auto;}

.wpcf7-spinner{
	display: block;
	margin: auto;
}

@media (min-width: 750px){
	.wpcf7 dt {
		flex-basis: 11em;
	}
	.wpcf7 dd{
		flex-basis: calc(100% - 11em);
	}
}

.wpcf7-radio{
	display: grid;
	row-gap: 10px;
}

.wpcf7-turnstile > div {
  text-align: center;
  margin-top: 1em;
}