/* CSS Document */
@charset "UTF-8";
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&family=Open+Sans+Condensed:wght@300&display=swap');
/******* reset default css *******/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
}
html {
	scroll-behavior: smooth;
}
img {
	max-width: 100%;
	height: auto;
}
a {
	color:#00a0e9;
	text-decoration: none;
	transition: all 0.3s;
}
a:hover {
	text-decoration: underline;
}
a:focus,
button:focus {
	outline: none;
}
body {
	line-height: 1;
	font-size: 16px;
	color: #555;
	/* font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", Helvetica, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif; */
	font-family: 'Noto Serif JP', serif;
}
ol,
ul {
	list-style: none;
}
hr {
	border-top: 1px solid #002E5B;
}
iframe {
	width: 100%;
}
p {
	margin-bottom: 1.5rem;
	line-height: 2;
}
:root {
	--main-bg: #c4392f;
	--accent-bg: #997b60;
	--black: #1e1b19;
	--reverse-bg: #1d8544;
}

/******* management bar *******/

.customize-support .header .offcanvas-collapse { margin-top: 0 !important; }
.customize-support .header .offcanvas-collapse.open { margin-top: 32px !important; }

/******* common style *******/
#gotoTop {
    display: none;
    position: fixed;
    z-index: 20;
    bottom: 0.5rem;
    right: 4rem;
    margin-bottom: 0;
    cursor: pointer;
    color: var(--accent-bg);
}
#gotoTop:hover {
    color: var(--reverse-bg);
    transition: 0.5s;
}
.text-0_5 {
	font-size: 0.5em;
}
.text-0_625 {
	font-size: 0.625em;
}
.text-0_75 {
	font-size: 0.75em;
}
.text-0_875 {
	font-size: 0.875em;
}
.text-1_125 {
	font-size: 1.125em;
}
.text-1_25 {
	font-size: 1.25em;
}
.text-1_375 {
	font-size: 1.375em;
}
.text-1_5 {
	font-size: 1.5em;
}
.l_icon {
	color: var(--main-bg);
	display: inline-block;
	padding: 0.25rem 1rem;
	border-bottom: 1px dotted var(--main-bg);
}
.l_icon:hover,
.l_icon:focus {
	color: #fff;
	background-color: var(--main-bg);
	text-decoration: none;
	transition: 0.5s;
	border-bottom: 1px solid transparent;
}
.l_icon:before {
	content: "\f101";
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	margin-right: 0.5rem;
}

