@charset "utf-8";

/*-----------------------------
	import
------------------------------*/

@import url('reset.css');
@import url('normalize.css');
@import url('animation.css');
@import url('nav.css');
@import url('en.css');
@import url('form.css');


/*-----------------------------
	変数設定
------------------------------*/

:root {
	--font: ten-mincho, serif;
	--max-width01: 1200px;
	--max-width02: 800px;
}

/*-----------------------------
	初期設定
------------------------------*/

html,body {
	width: 100%;
	overflow-x: hidden;
	margin: 0;
	padding: 0;
	font-family: ten-mincho, serif;
	font-weight: 400;
	font-style: normal;
	text-align: left;
	color: #000;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-variant-east-asian: simplified;
	font-feature-settings: "palt" 1;
}
body {
	position: relative;
	height: 100%;
	background-color: #fff;
}
html.open,
html.open body{
	overflow: hidden !important;
}

*/
* {
    margin:0;
    padding:0;
}
* {
    min-width: 0;
    min-height: 0;
}
a,
a:active,
a:visited,
a:focus  {
	color: inherit;
	text-decoration: none;
	outline: none;
	transition: all .3s;
	pointer-events: auto !important;
}
a:hover {
	color: inherit;
	opacity: 1;
	transition: all .3s;
}

::selection {
	color: #fff !important;
	background: #000 !important;
}
::-moz-selection {
	color: #fff !important;
	background: #000 !important;
}
img,
img a {
	border: none;
	backface-visibility:hidden;
	-webkit-backface-visibility: hidden;
}
ul,li {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
h1, h2, h3, h4, p, li,
input, textarea, button, select,
pre, code, kbd, samp {
	font-family: var(--font);
}
h1, h2, h3, h4, p, li {
	text-align: left;
}
h1, h2, h3, h4 {
	font-weight: 400;
}
li, p {
	font-size: 14px;
	line-height: 1.8em;
}
span.small_font {
	font-size: 0.8em;
}
.bold {
	font-weight: 700;
}
.deco {
	position: absolute;
	pointer-events: none;
}
.bg_gray {
	background: #efefef;
}
.accordion_wrap {
	display: none;
}

.pc {
	display: block;
}

.sp {
	display: none;
}


/* コンテンツレイアウト */

.wrapper90 {
	width: calc(100% - 80px);
	max-width: var(--max-width01);
	margin: 0 auto;
}

.wrapper100 {
	width: 100%;
	max-width: var(--max-width01);
	margin: 0 auto;
}




/*-----------------------------
	共通
------------------------------*/

#contents {
	position: relative;
	width: 100vw;
	overflow-x: hidden;
	padding-bottom: 200px;
}
#top #contents {
	padding-bottom: 300px;
}

#bg {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background-image: url(../images/bg.gif);
	background-size: 100% auto;
	background-position: center top;
	opacity: 0.5;
}
#bg div {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 200px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 0) 100%);
}


/*-- 言語切り替え
------------------------------*/

.head_nav .lang {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 110px;
	height: 50px;
	background: center center no-repeat;
	background-image: url(../images/lang_cloud.png);
	background-size: contain;
}


.bogo-language-switcher {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
}
.fixed_right .bogo-language-switcher {
	flex-direction: column-reverse;
}
.bogo-language-switcher li span {
	display: inline-block;
	width: 20px;
	height: 20px;
	text-align: center;
	line-height: 18px;
	font-size: 10px;
}
.bogo-language-switcher li.current span a {
	display: block;
	width: 100%;
	height: 100%;
	background-image: url(../images/circle.png);
	background-size: cover;
}
.bogo-language-switcher .en-US:before {
	font-size: 10px;
}
.head_nav .bogo-language-switcher .en-US:before {
	content: '/';
}
.foot_lang .bogo-language-switcher .en-US:before,
.nav_foot .bogo-language-switcher .en-US:before {
	content: '/';
	margin: 0 2.5px;
}
.fixed_right .bogo-language-switcher .en-US:before {
	content: '・';
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: -10px;
}


.head_logo {
	position: absolute;
	top: 40px;
	right: 50px;
	z-index: 9999;
}
.head_logo img {
	width: 70px;
}

.head_wrap {
	position: relative;
	width: 100vw;
	height: 100vh;
}
.head_wrap > div {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
}
.head_wrap > div .head_nav {
	position: absolute;
	top: 40px;
	left: 50px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	width: calc(100vw - 50px);
	height: calc(100vh - 80px);
	pointer-events: none;
}
.head_wrap > div .head_nav h2 {
	font-size: 36px;
	font-weight: 400;
}

