/*
Theme Name: juso
Description:
Theme URI:
Author: スリーグッド鹿児島
Author URI:
Version:
License:
License URI:
*/

/* --------------------------
    variables
-------------------------- */
:root {
    --content-width: 1100px;
	--middle-width: 960px;
    --narrow-width: 800px;
    --wide-width: 1200px;
    --color: #333;
	--color-green: #006837;
	--color-green-pale: #e2f0ea;
    --line-height: 1.75;
    --font-size: 16px;
    --font-size-sp: 14px;
    --letter-spacing: 0.1em;
    --font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック ProN W3', 'Hiragino Kaku Gothic ProN', 'Meiryo UI', 'ＭＳ Ｐゴシック', sans-serif;
	--sans-serif-font: "Marcellus", var(--font-family);
	--serif-font: '游明朝', 'YuMincho', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif;
	--ornament1: url(/wp-content/themes/juso/src/juso-ornament1.svg);
	--ornament2: url(/wp-content/themes/juso/src/juso-ornament2.svg);
	--icon-arrow: url(/wp-content/themes/juso/src/icon-arrow.svg);
	--icon-arrow-w: url(/wp-content/themes/juso/src/icon-arrow-w.svg);
	--icon-link: url(/wp-content/themes/juso/src/icon-link.svg);
	--icon-link-w: url(/wp-content/themes/juso/src/icon-link-w.svg);
}

/* --------------------------
    reset
-------------------------- */
* {
    margin: 0;
    padding: 0;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    padding-inline-start: 0;
    box-sizing: border-box;
}

*:before,
*:after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-feature-settings: 'palt';
    font-size: var(--font-size);
    line-height: var(--line-height);
    letter-spacing: var(--letter-spacing);
	color: var(--color);
    font-family: var(--font-family);
    font-weight: 500;
    min-height: 100vh;
	width: 100vw;
    overflow-x: hidden;
}

main {
    display: block;
}

img,
input[type="image"],
video,
embed,
iframe,
marquee,
object {
    display: block;
    max-width: 100%;
    aspect-ratio: attr(width) / attr(height);
}

table {
    max-width: 100%;
    aspect-ratio: attr(width) / attr(height);
}

a {
    color: inherit;
    text-decoration: none;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.25rem;
}

h4 {
    font-size: 1rem;
}

h5 {
    font-size: 0.75rem;
}

h6 {
    font-size: 0.75rem;
    font-weight: 500;
}

table {
    border-spacing: 0;
}

@media (max-width: 768px) {
    body {
        font-size: var(--font-size-sp);
    }
}

/* --------------------------
    common
-------------------------- */
.content-width {
    width: 100%;
    max-width: var(--content-width);
    margin: 0 auto;
}

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

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

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

.section-padding {
    padding: 4em 1em;
}

.section-padding-high {
	padding: 5em 1em;
}

.heading {
	display: flex;
	flex-flow: column;
	margin-bottom: 1em;
	font-family: var(--serif-font);
	font-weight: 500;
}

.heading:before {
	content: attr(data-text);
	font-family: var(--sans-serif-font);
	font-size: 2em;
	color: #808080;
	margin-bottom: 1rem;
}

.heading.white {
	color: #fff;
}

.heading.white:before {
	color: #fff;
}

.heading.center {
	text-align: center;
}

.button-wrap {
	margin-top: 2em;
}

.button-wrap.center {
	text-align: center;
}

.button-wrap.right {
	text-align: right;
}

.button {
	display: inline-block;
	background-color: #f2f2f2;
	padding: 1em 4em 1em 2em;
	text-align: center;
	position: relative;
	transition: all 0.3s ease;
	border-radius: 4px;
	font-family: var(--sans-serif-font);
}

.button::after {
	content: '';
	display: block;
	width: 1.25em;
	height: 1em;
	background-image: var(--icon-arrow);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	right: 1.5em;
	transform: translateY(-50%);
	transition: all 0.3s ease;
}

.button.white {
	background-color: #fff;
}

.button:hover {
	background-color: #808080;
	color: #fff;
	transition: all 0.3s ease;
}

.button:hover::after {
	background-image: var(--icon-arrow-w);
	transition: all 0.3s ease;
	right: 1em;
}

.button2 {
	display: inline-block;
	background-color: #f2f2f2;
	padding: 1em 4em 1em 2em;
	text-align: center;
	position: relative;
	transition: all 0.3s ease;
	border-radius: 4px;
	font-family: var(--sans-serif-font);
}

.button2:after {
	content: '';
	display: block;
	width: 1.25em;
	height: 1em;
	background-image: var(--icon-link);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	right: 1.5em;
	transform: translateY(-50%);
	transition: all 0.3s ease;
}

.button2:hover {
	background-color: #808080;
	color: #fff;
	transition: all 0.3s ease;
}

.button2:hover:after {
	background-image: var(--icon-link-w);
	transition: all 0.3s ease;
}

.button-list {
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
}

.button-list > li {
	width: calc(50% - 1em);
}

.button-list > li:nth-of-type(even) {
	margin-left: 2em;
}

.button-list > li:nth-of-type(n + 3) {
	margin-top: 1em;
}

.button-list > li > a {
	display: inline-block;
	padding: 1em 4em 1em 2em;
	background-color: #f2f2f2;
	position: relative;
    transition: all 0.3s ease;
    border-radius: 4px;
    font-family: var(--sans-serif-font);
	width: 100%;
}

.button-list > li > a:before {
	content: '';
    display: block;
    width: 1.25em;
    height: 1em;
    background-image: var(--icon-arrow);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 1.5em;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.button-list > li > a:hover {
	background-color: #808080;
    color: #fff;
    transition: all 0.3s ease;
}

.button-list > li > a:hover:before {
	background-image: var(--icon-arrow-w);
    transition: all 0.3s ease;
    right: 1em;
}

.col2 {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.col2 > div {
	width: calc(50% - 2em);
}

.col2 > figure {
	width: calc(50% - 2em);
}

.col2 > figure > figcaption {
	font-size: 0.875em;
	margin-top: 1em;
}

.col2 > * > img {
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.col2 + .col2 {
	margin-top: 4em;
}

.col2.reverse {
	flex-flow: row-reverse;
}

.clearfix {
    clear: both;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 2em 1em;
    }
	
	.heading:before {
		font-size: 1.5em;
	}
	
	.button-list {
		flex-flow: column;
	}
	
	.button-list > li {
		width: 100%;
	}
	
	.button-list > li:nth-of-type(even) {
		margin-left: 0;
	}
	
	.button-list > li + li {
		margin-top: 1em;
	}
	
	.col2 {
		flex-flow: column;
	}
	
	.col2.reverse {
		flex-flow: column;
	}
	
	.col2 > div {
		width: 100%;
	}
	
	.col2 > figure {
		width: 100%;
	}
	
	.col2 > * + * {
		margin-top: 2em;
	}
}


/* --------------------------
    header
-------------------------- */
/* header */
header {
    display: flex;
	flex-flow: column;
    justify-content: space-between;
	width: 100vw;
	height: 120px;
/* 	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%); */
	position: fixed;
	left: 0;
	z-index: 254;
	transition: all 0.3s ease;
}

header.fixed {
	height: 50px;
	background: unset;
	background-color: rgba(255, 255, 255, 0.9);
	transition: all 0.3s ease;
}

header.fixed:hover {
	background: unset;
	background-color: rgba(255, 255, 255, 0.9);
	transition: all 0.3s ease;
}

#header-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 196px;
	height: 100%;
	color: #fff;
	transition: all 0.3s ease;
}

#header-logo > img {
	width: 196px;
	transition: all 0.3s ease;
}