/******* header style *******/
.header {
	position: fixed;
    z-index: 100;
    width: 100%;
	background-color: transparent;
	/* background-color: rgba(255, 255, 255, 0.96); */
	/* box-shadow: 0 1px 3px #ccc; */
}
.header .header-content {
    margin: 0 auto;
    width: 100%;
}
/* .header .logo {
	display: inline-block;
} */
.header .logo img {
	max-width: 160px;
}
.navigation.open {
	opacity: 0.88;
	visibility: visible;
	transition: opacity 0.5s;
}
.navigation {
	position: fixed;
	background-color: #000;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 200;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.5s, visibility 0s 0.5s;
}
.navigation li {
    display: block;
	margin-bottom: 1.5rem;
}
.navigation li a {
	display: block;
	font-size: 1.25rem;
	margin: 0;
	color: #fff;
	text-align: center;
}
.navigation .primary-nav {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
    margin: 0;
    text-align: center;
}
.nav-toggle {
    display: inline-block;
	height: 44px;
	overflow: hidden;
	position: fixed;
	right: 3%;
	text-indent: 100%;
	white-space: nowrap;
	width: 44px;
	z-index: 200;
	transition: all 0.3s;
    margin-top: 0.5rem;
}
.nav-toggle:before,
.nav-toggle:after {
	border-radius: 50%;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	transform: translateZ(0);
	/*-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;*/
	backface-visibility: hidden;
	transition-property: transform;
}
.nav-toggle:before {
	background-color: var(--accent-bg);
	transform: scale(1);
	transition-duration: 0.3s;
}
.nav-toggle:after {
	background-color: var(--main-bg);
	transform: scale(0);
	transition-duration: 0s;
}
.nav-toggle span {
	background-color: #fff;
	bottom: auto;
	display: inline-block;
	height: 3px;
	left: 50%;
	position: absolute;
	right: auto;
	top: 50%;
	width: 18px;
	z-index: 10;
	transform: translateX(-50%) translateY(-50%);
}
.nav-toggle span:before, .nav-toggle span:after {
	background-color: #fff;
	content: "";
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	transform: translateZ(0);
	/*-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;*/
	backface-visibility: hidden;
	transition: transform 0.3s;
}
.nav-toggle span:before {
	transform: translateY(-6px) rotate(0deg);
}
.nav-toggle span:after {
	transform: translateY(6px) rotate(0deg);
}
.nav-toggle.close-nav:before {
	transform: scale(0);
}
.nav-toggle.close-nav:after {
	transform: scale(1);
}
.nav-toggle.close-nav span {
	background-color: rgba(255, 255, 255, 0);
}
.nav-toggle.close-nav span:before,
.nav-toggle.close-nav span:after {
	background-color: #fff;
}
.nav-toggle.close-nav span:before {
	transform: translateY(0) rotate(45deg);
}
.nav-toggle.close-nav span:after {
	transform: translateY(0) rotate(-45deg);
}
@media (min-width: 375px) {
	.header .logo img {
		max-width: 180px;
	}
}
@media (min-width: 414px) {
	.header .logo img {
		max-width: 200px;
	}
}
@media (min-width: 576px) {
	.header .logo img {
		max-width: 100%;
	}
}
@media (min-width: 768px) {
	.header .logo {
        display: inline-block;
		width: auto;
        max-width: inherit;
		position: absolute;
		z-index: 300;
    }
    .nav-toggle {
        display: none;
    }
    .navigation {
		float: right;
        position: relative;
        background-color: transparent;
        width: 100%;
        height: auto;
        visibility: visible;
        opacity: 1;
        transition: opacity 0.3s, visibility 0.3s;
        line-height: 1.5rem;
        margin-top: 2.5rem;
    }
	.navigation.scrolled {
		background-color: rgba(248, 248, 248, 0.96);
		transition: 0.3s;
		border-top: 2px solid var(--accent-bg);
		border-bottom: 2px solid var(--accent-bg);
		box-shadow: 0 -2px 0 rgba(255, 255, 255, 0.96) inset, 0 2px 0 rgba(255, 255, 255, 0.96) inset, 0 2px 0 rgba(248, 248, 248, 0.96), 0 -2px 0 rgba(248, 248, 248, 0.96);
	}
    .navigation .primary-nav {
        transform: translateY(0);
        text-align: center;
		float: right;
		margin-right: 1rem;
    }
    .navigation li {
        display: inline-block;
        margin-bottom: 0;
    }
    .navigation li a {
        font-size: 1rem;
        padding: 0.5rem 1rem;
        display: block;
    }
	.navigation li a:before {
		content: "\f054";
		font-family: "Font Awesome 5 Free";
		font-weight: 700;
		margin-right: 0.5rem;
		color: #fff;
		visibility: hidden;
	}
	.navigation li a:hover {
		text-decoration: none;
	}
	.navigation li a:hover:before {
		visibility: visible;
	}
	.navigation.scrolled li a {
		color: inherit;
	}
	.navigation.scrolled li a:before {
		color: inherit;
	}
	.navigation.scrolled li a:hover {
		color: var(--main-bg);
	}
}
@media (min-width: 992px) {
	.navigation .primary-nav {
		margin-right: 2rem;
	}
	.navigation li a {
        padding: 1rem 1.5rem;
		font-size: 1.125rem;
    }
}
@media (min-width: 1200px) {
	.navigation li a {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
	.navigation .primary-nav {
		margin-right: 3rem;
	}
}
@media (min-width: 1400px) {

}

/******* footer style *******/
.footer {
    background-color: var(--main-bg);
}
.footer_link li:before {
	content: "\f138";
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	margin-right: 0.5rem;
	color: #fff;
}
.footer_link li a {
	color: #fff;
	display: inline-block;
	padding: 0.5rem 0;
}
.cr_text {
    text-align: center;
    margin: 1rem 0;
    font-size: 0.875rem;
    color: #fff;
	font-family: 'Open Sans Condensed', sans-sarif;
	letter-spacing: 2px;
}

@media (min-width: 768px) {

}
@media (min-width: 992px) {

}
@media (min-width: 1200px) {

}

/******* breadcrumb style *******/
.breadcrumb {
	background-color: rgba(255, 255, 255, 0.8);
	padding: 1rem 0 0.5rem;
	margin-bottom: 0;
}
.breadcrumb li {
	display: inline-block;
	vertical-align: top;
	/* font-size: 0.875rem; */
}
.breadcrumb li:after {
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	margin: 0 0.5rem;
}
.breadcrumb li:last-child:after {
	content: "";
	margin: 0;
}

/******* home style *******/
.home_img {
    width: 100%;
    opacity: 0;
    min-height: 480px;
	position: relative;
}
.home_catch_area {
	position: absolute;
	top: 40%;
	left: 10%;
	right: 10%;
}
.home_catch {
	color: #fff;
	font-weight: bold;
	text-shadow: 2px 2px 3px #003;
	font-size: 1.25rem;
	line-height: 1.5;
}
.home_scroll {
	position: absolute;
    bottom: 5%;
    right: 10%;
    z-index: 2;
    display: inline-block;
    /* -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%); */
    color: #fff;
    letter-spacing: 2px;
    text-decoration: none;
    transition: 0.5s;
    font-family: 'Open Sans Condensed', sans-sarif;
    font-size: 1em;
	line-height: 1.25;
    padding: 1.125rem 0.75rem;
    background-color: rgba(0, 0, 0, 0.33);
    border-radius: 50%;
	text-align: center;
}
.home_scroll:before {
	content: "\f078";
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	display: block;
}
.home_scroll:hover {
	background-color: var(--main-bg);
	color: #fff;
	text-decoration: none;
}
.catch_h2 {
	font-size: 1.25rem;
    padding: 1rem 0;
    line-height: 1.5;
    color: #333;
	margin-bottom: 1rem;
}
.home_h2 {
	font-size: 1.25rem;
    padding: 1rem 0;
    line-height: 1.5;
    color: #333;
	margin-bottom: 1rem;
	text-align: center;
}
.home_h2 .home_h2_inner {
	padding: 0.5rem 1rem;
	border-bottom: 4px double var(--main-bg);
	display: inline-block;
}
.home_h2_en {
	font-family: 'Open Sans Condensed', sans-sarif;
	letter-spacing: 3px;
	text-align: center;
	margin-top: -1.5rem;
	color: var(--main-bg);
}
@media (min-width: 321px) {
	.home_catch {
		font-size: 1.5rem;
	}
}
@media (min-width: 576px) {

}
@media (min-width: 768px) {
	.home_img {
		min-height: 600px;
	}
	.home_catch_area {
		left: 20%;
		right: 20%;
	}
	.home_catch {
		font-size: 1.75rem;
	}
	.catch_h2 {
		font-size: 1.625rem;
		text-align: center;
	}
	.home_h2 {
		font-size: 1.625rem;
	}
}
@media (min-width: 992px) {
	.home_img {
		min-height: 640px;
	}
	.home_catch_area {
		top: 45%;
		left: 35%;
		right: 5%;
	}
	.home_catch {
		font-size: 2rem;
	}
	.catch_h2 {
		font-size: 2rem;
	}
	.home_h2 {
		font-size: 2rem;
	}
}
@media (min-width: 1200px) {
	.home_catch_area {
		left: 30%;
		right: 5%;
	}
	.home_catch {
		font-size: 2.25rem;
	}
}
@media (min-width: 1400px) {
	.home_catch_area {
		left: 45%;
		right: 5%;
	}
	.home_catch {
		font-size: 2.5rem;
	}
}
/******* page.php main style *******/
.page_header {
	background-image: url(/wp/wp-content/themes/ksw_wp_theme/images/overlays/02.png), url(/wp/wp-content/themes/ksw_wp_theme/images/store.jpg);
	background-repeat: repeat, no-repeat;
	background-size: auto, cover;
	background-position: center center, center bottom;
	min-height: 200px;
	position: relative;
}
.page_h1 {
	font-size: 1.5rem;
	line-height: 1.5;
	text-align: center;
	color: #fff;
	font-weight: bold;
	text-shadow: 2px 2px 3px #003;
	position: absolute;
	bottom: 2rem;
	left: 0;
	right: 0;
}
.page_h2 {
	font-size: 1.25rem;
	padding: 0.5rem 0;
	margin-bottom: 1rem;
	color: #333;
}
.store,
.ex_store {
	border-bottom: 2px solid var(--accent-bg);
}
.store:before,
.ex_store:before {
	content: "\f54e";
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	margin-right: 0.5rem;
	color: var(--main-bg);
}
.ex_store:before {
	content: "\f54f";
}
.store_info_line {
	padding: 1rem 0;
	border-top: 1px dashed var(--main-bg);
	border-bottom: 1px dashed var(--main-bg);
}
.store_info {
	margin-right: 1.5rem;
	display: inline-block;
}
.store_info:before {
	content: "\f7e5";
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	margin-right: 0.5rem;
	color: var(--main-bg);
}
.stores_list {
	padding: 0 1rem;
}
.stores_list li {
	padding: 1.25rem 0.5rem;
	border-bottom: 1px solid #ccc;
	font-size: 0.875rem;
}
.stores_list li:before {
	content: "\f2e7";
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	font-size: 1rem;
	margin-right: 1rem;
	color: #fff;
	display: inline-block;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 0.75rem;
	text-align: center;
	vertical-align: middle;
	line-height: 1.5;
	background-color: var(--accent-bg);
}
.stores_list li a {
	color: var(--main-bg);
}
@media (min-width: 375px) {
	.page_h1 {
		font-size: 1.625rem;
	}
	.page_h2 {
		font-size: 1.5rem;
	}
}
@media (min-width: 576px) {
	.page_header {
		min-height: 240px;
	}
	.page_h1 {
		font-size: 1.75rem;
		bottom: 3rem;
	}
}
@media (min-width: 768px) {
	.page_header {
		min-height: 270px;
	}
	.page_h1 {
		font-size: 1.875rem;
		bottom: 4rem;
	}
	.page_h2 {
		font-size: 1.625rem;
		font-weight: bold;
	}
}
@media (min-width: 992px) {
	.page_header {
		min-height: 300px;
	}
	.page_h1 {
		font-size: 2rem;
		bottom: 5rem;
	}
	.page_h2 {
		font-size: 1.75rem;
	}
	.store:before,
	.ex_store:before {
		margin-right: 1rem;
	}
	.stores_list li {
		font-size: 1rem;
	}
	.stores_list li a:hover {
		text-decoration: underline;
	}
}
@media (min-width: 1200px) {
	.page_header {
		min-height: 360px;
	}
	.page_h1 {
		font-size: 2.5rem;
		bottom: 7rem;
	}
	.page_h2 {
		font-size: 2rem;
	}
}

/******* archives list style *******/
.paginate .page-numbers {
	padding: 0.5rem 0.75rem;
    display: inline-block;
}
.paginate a.page-numbers {
	border: 1px solid #00a0e9;
	border-radius: 0.25rem;
}
.paginate a.page-numbers.next,
.paginate a.page-numbers.prev {
	border: none;
}
@media (min-width: 768px) {

}
@media (min-width: 992px) {

}
@media (min-width: 1200px) {

}
/******* single.php main style *******/
.single_h2 {
    font-size: 1.25rem;
    line-height: 1.5;
    padding: 0.5rem 0;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--accent-bg);
    color: #333;
}
.single_h2:before {
    content: "\f0a9";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    margin-right: 0.5rem;
    color: var(--main-bg);
}
.side_h3 {
    font-size: 1.25rem;
    padding: 1rem;
    color: #fff;
    background-color: var(--main-bg);
}