.fixed_right {
	position: fixed;
	top: 40px;
	bottom: 40px;
	right: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
	width: 100px;
	height: calc(100vh - 80px);
	pointer-events: none;
	visibility: visible;
	opacity: 1;
	z-index: 9990;
	transition: .5s ease;
}
#top .fixed_right {
	opacity: 0;
	filter: blur(10px);
}
.fixed_right.hide {
	right: -20px;
	opacity: 0 !important;
	visibility: hidden;
	transition: .5s ease;
}
.fixed_right .reserve {
	writing-mode: vertical-rl;
}
.fixed_right .reserve a {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: auto;
	padding: 20px 0;
	margin: 10px 0;
	border: 1px solid #000;
	border-right: none;
	background: #fff;
	font-size: 14px;
	text-align: center;
}
.fixed_right .lang {
	margin-right: 10px;
}


.head_sns i {
	font-size: 22px;
}

#footer {
	width: calc(100vw - 100px);
	margin: 0 auto;
}
.footer01 {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding: 60px 0 30px 0;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
}
.foot_nav {
	flex: 1;
	text-align: left;
}
.foot_arrow {
	flex: 1;
	text-align: right;
}
.foot_arrow img {
	margin-right: 10px;
}
.footer01 img {
	width: 40px;
	transform: rotate(-90deg);
}
.footer02 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px 0;
}
.footer02 ul {
	display: flex;
	gap: 20px;
}
.footer02 li {
	font-size: 10px;
}
.footer02 img {
	width: 30px;
}



/*-----------------------------
	トップページ
------------------------------*/

.head_wrap > div.top_head,
.top_cloud {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
}
.top_open .head_wrap > div.top_head {
	position: absolute;
	overflow: hidden;
}


.head_wrap > div.top_head .head_nav {
	opacity: 0;
	filter: blur(10px);
}

.top_head img.kv {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	object-fit: contain;
	opacity: .5;
	filter: blur(10px);
	transform: scale(.95);
}

.top_cloud {
	z-index: 9999;
	pointer-events: none;
}
.top_cloud img.cloud {
	position: absolute;
	top: 0;
	width: 100vw;
	height: 100vh;
	object-fit: cover;
	opacity: 1;
	filter: blur(0px);
	transform: scale(1);
}
.top_cloud img.cloud01 {
	right: 0%;
	object-position: left center;
}
.top_cloud img.cloud02 {
	left: 0%;
	object-position: right center;
}


#top {
	position: fixed;
	overflow-y: hidden;
}
#top.top_relative {
	position: relative;
	overflow-y: auto;
}
#top.top_open .fixed_right {
	opacity: 1;
	filter: blur(0px);
	transition: .5s ease all;
}
#top.top_open .top_head img.kv {
	opacity: 1;
	filter: blur(0px);
	transform: scale(1);
	transition: 3s ease all;
}
#top.top_open .top_head .head_nav {
	opacity: 1;
	filter: blur(0px);
	transition: .5s ease all;
}
#top.top_open .top_cloud img.cloud {
	opacity: 0;
	filter: blur(10px);
	transform: scale(2);
	transition: 5s ease all;
}
#top.top_open .top_cloud img.cloud01 {
	right: 100%;
}
#top.top_open .top_cloud img.cloud02 {
	left: 100%;
}



.top_news_wrap {
}
.top_news {
	position: relative;
	max-width: 480px;
	margin: 0 auto;
	border: 1px solid #000;
	background: #fff;
	margin-top: 200px;
}
.top_new_head {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 40px;
}
.top_new_head h2 {
	direction: rtl;
	writing-mode: vertical-rl;
	white-space: pre;
	font-feature-settings: "vert";
	font-size: 20px;
}
.top_news_list {
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
}
.top_news_list a {
	display: block;
	margin: 0 15px;
	padding: 15px 0;
	border-bottom: 1px solid #000;
	transition: .5s ease all;
}
.top_news_list a:hover {
	opacity: .5;
	transition: .5s ease all;
}
.top_news_list a:last-child {
	border-bottom: none;
}
.top_news_list h3,
.top_news_list p {
	font-size: 14px;
}
.top_new_foot a {
	display: flex;
	align-items: center;
	padding: 20px 15px;
}
.top_new_foot img {
	width: 20px;
	margin-left: 10px;
	vertical-align: sub;
}

.top_news_wrap .news_01 {
	left: 10%;
	bottom: -30%;
	z-index: -1;
}
.top_news_wrap .news_02 {
	right: 20%;
	top: -20%;
	z-index: -1;
}


.top_content_wrap {
	display: flex;
	margin-top: 300px;
}
.top_content_ttl {
	position: relative;
	width: 200px;
	z-index: 1;
}
.top_content_wrap > div:last-child {
	flex: 1;
	width: 100%;
	margin-top: 80px;
	margin-right: 200px;
}

.top_shop_wrap {
	position: relative;
}
.top_shop_wrap > div {
	position: relative;
	display: flex;
	justify-content: center;
	width: 100%;
	max-width: 680px;
	margin: 0 auto;
}