#header-logo > img.color {
	display: none;
}

header.fixed #header-logo {
	width: 128px;
	transition: all 0.3s ease;
}

header.fixed #header-logo > img.white {
	display: none;
}

header.fixed #header-logo > img.color {
	width: 116px;
	display: block;
}

header > div {
	width: 100%;
	height: 100%;
	padding: 0 2em;
	transition: all 0.3s ease;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header.fixed header > div {
	width: calc(100% - 128px - 1em);
	transition: all 0.3s ease;
}

@media (max-width: 768px) {
	header {
		height: 50px;
	}
	
	header > div {
		padding: 0 50px 0 1em;
	}
	
	#header-logo {
		width: 116px;
	}
	
	#header-logo > img {
		width: 116px;
	}
	
	header.fixed #header-logo {
		width: 116px;
	}
}

#topbar {
	margin: 1em 0;
	transition: all 0.3s ease;
	padding: 0 3em;
}

header.fixed #topbar {
	display: none;
	height: 0;
	transition: all 0.3s ease;
}

#topbar > h1 {
    height: 100%;
    font-size: 10px;
    color: #fff;
}

header:hover #topbar > h1 {
/*     color: #333; */
    text-shadow: unset;
	transition: all 0.3s ease;
}

#topbar > div {
	display: flex;
}

#topbar-store {
   padding: 0.5em 1em;
	background-color: #fff;
	margin-right: 1em;
	font-family: var(--sans-serif-font);
	display: flex;
	align-items: center;
	font-size: 0.75em;
	border-radius: 4px;
	margin-right: 1em;
}

#topbar-store > span {
	width: 1em;
	height: 1em;
	display: block;
	position: relative;
	margin-left: 1em;
}

#topbar-store > span:before {
	content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: var(--icon-link);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

#topbar-fb {
	display: flex;
	align-items: center;
}

#topbar-fb > i {
   color: #fff;
	font-size: 1.5em;
}

@media (max-width: 768px) {
	#topbar {
		display: none;
	}
}

#header-menu {
    list-style-type: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: calc(100% - 2em);
	height: 100%;
    font-size: 0.875em;
    color: #fff;
	font-family: var(--sans-serif-font);
    margin-left: 2em;
}

header.fixed #header-menu {
	width: calc(100% - 2em);
	height: 100%;
	color: #333;
	text-shadow: unset;
}

header:hover #header-menu {
/* 	color: #333; */
	text-shadow: unset;
	transition: all 0.3s ease;
}

#header-menu > li {
	display: flex;
	align-items: center;
	height: 100%;
	position: relative;
}

#header-menu > li:before {
	content: '';
    display: block;
    width: 100%;
    border-bottom: 2px solid #fff;
    opacity: 0;
    position: absolute;
    left: 0;
    bottom: -4px;
    transition: all 0.2s ease;
}

#header-menu > li:hover:before,
#header-menu > li.current-menu-item:before {
	opacity: 1;
    bottom: 0;
    transition: all 0.2s ease;
}

header.fixed #header-menu > li:before {
	border-bottom: 2px solid #808080;
	border-bottom: 2px solid #333;
}

#header-menu > li + li {
    margin-left: 2em;
}

#header-menu > li > a[target=_blank] {
	display: flex;
	align-items: center;
}

#header-menu > li > a[target=_blank]:after {
	content: '';
	display: inline-block;
	width: 0.75em;
	height: 0.75em;
	background-image: var(--icon-external-w);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	margin-left: 0.25em;
	filter: drop-shadow(0 0 0.5em rgba(0, 0, 0, 1));
}

header.fixed #header-menu > li > a[target=_blank]:after,
header:hover #header-menu > li > a[target=_blank]:after {
	background-image: var(--icon-external);
	filter: unset;
}


@media (max-width: 768px) {
	#header-menu {
		display: none;
	}
}

/* drawer */
#drawer {
	display: none;
	width: 50px;
	height: 100%;
	background-color: var(--color-pink);
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 255;
}


@media (max-width: 1000px) {
	#drawer {
        display: flex;
    }
	
	header.fixed #drawer {
	width: 50px;
	}

	.drawer-unshown {
		display: none;
	}

	#drawer-open {
		display: inline-flex;
		flex-flow: column;
		width: 1.5rem;
		height: 1.5rem;
		justify-content: space-around;
		padding: 1rem 0;
	}

	#drawer-open > span {
		display: block;
		width: 100%;
		height: 2px;
		background-color: #fff;
		transition: all 0.3s ease;
	}

	#drawer-open:before {
		content: '';
		display: block;
		width: 100%;
		height: 2px;
		background-color: #fff;
		margin-top: -0.75rem;
		transition: all 0.3s ease;
	}

	#drawer-open:after {
		content: '';
		display: block;
		width: 100%;
		height: 2px;
		background-color: #fff;
		margin-bottom: -0.75rem;
		transition: all 0.3s ease;
	}
	
	header.fixed #drawer-open > span,
	header.fixed #drawer-open:before ,
	header.fixed #drawer-open:after {
		background-color: #333;
		transition: all 0.3s ease;
	}

	#drawer-close {
		display: none;
		position: fixed;
		z-index: 99;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: #000;
		opacity: 0;
		transition: 0.3s ease-in-out;
}

	#drawer-content {
		overflow: auto;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 9999;
		width: 90%;
		max-width: 330px;
		height: 100%;
		background: rgba(255, 255, 255, 0.9);
		transition: 0.3s ease-in-out;
		-webkit-transform: translateX(105%);
		transform: translateX(105%);
	}

	#drawer-input:checked ~ #drawer-close {
		display: block;
		opacity: .5;
	}

	#drawer-input:checked ~ #drawer-content {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	}

	#drawer-content {
		color: #333;
	}

	#menu-mobile {
		list-style-type: none;
	}

	#drawer-input ~ #drawer-content #drawer-close2,
	#drawer-input ~ #drawer-content #menu-mobile > li > a {
		padding: 1em;
		text-align: center;
		display: block;
		position: relative;
		color: #333;
		border-bottom: 1px solid #aaa;
		opacity: 0;
		text-decoration: none;
	}

	#drawer-input:checked ~ #drawer-content #drawer-close2,
	#drawer-input:checked ~ #drawer-content #menu-mobile > li > a {
		opacity: 1;
	}

	#mobile-menu {
		list-style-type: none;
	}

	#mobile-menu > li {
		border-bottom: 1px solid #aaa;
	}

	#mobile-menu > li > a {
		display: block;
		padding: 1rem 2rem;
		color: #333;
	}

	#mobile-menu li > a {
		position: relative;
	}

	#mobile-menu li > a:before {
		content: '';
		display: block;
		width: 0.25rem;
		height: 0.25rem;
		border-top: 1px solid #333;
		border-right: 1px solid #333;
		transform: rotate(45deg);
		position: absolute;
		top: calc(50% - 0.125em);
		right: 1.5rem;
	}

	#mobile-menu > li > ul {
		border-top: 1px solid #aaa;
	}

	#mobile-menu > li > ul > li:not(:last-of-type) {
		border-bottom: 1px solid #aaa;
	}

	#mobile-menu > li > ul > li > a {
		display: block;
		padding: 1rem 2rem 1rem 3rem;
		color: #333;
		font-size: 0.75rem;
		background-color: #ddd;
	}

	#mobile-menu > li > ul > li > ul > li > a {
		display: block;
		padding: 1rem 2rem 1rem 4rem;
		color: #333;
		font-size: 0.75rem;
		background-color: #ccc;
	}

	#mobile-menu > li > ul > li > ul {
		border-top: 1px solid #aaa;
	}

	#mobile-menu > li > ul > li > ul > li:not(:last-of-type) {
		border-bottom: 1px solid #aaa;
	}
}