@media (min-width: 768px) {
	.single_h2 {
		font-size: 1.5rem;
	}
}
@media (min-width: 992px) {
	.side_h3 {
		font-size: 1.375rem;
		margin-top: 1.75rem;
	}
}
@media (min-width: 1200px) {

}

/******* contact form 7 *******/
.wpcf7-form .row {
	padding: 1rem 0;
	border-top: 1px solid #eee;
}
.wpcf7-form .row:nth-child(odd) {
	background-color: #eee;
}
.wpcf7-form p {
	margin-bottom: 0;
	padding: 0.5rem;
}
.wpcf7-form-control {
	border: 1px solid #ccc;
	border-radius: 0.25rem;
	padding: 0.5rem;
	max-width: 100%;
	line-height: 2;
}
.wpcf7-acceptance {
	border: none;
}
.wpcf7-acceptance input {
	transform: scale(1.5);
	margin-right: 0.5rem;
}
.wpcf7-submit {
    border-radius: 0.25rem;
    padding: 0.5rem 3rem;
	color: #fff;
	background-color: var(--main-bg);
    border: 1px solid var(--main-bg);
	text-align: center;
}
.wpcf7-submit:hover {
	background-color: #fff;
	color: var(--main-bg);
}
.wpcf7-response-output {
	margin-bottom: 2rem;
}
.grecaptcha-badge {
	visibility: hidden;
}

/******* privacy policy *******/
.pp dl {
    border: 1px solid #ccc;
    padding: 1em;
}
.pp dl dt {
    padding: 0.5em;
    background-color: #eee;
    margin-bottom: 0.5em;
	color: #333;
}
.pp dl dd {
    line-height: 2em;
    margin-bottom: 2em;
}
.pp dl dd p {
	margin-bottom: 1rem;
}
.pp dl dd .pp_sub {
    text-decoration: underline;
    font-weight: bold;
    margin-top: 1em;
}
.pp dl dd ul {
    padding-left: 2em;
	list-style: inherit;
}