.top_shop_wrap > div a {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: 440px;
	margin-bottom: 30px;
}
.top_shop_wrap > div a img:first-child {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}
.top_shop_wrap h3 {
	position: relative;
	display: inline-block;
	margin-top: -20px;
	padding: 10px 30px;
	border: 1px solid #000;
	background: #fff;
	z-index: 1;
}
.top_shop_wrap img.arrow {
	position: absolute;
	right: -15px;
	bottom: 10px;
	width: 30px;
}

.top_shop_wrap .shop_01 {
	right: 70%;
	bottom: 65%;
}
.top_shop_wrap .shop_02 {
	right: 70%;
	bottom: 40%;
}
.top_shop_wrap .shop_03 {
	left: 70%;
	top: 70%;
}

.top_takushoku_wrap {
	position: relative;
}
.top_takushoku_wrap > div {
	position: relative;
	display: flex;
	justify-content: center;
	width: 100%;
	max-width: 440px;
	margin: 0 auto;
	margin-top: 80px;
}
.top_takushoku_wrap > div a {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}
.top_takushoku_wrap > div a img:first-child {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}
.top_takushoku_wrap h3 {
	position: relative;
	display: inline-block;
	margin-top: -20px;
	padding: 10px 30px;
	border: 1px solid #000;
	background: #fff;
	z-index: 1;
}
.top_takushoku_wrap img.arrow {
	position: absolute;
	right: -15px;
	bottom: 10px;
	width: 30px;
}

.top_takushoku_wrap .takushoku_01 {
	left: 85%;
	bottom: 20%;
}
.top_takushoku_wrap .takushoku_02 {
	right: 80%;
	top: 55%;
}


.top_menu_wrap {
	position: relative;
}
.top_menu_wrap > div {
	position: relative;
	display: flex;
	justify-content: center;
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
	margin-top: 80px;
	gap: 20px;
}
.top_menu_wrap a {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}
.top_menu_wrap a > div {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	aspect-ratio: 1 / 1;
	background-size: cover;
}
.top_menu_wrap a > div:before {
	content: '';
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4)
}
.top_menu_wrap h4 {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 35px; 
	height: 90px;
	direction: rtl;
	writing-mode: vertical-rl;
	font-feature-settings: "vert";
	border: 1px solid #fff;
	color: #fff;
	z-index: 1;
}
.top_menu_wrap h3 {
	margin: 10px 0;
}
.top_menu_wrap img.arrow {
	width: 30px;
}

.top_menu_wrap .menu_01 {
	left: 80%;
	bottom: 60%;
}
.top_menu_wrap .menu_02 {
	right: 85%;
	top: 70%;
}
.top_menu_wrap .menu_03 {
	left: 80%;
	bottom: 80%;
	z-index: -1;
}
.top_menu_wrap .menu_04 {
	right: 70%;
	top: 55%;
	z-index: -1;
}
.top_menu_wrap .menu_05 {
	left: 65%;
	bottom: -40%;
	z-index: -1;
}


.top_clothes_wrap {
	position: relative;
}
.top_clothes_wrap > div {
	position: relative;
	display: flex;
	justify-content: center;
	width: 100%;
	max-width: 440px;
	margin: 0 auto;
	margin-top: 80px;
}
.top_clothes_wrap > div a {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}
.top_clothes_wrap > div a img:first-child {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}
.top_clothes_wrap h3 {
	position: relative;
	display: inline-block;
	margin-top: -20px;
	padding: 10px 30px;
	border: 1px solid #000;
	background: #fff;
	z-index: 1;
}
.top_clothes_wrap img.arrow {
	position: absolute;
	right: -15px;
	bottom: 10px;
	width: 30px;
}

.top_clothes_wrap .clothes_01 {
	right: 80%;
	bottom: 65%;
}
.top_clothes_wrap .clothes_02 {
	left: 80%;
	bottom: 80%;
}

.foot_cloud {
	bottom: 0;
	left: 20%;
}


/*-- 個別ページ・個別記事共通
------------------------------*/

.article_wrapper {
	width: 100%;
	margin: 0 auto;
}
.article_wrapper p {
	letter-spacing: .1em;
}

.article_head {
	max-width: var(--max-width02);
	margin: 0 auto;
	margin-bottom: 60px;
}
.article_head h1 {
	font-size: 30px;
}
.article_head p {
	font-size: 18px;
	color: #808080;
	margin-top: 10px;
}

.article_head .page_head {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	margin-top: 120px;
	margin-bottom: 40px;
}
.article_head .page_head img {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}
.page_title,
.head_link,
.to_all {
	position: absolute;
	left: calc(100% + 10px);
	font-size: 14px;
	line-height: 1;
	direction: rtl;
	writing-mode: vertical-rl;
	text-orientation: upright;
	font-feature-settings: "vert";
}
.page_title {
	top: 0;
}
.head_link,
.to_all {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: auto;
	padding: 20px 0;
	border: 1px solid #000;
	border-left: none;
}
.head_link {
	bottom: 0;
}
.head_slide + .head_link {
	bottom: 22.5px;
}
.to_all {
	top: 0;
}