/* --------------------------
    footer
-------------------------- */
/* part contact */
#part-contact {
	background-color: #f2f2f2;
	width: 100%;
	height: 100%;
	transition: all 0.3s ease;
}

#part-contact > a:hover:before {
	transform: scale(1.025);
	transition: all 0.3s ease;
}

#part-contact > div > div {
	display: flex;
}

#part-contact > div > div > div {
	width: 50%;
	text-align: center;
    padding: 0 2em;
}

#part-contact > div > div > div + div {
	border-left: 1px solid #333;
}

#part-contact > div > div > div > a {
	width: 100%;
    padding: 1em 3em;
}

#part-contact > div > div > div > a.email {
	font-family: var(--serif-font);
}

#part-contact > div > div > div > a > i {
	position: absolute;
	top: 50%;
    left: 0.875em;
    transform: translateY(-50%);
	font-size: 1.5em;
}

@media (max-width: 768px) {
	#part-contact > div > div {
		flex-flow: column;
	}
	
	#part-contact > div > div > div {
		width: 100%;
	}
	
	#part-contact > div > div > div + div {
		margin-top: 1em;
		border-left: none;
	}
}

footer {
	font-size: 0.875em;
}

footer > div:first-of-type {
	padding: 2em 4em;
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #e6e6e6;
}

footer > div:first-of-type > div {
	width: calc(50% - 1em)
}

#footer-logo {
	display: block;
	width: 166px;
	height: auto;
	margin-bottom: 2em;
}

#footer-share {
	display: flex;
	justify-content: end;
	align-items: center;
	font-family: var(--sans-serif-font);
	color: #999;
}

#share-heading {
	margin-right: 2em;
}

#footer-share > ul {
	list-style-type: none;
	display: flex;
	font-size: 2em;
}

#footer-share > ul > li:not(:last-of-type) {
	margin-right: 0.5em;
}

footer > div:last-of-type {
	display: flex;
	padding: 2em 4em;
	justify-content: space-between;
}

#footer-menu {
	display: flex;
	list-style-type: none;
}

#footer-menu > li:not(:first-of-type) {
	margin-left: 1.5em;
}

#copyright {
	font-family: var(--sans-serif-font);
	color: #999;
}

@media (max-width: 1000px) {
	footer > div:last-of-type {
		flex-flow: column;
		align-items: center;
	}
	
	footer > div:last-of-type > #footer-menu {
		display: flex;
		flex-flow: column;
		align-items: center;
		margin-bottom: 2em;
	}
	
	#footer-menu > li:not(:first-of-type) {
		margin-left: 0;
	}
	
	#footer-menu > li + li {
		margin-top: 0.5em;
	}
}

@media (max-width: 768px) {
	footer > div:first-of-type {
		flex-flow: column;
		align-items: center;
		padding: 2em 1em;
	}
	
	footer > div:first-of-type > div {
		width: 100%;
	}
	
	#footer-logo {
		margin: 0 auto 2em;
	}
	
	footer > div:first-of-type > div > p {
		text-align: center;
	}
	
	footer > div:first-of-type > div .button-wrap {
		text-align: center;
	}
	
	#footer-share {
		justify-content: center;
		margin-top: 2em;
	}
}


/* --------------------------
    archive
-------------------------- */
/* archive */
.archive-list {
    list-style-type: none;
}

.archive-list > li {
    padding: 1rem 0;
}

.archive-list > li:first-of-type {
    padding-top: 0;
}

.archive-list > li + li {
    border-top: 1px solid #ddd;
}

.archive-list > li > a {
    display: block;
}

.archive-list > li > a > article {
    display: flex;
    align-items: center;
}

.archive-list > li > a > article > .thumb {
    width: 30%;
    padding-top: 20%;
    background-color: #eee;
    margin-right: 2em;
    position: relative;
}

.archive-list > li > a > article > .thumb > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.archive-list > li > a > article > .info {
    width: calc(70% - 2em);
}

.archive-list > li > a > article > .info > time {
    display: block;
    font-size: 1em;
    margin-bottom: 0.5em;
	font-family: var(--sans-serif-font);
}

.archive-list > li > a > article > .info > .category {
    margin-bottom: 0.5em;
}

.archive-list > li > a > article > .info > .category > span {
    display: inline-block;
    font-size: 10px;
    padding: 0.25em 0.5em;
    margin: 0 0.5em 0.5em 0;
    background-color: var(--color-green-pale);
    color: var(--color-green);
}

.archive-list > li > a > article > .info > h3 {
    font-size: 1rem;
    margin-bottom: 0.5em;
}

.archive-list > li > a > article > .info > p {
    font-size: 0.75em;
    margin-top: 1em;
}

@media (max-width: 768px) {
    .archive-list > li > a > article {
        flex-flow: column;
    }
    
    .archive-list > li > a > article > .info {
        width: 100%;
    }
    
    .archive-list > li > a > article > .thumb {
        width: 100%;
        padding-top: calc(100% / 3 * 2);
        margin-right: 0;
        margin-bottom: 1em;
    }
}

/* archive pagination */
#pagination {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

#pagination > * {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    letter-spacing: 0;
    width: 3em;
    height: 3em;
    background: #eee;
    color: var(--color);
    margin: 0 0.5em;
    transition: all 0.3s ease;
}

#pagination > span,
#pagination > a:hover {
    background: var(--color);
    color: #fff;
    transition: all 0.3s ease;
}

.recruit-archive-list {
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
	margin-top: 1em;
}

.recruit-archive-list > li {
	width: calc(100% / 3 - 1em);
}

.recruit-archive-list > li:not(:nth-of-type(3n)) {
	margin-right: calc(3em / 2);
}

.recruit-archive-list > li:nth-of-type(n + 4) {
	margin-top: 2em;
}

.recruit-archive-list > li > a {
	display: block;
    transition: all 0.3s ease;
}

.recruit-archive-list > li > a:hover {
	right: 1em;
    transition: right 0.2s ease;
}

.recruit-archive-list > li > a > article > figure {
	width: 100%;
    aspect-ratio: 3 / 2;
    background-color: #eee;
    position: relative;
	overflow: hidden;
}

