/*
Theme Name: kanaken
Theme URI: 
Author: デザインスペースマジック
Author URI: 
Description: 株式会社カナケン
Requires at least: 6.8
Tested up to: 6.8
Requires PHP: 5.7
Version: 
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kanaken
Tags: 
*/

/* ==========================================================================
   TABLE OF CONTENTS
   ========================================================================== */

/*
1. CSS Reset & Normalize
2. Typography & Fonts
3. Layout & Structure
4. WordPress Core Blocks
5. Block Patterns & Variations
6. Navigation & Menus
7. Forms & Inputs
8. Media & Images
9. Accessibility
10. Responsive Design
11. Print Styles
12. Custom Properties (CSS Variables)
13. Utility Classes
14. Original Classes
*/

/* ==========================================================================
   1. CSS RESET & NORMALIZE
   ========================================================================== */

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

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var( "メイリオ",--wp--preset--font-family--system-font, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif);
	background-color: var(--wp--preset--color--background, #ffffff);
	color: var(#707070, --wp--preset--color--foreground);
}

/* Remove default margin from common elements */
h1, h2, h3, h4, h5, h6,
p, blockquote, figure,
ol, ul, li,
dl, dt, dd {
	margin: 0;
}

/* ==========================================================================
   2. TYPOGRAPHY & FONTS
   ========================================================================== */

/* Base Typography */
html {
	font-size: 16px;
}

body {
	line-height: var(--wp--custom--typography--line-height--body, 1.6);
	font-weight: var(--wp--preset--font-weight--normal, 400);
	color: var(--wp--custom--text-color);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--wp--preset--font-family--heading, inherit);
	font-weight: var(--wp--preset--font-weight--bold, 700);
	line-height: var(--wp--custom--typography--line-height--heading, 1.2);
	letter-spacing: var(--wp--custom--typography--letter-spacing--heading, -0.02em);
}

h1 {
	font-size: var(--wp--preset--font-size--x-large, 2.5rem);
}

h2 {
	font-size: var(--wp--preset--font-size--large, 2rem);
	margin-top: 2.5rem;
	margin-bottom: 2rem;
}

h3 {
	font-size: var(--wp--preset--font-size--medium-large, 1.5rem);
	margin-top: 2rem;
	margin-bottom: 1.5rem;
}

h4 {
	font-size: var(--wp--preset--font-size--medium, 1.25rem);
	margin-top: 1.5rem;
	margin-bottom: 1.25rem;
}

h5 {
	font-size: var(--wp--preset--font-size--small, 1.125rem);
	margin-top: 1.25rem;
	margin-bottom: 1.125rem;
}

h6 {
	font-size: var(--wp--preset--font-size--x-small, 1rem);
	margin-top: 1.125rem;
	margin-bottom: 1rem;
}

.bg-cyan {
	background: #34DAE6;
	color: #fff;
	padding: 22px 0;
	text-align: center;
}

/* Text Elements */
p {
	margin-bottom: var(--wp--preset--spacing--40, 1rem);
}

strong, b {
	font-weight: var(--wp--preset--font-weight--bold, 700);
}

em, i {
	font-style: italic;
}

small {
	font-size: var(--wp--preset--font-size--small, 0.875rem);
}