.page_title h2 {
	margin-top: -5px;
	font-size: 30px;
	line-height: 1.3;
	text-wrap: nowrap;
}
#omotase .page_title h2,
#kirumono .page_title h2 {
	margin-top: 0;
}
.page_title h2 span {
	text-orientation: mixed;
}
.page_title p {
	font-size: 16px;
	line-height: 1;
	color: #000;
	margin: 0;
}

.article_body {
	width: 80%;
	max-width: var(--max-width02);
	margin: 0 auto;
	margin-bottom: 200px;
}
.page .article_body {
	margin: 200px auto;
}
.article_body h2 {
	font-size: 24px;
	margin-bottom: 20px;
	text-align: center;
}
.article_body h3 {
	font-size: 20px;
	margin-bottom: 10px;
}
.article_body p {
	margin-bottom: 10px;
	text-align: center;
}
.single .article_body h2,
.single .article_body p {
	text-align: inherit;
}



/*-- 個別ページ
------------------------------*/
.headless_page {
	position: relative;
	max-width: var(--max-width02);
	margin: 0 auto;
	margin-top: 120px;
}
.headless_page .article_body {
	width: 100%;
	margin: 0;
}

.article_flex_contents {
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	width: 100%;
	max-width: var(--max-width01);
	margin: 200px auto;
}
.article_flex_contents h3 {
	font-size: 24px;
	margin-bottom: 20px;
}
.article_flex_contents h3 span{
	display: block;
	font-size: 12px;
}
.article_flex_contents > div {
	display: flex;
	justify-content: space-between;
	width: 100%;
	gap: 0px;
}
.article_flex_contents .flex_contents {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 100px;
	flex: 1;
	margin: 0 100px;
}
.flex_contents > div a {
	display: inline-block;
	padding: 5px 20px;
	border: 1px solid #000;
}
.flex_contents > .fc_line {
	padding-left: 30px;
	border-left: 1px solid #000;
}
.article_flex_contents .flex_contents_img {
	display: flex;
	flex-direction: column;
	flex: 1;
	max-width: 50%;
	gap: 10px;
}
.article_flex_contents img {
	max-width: 100%;
}
.link_button {
	margin-top: 100px;
	text-align: center;
}
.link_button a {
	display: inline-block;
	padding: 20px;
	margin: 0 10px;
	border: 1px solid #000;
	background: #fff;
}


/*-- 店舗情報 --*/
.kodawari_sozai {
	width: 100%;
	max-width: var(--max-width02);
	padding: 200px 0;
	margin: 200px auto;
}
.kodawari_sozai > h2 {
	font-size: 24px;
	margin-bottom: 40px;
}
.kodawari_sozai > div {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
}
.kodawari {
	width: 100%;
}
.kodawari h3 {
	font-size: 20px;
}
.kodawari img {
	display: block;
	width: 60%;
	margin: 20px auto;
}
.shop_info {
	width: 80%;
	max-width: var(--max-width02);
	margin: 0 auto;
}
.shop_info h2 {
	font-size: 24px;
	margin-bottom: 20px;
}
.shop_info h2 span {
	font-size: 18px;
}
.shop_info p {
	display: flex;
}
.shop_info p span.shop_info_ttl {
	width: 100px;
}
.shop_info p span.shop_info_contents {
	flex: 1;
}

.google_map {
	width: 100%;
	max-width: var(--max-width02);
	margin: 20px auto;
}
.google_map iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
}

/*-- おもたせ --*/
.largeorder {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 100px;
	width: 80%;
	max-width: var(--max-width01);
	padding: 150px 0;
	margin: 150px auto;
}
.largeorder > div {
	flex: 1;
}
.largeorder > img {
	flex: 1;
	width: 100%;
}
.largeorder > div h2 {
	font-size: 24px;
	margin-bottom: 40px;
}
.largeorder > div a {
	display: inline-block;
	font-size: 1.2em;
	margin-top: 40px;
	padding: 5px 10px;
	border: 1px solid #000;
}

/*-- のだて --*/
#nodate #contents {
	padding-bottom: 0;
}
.nodate_info {
	width: 80%;
	max-width: var(--max-width02);
	margin: 0 auto;
	padding: 100px 0;
}
.nodate_info h3 {
	display: flex;
	align-items: center;
	gap: 20px;
	font-size: 16px;
	margin: 40px 0;
}
.nodate_info h3 span {
	flex: 1;
	display: block;
	width: 100%;
	height: 1px;
	border-bottom: 1px dashed #000;
}
.nodate_info p {
	margin-top: 10px;
}