.recruit-archive-list > li > a > article > figure > img  {
	position: absolute;
	width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    top: 0;
    left: 0;
	transition: all 0.3s ease;
}

.recruit-archive-list > li > a:hover > article > figure > img {
	opacity: 0.7;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.recruit-archive-list > li > a > article > div > h3 {
	display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    font-size: 1em;
	margin-top: 1em;
	font-weight: 500;
}

@media (max-width: 768px) {
	.recruit-archive-list {
		width: 100%;
	}
	
	.recruit-archive-list > li {
		width: 100%;
	}
	
	.recruit-archive-list > li:not(:nth-of-type(3n)) {
		margin-right: 0;
	}
	
	.recruit-archive-list > li + li {
		margin-top: 2em;
	}
}

/* --------------------------
    page
-------------------------- */
#page-header {
	height: 300px;
	position: relative;
}

#page-header:before {
	content: '';
	position: absolute;
	background-image: url('/wp-content/uploads/2024/11/page_header.webp');
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: -1;
	filter: brightness(0.8);
}

#page-header > div {
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	min-height: 300px;
	padding: 120px 1em 1em 1em;
}

#page-header > div > h2 {
	color: #fff;
	text-shadow: 0 0 0.25em #333;
}

@media (max-width: 768px) {
	#page-header {
		height: 200px;
	}
	
	#page-header > div {
		padding: 50px 1em 1em 1em;
		min-height: 200px;
	}
}

/* breadcrumb */
#breadcrumb {
	list-style-type: none;
	display: flex;
	color: #fff;
	text-shadow: 0 0 0.25em #333;
	flex-wrap: wrap;
	font-size: 0.875em;
}

#breadcrumb > li {
	display: flex;
	align-items: center;
}

#breadcrumb > li + li:before {
    content: '';
    display: block;
    border-top: 4px solid transparent;
    border-left: 4px solid #fff;
    border-right: 4px solid transparent;
    border-bottom: 4px solid transparent;
	filter: drop-shadow(0 0 0.25em #777) drop-shadow(0 0 0.25em #777);
    margin: 0 0.5em 0 1em;
}

/* --------------------------
    single
-------------------------- */
/* single */
#single-date {
    display: block;
    font-size: 1em;
    font-weight: 700;
    margin-bottom: 2em;
}

.single-content *:not(h2):not(h3):not(h4):not(h5):not(h6) + h2:not(.plain),
.single-content *:not(h2):not(h3):not(h4):not(h5):not(h6) + h3:not(.plain),
.single-content *:not(h2):not(h3):not(h4):not(h5):not(h6) + h4:not(.plain),
.single-content *:not(h2):not(h3):not(h4):not(h5):not(h6) + h5:not(.plain),
.single-content *:not(h2):not(h3):not(h4):not(h5):not(h6) + h6:not(.plain) {
	margin-top: 2em;
}

.single-content h1:not(.plain),
.single-content h2:not(.plain) {
	display: flex;
	flex-flow: column;
	font-family: var(--serif-font);
	font-weight: 500;
	font-size: clamp(1.5em, 3vw, 2em);
	margin-bottom: 1em;
	padding-bottom: 4px;
	position: relative;
}

.single-content h1:not(.plain):before,
.single-content h2:not(.plain):before {
	content: '';
    display: block;
    width: 4em;
    height: 4px;
    background-color: var(--color-green);
    border-radius: 3px;
    position: absolute;
    bottom: 0;
}

.single-content h1:not(.plain):after,
.single-content h2:not(.plain):after {
	content: '';
	display: block;
	width: calc(100% - 4em - 6px);
	height: 4px;
	background-color: #cdcdcd;
	border-radius: 3px;
	position: absolute;
    bottom: 0;
    right: 0;
}

.single-content h3:not(.plain) {
	display: flex;
    margin-bottom: 1em;
	font-family: var(--serif-font);
	font-weight: 600;
}

.single-content h3:not(.plain):before {
	content: '';
	display: block;
	width: 3px;
	background: linear-gradient(to bottom, var(--color-green) 0%, var(--color-green) 50%, #cdcdcd 50%);
	margin-right: 0.5em;
	border-radius: 3px;
}

.single-content h4:not(.plain) {
	margin-bottom: 1em;
	display: flex;
	font-family: var(--serif-font);
	font-weight: 600;
}

.single-content h4:not(.plain):before {
	content: '';
	display: block;
    width: 2px;
    background-color: var(--color-green);
    border-radius: 1px;
    margin-right: 0.5em;
}

.single-content h5:not(.plain) {
	margin-bottom: 1em;
	padding-left: 1em;
	font-weight: 600;
	font-family: var(--serif-font);
	font-size: 1em;
	position: relative;
}

.single-content h5:not(.plain):before {
    content: '';
    display: block;
    width: 0.5em;
    border-top: 1px solid var(--color-green);
    position: absolute;
    top: 50%;
    left: 0;
}

.single-content h6:not(.plain) {
	margin-bottom: 1em;
	font-family: var(--serif-font);
	font-size: 1em;
	color: var(--color-green);
}

.single-content hr:not(.plain) {
	display: block;
	border: none;
	border-top: 2px solid #bbb;
	margin: 4em 0;
}

.single-content ul:not(.plain) {
    background-color: #f5f5f5;
    padding: 2em 2em 2em 3em;
    margin-bottom: 3em;
}

.single-content ol:not(.plain) {
    background-color: #f5f5f5;
    padding: 2em 2em 2em 3em;
    margin-bottom: 3em;
}

.single-content ul:not(.plain) > li + li,
.single-content ol:not(.plain) > li + li {
    margin-top: 1em;
}

.single-content blockquote:not(.plain) {
    background-color: #f5f5f5;
    padding: 2em;
    margin-bottom: 2em;
}

.single-content p:not(.plain) {
    text-align: justify;
    margin-bottom: 1em;
}

.single-content dl:not(.plain) {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2em;
}

.single-content dl:not(.plain) > dt {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
	background-color: var(--color-green-pale);
	font-family: var(--serif-font);
    padding: 1em 2em;
    font-weight: 700;
}

.single-content dl:not(.plain) > dt:nth-of-type(n + 2) {
	margin-top: 2px;
}

.single-content dl:not(.plain) > dd {
    width: 60%;
    background-color: #f2f2f2;
    padding: 1em 2em;
}

.single-content dl:not(.plain) > dd:nth-of-type(n + 2) {
	margin-top: 2px;
}

.single-content img:not(.plain) {
    height: auto;
    margin-bottom: 2em;
}

.single-content img:not(.plain).alignleft {
    float: left;
    margin: 0 2em 2em 0;
}

.single-content img:not(.plain).alignright {
    float: right;
    margin: 0 0 2em 2em;
}

.single-content img:not(.plain).aligncenter {
    margin: 0 auto 2em auto;
}

.single-content a:not(.plain) {
    text-decoration: underline;
    transition: all 0.3s ease;
	color: var(--color-green);
}

.single-content a:not(.plain):hover {
    opacity: 0.7;
    transition: all 0.3s ease;
}

.single-content small:not(.plain) {
    font-size: 0.75em;
}

.single-content mark:not(.plain) {
	background: linear-gradient(to top, #ffe889 50%, transparent 50%);
}

.single-content strong:not(.plain) {
	font-weight: 700;
    font-style: normal;
    color: #dc4742;
}

@media (max-width: 768px) {
	.single-content h1:not(.plain),
	.single-content h2:not(.plain) {
	}
	
	.single-content h3:not(.plain) {
	}
	
	.single-content hr:not(.plain) {
		margin: 2em 0;
	}

	.single-content ul:not(.plain) {
		padding: 1em 1em 1em 2em;
	}
	
	.single-content ol:not(.plain) {
		padding: 1em 1em 1em 3em;
	}
	
	.single-content blockquote:not(.plain) {
		padding: 1em;
	}
	
	.single-content dl:not(.plain) {
		flex-flow: column;
	}
	
	.single-content dl:not(.plain) > dt {
		width: 100%;
		padding: 1em;
	}
	
	.single-content dl:not(.plain) > dd {
		width: 100%;
		padding: 1em;
	}
	
	.single-content dl:not(.plain) > dd:nth-of-type(n + 2) {
		margin-top: 0;
	}

	.single-content img.aligncenter:not(.plain),
	.single-content img.alignleft:not(.plain),
	.single-content img.alignright:not(.plain) {
		float: none;
		margin: 0 auto 2em auto;
	}
}

/* single pagination */
#single-pagination {
    list-style-type: none;
    display: flex;
    border-top: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
    padding: 1rem 0;
    margin-top: 2rem;
}

#single-pagination > li {
    width: 50%;
}