/* Links */
a {
	color: var(--wp--preset--color--primary, #0073aa);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
}

a:hover,
a:focus {
	color: var(--wp--preset--color--secondary, #005177);
	text-decoration-thickness: 2px;
}

a:focus {
	outline: 2px solid var(--wp--preset--color--primary, #0073aa);
	outline-offset: 2px;
}

/* ==========================================================================
   3. LAYOUT & STRUCTURE
   ========================================================================== */

/* Site Container */
.wp-site-blocks {
/*
	padding-top: var(--wp--custom--spacing--outer, 1rem);
	padding-bottom: var(--wp--custom--spacing--outer, 1rem);
*/
}

/* Content Width */
.wp-block-group.has-global-padding {
	padding-right: var(--wp--custom--spacing--outer, 1rem);
	padding-left: var(--wp--custom--spacing--outer, 1rem);
}

/* Wide and Full Width */
.alignwide {
	max-width: var(--wp--custom--layout--wide-size, 1200px);
}

.alignfull {
	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

/* ==========================================================================
   4. WORDPRESS CORE BLOCKS
   ========================================================================== */
/* Group Block */
.wp-block-group {
	box-sizing: border-box;
}

/* Columns Block */
.wp-block-columns {
	display: flex;
	flex-wrap: wrap;
	gap: var(--wp--preset--spacing--30, 2rem);
}

.wp-block-column {
	flex-basis: 0;
	flex-grow: 1;
}

/* Cover Block */
.wp-block-cover {
	position: relative;
	background-size: cover;
	background-position: center;
	min-height: 430px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wp-block-cover .wp-block-cover__inner-container {
	width: 100%;
	z-index: 1;
	color: #fff;
}

/* Image Block */
.wp-block-image {
	margin-bottom: var(--wp--preset--spacing--40, 1rem);
}

.wp-block-image img {
	height: auto;
	max-width: 100%;
	vertical-align: bottom;
}

.wp-block-image figcaption {
	margin-top: var(--wp--preset--spacing--20, 0.5rem);
	font-size: var(--wp--preset--font-size--small, 0.875rem);
	color: var(--wp--preset--color--foreground-alt, #666);
	text-align: center;
}

/* Gallery Block */
.wp-block-gallery {
	display: flex;
	flex-wrap: wrap;
	list-style-type: none;
	padding: 0;
	margin: 0;
}

/* Quote Block */
.wp-block-quote {
	border-left: 4px solid var(--wp--preset--color--primary, #0073aa);
	margin: var(--wp--preset--spacing--40, 1rem) 0;
	padding-left: var(--wp--preset--spacing--30, 1rem);
}

.wp-block-quote cite {
	font-size: var(--wp--preset--font-size--small, 0.875rem);
	font-style: italic;
	color: var(--wp--preset--color--foreground-alt, #666);
}

/* Pullquote Block */
.wp-block-pullquote {
	text-align: center;
	border: none;
	padding: var(--wp--preset--spacing--50, 2rem);
}

.wp-block-pullquote blockquote {
	font-size: var(--wp--preset--font-size--large, 1.5rem);
	font-style: italic;
	margin: 0;
}

/* Button Block */
.wp-block-button .wp-block-button__link {
	background: 	var(--wp--custom--gradient--dark, #d71037);
	border: none;
	border-radius: var(--wp--custom--border--radius, 8px);
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 1rem;
	line-height: 1.2;
	padding: var(--wp--preset--spacing--30, 0.75rem) var(--wp--preset--spacing--50, 1rem);
	text-decoration: none;
	text-align: center;
	transition: all 0.2s ease;
}

.wp-block-button .wp-block-button__link:hover,
.wp-block-button .wp-block-button__link:focus {
	background-color: var(--wp--preset--color--secondary, #005177);
	transform: translateY(-1px);
}

/* Separator Block */
.wp-block-separator {
  border: 0;
  height: 3px;
  width: 100px;
  margin: var(--wp--preset--spacing--50, 2rem) auto;
  background: var(--wp--custom--gradient--separator);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: block;
  border-radius: 9999px;
}

.wp-block-separator.is-style-wide {
	width: 100%;
}

.wp-block-separator.thin-gray {
	width: 100%;
	border: #ccc 1px solid;
	height: 0;
}

/* Table Block */
.wp-block-table {
	overflow-x: auto;
}

.wp-block-table table {
	border-collapse: collapse;
	width: 100%;
}

.wp-block-table td,
.wp-block-table th {
	border: 1px solid var(--wp--preset--color--foreground-alt, #ddd);
	padding: var(--wp--preset--spacing--20, 0.5rem);
	text-align: left;
}

.wp-block-table th {
	background-color: var(--wp--preset--color--tertiary, #f7f7f7);
	font-weight: var(--wp--preset--font-weight--bold, 700);
}

/* Grid Block */
	:where(.is-layout-grid) {
		gap: 1.5rem;
		padding: 3rem 1.5rem;
	}

/* post date */
.wp-block-post-date:before {
	content: ""!important;
}

/* ==========================================================================
   5. BLOCK PATTERNS & VARIATIONS
   ========================================================================== */

/* Custom Block Patterns Styles */
.has-background {
	padding: var(--wp--preset--spacing--40, 1rem);
}

.has-text-color a {
	color: inherit;
}

.cmn-border-box {
	border: 1px #ccc solid;
	border-radius: 8px;
	padding: 3rem 1.5rem;
	box-shadow: 0px 0px 15px -5px #cccccc;

}

.wp-block-group.cmn-grid3 {
	border: 1px #ccc solid;
	border-radius: 8px;
	padding: 1.5rem;
	gap: 1rem;
}

/* ==========================================================================
   6. NAVIGATION & MENUS
   ========================================================================== */

/* Navigation Block */
.wp-block-navigation {
	--navigation-layout-justification-setting: flex-start;
	--navigation-layout-direction: row;
	--navigation-layout-wrap: wrap;
	--navigation-layout-justify: var(--navigation-layout-justification-setting, initial);
	--navigation-layout-align: initial;
}

.wp-block-navigation ul {
	background-color: inherit;
	color: inherit;
	display: flex;
	flex-direction: var(--navigation-layout-direction, initial);
	flex-wrap: var(--navigation-layout-wrap, wrap);
	justify-content: var(--navigation-layout-justify, initial);
	align-items: var(--navigation-layout-align, initial);
	padding-left: 0;
	margin-top: 0;
	margin-bottom: 0;
	list-style: none;
}

.wp-block-navigation .wp-block-navigation-item {
	background-color: inherit;
	color: inherit;
	margin: 0;
}

.wp-block-navigation .wp-block-navigation-item a {
	background-color: inherit;
	color: inherit;
	display: block;
	padding: var(--wp--preset--spacing--20, 0.5rem);
	text-decoration: none;
}

.wp-block-navigation .wp-block-navigation-item a:hover,
.wp-block-navigation .wp-block-navigation-item a:focus {
	text-decoration: underline;
}

/* ==========================================================================
   7. FORMS & INPUTS
   ========================================================================== */

/* Search Block */
.wp-block-search {
	display: flex;
	flex-wrap: wrap;
	gap: var(--wp--preset--spacing--20, 0.5rem);
}

.wp-block-search .wp-block-search__input {
	border: 1px solid var(--wp--preset--color--foreground-alt, #ddd);
	border-radius: var(--wp--custom--border--radius, 4px);
	font-size: var(--wp--preset--font-size--medium, 1rem);
	line-height: 1.2;
	padding: var(--wp--preset--spacing--20, 0.5rem);
	flex-grow: 1;
	min-width: 200px;
}

.wp-block-search .wp-block-search__button {
	background-color: var(--wp--preset--color--primary, #0073aa);
	border: none;
	border-radius: var(--wp--custom--border--radius, 4px);
	color: #fff;
	cursor: pointer;
	font-size: var(--wp--preset--font-size--medium, 1rem);
	font-weight: var(--wp--preset--font-weight--medium, 500);
	padding: var(--wp--preset--spacing--20, 0.5rem) var(--wp--preset--spacing--30, 0.75rem);
}

/* Comment Form */
.wp-block-post-comments-form input,
.wp-block-post-comments-form textarea {
	border: 1px solid var(--wp--preset--color--foreground-alt, #ddd);
	border-radius: var(--wp--custom--border--radius, 4px);
	font-family: inherit;
	font-size: var(--wp--preset--font-size--medium, 1rem);
	line-height: 1.2;
	padding: var(--wp--preset--spacing--20, 0.5rem);
	width: 100%;
	max-width: 100%;
}

/* ==========================================================================
   8. MEDIA & IMAGES
   ========================================================================== */

/* Responsive Images */
img {
	height: auto;
	max-width: 100%;
}

/* Video Block */
.wp-block-video {
	text-align: center;
}

.wp-block-video video {
	max-width: 100%;
	height: auto;
}

/* Audio Block */
.wp-block-audio {
	margin: var(--wp--preset--spacing--40, 1rem) 0;
}

.wp-block-audio audio {
	width: 100%;
	min-width: 300px;
}

/* ==========================================================================
   9. ACCESSIBILITY
   ========================================================================== */

/* Screen Reader Text */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: var(--wp--preset--color--background, #ffffff);
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: var(--wp--preset--color--foreground, #000000);
	display: block;
	font-size: var(--wp--preset--font-size--medium, 1rem);
	font-weight: var(--wp--preset--font-weight--bold, 700);
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Focus Styles */
:focus {
	outline: 2px solid var(--wp--preset--color--primary, #0073aa);
	outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* ==========================================================================
   11. PRINT STYLES
   ========================================================================== */

@media print {
	*,
	*::before,
	*::after {
		background: transparent !important;
		color: #000 !important;
		box-shadow: none !important;
		text-shadow: none !important;
	}
	
	a,
	a:visited {
		text-decoration: underline;
	}
	
	a[href]::after {
		content: " (" attr(href) ")";
	}
	
	blockquote {
		border: 1px solid #999;
		page-break-inside: avoid;
	}
	
	img {
		page-break-inside: avoid;
	}
	
	h1, h2, h3, h4, h5, h6 {
		page-break-after: avoid;
	}
}

/* ==========================================================================
   12. CUSTOM PROPERTIES (CSS VARIABLES)
   ========================================================================== */

:root {
	/* Custom spacing scale */
	--wp--custom--spacing--small: 0.5rem;
	--wp--custom--spacing--medium: 1rem;
	--wp--custom--spacing--large: 2rem;
	--wp--custom--spacing--x-large: 3rem;
	--wp--custom--spacing--outer: 1rem;
	
	/* Custom typography */
	--wp--custom--typography--line-height--body: 1.6;
	--wp--custom--typography--line-height--heading: 1.2;
	--wp--custom--typography--letter-spacing--heading: -0.02em;
	
	/* Custom layout */
	--wp--custom--text-color: #707070;

	/* Custom layout */
	--wp--custom--layout--content-size: 800px;
	--wp--custom--layout--wide-size: 1200px;
	
	/* Custom borders */
	--wp--custom--border--radius: 8px;
	--wp--custom--border--width: 1px;
	
	/* Custom shadows */
	--wp--custom--shadow--light: 0 1px 3px rgba(0, 0, 0, 0.1);
	--wp--custom--shadow--medium: 0 4px 6px rgba(0, 0, 0, 0.1);
	--wp--custom--shadow--heavy: 0 10px 25px rgba(0, 0, 0, 0.15);

	/* Custom gradients */
	--wp--custom--gradient--dark: linear-gradient(135deg, #D71037, #374151);
	--wp--custom--gradient--light: linear-gradient(135deg, #F4F4F4, #EAF2FA);
	--wp--custom--gradient--cta: linear-gradient(135deg, #0f172a, #1e293b);
	--wp--custom--gradient--separator: linear-gradient(135deg, rgb(2, 3, 129) 0%, rgb(40, 116, 252) 100%);
}

/* ==========================================================================
   13. UTILITY CLASSES
   ========================================================================== */

/* Margin utilities */
.has-no-margin { margin: 0 !important; }
.has-small-margin { margin: var(--wp--custom--spacing--small) !important; }
.has-medium-margin { margin: var(--wp--custom--spacing--medium) !important; }
.has-large-margin { margin: var(--wp--custom--spacing--large) !important; }

/* Padding utilities */
.has-no-padding { padding: 0 !important; }
.has-small-padding { padding: var(--wp--custom--spacing--small) !important; }
.has-medium-padding { padding: var(--wp--custom--spacing--medium) !important; }
.has-large-padding { padding: var(--wp--custom--spacing--large) !important; }

/* Text alignment */
.has-text-align-left { text-align: left !important; }
.has-text-align-center { text-align: center !important; }
.has-text-align-right { text-align: right !important; }

/* Display utilities */
.is-hidden { display: none !important; }
.is-sr-only { @extend .screen-reader-text; }

/* Border utilities */
.has-border {
	border: var(--wp--custom--border--width) solid var(--wp--preset--color--foreground-alt, #ddd) !important;
}

.has-rounded-corners {
	border-radius: var(--wp--custom--border--radius) !important;
}

/* Shadow utilities */
.has-light-shadow { box-shadow: var(--wp--custom--shadow--light) !important; }
.has-medium-shadow { box-shadow: var(--wp--custom--shadow--medium) !important; }
.has-heavy-shadow { box-shadow: var(--wp--custom--shadow--heavy) !important; }


.category-border-color a {
	border-color: #4795FF !important;
	border-width: 1px !important;
}
.category-border a {
	border: 1px #4795FF solid!important;
	border-radius: 9999px;
	padding: 4px 10px!important;
	text-decoration: none;
	width: 6.6875rem;
	font-size: 0.9375rem!important;
	text-align: center;
}

.tag-border-color a {
	border-color: #d71037 !important;
	background: #fde7ec !important;
	border-width: 1px !important;
	padding: 0.25rem 0.5rem !important;
	color: #d71037;
	margin-right: 0.5rem;
}

ul.list-style-btn {
	list-style: none;
	display: flex;
	justify-content: space-evenly;
}
ul.list-style-btn li {
	background: var(--wp--custom--gradient--light, #f4f4f4);
	font-size: 0.75rem;
	border-radius: 9999px;
	border: 1px #ccc solid;
	padding: 0.25rem 0.5rem;
}


/* ==========================================================================
   14. ORIGINAL CLASSES
   ========================================================================== *//*-  Header  --*/
header {
	width: 100%;

	nav {
		display: flex;
		justify-content: space-evenly;
		align-items: center;
		height: 150px;
		gap 0 !important;
		flex-wrap: nowrap !important;

		.wp-block-navigation__responsive-container {
			padding: 0;
		}

		ul.head-color-nav {
			display: grid;
			grid-template-columns: repeat(5, 1fr);
			grid-template-rows: 1fr;
			grid-column-gap: 0px;
			grid-row-gap: 0px;
			height: 150px;

			li {
				height: 100%;
				width; 100%;

				a {
					width: 100%;
					height: 100%;
					align-items: center;
					justify-content: center;
					display: flex !important;
					color: #FFFFFF !important;
				}
				a:focus {
					outline: none;
				}
			}
			li:nth-of-type(1), li:nth-of-type(1) a {
				background: #FF9C16;
			}
			li:nth-of-type(2) a {
				background: #34DAE6;
			}
			li:nth-of-type(3) a {
				background: #04D17D;
			}
			li:nth-of-type(4) a {
				background: #FF4C16;
			}
			li:nth-of-type(5) a {
				background: #3B9BBF;
			}
		}
	}
}

/*-  footer  --*/
.footer-nav {
	list-style: none;

	a {
		color: #707070;
		text-decoration: none;
		font-size: 20px;
	}

}

/*- TOP  --*/
section#company, section#shopping, section#recruit {
	.wp-block-columns.wp-block-columns-is-layout-flex {
	column-gap: 0!important;
	}

	.top-column-image {
		flex-basis: 53.64%!important;
	}
	.top-column-text {
		flex-basis: 30.735%!important;
	}
	.top-column-space {
		flex-basis: 15.625%!important;
	}
}

/*-  common  -*/
.contact-area {
	display: grid! important;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 0px;
	grid-row-gap: 0px;

	> div {
		grid-template-rows: subgrid;
		grid-row: span 3;
		display: grid;
		align-items: center;
	}
}

/*-  about  --*/
.about-table1 table {
	width: auto!important;

	td {
		vertical-align: top;
	}

	td:first-child {
		padding-right: 3rem;
		white-space: nowrap;
	}
}


/* お問合せ */
.mw_wp_form {
}

.row {
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
		margin-bottom: 15px;
}

.page-contact > p {
	margin-bottom: 50px;
}

.form-group {
    font-size: 30px;

	.item {
		margin-bottom: 64px;
	}
}
.row ul.mw-contact {
    list-style: none;
    text-align: center;
    margin-top: 30px;
		display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.post_content ul.mw-contact {
	margin-top: 40px;
	list-style: none;
	justify-content: center;
}
.

.form-group input[type="checkbox"], .form-group input[type="radio"] {
    margin: 10px 0;
}
.form-group .mwform-radio-field label, .form-group .mwform-checkbox-field label {
    white-space: nowrap;
}


.form-group input[type="text"], .form-group input[type="email"], .form-group input[type="password"], .form-group input[type="tel"], .form-group input[type="number"], .form-group select, .form-group textarea{
    position: relative;
    float: none;
    display: block;
    width: 100%;
    line-height: 24px;
    padding: 12px 15px;
    height: 50px;
    border: 1px solid #707070;
    border-radius: 3px;
    color: #222;
    font-size: 14px;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.form-group textarea {
    height: 150px;
}
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group select:focus,
.form-group textarea:focus{
	border-color:#4a8ed3;
}
.form-group input[type="submit"] {
    display: inline-block;
    line-height: 24px;
    padding: 10px 50px;
    color: #fff;
    text-transform: uppercase;
    border: none;
    outline: none;
    background: #34dae6;
    font-family: 'Poppins',sans-serif;
    font-size: 14px;
    font-weight: 500;
    border-radius: 2px;
		cursor: pointer;
}
.form-group input[type="submit"]:hover {
	background: #16a7b1;
}
.form-group label span {
	color: #555;
}

.form-item {
    color: #4a8ed3;
}
.time-radio {
	width: 50%;
}
ul.mw-contact {
	padding-left: 0;
  list-style: none;
	display: flex;
  justify-content: center;
	gap: 4rem;
}
li.btn_back {
    margin-bottom: 30px;
}
.mw_wp_form_confirm .form-group.post_col-3-2 {
	padding: 20px;
}
.post_content .mw_wp_form_confirm ul.mw-contact {
	justify-content: space-around;
}
.form-group span.a-clr-red {
	color: #fff;
	background: #c1272d;
	width: 48px;
	height: 21px;
	font-size: 20.15px;
	padding: 2px 10px 4px;
	position: relative;
	top: -3px;
	margin-right: 1rem;
}
.form-group span.a-clr-green {
	color: #fff;
	background: #0DAC67;
	width: 48px;
	height: 21px;
	font-size: 20.15px;
	padding: 2px 10px 4px;
	position: relative;
	top: -3px;
	margin-right: 1rem;
}

@media only screen and (max-width: 959px) {
	#js-header-video {
		.txt-mv-top {
		    font-size: 2.8rem;
		}

		.text-mv_bottom {
		    font-size: 2.2rem;
		}
	}
}


z
@media only screen and (max-width: 767px) {
	.mwform-checkbox-field label, .mwform-radio-field label {
	    display: flex;
	}
	.form-group input[type="checkbox"], .form-group input[type="radio"] {
	    margin: 10px 5px;
	}
	.form-group label span {
	    position: relative;
	    top: 8px;
	}
	.row {
		flex-direction: column;
	}
	.form-group.post_col-3 {
		width: 100%;
		margin-bottom: 10px;
	}
	.form-group.post_col-3-2 {
		width: 100%;
    margin-left: 0;
	}
	ul.mw-contact {
		margin-left: 0;
		flex-direction: column;
		align-items: center;
		margin-bottom: 30px;
	}


}


/* ==========================================================================
   10. RESPONSIVE DESIGN
   ========================================================================== */

/* Mobile First Approach */
@media (max-width: 599px) {
	header .wp-block-columns, section#company .wp-block-columns, section#shopping .wp-block-columns, section#recruit .wp-block-columns, #s-banner .wp-block-columns {
		flex-direction: row;
		
		.wp-block-column {
			flex-basis: 100%!important;
		}
	}



	#news .wp-block-columns {
			flex-direction: row;
		
		.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column:first-child {
			flex-basis: 35%!important;
			justify-items: self-end;
		}
		.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column:nth-of-type(2) {
			flex-basis: 35%!important;
			justify-items: self-start;
		}
	}

	.alignwide,
	.alignfull {
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
	}
	.nav-sp-btn-flex-basis {
		flex-basis: 30%!important;
	}

	.sp-wide-image {
		img {
			width: 100%;
		}
	}
	.contact-area {
		grid-template-columns: 1fr!important;
		grid-template-rows: repeat(2, 1fr)!important;
		grid-row-gap: 3rem!important;

		> div {
			grid-row: inherit!important;
		}
		> div:first-child {
			border-right-width: 1px!important;
			border-right-style: solid!important;
		}
	}
	.sns figure img {
		max-width: 5rem;
	}

	.category-border a {
		width: 7.5rem!important;
	}

	/* Mobile menu */
	#rmp_menu_trigger-344 {
		right:4% !important;
		top: 20px;
		position: absolute !important;
		height: 67px!important;
	}
	button .rmp-trigger-box {
		/*width: 30px !important;*/
	}
	button .responsive-menu-pro-inner, button .responsive-menu-pro-inner::before, button .responsive-menu-pro-inner::after {
		width: 30px!important;
		height: 2px!important;
	}
	button .responsive-menu-pro-inner::before {
		top:10px !important;
	} 
	button .responsive-menu-pro-inner::after {
		bottom:10px !important;
	} 
	button .rmp-trigger-label {
		right: -4px;
        position: relative;
		font-size: 10px!important;
	}


	button.is-active {
		height: 67px!important;
	}
	button.is-active .responsive-menu-pro-inner, button.is-active .responsive-menu-pro-inner::before, button.is-active .responsive-menu-pro-inner::after {
		color: #fff !important;
		background-color: #fff !important;
		width: 42px !important;
		height: 1px !important;
		top: 0px;
	}
	button.is-active .responsive-menu-pro-inner {
		/*width: 30px !important;*/
	}

	button.is-active .rmp-trigger-label {
		right: -10px;
	}

	button.is-active .rmp-trigger-label span {
		color: #fff !important;
	}
	ul.rmp-menu {
		margin-bottom: 2rem !important;

		li {
			a {
				padding: 20px 0!important;
				height: 80px!important;
			}

			ul li {
				background: #55a765;
			}
			ul li a {
				text-align: center!important;
				color: #fff!important;
				font-size: 18px!important;
				border-bottom: 1px #fff solid!important;
			}
		}
		li:first-child a {
			border-top: 1px solid #ffffff;
		}
	}
	.rmp-menu-additional-content a p {
		font-size: 20px;
		color: #fff;
	}

	/*- footer -*/
	.footer-nav {
		padding-left: 1rem;

		a {
			font-size: 15px;
		}
	}

	}
	.copyright {
		font-size: 12px;
	}

	/*- page -*/
	.entry-content {
		padding: 0 1rem;
	}
}

/* Tablet */
@media (min-width: 600px) and (max-width: 1023px) {
	.wp-site-blocks {
		padding-top: var(--wp--custom--spacing--outer, 2rem);
		padding-bottom: var(--wp--custom--spacing--outer, 2rem);
	}

}

/* Desktop */
@media (min-width: 1024px) {
	.wp-site-blocks {
		padding-top: 0;
		padding-bottom: 0;
	}
	
	.wp-block-columns {
		gap: var(--wp--preset--spacing--50, 3rem);
	}
}