.nodate_flow h2 {
	font-size: 24px;
	margin-bottom: 40px;
}
.nodate_flow h4 {
	font-size: 16px;
}
.nodate_flow_list > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 40px;
}
.nodate_flow_list > div .number {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border: 1px solid #000;
	border-radius: 9999px;
}
.nodate_flow_list > div .nodate_flow_text {
	flex: 1;
}

/*-- しだし --*/
#shidashi .head_slide + .head_link {
	bottom: 0;
}

/*-- きるもの --*/
#kirumono .article_flex_contents:last-child div {
	gap: 250px;
}

.item_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 80%;
	max-width: var(--max-width02);
	margin: 200px auto;
	gap: 20px;
}
.item_list a {
	display: block;
	width: calc((100% - 60px) / 4);
	text-align: center;
}
.item_list a div {
	position: relative;
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 4;
}
.item_list a div img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.item_list a h3 {
	display: inline-block;
	font-size: 18px;
	padding-bottom: 5px;
	border-bottom: 1px solid #000;
}

/*-- ABOUT --*/
.article_flex_contents h3.sub_heading {
	font-size: 24px;
	margin-bottom: 20px;
}
.article_flex_contents h3.sub_heading span {
	font-size: 24px;
	display: inline-block;
}
.en_US .article_flex_contents h3.sub_heading span {
	background: no-repeat center bottom;
	background-image: url(../images/line_hor_b.png);
	background-size: contain;
}
.ja .article_flex_contents h3.sub_heading span {
	padding: 15px;
	margin-left: 5px;
	background: no-repeat center center;
	background-image: url(../images/circle_big.png);
	background-size: contain;
}
.philosophy {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 80%;
	max-width: var(--max-width02);
	margin: 200px auto;
	gap: 50px;
}
.philosophy h2 {
	text-align: center;
	font-size: 24px;
	width: 100%;
}
.philosophy div {
	width: 100%;
}
.about_img {
	width: 100%;
	height: auto;
	aspect-ratio: 5 / 2;
}
.about_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.s_ninsho {
	position: relative;
	width: 80%;
	max-width: var(--max-width02);
	margin: 0 auto;
}
.s_ninsho h2 {
	text-align: center;
	font-size: 24px;
	margin-top: 60px;
	margin-bottom: 40px;
}
.s_ninsho p {
	width: 500px;
	margin: 0 auto;
}
.s_ninsho a {
	display: table;
	font-size: 16px;
	margin: 40px auto;
	padding: 10px 20px;
	border: 1px solid #000;
}
.s_mark {
	position: absolute;
	right: 0;
	bottom: -40px;
}
.s_mark img {
	width: 80px;
}


/*-- リクルート --*/
@media screen and (min-width: 941px)
{
	#recruit .flex_contents {
		margin: 0 80px;
	}
}
#recruit .head_slide + .head_link {
	bottom: 0;
}
#recruit .article_flex_contents .flex_contents {
	gap: 0;
}


/*-- FAQ --*/
#faq .article_body h2 {
	text-align: left;
}
.faq_list {
	width: 90%;
}
.faq_list > div {
	padding-bottom: 20px;
	border-bottom: 1px solid #ccc;
}
.faq_list h3 {
	margin-top: 60px;
}
.question,
.answer {
	display: flex;
	justify-content: space-between;
	gap: 10px;
}
.question p:last-of-type,
.answer div {
	flex: 1;
	width: 100%;
}
.question {
	margin-top: 20px;
	cursor: pointer;
}
.question span:before {
	content: '+';
}
.question.active span:before {
	content: '−';
}
.answer {
	margin-top: 10px;
}
.answer a {
	text-decoration: underline;
}
.answer div p {
	margin-bottom: 10px;
}
.answer div p:last-of-type {
	margin-bottom: 0;
}


/*-- 問い合わせフォーム --*/
#form .article_body h2,
#form .article_body p {
	text-align: left;
}


/*-- その他固定ページ --*/
.text_page .article_body {
	width: 90%;
}
.text_page .article_body h2,
.text_page .article_body h3,
.text_page .article_body p {
	text-align: left;
}




/*-- 個別記事
------------------------------*/

.single .news_list_wrap a:nth-child(4) {
	display: none;
}


/*-- 記事一覧
------------------------------*/
.news_list_wrap {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 80%;
	max-width: var(--max-width02);
	margin: 0 auto;
	margin-bottom: 100px;
}
.news_list_wrap > a {
	display: block;
	width: calc((100% - 30px) / 3);
}
.news_list_wrap > a img {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}
.news_list_wrap > a h4 {
	font-size: 14px;
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-top: 10px;
}
.news_list_wrap > a p {
	font-size: 12px;
	color: #808080;
}