#single-pagination > li + li {
    border-left: 2px solid #ddd;
}

#single-pagination > li > a {
    display: block;
    color: var(--main-color);
    padding: 1rem 3rem;
    position: relative;
}

#single-pagination > li:first-of-type > a:before {
    content: '';
    display: block;
    border-top: 0.3rem solid transparent;
    border-left: 0.3rem solid transparent;
    border-right: 0.3rem solid var(--color);
    border-bottom: 0.3rem solid transparent;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

#single-pagination > li:last-of-type > a:before {
    content: '';
    display: block;
    border-top: 0.3rem solid transparent;
    border-left: 0.3rem solid var(--color);
    border-right: 0.3rem solid transparent;
    border-bottom: 0.3rem solid transparent;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    #single-pagination {
        flex-flow: column;
        padding: 0;
    }

    #single-pagination > li {
        width: 100%;
    }

    #single-pagination > li + li {
        border-left: none;
    }

    #single-pagination > li:first-of-type:empty {
        border-top: 2px solid #ddd;
    }
}

/* --------------------------
    top
-------------------------- */
#top-main-banner {
	width: 100vw;
	height: 100%;
	position: relative;
	aspect-ratio: 16 / 9;
}

#top-main-banner > div {
	width: 100%;
	height: 100%;
}

#top-main-banner > span {
	position: absolute;
	bottom: 2em;
	font-family: var(--sans-serif-font);
	z-index: 1;
	writing-mode: vertical-rl;
	right: 2em;
	color: #fff;
/* 	text-shadow: 0 0 0.1em rgba(0, 0, 0, 0.3), 0 0 0.1em rgba(0, 0, 0, 0.3); */
	display: flex;
	align-items: center;
	flex-flow: row-reverse;
}

#top-main-banner > span:before {
	content: '';
    display: block;
    height: 5em;
    border-left: 2px solid #fff;
    position: relative;
	margin-top: 2em;
}

#top-main-banner > span:after {
	content: '';
	display: block;
	position: absolute;
	width: 0.5em;
	height: 0.5em;
	border-radius: 50%;
	background-color: #fff;
	animation: scroll 2s infinite;
}

@keyframes scroll {
	0% {
		bottom: 4.5em;
	}
	100% {
		bottom: 0;
	}
}

#top-slider {
	overflow: hidden;
	width: 100%;
	height: 100%;
}

#top-slider .swiper-slide {
	position: relative;
}

#top-slider .swiper-slide > h2 {
	position: absolute;
	top: 50%;
	left: 2em;
	font-weight: 500;
	display: flex;
	flex-flow: column;
	color: #fff;
/* 	text-shadow: 0 0 0.1em rgba(0, 0, 0, 0.3), 0 0 0.1em rgba(0, 0, 0, 0.3); */
	z-index: 333;
	transform: translateY(-50%);
}

#top-slider .swiper-slide > h2 > span {
	font-family: var(--serif-font);
	font-size: 2em;
	font-weight: 500;
}

#top-slider .swiper-slide > picture {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	filter: brightness(0.8);
}

#top-slider .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 0;
	left: 0;
	transition: all 5s linear;
}

#top-circle-animation {
	width: clamp(150px, 20vw, 320px);
	aspect-ratio: 1 / 1;
	position: absolute;
	right: 6em;
	bottom: 2em;
	z-index: 999;
}

@media (max-width: 768px) {
	#top-main-banner {
		aspect-ratio: 1 / 1;
	}
	
	#top-slider .swiper-slide > h2 {
		left: 1em;
	}
	
	#top-slider .swiper-slide > h2 > span {
		font-size: clamp(1em, 3vw, 1.5em);
	}
	
	#top-main-banner > span {
		font-size: 0.75em;
	}

	#top-circle-animation {
		right: 4em;
		bottom: 1em;
	}
}

#top-philosophy > div {
	opacity: 0;
	transform: translateY(3em);
}

#top-philosophy > div.show {
	opacity: 1;
	transform: translateY(0);
	transition: all 1s ease;
}

#top-philosophy p {
	text-align: center;
}

@media (max-width: 768px) {
	#top-philosophy p {
		text-align: left;
	}
	
	#top-philosophy p > br {
		display: none;
	}
}

#top-about {
	position:relative;
	width: 100vw;
}
	

#top-about:before {
	content: '';
	position: absolute;
	width: 18em;
	height: 18em;
	left: 3em;
	top: -8em;
	background-image: var(--ornament1);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	z-index: -1;
}

#top-about > div {
	display: flex;
	justify-content: space-between;
	align-items: center;
	overflow: hidden;
}

#top-about > div > figure {
	width: calc(50% -  6em);
	aspect-ratio: 3 / 4;
	overflow: hidden;
	position: relative;
	opacity: 0;
	transform: translateX(-3em);
}

#top-about > div > figure.show {
	opacity: 1;
	transform: translateX(0);
	transition: all 1s ease;
}

#top-about > div > figure > img {
	position: absolute;
	object-position: center;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

#top-about > div > div {
	width: 50%;
	opacity: 0;
	transform: translateX(3em);
}

#top-about > div > div.show {
	opacity: 1;
	transform: translateX(0);
	transition: all 1s ease;
}

@media (max-width: 768px) {
	#top-about > div {
		flex-flow: column;
	}
	
	#top-about > div > figure {
		width: 100%;
	}
	
	#top-about > div > div {
		width: 100%;
		margin-top: 2em;
	}
	
	#top-about:before {
		width: 9em;
		height: 9em;
		left: 2em;
		top: -3em;
	}
}

#top-shop {
	position: relative;
	width: 100vw;
}