#page_nav {
	width: 80%;
	max-width: var(--max-width02);
	margin: 0 auto;
}
.wp-pagenavi {
	text-align: center;
}
.wp-pagenavi a,
.wp-pagenavi span {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	font-size: 12px;
	padding: 0;
	margin: 3px;
	letter-spacing: 0em;
	background-image: url(../images/circle_big.png);
	background-size: cover;
	border-radius: 9999px;
}
.wp-pagenavi span.current {
	background: #000;
	color: #fff;
}


/*-----------------------------
	タブレット設定
------------------------------*/

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

.pc {
	display: none;
}

.sp {
	display: block;
}

.deco {
	transform: scale(0.6);
}


/*-----------------------------
	共通
------------------------------*/


#contents {
	padding-bottom: 150px;
	background-position: center top;
}
#top #contents {
	padding-bottom: 300px;
}

#bg {
	background-size: 200% auto;
}



.head_wrap {
	height: calc((var(--vh, 1vh) * 100) - 100px);
}
.head_wrap > div.top_head {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
}
.head_wrap > div .head_nav {
	top: 40px;
	left: 20px;
	justify-content: space-between;
	align-items: flex-start;
	width: calc(100vw - 20px);
	height: calc(var(--vh, 1vh) * 100 - 80px);
}
.head_wrap > div.top_head .head_nav h2 {
	font-size: 6vw;
}

.head_logo {
	right: 0;
}
.head_logo img {
	width: 50px;
}

.fixed_right {
	height: calc(var(--vh, 1vh) * 100 - 80px);
}
.head_logo,
.head_sns {
	margin-right: 10px;
}


#footer {
	width: calc(100vw - 40px);
}
.foot_arrow {
	position: absolute;
	top: -60px;
	right: 0;
}

/*-----------------------------
	トップページ
------------------------------*/

.top_head img.kv {
	top: 100px;
	height: 100%;
	transform: scale(1.2);
}
#top.top_open .top_head img.kv {
	transform: scale(1.45);
}
.head_nav .lang {
	margin-top: 20px;
}
.head_nav .nav {
	flex: 1;
}
.head_nav .nav ul {
	position: absolute;
	bottom: 0;
}

.top_cloud img.cloud {
	width: 120%;
	object-fit: cover;
}
.top_cloud img.cloud01 {
	right: -20%;
	object-position: left center;
}
.top_cloud img.cloud02 {
	left: -20%;
	object-position: right center;
}

.top_content_wrap {
	flex-direction: column;
	margin-top: 200px;
}
.top_content_ttl {
	width: 100%;
}
.top_content_ttl > img {
	max-width: 300px;
	margin: 0 auto;
}
.top_content_wrap > div:last-child {
	margin-right: 0;
}
.top_news_wrap .top_news {
	margin-top: 100px;
}
.top_news_wrap .news_01 {
	left: auto;
	right: 45%;
	top: -25%;
	width: 100%;
}
.top_news_wrap .news_02 {
	right: auto;
	left: 45%;
	top: -20%;
	width: 70%;
}

.top_shop_wrap {
	margin-top: 80px;
}
.top_shop_wrap > div:nth-child(odd) {
	margin-bottom: 40px;
}

.top_shop_wrap > div a {
	max-width: none;
}
.top_shop_wrap img.arrow {
	right: 30px;
}

.top_shop_wrap .shop_01 {
	left: auto;
	right: 55%;
	bottom: 75%;
	width: 80%;
}
.top_shop_wrap .shop_02 {
	top: -35%;
	right: 35%;
	bottom: auto;
	width: 160%;
}
.top_shop_wrap .shop_03 {
	left: 30%;
	top: 40%;
	width: 160%;
}

.top_takushoku_wrap > div {
	max-width: none;
}
.top_takushoku_wrap img.arrow {
	right: 30px;
}

.top_takushoku_wrap .takushoku_01 {
	left: 40%;
	bottom: 75%;
	width: 115%;
}
.top_takushoku_wrap .takushoku_02 {
	right: 50%;
	top: 60%;
	width: 80%;
}


.top_menu_wrap > div {
	flex-wrap: wrap;
	max-width: none;
}
.top_menu_wrap a {
	position: relative;
	width: calc(50% - 10px);
}
.top_menu_wrap h3 {
	margin: 10px 0;
}
.top_menu_wrap h4 {
	width: auto;
	height: auto;
	padding: 10px 5px;
	font-size: 4vw;
}
.top_menu_wrap img.arrow {
	position: absolute;
	bottom: 7px;
	right: 0;
	width: 30px;
}