#top-shop:before {
	content: '';
	position: absolute;
	width: 18em;
	height: 18em;
	right: 3em;
	top: -8em;
	background-image: var(--ornament2);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	z-index: -1;
}

#top-shop > div {
	display: flex;
	flex-flow: row-reverse;
	justify-content: space-between;
	align-items: center;
	overflow: hidden;
}

#top-shop > div > figure {
	width: calc(50% -  6em);
	aspect-ratio: 3 / 4;
	overflow: hidden;
	position: relative;
	opacity: 0;
	transform: translateX(3em);
}

#top-shop > div > figure.show {
	opacity: 1;
	transform: translateX(0);
	transition: all 1s ease;
}

#top-shop > div > figure > img {
	position: absolute;
	object-position: center;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

#top-shop > div > div {
	width: 50%;
	opacity: 0;
	transform: translateX(-3em);
}

#top-shop > div > div.show {
	opacity: 1;
	transform: translateX(0);
	transition: all 1s ease;
}

#top-shop > div > div > dl {
	display: flex;
	flex-wrap: wrap;
}

#top-shop > div > div > dl > dt {
	width: 10em;
	padding: 1em 2em;
	font-family: var(--serif-font);
	display: flex;
	align-items: center;
	font-weight: 700;
}

#top-shop > div > div > dl > dd {
	width: calc(100% - 10em);
	padding: 1em 2em;
	border-left: 1px solid #ccc;
}

@media (max-width: 768px) {
	#top-shop:before {
		width: 9em;
		height: 9em;
		right: 2em;
		top: -3em;
	}
	
	#top-shop > div {
		flex-flow: column;
	}
	
	#top-shop > div > figure {
		width: 100%;
	}
	
	#top-shop > div > div {
		width: 100%;
		margin-top: 2em;
	}
	
	#top-shop > div > div > dl {
		flex-wrap: wrap;
	}
	
	#top-shop > div > div > dl > dt {
		width: 100%;
		padding: 0 1em;
	}
	
	#top-shop > div > div > dl > dd {
		width: 100%;
		border-left: none;
		padding: 1em;
	}
	
	#top-shop > div > div > dl > dt:nth-of-type(n + 2) {
		margin-top: 1em;
	}
	
	#top-shop > div > div > dl > dd:not(:last-of-type) {
		border-bottom: 1px solid #ccc;
	}
}

#top-online {
	position: relative;
	opacity: 0;
	transform: translateY(3em);
	width: 100vw;
}

#top-online.show {
	opacity: 1;
	transform: translateY(0);
	transition: all 1s ease;
}

#top-online:before {
	content: '';
	position: absolute;
	display: block;
	background-image: url(/wp-content/uploads/2024/09/jyusou_shop3.webp);
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: -1;
}

#top-online > a {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10em 1em;
	transition: all 0.3s ease;
	background: rgba(255,255,255,0.6);
}

#top-online > a:hover {
	transition: all 0.3s ease;
	background: rgba(255,255,255,0.8);
}

#top-online > a > i {
	font-size: 9em;
	margin-right: 3rem;
	color: #999;
}

#top-online > a > div {
	display: flex;
	align-items: center;
}

#top-online > a > div > h2 {
	display: flex;
	flex-flow: column;
	font-family: var(--serif-font);
	font-weight: 500;
	text-align: center;
}

#top-online > a > div > h2:before {
	content: attr(data-text);
    font-family: var(--sans-serif-font);
    font-size: 2em;
}


#top-online > a > div > span {
	display: block;
	width: 2em;
	height: 2em;
	position: relative;
	margin-left: 2em;
}

#top-online > a > div > span:before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-image: var(--icon-link);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

@media (max-width: 768px) {
	#top-online > a {
		flex-flow: column;
		padding: 5em 1em;
	}
	
	#top-online > a > i {
		font-size: 4em;
		margin-right: 0;
	}
	
	#top-online > a > div > h2 {
		font-size: 1.25em;
	}
	
	#top-online > a > div > span {
		width: 1.5em;
		height: 1.5em;
		margin-left: 1em;
	}
}

#top-company {
	width: 100vw;
	overflow: hidden;
}

#top-company > div {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#top-company > div > figure {
	width: calc(50% -  6em);
	aspect-ratio: 3 / 4;
	position: relative;
	opacity: 0;
	transform: translateX(-3em);
}

#top-company > div > figure.show {
	opacity: 1;
	transform: translateX(0);
	transition: all 1s ease;
}

#top-company > div > figure > img:first-of-type {
	position: absolute;
	object-position: center;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

#top-company > div > div {
	width: 50%;
	opacity: 0;
	transform: translateX(3em);
}

#top-company > div > div.show {
	opacity: 1;
	transform: translateX(0);
	transition: all 1s ease;
}

@media (max-width: 768px) {
	#top-company > div {
		flex-flow: column;
	}
	
	#top-company > div > figure {
		width: 100%;
	}
	
	#top-company > div > div {
		width: 100%;
		margin-top: 2em;
	}
}

#top-recruit {
	position: relative;
	opacity: 0;
	transform: translateY(3em);
}

#top-recruit.show {
	opacity: 1;
	transform: translateY(0);
	transition: all 1s ease;
}

#top-recruit:before {
	content: '';
	position: absolute;
	display: block;
	background-image: url(/wp-content/uploads/2024/11/top_recruit.webp);
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: -1;
}

#top-recruit > div > p {
	margin: 0 6em;
	text-align: center;
}

@media (max-width: 768px) {
	#top-recruit > div > p {
		margin: 0;
		text-align: left;
	}
}

#top-news {
	opacity: 0;
	transform: translateY(3em);
}

#top-news.show {
	opacity: 1;
	transform: translateY(0);
	transition: all 1s ease;
}

#top-news-list {
	list-style-type: none;
	display: flex;
}

#top-news-list > li {
	width: calc(100% / 3 - 1em);
}

#top-news-list > li + li {
	margin-left: calc(3em / 2);
}

#top-news-list > li > a > article > figure {
	width: 100%;
    aspect-ratio: 3 / 2;
    background-color: #eee;
    overflow: hidden;
}

#top-news-list > li > a > article > figure img {
	width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
}

#top-news-list > li > a:hover > article > figure > img {
	opacity: 0.7;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

#top-news-list > li > a > article > div {
	display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1em;
}

#top-news-list > li > a > article > div > time {
	display: block;
    width: 7rem;
    font-family: var(--sans-serif-font);
    font-size: 0.875em;
    line-height: 1.25;
	color: #808080;
}

#top-news-list > li > a > article > div > time > span:nth-of-type(1) {
	display: block;
}

#top-news-list > li > a > article > div > time > span:nth-of-type(2) {
	font-size: 1.5em;
}

#top-news-list > li > a > article > div > time > span:nth-of-type(3) {
	margin-left: 0.5em;
}

#top-news-list > li > a > article > div > h3 {
	width: calc(100% - 8rem);
    font-size: 0.875em;
    font-weight: 500;
}

@media (max-width: 768px) {
	#top-news-list {
		flex-flow: column;
	}
	
	#top-news-list > li {
		width: 100%;
	}
	
	#top-news-list > li + li {
		margin-left: 0;
		margin-top: 2em;
	}
}