.top_menu_wrap .menu_01 {
	left: 60%;
	bottom: 80%;
	width: 60%;
	z-index: 1;
}
.top_menu_wrap .menu_02 {
	right: 70%;
	top: 80%;
	width: 35%;
}
.top_menu_wrap .menu_03 {
	left: 50%;
	bottom: 30%;
	width: 85%;
}
.top_menu_wrap .menu_04 {
	right: 50%;
	top: 75%;
	width: 80%;
}
.top_menu_wrap .menu_05 {
	left: 40%;
	bottom: -10%;
	width: 80%;
}


.top_clothes_wrap > div {
	max-width: none;
}
.top_clothes_wrap img.arrow {
	right: 30px;
}

.top_clothes_wrap .clothes_01 {
	right: -40%;
	bottom: -60%;
	width: 140%;
	z-index: -1;
}
.top_clothes_wrap .clothes_02 {
	left: 70%;
	bottom: 75%;
	width: 45%;
}

.foot_cloud {
	bottom: 0;
	left: -20%;
	transform-origin: bottom center;
}


/*-- 個別ページ・個別記事共通
------------------------------*/
.article_head {
	width: 100%;
	max-width: none;
	margin: 0;
	margin-left: 0px;
	margin-bottom: 60px;
}
.article_head > h1,
.article_head > p {
	width: calc(100% - 80px);
	margin: 0 auto;
}

.article_head .page_head {
	margin-top: 0px;
}
.article_head .page_head img {
	aspect-ratio: 4 / 5;
}

.page_title,
.head_link,
.to_all {
	left: calc(100% + 40px);
}
.head_link,
.to_all {
	border: 1px solid #000;
	border-right: none;
	white-space: nowrap;
}
.head_link {
	top: calc(100% + 40px);
	left: inherit;
	right: 0;
	bottom: inherit;
}
.head_slide + .head_link {
	bottom: inherit;
}

.page_title {
	position: relative;
	left: 40px;
	width: calc(100% - 80px);
	direction: inherit;
	writing-mode: inherit;
	text-orientation: upright;
	font-feature-settings: "palt" 1;
}
.page_title h2 {
	font-size: 30px;
}
.page_title p {
	font-size: 12px;
	margin-bottom: 10px;
}

.article_body {
	width: calc(100% - 120px);
	margin: 0;
	margin-left: 40px;
	margin-bottom: 100px;
}
.page .article_body {
	margin: 0;
	margin-left: 40px;
	margin-bottom: 100px;
}
.article_body h2,
.article_body p {
	text-align: left;
}



/*-- 個別ページ
------------------------------*/
.headless_page {
	width: calc(100% - 80px);
	margin: 0;
	margin-left: 40px;
	margin-top: 120px;
}
.headless_page .page_title {
	top: 0;
	left: 0;
	width: 100%;
}
.headless_page .article_body {
	width: 100%;
	margin: 0;
	margin-top: 60px;
}
.article_flex_contents {
	width: calc(100% - 80px);
	margin: 100px auto;
	gap: 10px;
}
.article_flex_contents > div {
	flex-direction: column-reverse !important;
	gap: 20px;
}
.article_flex_contents .flex_contents {
	flex: inherit;
	gap: 40px;
	margin: 0;
}
.article_flex_contents h3 {
	margin: 0;
}
.article_flex_contents .flex_contents_img {
	max-width: 100%;
}
.article_flex_contents img {
	width: 100% !important;
}


/*-- 店舗情報 --*/
.kodawari_sozai {
	width: calc(100% - 80px);
	padding: 100px 0;
	margin: 100px auto;
}
.kodawari_sozai > h2 {
	margin-right: 0;
}
.kodawari_sozai > div {
	flex-wrap: wrap;
	gap: 40px 20px;
}

.kodawari {
	width: calc(50% - 10px);
	max-width: 400px;
}
.kodawari h3 {
	font-size: 20px;
}
.kodawari img {
	display: block;
	width: 60%;
	max-width: 300px;
	margin: 10px auto;
}
.shop_info {
	width: 80%;
	max-width: var(--max-width02);
	margin: 0 auto;
}
.shop_info h2 {
	font-size: 24px;
	margin-bottom: 20px;
}
.shop_info p {
	display: flex;
}
.shop_info p span.shop_info_ttl {
	width: 100px;
}
.shop_info p span.shop_info_contents {
	flex: 1;
}

.google_map {
	width: 100%;
	max-width: var(--max-width02);
	margin: 20px auto;
}
.google_map iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
}


/*-- おもたせ --*/
.largeorder > img {
	display: none;
}
.largeorder > div h2 {
	font-size: 24px;
	margin-bottom: 40px;
}
.largeorder > div a {
	margin: 0 auto;
	margin-top: 40px;
}


/*-- しだし --*/
#shidashi .head_slide + .head_link {
	bottom: inherit;
}

/*-- きるもの --*/
#kirumono .head_link {
	display: none;
}
#kirumono .article_flex_contents:nth-child(2) > div {
	gap: 20px;
}
.item_list a {
	display: block;
	width: calc((100% - 20px) / 2);
	text-align: center;
}