/* --------------------------
    contact
-------------------------- */
#contact-tel {
	text-align: center;
    font-size: 2em;
    font-weight: 500;
	font-family: var(--sans-serif-font);
	margin-bottom: 0.5em;
}

#contact-tel > i {
	margin-right: 0.5em;
}

.contactform dl {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin-top:2em;
	margin-bottom: 1rem;
}

.contactform > dl > dt {
	text-align: left;
	padding: 1em 4em 1em 1em;
	position: relative;
	width: 40%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	font-family: var(--serif-font);
	background-color: var(--color-green-pale);
}

.contactform > dl > dt:nth-of-type(n + 2) {
	margin-top: 2px;
}

.contactform > dl > dd {
	padding: 1em 2em;
	width: 60%;
	background-color: #f2f2f2;
}

.contactform > dl > dd:nth-of-type(n + 2) {
	margin-top: 2px;
}

.contactform > dl > dt.required:after {
	content: '必 須';
	display: block;
	font-size: 10px;
	line-height: 1;
	letter-spacing: 0;
	padding: 0.5em 1em;
	background: var(--color-green);
	font-family: var(--font-family);
	color: #fff;
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 3px;
}

.contactform > dl > dt:not(.required):after {
	content: '任 意';
	display: block;
	font-size: 10px;
	line-height: 1;
	letter-spacing: 0;
	padding: 0.5em 1em;
	background-color: #fff;
	font-family: var(--font-family);
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 3px;
}

.contactform > dl > dd.contact-readonly > span > input {
	background-color: #f2f2f2;
	color: #666;
}

.contactform > dl > dd input[type=text],
.contactform > dl > dd input[type=email],
.contactform > dl > dd input[type=tel],
.contactform > dl > dd textarea {
	display: block;
	width: 100%;
	border-radius: 3px;
	border: none;
	border: 1px solid #ccc;
	padding: 0.5em 1em;
	background-color: #fff;
}

.contactform > dl > dd select {
	display: block;
	border-radius: 3px;
	border: none;
	background-color: #fff;
	border: 1px solid #ccc;
	padding: 0.5em 1em;
}

.contactform > dl > dd input[type=date] {
	width: 30%;
	display: block;
	border-radius: 3px;
	border: none;
	background-color: #fff;
	border: 1px solid #ccc;
	padding: 0.5em 1em;
}

.contactform > dl > dd select {
	padding: 0.5em 1em;
}

.contactform > dl > dd input[type=number] {
	display: block;
	border-radius: 3px;
	border: none;
	background-color: #fff;
	border: 1px solid #ccc;
	padding: 0.5em 1em;
}

.contactform > dl > dd input.inline {
	display: inline-block;
}

.contactform > dl > dd input.readonly {
	background-color: transparent;
	border: none;
}

.contactform > dl > dd input.readonly:focus {
	outline: none;
}

.contactform > dl > dd.birthday {
	display: flex;
	flex-flow: row;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.contactform > dl > dd.birthday > .year,
.contactform > dl > dd.birthday > .month,
.contactform > dl > dd.birthday > .date {
	display: flex;
	margin: 0.125em 0.25em 0.125em 0;
	align-items: center;
}

.contactform > dl > dd.birthday > .year input[type=number] {
	width: 6em;
}

.contactform > dl > dd.birthday > .year:after {
	content: '年';
	margin-left: 0.25em;
}

.contactform > dl > dd.birthday > .month:after {
	content: '月';
	margin-left: 0.25em;
}

.contactform > dl > dd.birthday > .date:after {
	content: '日';
	margin-left: 0.25em;
}

.agreement-wrap {
	text-align: center;
	margin-bottom: 1rem;
}

.contactform input[name=agreement] {
	appearance: none;
	-webkit-appearance: none;
	border: none;
}

.contactform input[name=agreement] + span {
	display: flex;
	justify-content: center;
	align-items: center;
}

.contactform input[name=agreement] + span:hover {
	cursor: pointer;
}

.contactform input[name=agreement] + span:before {
	content: '';
	display: inline-block;
	width: 3rem;
	height: 3rem;
	border: 1px solid #aaa;
	border-radius: 3px;
	background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPHN2ZyB2ZXJzaW9uPSIxLjEiIGZvY3VzYWJsZT0iZmFsc2UiCgkgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIgoJIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDUxMiA1MTI7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbDojQUFBQUFBO30KPC9zdHlsZT4KPHBhdGggY2xhc3M9InN0MCIgZD0iTTE3My45LDQzOS40TDcuNSwyNzNjLTEwLTEwLTEwLTI2LjIsMC0zNi4ybDM2LjItMzYuMmMxMC0xMCwyNi4yLTEwLDM2LjIsMEwxOTIsMzEyLjdMNDMyLjEsNzIuNgoJYzEwLTEwLDI2LjItMTAsMzYuMiwwbDM2LjIsMzYuMmMxMCwxMCwxMCwyNi4yLDAsMzYuMkwyMTAuMSw0MzkuNEMyMDAuMSw0NDkuNCwxODMuOSw0NDkuNCwxNzMuOSw0MzkuNEwxNzMuOSw0MzkuNHoiLz4KPC9zdmc+Cg==);
	background-size: 50%;
	background-position: center;
	background-repeat: no-repeat;
	margin-right: 1rem;
	background-color: #fff;
}

.contactform input[name=agreement]:checked + span:before {
	content: '';
	display: inline-block;
	width: 3rem;
	height: 3rem;
	border: 1px solid #333;
	border-radius: 3px;
	background-image: url(data:image/svg+xml;base64,PHN2ZyBhcmlhLWhpZGRlbj0idHJ1ZSIgZm9jdXNhYmxlPSJmYWxzZSIgZGF0YS1wcmVmaXg9ImZhcyIgZGF0YS1pY29uPSJjaGVjayIgY2xhc3M9InN2Zy1pbmxpbmUtLWZhIGZhLWNoZWNrIGZhLXctMTYiIHJvbGU9ImltZyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiI+PHBhdGggZmlsbD0iY3VycmVudENvbG9yIiBkPSJNMTczLjg5OCA0MzkuNDA0bC0xNjYuNC0xNjYuNGMtOS45OTctOS45OTctOS45OTctMjYuMjA2IDAtMzYuMjA0bDM2LjIwMy0zNi4yMDRjOS45OTctOS45OTggMjYuMjA3LTkuOTk4IDM2LjIwNCAwTDE5MiAzMTIuNjkgNDMyLjA5NSA3Mi41OTZjOS45OTctOS45OTcgMjYuMjA3LTkuOTk3IDM2LjIwNCAwbDM2LjIwMyAzNi4yMDRjOS45OTcgOS45OTcgOS45OTcgMjYuMjA2IDAgMzYuMjA0bC0yOTQuNCAyOTQuNDAxYy05Ljk5OCA5Ljk5Ny0yNi4yMDcgOS45OTctMzYuMjA0LS4wMDF6Ij48L3BhdGg+PC9zdmc+);
	background-size: 50%;
	background-position: center;
	background-repeat: no-repeat;
}

.contactform .submit-wrap {
	text-align: center;
}