/*-- ABOUT --*/
#about .article_flex_contents > h3 {
	padding: 0 5px 12px 10px;
}
.philosophy {
	flex-direction: column;
	margin: 100px auto;
	gap: 20px;
}
.philosophy h2 {
	text-align: left;
}
.about_img {
	aspect-ratio: 2 / 3;
}
.s_ninsho {
	position: relative;
	width: calc(100% - 80px);
	max-width: var(--max-width02);
	margin: 0 auto;
}
.s_ninsho h2 {
	text-align: center;
	font-size: 24px;
	margin-top: 60px;
	margin-bottom: 40px;
}
.s_ninsho p {
	width: 100%;
}
.s_ninsho a {
	margin: 40px 0;
}
.s_mark {
	position: relative;
	bottom: 0;
}


/*-- リクルート --*/
#recruit .head_slide + .head_link {
	bottom: inherit;
}
#recruit .article_flex_contents > div {
	gap: 40px;
}
#recruit .article_flex_contents .flex_contents {
	gap: 20px;
}


/*-- FAQ --*/
.faq_list {
	width: 100%;
}



/*-- 個別記事
------------------------------*/
.single .page_head > img {
	margin-bottom: 40px;
}
.single .page_head .page_title h2 {
	font-size: 20px;
}

.single .news_list_wrap a:nth-child(4) {
	display: block;
}


/*-- 記事一覧
------------------------------*/
.archive .article_head {
	margin-top: 120px;
	margin-bottom: 0;
}
.news_list_wrap {
	width: calc(100% - 120px);
	margin: 0;
	margin-left: 40px;
	margin-bottom: 100px;
}
.news_list_wrap > a {
	display: block;
	width: calc((100% - 15px) / 2);
	margin-bottom: 20px;
}
.news_list_wrap > a h4 {
	font-size: 14px;
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-top: 10px;
}
.news_list_wrap > a p {
	font-size: 12px;
	color: #808080;
}


}






/* パディング用 */
.p0 {
	padding: 0 !important;
}
.p20 {
	padding-top: 20px !important;
	padding-bottom: 20px !important;
}
.p40 {
	padding-top: 40px !important;
	padding-bottom: 40px !important;
}
.p60 {
	padding-top: 60px !important;
	padding-bottom: 60px !important;
}
.p80 {
	padding-top: 80px !important;
	padding-bottom: 80px !important;
}
.p100 {
	padding-top: 100px !important;
	padding-bottom: 100px !important;
}
.p200 {
	padding-top: 200px !important;
	padding-bottom: 200px !important;
}

.pt0 {
	padding-top: 0 !important;
}
.pt20 {
	padding-top: 20px !important;
}
.pt40 {
	padding-top: 40px !important;
}
.pt60 {
	padding-top: 60px !important;
}
.pt80 {
	padding-top: 80px !important;
}
.pt100 {
	padding-top: 100px !important;
}
.pt200 {
	padding-top: 200px !important;
}

.pb0 {
	padding-bottom: 0 !important;
}
.pb20 {
	padding-bottom: 20px !important;
}
.pb40 {
	padding-bottom: 40px !important;
}
.pb60 {
	padding-bottom: 60px !important;
}
.pb80 {
	padding-bottom: 80px !important;
}
.pb100 {
	padding-bottom: 100px !important;
}
.pb200 {
	padding-bottom: 200px !important;
}


/* マージン用 */

.m0 {
	margin: 0 !important;
}
.m20 {
	margin-top: 20px !important;
	margin-bottom: 20px !important;
}
.m40 {
	margin-top: 40px !important;
	margin-bottom: 40px !important;
}
.m60 {
	margin-top: 60px !important;
	margin-bottom: 60px !important;
}
.m80 {
	margin-top: 80px !important;
	margin-bottom: 80px !important;
}
.m100 {
	margin-top: 100px !important;
	margin-bottom: 100px !important;
}
.m200 {
	margin-top: 200px !important;
	margin-bottom: 200px !important;
}

.mt0 {
	margin-top: 0px !important;
}
.mt20 {
	margin-top: 20px !important;
}
.mt40 {
	margin-top: 40px !important;
}
.mt60 {
	margin-top: 60px !important;
}
.mt80 {
	margin-top: 80px !important;
}
.mt100 {
	margin-top: 100px !important;
}
.mt200 {
	margin-top: 200px !important;
}

.mb0 {
	margin-bottom: 0 !important;
}
.mb20 {
	margin-bottom: 20px !important;
}
.mb40 {
	margin-bottom: 40px !important;
}
.mb60 {
	margin-bottom: 60px !important;
}
.mb80 {
	margin-bottom: 80px !important;
}
.mb100 {
	margin-bottom: 100px !important;
}
.mb200 {
	margin-bottom: 200px !important;
}