.contactform .submit-wrap > input[type=submit] {
	width: 100%;
	max-width: 280px;
	border: none;
	color: #fff;
	background-color: var(--color-green);
	padding: 1rem 2rem;
	cursor: pointer;
	margin-left: 4.5rem;
	transition: all 0.3s ease;
}

.contactform .submit-wrap > input[type=submit]:hover {
	opacity: 0.7;
	transition: all 0.3s ease;
}

.contactform .submit-wrap > input[type=submit]:disabled {
	background-color: #ddd;
	cursor: not-allowed;
}

.contactform > dl > dd > .zip-wrap > span {
	display: flex;
	align-items: center;
}

.contactform > dl > dd > .zip-wrap input[type=text] {
	width: 10rem;
	margin: 0 .25rem;
}

.contactform > dl > dd > .zip-wrap > span:before {
	content: "〒";
}

.contactform > dl > .attachment > div+div {
	margin-top: 1rem;
}

.contactform > dl > dd span + span {
	display: block;
	margin-top: .5rem;
}

.contactform > dl > dd.reservation:not(.plain) > div:nth-of-type(odd) {
	margin-bottom: 0.5em;
}

.contactform > dl > dd.reservation:not(.plain) > div:nth-of-type(2) {
	margin-bottom: 1em;
}

.submit-wrap > spa {
	display: none !important;
}

.ajax-loader {
	display: block;
	margin: auto;
}

.wpcf7-list-item {
	display: block !important;
}

@media (max-width: 768px) {
	.contactform > dl > dt {
		width: 100%;
	}
	
	.contactform > dl > dd {
		width: 100%;
		padding: 1em;
	}
	
	.contactform > dl > dd:nth-of-type(n + 2) {
		margin-top: 0;
	}
}

/* --------------------------
    company
-------------------------- */
#access-gmap-wrap {
	aspect-ratio: 16 / 9;
	position: relative;
}

#access-gmap-wrap > iframe {
	position: absolute;
	width: 100%;
	height: 100%;
}

@media (max-width: 768px) {
	#access-gmap-wrap {
		aspect-ratio: 1 / 1;
	}
}

/* --------------------------
    about
-------------------------- */
.heading-chatch {
	text-align: center;
    margin-bottom: 2em;
    position: relative;
    z-index: 1;
	font-size: 1.5em;
	font-family: var(--serif-font);
	font-weight: 500;
	margin-bottom: 1em;
}

.heading-chatch > span {
	display: inline-block;
    padding: 1em 2em;
    position: relative;
    z-index: 1;
}

.heading-chatch > span:before {
	content: '';
    display: block;
    width: 1em;
    height: 2em;
    border-top: 1px solid var(--color);
    border-left: 1px solid var(--color);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.heading-chatch > span:after {
	content: '';
    display: block;
    width: 1em;
    height: 2em;
    border-bottom: 1px solid var(--color);
    border-right: 1px solid var(--color);
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

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

@media (max-width: 768px) {
	.philosophy-text {
		text-align: justify!important;
	}
	
	.philosophy-text > br {
		display: none;
	}
}

/* --------------------------
    shop
-------------------------- */
#new-products-list {
	display: flex;
	list-style-type: none;
}

#new-products-list > li {
	width: calc(100% / 3 - 1em);
	position: relative;
}

#new-products-list > li:before {
	content: 'NEW';
	width: 4em;
	height: 4em;
	background-color: var(--color-green);
	color: #fff;
	font-family: var(--sans-serif-font);
	display: flex;
	justify-content: center;
    align-items: center;
	position: absolute;
	top: -1em;
	left: -1em;
	border-radius: 50%;
	z-index: 1;
}

#new-products-list > li + li {
	margin-left: calc(3em / 2);
}

#new-products-list > li > a > article > figure {
	width: 100%;
    aspect-ratio: 3 / 2;
    background-color: #eee;
    overflow: hidden;
}

#new-products-list > li > a > article > figure img {
	width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
}

#new-products-list > li > a:hover > article > figure img {
	opacity: 0.7;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

#new-products-list > li > a > article > div {
	display: flex;
	justify-content: space-between;
    align-items: center;
    margin-top: 1em;
}

#new-products-list > li > a > article > div > time {
	display: block;
    width: 7rem;
    font-family: var(--sans-serif-font);
    font-size: 0.875em;
    line-height: 1.25;
    color: #808080;
}

#new-products-list > li > a > article > div > time > span:nth-of-type(1) {
	display: block;
}

#new-products-list > li > a > article > div > time > span:nth-of-type(2) {
	font-size: 1.25em;
}

#new-products-list > li > a > article > div > time > span:nth-of-type(3) {
	margin-left: 0.5em;
}

#new-products-list > li > a > article > div > h3 {
	width: calc(100% - 8rem);
    font-size: 0.875em;
}

.goods-list {
	display: flex;
	flex-wrap: wrap;
	list-style-type: none;
}

.goods-list > li {
	width: calc(100% / 3 - 1em);
}

.goods-list > li:not(:nth-of-type(3n)) {
	margin-right: calc(3em / 2);
}

.goods-list > li:nth-of-type(n + 4) {
	margin-top: 2em;
}

.goods-list > li > h3 {
	font-size: 1rem;
	margin-top: 1em;
}

.goods-list > li > .categories-list {
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
	font-size: 0.75em;
	margin-top: 1em;
}

.goods-list > li > .categories-list > li {
	margin: 0.25em;
	padding: 0.25em 1em;
	background-color: var(--color-green-pale);
	color: var(--color-green);
	border-radius: 2em;	
}

.rakuten-banner-list {
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
}

.rakuten-banner-list > li {
	width: calc(50% - 1em);
}

.rakuten-banner-list > li:nth-of-type(even) {
	margin-left: 2em;
}

.rakuten-banner-list > li:nth-of-type(n + 3) {
	margin-top: 2em;
}

#access-wrap {
	display: flex;
	justify-content: space-between;
	margin: 4em 0;
}

#access-wrap > div {
	width: calc(50% - 2em);
	aspect-ratio: 16 / 9;
}

#access-wrap > div > * {
	width: 100%;
	height: 100%;
}

@media (max-width: 768px) {
	#new-products-list {
		flex-flow: column;
	}
	
	#new-products-list > li {
		width: 100%;
	}
	
	#new-products-list > li + li {
		margin-left: 0;
		margin-top: 3em;
	}
	
	.goods-list > li {
		width: 100%;
	}
	
	.goods-list > li:not(:nth-of-type(3n)) {
		margin-right: 0;
	}
	
	.goods-list > li + li {
		margin-top: 2em;
	}
	
	.goods-list > li > .categories-list {
		font-size: 0.875em;
	}
	
	.rakuten-banner-list > li {
		width: 100%;
	}
	
	.rakuten-banner-list > li:nth-of-type(even) {
		margin-left: 0;
	}
	
	.rakuten-banner-list > li:nth-of-type(n + 3) {
		margin-top: 1em;
	}
	
	.rakuten-banner-list > li + li {
		margin-top: 1em;
	}
	
	#access-wrap {
		flex-flow: column;
	}
	
	#access-wrap > div {
		width: 100%;
	}
	
	#access-wrap > div + div {
		margin-top: 2em;
	}
	
	
}