/*!
Theme Name: k-seamless
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: k-seamless
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

k-seamless is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/


:root {
	--fz70: calc(70 / 16 * 1rem);
	--fz60: calc(60 / 16 * 1rem);
	--fz48: calc(48 / 16 * 1rem);
	--fz42: calc(42 / 16 * 1rem);
	--fz40: calc(40 / 16 * 1rem);
	--fz35: calc(35 / 16 * 1rem);
	--fz32: calc(32 / 16 * 1rem);
	--fz30: calc(30 / 16 * 1rem);
	--fz29: calc(29 / 16 * 1rem);
	--fz28: calc(28 / 16 * 1rem);
	--fz27: calc(27 / 16 * 1rem);
	--fz26: calc(26 / 16 * 1rem);
	--fz25: calc(25 / 16 * 1rem);
	--fz24: calc(24 / 16 * 1rem);
	--fz23: calc(23 / 16 * 1rem);
	--fz22: calc(22 / 16 * 1rem);
	--fz21: calc(21 / 16 * 1rem);
	--fz20: calc(20 / 16 * 1rem);
	--fz19: calc(19 / 16 * 1rem);
	--fz18: calc(18 / 16 * 1rem);
	--fz17: calc(17 / 16 * 1rem);
	--fz16: calc(16 / 16 * 1rem);
	--fz15: calc(15 / 16 * 1rem);
	--fz14: calc(14 / 16 * 1rem);
	--fz13: calc(13 / 16 * 1rem);
	--fz12_5: calc(12.5 / 16 * 1rem);
	--fz12: calc(12 / 16 * 1rem);
	--fz11: calc(11 / 16 * 1rem);
	--fz10: calc(10 / 16 * 1rem);
	--fz9: calc(9 / 16 * 1rem);
	--fz8: calc(8 / 16 * 1rem);

	--l-gray: #f2f2f2;
	--gray: #e6e6e6;
	--d-gray: #808080;

}

@media (max-width: 768px) {
	:root {
		--fz70: clamp(10px, 19.0vw, 70px);
		--fz60: clamp(10px, 17.0vw, 60px);
		--fz48: clamp(10px, 14.31vw, 48px);
		--fz42: clamp(10px, 12.31vw, 42px);
		--fz40: clamp(10px, 11.31vw, 40px);
		--fz35: clamp(10px, 9.31vw, 35px);
		--fz30: clamp(10px, 8.54vw, 32px);
		--fz30: clamp(10px, 7.99vw, 30px);
		--fz29: clamp(10px, 7.74vw, 29px);
		--fz28: clamp(10px, 7.43vw, 28px);
		--fz27: clamp(10px, 7.19vw, 27px);
		--fz26: clamp(10px, 6.92vw, 26px);
		--fz25: clamp(10px, 6.66vw, 25px);
		--fz24: clamp(10px, 6.40vw, 24px);
		--fz23: clamp(10px, 6.13vw, 23px);
		--fz22: clamp(10px, 5.84vw, 22px);
		--fz21: clamp(10px, 5.43vw, 21px);
		--fz20: clamp(10px, 5.33vw, 20px);
		--fz19: clamp(10px, 5.05vw, 19px);
		--fz18: clamp(10px, 4.78vw, 18px);
		--fz17: clamp(10px, 4.54vw, 17px);
		--fz16: clamp(10px, 4.25vw, 16px);
		--fz15: clamp(10px, 4.0vw, 15px);
		--fz14: clamp(10px, 3.72vw, 14px);
		--fz13: clamp(10px, 3.47vw, 13px);
		--fz12_5: clamp(10px, 3.32vw, 12.5px);
		--fz12: clamp(10px, 3.19vw, 12px);
		--fz11: clamp(10px, 2.94vw, 11px);
		--fz10: clamp(9px, 2.70vw, 10px);
		--fz9: clamp(8px, 2.5vw, 9px);
		--fz8: clamp(7px, 2.2vw, 8px);
	}
}




/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

html body *{
	box-sizing:border-box;
}

/* Page遷移時のアニメーション
--------------------------------------------- */
body{
	animation: fadein 2s forwards;
}
@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: var(--fz20);
	margin: 0;
}

/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
	transition:all 0.3s ease-in-out 0s;
	cursor: pointer;
	
	text-decoration: none;
	outline: none!important;
	-moz-outline-style: none;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
	 ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}


/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	color: #000;
	font-size:var(--fz17);
	line-height: 2.3;
	font-family: "Cormorant Infant", "Shippori Mincho B1", serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0.05em;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	font-weight:400;
	margin:0;
	clear: both;
}

p {
	margin-bottom: 0;
}

p + p {
	margin-top: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: normal;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

@media (max-width: 768px) {
	body,
	button,
	input,
	select,
	optgroup,
	textarea {
		font-size:var(--fz16);
		line-height: 2.0;
	}
}

/* Elements
--------------------------------------------- */
body {
	background: #fff;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dl{
	margin:0;
}

dt {
	font-weight: 400;
}

dd {
	margin: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
	vertical-align: middle;
}

img,
video {
	display:block;
	height: auto;
	max-width: 100%;
	vertical-align: middle;
}

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/* Links
--------------------------------------------- */
a {
	color: #000;
}

a:visited {
	color: #000;
}

a:hover,
a:focus,
a:active {
	color: #000;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 0.25em 1em;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Navigation
--------------------------------------------- */
.main-navigation {
	display: block;
/* 	width: 100%; */
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	float: left;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 2;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	display: block;
	left: auto;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li{
	cursor:pointer;
}

.main-navigation li,
#footer-navigation .menu-item-has-children {
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 769px) {
	.main-navigation ul {
		display: flex;
		gap:2.2vw;
	}
	.main-navigation ul .menu-item-has-children{
		padding-right:20px;
	}
	.main-navigation ul .menu-item-has-children::after{
		content:"";
		display: block;
		width: 12px;
		height: 7px;
		background: #ffffff;
		clip-path: polygon(0 0, 100% 0%, 50% 100%);
		position:absolute;
		top:0.75em;
		right:0;
		transition: all 0.3s ease-in-out 0s;
	}
	body.header-show.active .main-navigation ul .menu-item-has-children::after{
		background: #000;
	}
	.main-navigation ul ul.sub-menu {
		display: block;
		border-left: 1px solid #fff;
		padding-left: 1em;
		transition: all 0.3s ease-in-out 0s;
		opacity:0;
		visibility: hidden;
		z-index:1;
	}
	body.header-show.active .main-navigation ul ul.sub-menu{
		border-left: 1px solid #000;
		background:#fff;
	}
	#footer-navigation ul ul.sub-menu{
		padding: 0;
        margin: -0.75em 0 0;
        list-style: none;
/* 		border-left:1px solid #fff; */
        padding-left: 1em;
		transition: all 0.3s ease-in-out 0s;
		opacity:0;
		visibility: hidden;
		position: absolute;
        top: calc(100% - 1em);
        left: 0;
		z-index:1;
	}
	.main-navigation li.menu-item:hover ul.sub-menu,
	#footer-navigation li.menu-item:hover ul.sub-menu {
		opacity:1;
		visibility: visible;
	}
	#footer-navigation li.menu-item.menu-item-has-children:hover{
/* 		border-bottom:1px solid transparent !important; */
	}
	#footer-navigation li.menu-item.menu-item-has-children.menu-item-129:hover{
/* 		border-bottom:1px solid #fff !important; */
	}
	#footer-navigation li.menu-item.menu-item-129 ul.sub-menu {
/* 		display:none; */
	}
	#footer-navigation ul ul.sub-menu{
		
	}
	.main-navigation ul li * {
		font-size:var(--fz16);
		color:#fff;
/* 		line-height: 1.3; */
		text-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
	}
	
	#footer-navigation ul ul.sub-menu a{
		padding: 0 !important;
	}
	
/*
	body.is-primary-top .main-navigation ul li * {
		color:#000;
		text-shadow: 0 0 2px rgba(0, 0, 0, 0);
	}
	body.is-primary-top .main-navigation ul ul.sub-menu {
		border-left-color: #000;
	}
	body.is-primary-top .main-navigation ul .menu-item-has-children::after{
		background: #000;
	}
	body.is-header-dark .main-navigation ul li * {
		color:#fff;
		text-shadow: 0 0 2px rgba(0, 0, 0, 0.25);
	}
	body.is-header-dark .main-navigation ul ul.sub-menu {
		border-left-color: #fff;
	}
	body.is-header-dark .main-navigation ul .menu-item-has-children::after{
		background: #fff;
	}
*/
	
	
}

.site-main .comment-navigation,
.site-main
.posts-navigation,
.site-main
.post-navigation {
	margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
	display: block;
}

.post,
.page {
	margin: 0 0;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 2.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}




/* Comments
--------------------------------------------- */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
	margin: 0 0 1.5em;
}

.widget select {
	max-width: 100%;
}

.widget .wp-block-heading{
	font-size: var(--fz15);
    line-height: 1.6;
    margin-bottom:3em;
}

.widget ul{
	padding:0;
	margin:0;
	list-style:none;
}

.widget ul li{
	line-height:1.6;
}

.widget ul li + li{
	margin-top:0.25em;
}

.widget ul li{
	opacity:0.5;
}

.widget ul li.current-cat{
	opacity:1;
}


/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.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: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

	/*rtl:ignore*/
	float: left;

	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {

	/*rtl:ignore*/
	float: right;

	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}

.center{
	text-align:center;
}

.right{
	text-align: right;
}


/* Common
--------------------------------------------- */
.w1600 {
	width: 1600px;
	max-width: 88%;
	margin: 0 auto;
}
.w1500 {
	width: 1500px;
	max-width: 88%;
	margin: 0 auto;
}
.w1400 {
	width: 1400px;
	max-width: 88%;
	margin: 0 auto;
}
.w1300 {
	width: 1300px;
	max-width: 88%;
	margin: 0 auto;
}
.w1200 {
	width: 1200px;
	max-width: 88%;
	margin: 0 auto;
}
.w1100 {
	width: 1100px;
	max-width: 88%;
	margin: 0 auto;
}
.w1000 {
	width: 1000px;
	max-width: 88%;
	margin: 0 auto;
}
.w900,
.w-narrow {
	width: 900px;
	max-width: 88%;
	margin: 0 auto;
}
.w-narrow {
	max-width: 80%;
}
.w800 {
	width: 800px;
	max-width: 88%;
	margin: 0 auto;
}
.w700 {
	width: 700px;
	max-width: 88%;
	margin: 0 auto;
}
.w100p{
	width:100%;
}


.small{
	font-size:var(--fz14);
	letter-spacing:0;
	margin:0;
}
.medium{

}

.heading{
	line-height:1.45;
}

.sans-serif{
	font-family:sans-serif;
}

.white{
	color:#fff;
}

.flex{
	display:flex;
}
.flex-center{
	justify-content: center;
	align-items:center;
}
.flex-between{
	justify-content: space-between;
}
.flex-revs{
	flex-direction: row-reverse;
}
ul.flex,
ol.flex,
ul.pc-flex,
ol.pc-flex{
	padding:0;
	margin:0;
	list-style:none;
}

.btn-wrap,
.submit-container .nf-field-element{
	display: flex;
	justify-content: center;
	margin-top: 1.8em;
	position:relative;
}
.btn-wrap a,
a .btn-wrap > span,
.btn-wrap > span.more,
.btn-wrap input[type="submit"],
.btn-wrap input[type="button"],
.submit-container .nf-field-element input[type="submit"]{
	display: flex;
	justify-content: center;
	align-items:center;
	text-decoration:none;
	color:#000;
	line-height:1.3;
	font-family:sans-serif;
	letter-spacing: 0.15em;
	border-radius:30px;
	border:1px solid rgba(0,0,0,0.5);
	background-color:transparent;
	padding:1em 3.5em;
	position:relative;
	cursor: pointer;
	transition:all 0.3s ease-in-out 0s;
}
.btn-wrap input[type="submit"],
.btn-wrap input[type="button"]{
	min-width: 200px;
	font-weight:bold;
	padding:12px 20px;
	cursor: pointer;
}
.btn-wrap a:hover,
a:hover .btn-wrap > span,
.btn-wrap > span.more:hover,
.btn-wrap input[type="submit"]:hover,
.btn-wrap input[type="button"],
.submit-container .nf-field-element input[type="submit"]:hover{
	color:#fff;
/* 	background:var(--l-gray); */
	background:rgba(0,0,0,1);
	border:1px solid rgba(0,0,0,1);
}

.btn-wrap.btn-square a{
	border-radius:0;
}
.btn-wrap.btn-arrow a{
	justify-content: flex-start;
	position:relative;
	padding: 1em 5em 1em 1.5em;
}
.btn-wrap.btn-arrow a::after{
	content: "";
    display: block;
    width: 21px;
    aspect-ratio: 2 / 1;
    background: url(img/arrow01.png) center center no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out 0s;
}

.dark-zone .btn-wrap.btn-square a{
	color:#fff;
	border-color:#fff;
}
.dark-zone .btn-wrap.btn-square a:hover{
	color:#000;
	background-color:#fff;
}
.dark-zone .btn-wrap.btn-square a:after{
	background-image: url(img/arrow01-white.png);
}
.dark-zone .btn-wrap.btn-square a:hover:after{
	background-image: url(img/arrow01.png);
}


.form dl{
	display:flex;
	flex:wrap;
	padding:25px 10px;
}
.form dl dt{
	width:300px;
}
.form dl dd{
	width:calc(100% - 300px);
}
.form dl dd input[type="text"],
.form dl dd input[type="email"],
.form dl dd input[type="tel"],
.form dl dd textarea{
	width:100%;
	background-color:var(--l-gray);
	border:0;
}
.form dl dd > p{
	display:flex;
	gap:1em;
}
.form dl dd > p > *{
	width:100%;
}
.form dl.form-item-address dd > p{
	flex-wrap:wrap;
}
.form dl.form-item-address dd > p *[data-name="your-zip"]{
	width:15em
}


.post-list > ul{
    border-top: 1px solid rgba(0, 0, 0, 0.5);
    padding: 0;
    margin: 0 0;
    list-style: none;
}
.post-list > ul li{
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
.post-list > ul li a{
    display: flex;
    align-items: center;
    color: #000;
    line-height: 1.6;
    padding:1.5em 55px 1.5em 5px;
    position: relative;
}
.post-list > ul li a time{
    min-width:10em;
    font-size: var(--fz17);
}
.post-list > ul li a .heading{
    font-size: var(--fz17);
}
.post-list > ul li a::after{
    content: "";
    display: block;
    width: 21px;
    aspect-ratio: 2 / 1;
    background: url(img/arrow01.png) center center no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out 0s;
}
.post-list > ul li a:hover{
	background:var(--l-gray);
	padding:1.5em 55px 1.5em 25px;
}
.post-list > ul li a:hover::after{
	right:25px;
}

.date-cat{
	display:flex;
	align-items:center;
	line-height:1;
	margin-bottom:1em;
}
.date-cat .article-date{
	font-size:var(--fz15);
}
.cat-wrap{
	display: flex;
    flex-wrap: wrap;
    gap: 5px;
	font-size:var(--fz12);
	margin-left:1em;
}
.cat-wrap .post-cat{
	border:1px solid rgba(0,0,0,0.5);
	border-radius:20px;
	padding:5px 10px;
}
.cat-wrap a.post-cat:hover{
	color:#fff;
	background:#000;
}

.pagination,
.wp-pagenavi{
	margin-top:70px !important;
}
.pagination > ul,
.wp-pagenavi{
	display:flex;
	justify-content: center;
	gap:20px;
	padding:0;
	margin:0;
	list-style:none;
}
.pagination > ul li > *,
.wp-pagenavi > *.page,
.wp-pagenavi > *.current,
.wp-pagenavi > *.nextpostslink,
.wp-pagenavi > *.last{
	display:flex;
	justify-content: center;
	align-items:center;
	width:42px;
	font-size: var(--fz15);
	font-family:sans-serif;
	line-height: 1;
	aspect-ratio:1/1;
	border:1px solid #000;
	border-radius:50%;
	padding:0 !important;
}
.pagination > ul li > *:hover,
.pagination > ul li > *.current,
.wp-pagenavi > *.page:hover,
.wp-pagenavi > *.current,
.wp-pagenavi > *.nextpostslink:hover,
.wp-pagenavi > *.last:hover{
	color:#fff;
	background:#000;
}
.pagination > ul li > *.prev,
.pagination > ul li > *.next,
.wp-pagenavi > *.nextpostslink,
.wp-pagenavi > *.last{
	border:0;
}
.pagination > ul li > *.dots{
	border:0;
	pointer-events: none;
}


.table dl{
	display:flex;
	flex-wrap:wrap;
    line-height: 1.6;
	border-bottom:1px solid rgba(0,0,0,0.35);
	margin:0;
}
.table dl:first-child{
	border-top:1px solid rgba(0,0,0,0.35);
}
.table dl dt,
.table dl dd{
	padding:2em 0;
}
.table dl dt{
	width:180px;
}
.table dl dd{
	width:calc(100% - 180px);
}

.tab .tab__menu{
	display:flex;
	gap:10px;
	border-bottom:1px solid #808080;
	padding:0;
	margin:0;
	list-style:none;
}
.tab .tab__menu > *{
	line-height: 1.2;
	background:#f2f2f2;
	border:1px solid #f2f2f2;
	border-bottom:1px solid #808080;
	padding:10px 20px;
	margin-bottom: -1px;
	cursor: pointer;
}
.tab .tab__menu > *.is-active{
	background:#fff;
	border:1px solid #808080;
	border-bottom:1px solid #fff;
	cursor: auto;
}
.tab .tab__panel .tab__panel-box{
	display:none;
}
.tab .tab__panel .tab__panel-box.is-show{
	display:block;
}

p a,
dd a{
	border-bottom:1px solid rgba(0,0,0,0.5);
}

a[href="#video-play"].js-video-modal,
.sp-nav-factory-movie a .img{
	display:block;
	position:relative;
}
a[href="#video-play"].js-video-modal img,
.sp-nav-factory-movie a .img img{
	aspect-ratio:16/9;
	object-fit:cover;
}
a[href="#video-play"].js-video-modal::before,
.sp-nav-factory-movie a .img::before{
	content:"";
	display:block;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.3);
	position:absolute;
	top:0;
	left:0;
}
a[href="#video-play"].js-video-modal::after,
.sp-nav-factory-movie a .img::after{
	content:"";
	display:block;
	width:70px;
	aspect-ratio:1/1;
	border:1px solid #fff;
	border-radius:50%;
	background:url(img/arrow03-white.svg) 55% center no-repeat rgba(255,255,255,0.0);
	background-size:45%;
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	transition: all 0.3s ease-in-out 0s;
}
a[href="#video-play"].js-video-modal:hover::after{
	background-image:url(img/arrow03.svg);
	background-color:rgba(255,255,255,0.9);
}

.sticky{
	position: sticky;
	top:180px;
}

ul.swiper-wrapper,
ol.swiper-wrapper{
	padding:0;
	margin:0;
}

table{
	border-collapse: collapse;
	border:1px solid rgba(0,0,0,0.5);
}
table th,
table td{
	line-height:1.4;
	border:1px solid rgba(0,0,0,0.25);
	padding:1em;
}
table th{
	text-align:center;
	background:#fff;
}
table td{
    font-size: var(--fz16);
	vertical-align:top;
}

.swiper-slide{
	cursor: hand;
	cursor: grab;
}


@media (min-width: 769px) {
	.pc-none{
		display:none;
	}
	.pc-flex{
		display:flex;
	}
	
	.pc-sticky{
		position: sticky;
		top:180px;
	}
	
	.btn-readmore{
		justify-content:flex-start;
	}
	.btn-readmore a,
	.btn-readmore a:hover{
        font-size: 0;
		color: transparent;
		background:transparent;
		border:0;
		padding:0.5em 0;
	}
	.btn-readmore a::after{
		content: "";
	    display: block;
	    width: 21px;
	    aspect-ratio: 2 / 1;
	    background: url(img/arrow01.png) center center no-repeat;
	    background-size: contain;
	    transition: all 0.3s ease-in-out 0s;
	}
}
@media (max-width: 768px) {
	.sp-none{
		display:none;
	}
	.sp-flex{
		display:flex;
	}

	.btn-wrap a{
		width:100%;
		font-size:var(--fz14);
	}
	.btn-wrap a,
	a .btn-wrap > span,
	.btn-wrap > span.more,
	.btn-wrap input[type="submit"],
	.btn-wrap input[type="button"],
	.submit-container .nf-field-element input[type="submit"]{
		padding:1em 2.5em;
	}
	.btn-wrap a span.btn-inner{
		padding: 5px 20px;
	}

	.btn-wrap.btn-arrow a{
		padding: 1em 3em 1em 1.2em;
	}
	.btn-wrap.btn-arrow a::after{
		right: 25px;
	}

	.form dl{
		display:block;
		    padding: 15px 0;
	}
	.form dl dt,
	.form dl dd {
		width: 100%;
	}
	.form dl dt{
		font-weight: 600;
		margin-bottom: 0.25em;
	}
	
	.post-list ul li a{
		flex-wrap: wrap;
		padding: 1.2em 45px 1.2em 0px;
	}
	.post-list ul li a time {
	    font-size: var(--fz14);
	    margin-bottom: 0.5em;
	}
	
	.pagination > ul,
	.wp-pagenavi{
		gap: 10px;
	}
	
	.cat-wrap{
		gap: 3px;
		font-size: var(--fz11);
	}
	.cat-wrap .post-cat{
		padding: 2px 7px;
	}
	
	.table dl{
		display:block;
	}
	.table dl > *{
		width:100% !important;
	}
	.table dl dt{
		padding-bottom:0.5em;
	}
	.table dl dd{
		padding-top:0;
	}
	.tab .tab__menu > *{
		font-size: var(--fz15);
		padding: 0.4em 0.8em;
	}
	
	.sp-nav-factory-movie a .img{
		margin-top:8px;
	}
	a[href="#video-play"].js-video-modal::after,
	.sp-nav-factory-movie a .img::after{
		width:40px;
	}
	
	.table-scroll{
/* 		width:100%; */
		overflow-x:scroll;
        padding: 0 5.9vw;
		margin-right: -5.9vw;
        margin-left: -5.9vw;
	}
	.table-scroll > table{
		width: auto;
/*         white-space: nowrap; */
	}
	.table-scroll > table th{
		white-space: nowrap;
		padding: 0.5em;
	}
	.table-scroll > table td{
		min-width:9em;
		font-size: var(--fz14);
		padding: 0.5em 0.75em;
	}
}


.bg-video,
.js-inview-video,
.js-hero-video{
	pointer-events: none;
}

/*scrl*/
.scrl {
    opacity: 0;
    position: relative;
}

.bt-anim {
    top: 50px;
}
@keyframes bt-anim {
	0% {
		opacity: 0;
		top: 50px;
	}
	60% {
		opacity: 1;
		top: 0;
	}
	100% {
		opacity: 1;
		top: 0;
	}
}
.bt-anim.scrl_in {
    animation: bt-anim 1.5s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}
/*//scrl*/


/* Layout
--------------------------------------------- */
#masthead{
	width:100%;
	background:rgba(255,255,255,0);
	padding:20px 0;
	position:fixed;
	top:0;
	left:0;
	z-index:2;
	transform: translateY(0);
	transition: transform 0.5s ease, background-color 0.5s ease;
}

#masthead .header-inner{
	display: flex;
    justify-content: space-between;
    align-items: center;
    max-width:1600px;
	width:93%;
	margin:0 auto;
}

.header-logo {
	transition: opacity .25s ease;
	opacity: 1;
}

.header-logo.is-switching {
	opacity: 0;
}

#primary{
	background:#fff;
}
#colophon{
	color:#fff;
	background:url(img/footer_img.jpg) center bottom no-repeat #444;
	padding:130px 5%;
}

#contact-fixed-btn{
	position:fixed;
	bottom:5%;
	right:2%;
	z-index: 1;
}
body.oem #contact-fixed-btn,
body.recruit #contact-fixed-btn,
body.oem #header-contact-btn,
body.recruit #header-contact-btn{
	display:none;
}
#contact-fixed-btn a{
	display:block;
	font-size: var(--fz15);
    line-height: 1.5;
    text-align: center;
    color:#fff;
    writing-mode: vertical-rl;
    border-width: 1px;
    border-style: solid;
    border-color: #fff;
    border-image: initial;
    border-radius: 30px;
    padding: 30px 12px 30px 8px;
/*     transition: color .25s ease, border-color .25s ease; */
	transition: all 0.3s ease-in-out 0s;
}
#contact-fixed-btn a:hover{
	color:#000;
	background:#fff;
}
body.is-primary-bottom #contact-fixed-btn a{
    color:#000;
    border-color:#000;
}
body.is-primary-bottom #contact-fixed-btn a:hover{
    color:#fff;
    background:#000;
}
body.is-contact-dark #contact-fixed-btn a{
    color:#fff;
    border-color:#fff;
}
body.is-contact-dark #contact-fixed-btn a:hover{
	color:#000;
	background:#fff;
}

#colophon .flex{
	flex-wrap:wrap;
	justify-content: space-between;
	max-width:1200px;
	margin:0 auto;
}
#colophon .site-title{
	width:100%;
	margin-bottom:2em;
}
#colophon address{
	font-style:normal;
}
#colophon a{
	color:#fff;
}
#colophon #footer-menu{
	display:block;
	column-count: 2;
	column-gap: 10%;
/*
	flex-wrap:wrap;
	justify-content: space-between;
*/
}
#colophon #footer-menu > *{
	width:100%;
	break-inside: avoid;
/* 	width:40%; */
	border-bottom:1px solid #fff;
}
#colophon #footer-menu > * a{
	display:block;
	padding:1em 0;
}
#footer-navigation ul ul.sub-menu{
	position:static;
	opacity: 1;
	visibility:visible;
	margin-bottom: 1em;
}

#colophon .sns-link{
	margin-top: 3em;
}
#colophon .sns-link img{
	width:25px;
}

@media (min-width: 769px) {
	#header-contact-btn,
	.hamburger-overlay,
	#overlay-menu{
		display:none;
	}
	
	body.header-hide #masthead {
		transform: translateY(-100%);
	}
	body.header-show #masthead {
		transform: translateY(0);
	}
	body.header-show.active #masthead {
		background:rgba(255,255,255,1);
	}
	body.header-show.active .main-navigation ul li *{
		color:#000;
		text-shadow:none;
	}
	
	#colophon #footer-navigation{
		width:50%;
	}
}
@media (max-width: 768px) {
	#contact-fixed-btn{
		display:none;
	}
	#masthead{
		display:flex;
		justify-content: space-between;
		align-items:center;
		padding: 10px 5% 0;
	}
	#masthead .header-inner{
		width:45%;
		margin:0;
	}
	
	#header-contact-btn{
		padding-right:1em;
		margin-left:auto;
	}
	#header-contact-btn a{
		font-size: var(--fz12);
		color:#fff;
		line-height:1;
		border:1px solid #fff;
		padding:4px 15px;
		border-radius:30px;
	}
	
	#colophon{
		padding: 0;
	}
	#colophon .flex > *{
		width:100%;
	}
	#colophon .site-title{
		order:3;
		background:#fff;
		padding:15px 25px;
		margin:0;
	}
	#colophon .site-title img{
		width:50%;
	}
	#colophon .footer-company-info{
		order:2;
		padding: 30px 7%;
	}
	#colophon .footer-company-info address{
		font-size: var(--fz13);
		margin:0;
	}
	#colophon #footer-navigation{
		order:1;
		font-size: var(--fz14);
		padding: 60px 7%;
	}
	#colophon #footer-menu > * {
/* 	    width: 43%; */
	}
	#colophon #footer-menu > * a {
	    padding: 0.65em 0;
	}
	#colophon #footer-menu .sub-menu {
		padding:0;
	    margin:0 0 0 1em;
	    list-style:none;
	    position: relative;
        top: -0.5em;
	}
	#colophon #footer-menu .sub-menu a {
		padding:0;
	}
	
	
	/* ハンバーガーメニュー */
	.hamburger-overlay {
		position: relative;
		top: 0;
		right: 0;
		z-index: 1000;
		width: 35px;
		height: 18px;
		padding: 0px;
		border: none;
		background: transparent;
		cursor: pointer;
		transition: all 0.3s ease-in-out 0s;
	}
	.hamburger-overlay__line {
		position: absolute;
		left: 0;
		width: 100%;
		height: 1px;
		background-color: #fff;
		transition: all .6s;
	}
	.hamburger-overlay__line:nth-of-type(1) { top: 0; }
	.hamburger-overlay__line:nth-of-type(2) { top: 50%; }
	.hamburger-overlay__line:nth-of-type(3) { top: 100%; }
	.hamburger-overlay.active .hamburger-overlay__line {
		background-color: #000;
	}
	.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
		transform: translateY(9px) rotate(-20deg);
	}
	.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
		opacity: 0;
	}
	.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
		transform: translateY(-9px) rotate(20deg);
	}
	
	.is-primary-top #header-contact-btn a{
		color:#000;
		border-color:rgba(0,0,0,0.5);
	}
	.is-primary-top .hamburger-overlay__line{
		background-color: #000;
	}
	
	.is-header-dark #header-contact-btn a{
		color:#fff;
		border-color:rgba(255,255,255,1);
	}
	.is-header-dark .hamburger-overlay__line{
		background-color: #fff;
	}
	
	.nav-overlay {
		position: fixed;
		top: 0;
		right: 0;
		z-index:3;
		width: 100%;
		height: 100vh;
		background-color: rgba(0,0,0,0.0);
		transition: all 0.3s ease-in-out 0s;
		pointer-events: none;
	}
	.nav-overlay.active{
		background-color: rgba(0,0,0,0.5);
		pointer-events:auto;
	}
	.nav-overlay .nav-overlay__content {
		position: fixed;
		top: 0;
		right: -85%;
		z-index:3;
		width: 85%;
		height: 100vh;
		color:#000;
		background-color: var(--gray);
		padding: 45px 8% 80px;
		transition: all 0.3s ease-in-out 0s;
	}
	.nav-overlay.active .nav-overlay__content {
		right: 0;
		opacity: 1;
		visibility: visible;
		overflow-y: scroll;
	}
	.nav-overlay__content a{
		display: block;
		color:#000;
	}
	.nav-overlay__content nav{
	
	}
	.nav-overlay__content nav > *{
		display: flex;
        flex-wrap: wrap;
	}
	.nav-overlay__content nav ul{
		padding:0;
		margin:0;
		list-style:none;
	}
	.nav-overlay__content nav ul li{
		width:100%;
	}
	.nav-overlay__content nav ul li.w-half{
		width:50%;
	}
	.nav-overlay__content nav > ul > li > a,
	#recommend-wrap > span{
		font-size: var(--fz15);
		letter-spacing: 0.2em;
		line-height:1.5;
	}
	.nav-overlay__content nav > ul > li + li{
		margin-top:1.2em;
	}
	.nav-overlay__content nav ul.nav-menu-sub > li{
		margin-top:0.5em;
	}
	.nav-overlay__content nav ul.nav-menu-sub > li + li{
		margin-top:1em;
	}
	.nav-overlay__content nav ul.nav-menu-sub > li > a{
		display:flex;
		align-items:center;
	}
	.nav-overlay__content nav ul.nav-menu-sub > li > a::before{
		content:"";
		display:block;
		width:20px;
		height:1px;
		background:rgba(255,255,255,0.5);
		margin-right: 15px;
	}
	.nav-overlay__content .nav-group ul li a{
		width:calc(100% - 35px);
	}
	.nav-overlay__content nav ul.nav-menu-sub-sub{
		font-size: var(--fz12);
		padding-left: 35px;
	}
	.nav-overlay__content .sp-nav-factory-movie{
/*
		width: 80%;
		font-size: var(--fz12);
		margin:0.5em 0 1.5em 1.5em;
*/
	}
	.nav-overlay__content .sp-nav-factory-movie p,
	.nav-overlay__content .sub-menu li{
		position:relative;
	}
	.nav-overlay__content .sp-nav-factory-movie p::before,
	.nav-overlay__content .sub-menu li::before{
		content:"";
		display:block;
		width:1em;
		height:1px;
		background:rgba(0,0,0,0.25);
		position:absolute;
		top:45%;
		left:-1.5em;
	}
	.nav-overlay__content .sub-menu{
		font-size: var(--fz12);
		padding-left: 1.5em;
	}
	.nav-overlay__content nav > ul > li.sp-nav-onlineshop {
        margin-top: 2em;
    }
	.nav-overlay__content .nav-btn-wrap + .nav-btn-wrap{
        margin-top:0.5em;
	}
	.nav-overlay__content .nav-btn-wrap a{
        display: block;
        width:100%;
        font-size: var(--fz15);
        letter-spacing: 0.2em;
        text-align: center;
        line-height: 1.5;
		background: #fff;
		border:0;
        padding: 0.6em;
        border-radius: 30px;
	}
	.nav-overlay__content nav > ul > li.sp-nav-onlineshop ul{
	    display: flex;
		gap: 3%;
	}
	.nav-overlay__content nav > ul > li.sp-nav-onlineshop ul li{
	    margin:0 !important;
	}
	.nav-overlay__content nav > ul > li.sp-nav-onlineshop .nav-btn-wrap a{
        font-size: var(--fz14);
		color:#fff;
		background: #808080;
	}
	.nav-overlay__content nav > ul > li.sp-nav-onlineshop .nav-btn-wrap a[target="_blank"]::after{
		content:"";
		display:inline-block;
		width:12px;
		aspect-ratio:1/1;
		background:url(img/icon_target_blank-white.svg) center center no-repeat;
		margin-left:0.5em;
	}
	.nav-overlay__content .nav-btn-wrap a:hover{
		color: #fff;
		background: var(--d-gray);
	}
	
	.nav-overlay__content nav > ul > li.sp-nav-sns > div{
		display:flex;
		align-items:center;
		gap: 10px;
	}
	.nav-overlay__content nav > ul > li.sp-nav-sns > div img{
		width:18px;
	}

	
/*
	.nav-overlay.active::after{
		content:"";
		position:fixed;
		left:0;
		top:0;
		width:100%;
		height:100vh;
		background:rgba(0,0,0,0.5);
	}
*/
}




/* Fix Link Banner
--------------------------------------------- */

.fix-link-bnr{
	width:100%;
	max-width:120px;
	position:fixed;
	bottom:250px;
	right:0;
	z-index: 1;
}
.fix-link-bnr .bnr-item{
	position:relative;
}
.fix-link-bnr .bnr-item + .bnr-item{
	margin-top:1em;
}
.fix-link-bnr a{
	display:block;
	background:var(--l-gray);
	border-radius:10px 0 0 10px;
	box-shadow:1px 1px 3px rgba(0,0,0,0.3);
	padding:10px 10px 30px;
	position:relative;
}
.fix-link-bnr a::after{
	content: "";
    display: block;
    width: 22px;
    aspect-ratio: 10 / 2.7;
    background: url(img/arrow04.png) center center no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 10px;
    right: 10px;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out 0s;
}
.fix-link-bnr a:hover{
	color:#fff;
	background:#E8A179;
}
.fix-link-bnr a:hover::after{
    background-image: url(img/arrow04-white.png);
}
.fix-link-bnr p{
	font-size: var(--fz12);
	line-height:1.2;
	margin-top:0.5em;
}
.fix-link-bnr .bnr-close{
	display:flex;
	justify-content: center;
	align-items:center;
	width:20px;
	height:20px;
	font-size: var(--fz11);
	line-height:1;
	border-radius:50%;
	box-shadow:1px 1px 3px rgba(0,0,0,0.3);
	background:#fff;
	position:absolute;
	left:-8px;
	top:-8px;
	z-index:1;
	cursor: pointer;
    transition: all 0.3s ease-in-out 0s;
}
.fix-link-bnr .bnr-close:hover{
	color:#fff;
	background:#000;
}

@media (min-width: 769px) {

}
@media (max-width: 768px) {
	.fix-link-bnr {
	    width: 25%;
	    bottom: 6%;
	}
	.fix-link-bnr .bnr-item + .bnr-item{
		margin-top:0.65em;
	}
	.fix-link-bnr p{
		font-size: var(--fz11);
	}
	.fix-link-bnr .bnr-close{
		width:18px;
		height:18px;
		font-size: var(--fz10);
		left:-7px;
		top:-7px;
	}
}



/* MV
--------------------------------------------- */
#mv-wrap video{
/*
	height:100vh;
	width:100%;
	object-fit: cover;
	position:fixed;
	top:0;
	left:0;
	z-index:-1;
*/
}
#mv-wrap section{
	display:flex;
	color:#fff;
	height:100svh;
	width:100%;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
	padding:15% 10%;
	position:relative;
}
#mv-wrap section.first{
	align-items:center;
}
#mv-wrap section h1.heading{
	font-size:var(--fz40);
}
#mv-wrap section h2.heading{
	font-size:var(--fz25);
}
#mv-wrap section.first .mv-content p{
	line-height:1.6;
	margin-top:1.5em;
}
#mv-wrap section.second .mv-content{
	max-width: 360px;
}
#mv-wrap section.second .mv-content p{
	line-height:2.5;
	margin-top:5em;
}

#mv-wrap section .th-content{
	display:flex;
	align-items:center;
	position:absolute;
	bottom:5%;
	left:10%;
}
#mv-wrap section .th-content *{
	line-height:1.3;
}
#mv-wrap section .th-content .th-num{
	font-size:var(--fz10);
	text-align:center;
	padding-right:1.2rem;
}
#mv-wrap section .th-content .th-num em{
	font-size:var(--fz48);
	line-height: 1;
}
#mv-wrap section .th-content .th-num span{
	font-size:var(--fz24);
}
#mv-wrap section .th-content .th-text{
	padding-left:0.8rem;
	border-left:1px solid rgba(255,255,255,0.5);
}
#mv-wrap section .th-content .th-text dt{
	font-size:var(--fz15);
	margin-bottom:0.5em;
}
#mv-wrap section .th-content .th-text dd{
	font-size:var(--fz13);
}

@media (min-width: 769px) {

}
@media (max-width: 768px) {
	#mv-wrap section{
		padding: 10% 7%;
	}
	#mv-wrap section h1.heading {
	    font-size: var(--fz30);
	}
	#mv-wrap section.first .mv-content p {
	    font-size: var(--fz11);
	    margin-top: 1.5em;
	}
	#mv-wrap section .th-content{
		flex-wrap:wrap;
		left: 7%;
	}
	#mv-wrap section .th-content .th-num{
		margin-bottom:1em;
	}
	#mv-wrap section .th-content .th-text{
		width:100%;
	}
	#mv-wrap section .th-content .th-text dt {
	    font-size: var(--fz12);
	}
	#mv-wrap section .th-content .th-text dd {
	    font-size: var(--fz10);
	}
}



/* TOP
--------------------------------------------- */
.bg-video-layer {
	position: fixed;
	inset: 0;
	z-index: -1;
	overflow: hidden;
	pointer-events: none;
}
.bg-video-layer .bg-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.6s ease;
}
.bg-video-layer .bg-video.is-active {
	opacity: 1;
}

.home #primary{
	background:transparent;
	padding:0 0;
}
.home #primary > section{
	background:#fff;
}

.business-wrap{
	padding:200px 0 0;
}
#business01{
	padding-top:290px;
}
.business-info{
	flex-wrap:wrap;
}
.business-info > *{
	width:50%;
}
.business-info > img,
.business-info > video{
	object-fit:cover;
}
.business-info > .text{
	padding:0 6%;
}
.business-info > .text .inner{
	max-width:600px;
	margin-right:auto;
}
.business-info > .text .num{
	font-size:var(--fz15);
	margin-bottom:3em;
}
.business-info > .text .heading{
	font-size:var(--fz30);
	line-height:2;
}
.business-info > .text p{
	line-height:2,6;
	margin-top:2.5em;
}
.business-info > .text .strengths{
	border-top:1px solid rgba(0,0,0,0.5);
	padding:0;
	margin:7em 0 0;
	list-style: none;
	counter-reset: number;
}
.business-info > .text .strengths li{
	border-bottom:1px solid rgba(0,0,0,0.5);
}
.business-info > .text .strengths li a{
	display:block;
	font-size:var(--fz18);
	color:#000;
	padding:1.5em 55px 1.5em 5px;
	position:relative;
}
.business-info > .text .strengths li a::before{
	font-size:var(--fz15);
	font-family:sans-serif;
	margin-right:2em;
	counter-increment: number;
	content: '0' counter(number) '';
}
.business-info > .text .strengths li a::after{
	content:"";
	display:block;
	width:21px;
	aspect-ratio:2/1;
	background:url(img/arrow01.png) center center no-repeat;
	background-size:contain;
	position:absolute;
	top:50%;
	right:5px;
	transform:translateY(-50%);
	transition: all 0.3s ease-in-out 0s;
}
.business-info > .text .strengths li a:hover{
	background:var(--l-gray);
	padding:1.5em 55px 1.5em 25px;
}
.business-info > .text .strengths li a:hover::after{
/* 	background-image:url(img/arrow01-white.png); */
	right:25px;
}

.business-info > .text .btn-wrap{
	margin-top:2.5em;
}
.business-info > .text .btn-wrap a{
	width:100%;
}

.business-wrap .case-study{
	background:var(--l-gray);
	padding:100px 6% 150px;
	margin-top:130px;
}
.business-wrap .case-study .inner{
	max-width:1200px;
	margin:auto;
}
.business-wrap .case-study .inner > .sans-serif{
	font-size:0.9em;
}
.business-wrap .case-study .inner > .heading{
	font-size:var(--fz30);
}
.business-wrap .case-study .inner > p{
	max-width:450px;
	font-size:var(--fz14);
	margin-top:1em;
	margin-bottom:3em;
}
.business-wrap .case-study .inner > .heading + .pc-flex .case-study-slider{
	margin-top:-2em;
}
.business-wrap .case-study .inner .pc-flex{
	align-items:flex-start;
	flex-direction: row-reverse;
}
.business-wrap .case-study .inner .case-study-slider{
	width: calc(100% - 340px);
}
.case-study-slider,
.arrow-slider{
	position:relative;
}
.business-wrap .case-study .inner .case-study-slider .img img{
	width:100%;
	aspect-ratio:3/4;
	object-fit: cover;
}
.business-wrap .case-study .inner .btn-wrap{
	max-width: 340px;
	width:100%;
	justify-content: flex-start;
}

.case-study-slider .swiper-slide a,
.case-study-slider .swiper-slide .no-link{
	display:block;
	position:relative;
}
.case-study-slider .swiper-slide .heading{
	width:100%;
	font-size:var(--fz18);
	color: #fff;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
	padding:1em 1.2em;
	position:absolute;
	top:0;
	left:0;
}
.case-study-slider .swiper-slide p{
	width:100%;
	font-size:var(--fz18);
	color: #fff;
	line-height: 1.35;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
	padding:1em 1.2em;
	position:absolute;
	bottom:22px;
	left:0;
}
.case-study-slider .swiper-slide a::before {
    content: "";
    display: block;
    width: 100%;
    height:100%;
/*     background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.45)); */
    background-image: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0) 30%);
    position: absolute;
    bottom: 0;
    left: 0;
}
.case-study-slider .swiper-slide.hav-comment a::before{
	background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0) 30% 65%, rgba(0, 0, 0, 0.35));
}
.case-study-slider .swiper-slide a::after {
    content: "";
    display: block;
    width: 22px;
    aspect-ratio: 2 / 1;
    background: url(img/arrow01-white.png) center center no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 20px;
    right: 20px;
    transition: all 0.3s ease-in-out 0s;
}

.arrow-slider .swiper-button-next,
.arrow-slider .swiper-button-prev{
	display: block;
    width: 30px;
    height: 40px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor:pointer;
}
.arrow-slider .swiper-button-next{
	right:-45px;
}
.arrow-slider .swiper-button-prev{
	left:-45px;
}
.arrow-slider .swiper-button-next:after,
.arrow-slider .swiper-button-prev:after{
	display:none;
}
.arrow-slider .swiper-button-next span,
.arrow-slider .swiper-button-prev span{
	position: relative;
    display: block;
    width: 100%;
    height: 100%;
}
.arrow-slider .swiper-button-prev span::before,
.arrow-slider .swiper-button-prev span::after,
.arrow-slider .swiper-button-next span::before,
.arrow-slider .swiper-button-next span::after{
	content: "";
	position: absolute;
	top: calc(50% - 0px);
	width: 100%;
	height: 1px;
	border-radius: 9999px;
	background-color: #000;
}
.arrow-slider .swiper-button-prev span::before,
.arrow-slider .swiper-button-prev span::after{
	left: 0;
	transform-origin: 0px 50%;
}
.arrow-slider .swiper-button-next span::before,
.arrow-slider .swiper-button-next span::after{
	right: 0;
	transform-origin: calc(100% - 0px) 50%;
}
.arrow-slider .swiper-button-prev span::before{
	transform: rotate(45deg);
}
.arrow-slider .swiper-button-prev span::after{
	transform: rotate(-45deg);
}
.arrow-slider .swiper-button-next span::before{
	transform: rotate(-45deg);
}
.arrow-slider .swiper-button-next span::after{
	transform: rotate(45deg);
}
.swiper-button-disabled {
    opacity: 0.25;
}
.swiper-button-disabled,
.swiper-button-disabled * {
    cursor:auto !important;
}

#business02 .business-info{
	align-items:flex-start;
}
#business02 .business-info .text{
	background: #fff;
    padding-bottom: 100px;
}
#business02.business-wrap .case-study{
	margin-top:-200px;
	padding-top:300px;
}

.business-info > .img img{
	height:100%;
	min-height: 800px;
	object-fit:cover;
}

#home-about{
	display:flex;
	justify-content: center;
	align-items:center;
	height: 135vh;
	background:rgba(0,0,0,0.15) !important;
	padding:0;
	position:relative;
}
#home-about .text{
	max-width:600px;
	color:#fff;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
#home-about .text .heading{
	font-size:var(--fz40);
	text-align:center;
	margin-bottom:2em;
}
#home-about .text p{
	line-height:2.5;
}

.latest-post{
	padding:150px 6%;
}
.latest-post .inner{
	display:flex;
	flex-wrap:wrap;
	max-width:1300px;
	margin:auto;
}
.latest-post .title-wrap{
	width:300px;
}
.latest-post .title{
	font-size:var(--fz30);
}
.latest-post .post-list{
	width:calc(100% - 300px);
}
.latest-post .post-list ul{
	margin: 3em 0 0;
}
.latest-post .btn-wrap{
	justify-content: flex-end;
	margin-top: 3.5em;
}


#top-recruit{
	width:100%;
}
#top-recruit a{
	display:flex;
	justify-content: flex-end;
	width:88%;
	max-width:1300px;
	color:#fff;
	aspect-ratio: 2 / 1;
	border-radius: 20px;
	padding:80px 10%;
	margin:auto;
	overflow: hidden;
    position: relative;
}
#top-recruit a::before{
	content:"";
	display:block;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.15);
	position:absolute;
	top:0;
	left:0;
	z-index:1;
}
#top-recruit a div{
	font-size:var(--fz19);
	position: relative;
    z-index: 1;
}
#top-recruit a .heading{
	font-size:var(--fz40);
	margin-top: 1em;
}
#top-recruit a video{
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
}


@media (min-width: 769px) {
	
}
@media (max-width: 768px) {
	.home #primary {
	    padding: 0;
	}
	
	#business01,
	.business-wrap {
	    padding: 120px 0 0;
	}
	.business-info > .img{
		width:65%;
		margin-bottom: 20vw;
	}
	.business-info > .video{
		width:65%;
		margin-bottom: 20vw;
	}
	.business-info > .img img,
	.business-info > .video{
		aspect-ratio:3/4;
		object-fit: cover;
/* 		height: 85vw; */
		min-height:auto;
	}
	.business-info > .text{
		width:100%;
	}
	#business02 .business-info .text {
	    padding-bottom: 0px;
	}
	.business-info > .text .heading {
	    font-size: var(--fz25);
	    line-height: 1.8;
	}
	#business02 .business-info > .text .heading{
		letter-spacing:0;
	}
	.business-info > .text .strengths{
		margin: 10vw 0 0;
	}
	.business-info > .text .strengths li a{
		display: flex;
		font-size: var(--fz15);
		padding: 1.2em 45px 1.2em 0px;
	}
	.business-info > .text .strengths li a::before{
		font-size: var(--fz13);
		margin-right: 1.5em;
	}
	.business-wrap .case-study .inner > .heading {
	    font-size: var(--fz25);
	}
	#business02.business-wrap .case-study{
		padding-top:100px;
		margin-top: 130px;
	}
	.business-wrap .case-study .inner .case-study-slider{
		width: calc(100% + 5.9vw);
        margin-right: -5.9vw;
	}
	.business-wrap .case-study .inner .case-study-slider,
	.business-wrap .case-study .inner > .heading + .pc-flex .case-study-slider,
	.message-slider{
	    margin-top: 20vw;
	}
	
	.case-study-slider .swiper-slide .heading{
		font-size: var(--fz16);
	}
	.case-study-slider .swiper-slide p{
		font-size: var(--fz15);
		bottom: 25px;
	}
	
	.arrow-slider .swiper-button-next,
	.arrow-slider .swiper-button-prev{
		height:auto;
	}
	.arrow-slider .swiper-button-next{
		right: 6vw;
		top: -40px;
	}
	.arrow-slider .swiper-button-prev{
		right: calc(60px + 6vw);
		top: -40px;
		left: auto;
	}
	.arrow-slider .swiper-button-next span,
	.arrow-slider .swiper-button-prev span {
	    display: block;
	    width: 30px;
	    height: 16px;
	    background: url(img/arrow01.png) center center no-repeat;
	    background-size: contain;
	    cursor: pointer;
	}
	.arrow-slider .swiper-button-prev span{
		background-image: url(img/arrow01-left.png);
	}
	.arrow-slider .swiper-button-next span::before,
	.arrow-slider .swiper-button-next span::after,
	.arrow-slider .swiper-button-prev span::before,
	.arrow-slider .swiper-button-prev span::after {
	    right: 0;
		transform-origin: calc(100% - 0px) 50%;
		transform: none;
	}
	
	.business-wrap .case-study .inner .pc-flex .btn-wrap a{
		
	}
	
	#home-about{
		height: auto;
		padding: 25vh 12% 30vh;
	}
	#home-about .text .heading{
		font-size: var(--fz25);
	}
	
	.latest-post .title-wrap,
	.latest-post .post-list {
	    width: 100%;
	}
	.latest-post .title {
	    font-size: var(--fz25);
	}
	.latest-post .inner{
		display:block;
	}
	.latest-post .post-list .heading{
		font-size: var(--fz15);
	}

	#top-recruit a{
		height: 85vh;
/* 		aspect-ratio: 3 / 5; */
		position: relative;
	}
	#top-recruit a .text {
	    position:absolute;
	    left:10%;
	    bottom:7%;
	}
	#top-recruit a .heading {
	    font-size: var(--fz25);
        line-height: 1.8;
        margin-top: 0;
	}
	#top-recruit a video{
		height: 100%;
		object-fit: cover;
	}
}





/* SECONDページ
--------------------------------------------- */
#page-title-wrap{
	position:relative;
}
#page-title-wrap .hero-img img{
	width:100%;
	height:100svh;
	max-height:700px;
	object-fit:cover;
}
#page-title-wrap .hero-movie video{
	width:100%;
	height:100vh;
	max-height:700px;
	object-fit:cover;
}
#page-title-wrap .page-title-wrap{
	width: 80%;
	color:#fff;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
	position:absolute;
	top:50%;
	left:10%;
	transform: translateY(-50%);
	z-index:1;
}
#page-title-wrap .page-title-wrap .sans-serif{
	font-size:var(--fz15);
}
#page-title-wrap .page-title-wrap .page-title{
	width:80%;
	font-size:var(--fz40);
	line-height: 1.6;
}
#page-title-wrap .page-summary{
	width:86%;
	max-width:500px;
	color:#fff;
	text-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
	position: absolute;
    bottom: 15%;
    left: 10%;
    z-index:1;
}
#page-title-wrap::after{
	content:"";
	display:block;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.25);
	position:absolute;
	top:0;
	left:0;
}

#primary > .contents-inner{
	padding:100px 0;
}

.block-contents-wrap{
	position:relative;
}
.block-contents-wrap .section-list > section{
	padding:180px 7%;
}
.block-contents-wrap .section-list > section.dummy{
	padding:0;
}
.block-contents-wrap .section-list > section:nth-child(even){
	background:var(--l-gray);
}
.block-contents-wrap .section-list > section .content{
	max-width:1300px;
	margin:0 auto;
}
.block-contents-wrap .section-list > section .content .block-title{
	margin-bottom:3.5em;
}
.block-contents-wrap .section-list > section .content * + .block-title{
	margin-top:10em;
}
.block-contents-wrap .section-list > section .content .block-title .sans-serif{
	font-size:var(--fz15);
	margin-bottom:2em;
}
.block-contents-wrap .section-list > section .content .block-title .title{
	font-size:var(--fz30);
}
.block-contents-wrap .section-list > section .content .block-title .title-sub{
	font-size:var(--fz27);
	line-height:1.8;
}
.block-contents-wrap .section-list > section .content .block-title * + .title-sub{
	margin-top:1.5em;
}
.block-contents-wrap .section-list > section .content .lead{
	font-size:var(--fz23);
	margin-bottom:1.5em;
}

.block-contents-wrap > nav ul{
    list-style:none;
    padding:0;
    margin:0;
}
.block-contents-wrap > nav ul li a{
	display:block;
	color:#000;
	padding-left:4em;
	position:relative;
}
.block-contents-wrap > nav ul li a::before{
	content:"";
	display:block;
	width:2em;
	height:1px;
	background:#000;
	position:absolute;
	left:0;
	top:50%;
	transition: all 0.3s ease-in-out 0s;
}
.block-contents-wrap > nav .fixed-nav .btn-wrap a{
	padding: 1em 2em;
}

@media (min-width: 769px) {
	.block-contents-wrap > nav{
	    height: calc(100% - 360px);
	    margin-left: -33%;
		position: absolute;
	    top: 180px;
	    left: 50%;
	    transform: translateX(-50%);
	}
	.block-contents-wrap > nav .fixed-nav{
		position: sticky;
	    top: 180px;
	}
	.block-contents-wrap .section-list > section .content{
		padding-left:360px;
	}
	.block-contents-wrap > nav ul li a{
		opacity:0.25;
	}
	.block-contents-wrap > nav ul li.active-content a,
	.block-contents-wrap > nav ul li a:hover{
		opacity:1;
	}
	.block-contents-wrap > nav ul li.active-content a::before,
	.block-contents-wrap > nav ul li a:hover::before{
		width:3em;
	}
}
@media (max-width: 768px) {
	#page-title-wrap .page-title-wrap{
		width: 88%;
		top: 45%;
		left:6%;
	}
	#page-title-wrap .page-title-wrap .sans-serif{
		font-size:var(--fz12);
	}
	#page-title-wrap .page-title-wrap .page-title{
		width:90%;
		font-size:var(--fz30);
	}
	#page-title-wrap .page-summary{
		left:6%;
		bottom:10%;
	}
	
	.block-contents-wrap > nav{
		padding: 50px 6% 0;
	}
	.block-contents-wrap > nav ul li a{
		font-size:var(--fz14);
		padding-left: 2.3em;
	}
	.block-contents-wrap > nav ul li a::before{
		width: 1.3em;
	}
	
	.block-contents-wrap .section-list > section {
	    padding: 100px 6%;
	}
	.block-contents-wrap .section-list > section .content .block-title {
	    margin-bottom: 1.5em;
	}
	.block-contents-wrap .section-list > section .content .block-title .sans-serif {
	    font-size: var(--fz14);
	    margin-bottom: 1.5em;
	}
	.block-contents-wrap .section-list > section .content .block-title .title {
	    font-size: var(--fz25);
	}
	.block-contents-wrap .section-list > section .content .block-title .title-sub{
		font-size:var(--fz20);
		line-height:1.65;
	}
	.block-contents-wrap .section-list > section .content .block-title .title-sub br{
		display:none;
	}
	.block-contents-wrap .section-list > section .content .lead{
		font-size:var(--fz20);
	}
}



/* Factory動画
--------------------------------------------- */
#factoryVideoModal{
	position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 999;

	opacity: 0;
	visibility: hidden;
	pointer-events: none;

	background: rgba(0,0,0,0);
	transition:
		opacity 0.35s ease,
		background-color 0.35s ease;
}
#factoryVideoModal[aria-hidden="false"]{
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	background: rgba(0,0,0,1);
}
#factoryVideoModal .modal__dialog{
	display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: relative;
}
#factoryVideoModal video{
    width:95%;
    height:auto;
    max-height:80dvh;

	opacity: 0;
	transform: translateY(10px);
	transition:
		opacity 1s ease 0.5s,
		transform 1s ease 0.5s;
}
#factoryVideoModal[aria-hidden="false"] video{
	opacity: 1;
	transform: translateY(0);
}
#factoryVideoModal .modal__close_wrap{
    line-height: 1;
    position: absolute;
    top:30px;
    right:30px;
    z-index: 1;
}
#factoryVideoModal .modal__close{
    width: 45px;
    height: 45px;
	border: 0;
    background: transparent;
    padding: 0;
	position:relative;
	cursor: pointer;
}
#factoryVideoModal .modal__close::before,
#factoryVideoModal .modal__close::after{
    content:"";
    display:block;
    width:100%;
    height:1px;
    background:#fff;
    position:absolute;
    top:50%;
    left:50%;
}
#factoryVideoModal .modal__close::before{
	transform: translate(-50%, -50%) rotate(45deg);
}
#factoryVideoModal .modal__close::after{
	transform: translate(-50%, -50%) rotate(-45deg);
}


.modal__video-wrap {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 8px;
}

#factoryVideo {
	width: 100%;
	height: auto;
	max-height: 80dvh;
	background: #000;
}



/* コントロールバー */
.modal-video-controls {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size:var(--fz13);
    line-height: 1;
	color: #fff;
	position: absolute;
    bottom: 30px;
    width: 95%;
}
.modal-video-controls button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	cursor: pointer;
}
.modal-video-controls button img {
	display: block;
	width: 19px;
	height: 16px;
}
.modal-video-controls .mvc-timeline {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 1;
}
.modal-video-controls .mvc-time {
	font-family: sans-serif;
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
}
.modal-video-controls .mvc-seek-wrap {
	position: relative;
	flex: 1;
}
/* シークバー：ラップ＋再生済みバー＋スライダー */
.modal-video-controls .mvc-seek-wrap {
	position: relative;
	flex: 1;
}

.modal-video-controls .mvc-seek-fill {
	position: absolute;
	left: 0;
	top: calc(50% + 1px);
	transform: translateY(-50%);
	height: 6px;
	background: #fff;
	border-radius: 0;
	width: 0%;
	pointer-events: none;
}

/* range 本体（未再生部分） */
.modal-video-controls .mvc-seek {
	position: relative;
	z-index: 1;
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 6px;
	background: rgba(255,255,255,0.3);
	border-radius: 0;
	border:0;
	padding:0;
	cursor: pointer;
}

/* つまみ（●） */
.modal-video-controls .mvc-seek::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 12px;
	height: 12px;
	background: #fff;
	border: 1px solid #000;
	border-radius:50%;
	margin-top: 0px;
	cursor: grab;
}
.modal-video-controls .mvc-seek:active::-webkit-slider-thumb {
	cursor: grabbing;
}
/* Firefox */
.modal-video-controls .mvc-seek::-moz-range-thumb {
	width: 12px;
	height: 12px;
	background: #fff;
	border: 1px solid #000;
	border-radius:50%;
	margin-top: 0px;
	cursor: grab;
}

/* Firefox 用トラック色 */
.modal-video-controls .mvc-seek::-moz-range-track {
	background: rgba(255,255,255,0.3);
	height: 4px;
	border-radius: 2px;
}





/* OEM事業ページ
--------------------------------------------- */
#oem-lineup .list{
	margin-top: 80px;
}
#oem-lineup .list .img{
	margin-bottom: 2em;
}
#oem-lineup .list .item-name{
	font-size:var(--fz18);
	margin-bottom: 0.5em;
}
#oem-lineup .list p{
	font-size:var(--fz15);
	line-height:1.86;
}

.features-point{
	width: calc(100% + 4.95vw);
}
.features-point > .pc-flex{
	gap: 5%;
}
.features-point > section{
	padding-top:180px;
}
.features-point > section:first-child{
	margin-top: -180px;
}
.features-point > .pc-flex .text{
	width:58%;
}
.features-point > .pc-flex .text .point-num,
.features-point > .pc-flex .text .heading{
	font-size:var(--fz22);
}
.features-point > .pc-flex .text ul{
	padding:0;
	margin:100px 0 0;
	list-style:none;
}
.features-point > .pc-flex .text ul li{
	display:flex;
	align-items:center;
	gap:0.8em;
	font-size:var(--fz16);
	line-height: 1.65;
	border-bottom:1px solid rgba(0,0,0,0.5);
	padding:1.5em 0;
}
.features-point > .pc-flex .text ul li:first-child{
	border-top:1px solid rgba(0,0,0,0.5);
}
.features-point > .pc-flex .text ul li::before{
	content:"";
	display:flex;
	width:0.6em;
	aspect-ratio:1/1;
	background:#000;
	border-radius:50%;
}
.features-point > .pc-flex .img{
	width:42%;
}
.features-point > .pc-flex .img img{
	height: 100%;
    object-fit: cover;
}


#oem-flow .flow-wrap{
	border: 1px dashed rgba(0, 0, 0, 0.5);
	padding: 60px 6% 60px 8%;
}
#oem-flow ol{
	display:flex;
	justify-content: center;
	max-width:700px;
	padding: 0;
	margin: 0 auto;
	list-style: none;
    counter-reset: number;
}
#oem-flow ol li{
	display: flex;
	width: 100%;
	position:relative;
}
#oem-flow ol li:last-child{
	width:auto;
	padding-right: 0;
}
#oem-flow ol li span{
	font-size:var(--fz20);
	line-height: 1.5;
	text-align: center;
	writing-mode: vertical-rl;
	border:1px solid #000;
	border-radius:30px;
	padding:30px 12px 30px 8px;
}
#oem-flow ol li:last-child span{
	color:#fff;
	background:#000;
}
#oem-flow ol li span::before {
    font-size: var(--fz12);
    color:#000;
    font-family: sans-serif;
    counter-increment: number;
    content: 'Step ' counter(number) '';
    position:absolute;
    top:2em;
    left:-2em;
}
#oem-flow ol li::after {
	content:"";
	display:flex;
	width: calc(100% - 77px);
	height:9px;
	background:url(img/arrow02.png) right center no-repeat;
	background-size:cover;
    position:absolute;
    top:50%;
	right: 12px;
}
#oem-flow ol li:last-child::after{
	display:none;
}


#oem-achievement .list.flex{
	flex-wrap:wrap;
	gap:75px 2.5%;
}
#oem-achievement .list.flex > *{
	width: calc(95% / 3);
}
#oem-achievement .list-item > *{
	display: block;
	position:relative;
}
#oem-achievement .list-item > * .img img{
	width:100%;
	aspect-ratio: 3/4;
	object-fit:cover;
}
#oem-achievement .list-item > * .heading,
#oem-achievement .list-item > * p{
	width:100%;
	color:#fff;
	line-height: 1.65;
	text-align:center;
	padding: 1em 1.2em;
	position:absolute;
	left:0;
}
#oem-achievement .list-item > * .heading{
	top:0;
}
#oem-achievement .list-item > * p{
	bottom:0;
}

.faq-wrap{
	margin-top: 2em;
}
.faq-wrap dl{
	border-bottom:1px solid #1D0E0B;
}
.faq-wrap dl:first-child{
	border-top:1px solid #1D0E0B;
}
.faq-wrap dl dt{
	padding: 1.35em 5px 1.35em 35px;
	position:relative;
}
.faq-wrap dl dt::before{
	content:"Q.";
	font-style: normal;
	position:absolute;
	top:50%;
	left:5px;
	transform: translateY(-50%);
}
.faq-wrap dl dd{
	line-height: 1.8;
	padding:0 0 0 35px;
	transition: all 0.3s ease-in-out 0s;
}
.faq-wrap dl .acc-open + dd{
	padding-bottom:20px;
}
.acc-wrap {
	overflow: hidden;
}
.acc-btn {
	display: flex;
    justify-content: space-between;
    align-items: center;
	cursor: pointer;
	line-height: 1.45;
	position: relative;
}
.acc-btn span{
	display:block;
	width:20px;
	aspect-ratio:1/1;
	margin-left: 0.5em;
	position:relative;
}
.acc-btn span::before,
.acc-btn span::after{
	content: '';
	display: block;
	background:rgba(0,0,0,0.75);
	position: absolute;
	left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.acc-btn span::before {
	width:100%;
	height:1px;
}
.acc-btn span::after {
	width:1px;
	height:100%;
}
.acc-btn.acc-open span::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}
.acc-cont {
    overflow: hidden;
    max-height: 0;
    transition: all 0.3s ease-in-out 0s;
}


#oem-consult{
	color:#fff;
	background-position:center center;
	background-repeat:no-repeat;
	background-size:cover;
	padding: 180px 7%;
}
#oem-consult .content{
	align-items:center;
	justify-content: space-between;
	gap:10%;
	max-width:1300px;
	margin:0 auto;
}
#oem-consult .content > *{
	width:50%;
}
#oem-consult .content .block-title{
	margin-bottom:2.5em;
}
#oem-consult .content .title{
	font-size:var(--fz30);
    line-height: 1.6;
}
#oem-consult .content .sans-serif + .title{
	margin-top:1em;
}
#oem-consult .content .btn-wrap a{
	font-size:var(--fz27);
	font-family: serif;
	width:100%;
}



@media (min-width: 769px) {
	#oem-lineup .list{
		justify-content: space-between;
		flex-wrap:wrap;
		gap:10%;
		gap: 100px 0;
	}
	#oem-lineup .list > *{
		width:47%;
	}
}
@media (max-width: 768px) {
	#oem-lineup .list .list-item + .list-item{
		margin-top: 18vw;
	}
	
	.features-point {
	    width: 100%;
	}
	.features-point > section{
		position:relative;
		padding-top: 50vw;
		margin-bottom: 40px;
	}
	.features-point > section:first-child {
	    margin-top: 0px;
	}
	.features-point > .pc-flex .text{
		width:100%;
		position: relative;
        z-index: 1;
	}
	.features-point > .pc-flex .text .heading{
		width:50%;
	}
	.features-point > .pc-flex .text ul {
		margin-top:30px;
	}
	.features-point > .pc-flex .img {
	    width: 65%;
	    height: 70vw;
	    position:absolute;
	    top: 40px;
	    right:-5.95vw;
	}
	.features-point > .pc-flex .img img {
/* 	    aspect-ratio: 5 / 6; */
		height: 100%;
	}
	
	.block-contents-wrap .section-list > section#oem-factory .content .lead {
        font-size: var(--fz15);
    }
    #oem-factory .movie-thum{
	    margin-right:-5.95vw;
	    margin-left:-5.95vw;
    }
    
	#oem-achievement .list.flex {
	    gap: 50px 4.5%;
	}
	#oem-achievement .list.flex > * {
	    width: calc(95.5% / 2);
		font-size: var(--fz14);
	}
	#oem-achievement .list.flex .heading {
	    line-height: 1.3;
	}
	
	#oem-flow .flow-wrap {
	    padding: 60px 10% 50px;
	}
	#oem-flow ol{
		display:block;
	}
	#oem-flow ol li + li{
		margin-top:15vw;
	}
	#oem-flow ol li::after{
		width: 9px;
		height:90%;
		background: url(img/arrow02-down.png) center bottom no-repeat;
		background-size:cover;
		right:auto;
		top: calc(100% + 2vw);
		left: 50%;
	}
	#oem-flow ol li span{
		display: block;
		width: 100%;
		font-size: var(--fz16);
		writing-mode: unset;
		padding: 0.5em;
	}
	#oem-flow ol li span::before{
		top: -2em;
		left: 0.5em;
	}
	
	.faq-wrap dl dt {
		font-size: var(--fz15);
		padding: 1.3em 5px 1.3em 25px;
	}
	.faq-wrap dl dt::before {
		font-size: var(--fz18);
	}
	.faq-wrap dl dd{
		font-size: var(--fz15);
		padding: 0 0 0 25px;
	}
	.acc-btn::after {
		right: 1%;
	}
	.acc-btn span {
	    width: 14px;
	}
	
	#oem-consult{
		text-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
		padding: 80px 7%;
	}
	#oem-consult .content > *{
		width:100%;
	}
	#oem-consult .content .sans-serif{
		font-size: var(--fz14);
	}
	#oem-consult .content .title{
		font-size: var(--fz25);
	}
	#oem-consult .content .text p{
		font-size: var(--fz15);
	}
	#oem-consult .content .btn-wrap a {
	    font-size: var(--fz18);
	}
}





/* 企画開発事業ページ
--------------------------------------------- */
#own-products{
	padding-top:180px;
}

#own-products .list{
	width: calc(100% + 4.95vw);
}
#own-products .list > section{
	padding-top: 180px;
}
#own-products .list section:first-child{
	margin-top: -180px;
}
#own-products .list section > .pc-flex{
	gap:5%;
}
#own-products .list section > .pc-flex .text{
	width:58%;
}
#own-products .list section > .pc-flex .img{
	width: 42%;
}
#own-products .list section > .pc-flex .img img{
	height:100%;
	object-fit:cover;
}
#own-products .list section .brando-info-top{
	justify-content: space-between;
}
#own-products .list section .brando-info-top .brand-num{
	font-size: var(--fz20);
	line-height: 1;
	margin-bottom: 0.5em;
}
#own-products .list section .brando-info-top .brand-name{
	font-size: var(--fz30);
	line-height: 1.4;
}
#own-products .list section .brando-info-top .brand-name-ruby{
	font-size: var(--fz16);
	line-height: 1.4;
}
#own-products .list section .brando-info-top .heading{
	font-size: var(--fz23);
	line-height: 2;
	margin-top:3em;
}
#own-products .list section .brando-info-top .brand-logo{
	width:120px;
}

#own-products .list section .brando-info-bottom{
	margin-top:5em;
}
#own-products .list section .brando-info-bottom > p{
	font-size: var(--fz15);
	margin-bottom:0.5em;
}
#own-products .list section .brando-info-bottom > dl{
	align-items:flex-start;
	gap:1em;
	font-size: var(--fz15);
	line-height:1.6;
}
#own-products .list section .brando-info-bottom > dl + dl{
	margin-top:0.8em;
}
#own-products .list section .brando-info-bottom > dl dt{
	white-space:nowrap;
	line-height: 1.2;
	border-radius:30px;
	border:1px solid #000;
	padding:2px 15px;
}
#own-products .list section .brando-info-bottom > dl dd{
	padding:1px 0;
}
#own-products .list section .brando-info-bottom .btn-wrap a{
	width: 100%;
}

.block-contents-wrap .section-list > section .content #own-products .block-title {
    margin-bottom: 8em;
}
#own-products .secret-story{
	width:calc(100% - 4.95vw);
	margin-top:8em;
}
#own-products .secret-story .title{
	font-size: var(--fz23);
	margin-bottom:1em;
}
#own-products .secret-story .heading{
	font-size: var(--fz18);
	margin-bottom:1.5em;
}
#own-products .secret-story p{
	font-size: var(--fz16);
}
#own-products .secret-story .img + p{
	margin-top:2em;
}


#message .list{
	gap:3%;
	margin-top:3em;
}
#message .list > *{
	display:flex;
	justify-content: center;
	align-items:center;
	width:100%;
	font-size: var(--fz16);
	text-align:center;
	aspect-ratio:1/1;
	border-radius:50%;
	border:1px solid #000;
}



@media (min-width: 769px) {
	
}
@media (max-width: 768px) {
	#own-products .list > section{
		padding-top: 150px;
	}
	
	#own-products .list,
	#own-products .list section > .pc-flex .text,
	#own-products .list section > .pc-flex .img,
	#own-products .secret-story{
		width: 100%;
	}
	#own-products .list section .brando-info-top {
	    align-items: flex-end;
	}
	#own-products .list section .brando-info-top .heading {
	    font-size: var(--fz18);
	    line-height: 2;
	    margin-top: 3em;
	}
	#own-products .list section .brando-info-top .heading,
	#own-products .list section .img.pc-none,
	#own-products .list section .brando-info-bottom {
	    margin-top: 2em;
	}
	#own-products .list section > .pc-flex .img img{
		height:auto;
		width:100%;
	}
	#own-products .secret-story {
	    margin-top: 5em;
	}
	
	#message .list{
		justify-content: center;
		flex-wrap: wrap;
	}
	#message .list > *{
		width:55%;
		font-size: var(--fz13);
		line-height: 1.65;
		padding:0 10%;
		margin: -6.5% -5%;
	}
	#message .list > *:first-child{
		margin-right: 5%;
		margin-left: 5%;
	}
}




/* 企業情報ページ
--------------------------------------------- */
.president-photo + *{
	margin-top:3em;
}
.president-photo + p{
}
.president-name{
	line-height: 2;
	margin-top:3.5em;
}
.president-name em{
	font-size:var(--fz23);
}

.img-cell-table dl{
/* 	cursor: pointer; */
/* 	position:relative; */
	transition: all 0.3s ease-in-out 0s;
}
.img-cell-table dd{
/* 	padding-right:1em; */
}
.img-cell-table dt{
	transition: all 0.3s ease-in-out 0s;
}
.img-cell-table dl.has-preview {
    cursor: pointer;
    position: relative;
    padding-right: 3em;
}
.img-cell-table dl.has-preview:hover {
    background-color:var(--l-gray);
}
.block-contents-wrap .section-list > section:nth-child(even) .img-cell-table dl.has-preview:hover{
	background-color:#fff;
}
.img-cell-table dl.has-preview:hover dt {
    padding-left:1.5em;
}
.img-cell-table dl.has-preview dd::after {
/*     content: "🔍"; */
    content:"";
    display:block;
    width:17px;
    height:17px;
    background:url(img/icon_img.png) center center no-repeat;
    background-size:contain;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    opacity: .5;
/*     font-size: 0.9em; */
}
.img-cell-table .preview-image {
	position: fixed;
    max-width: 400px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 9999;
}
.img-cell-table .preview-image.visible {
    visibility: visible;
    opacity: 1;
}

.history-table{
	padding:0;
	margin:0;
	list-style:none;
}
.history-table dl{
	display: flex;
    flex-wrap: wrap;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.35);
    padding: 1em 0;
}
.history-table dl:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.35);
}
.history-table dl .history-date {
    width:150px;
}
.history-table dl .history-content {
    width:calc(100% - 150px);
}

.access-info + .access-info {
	margin-top:100px;
}
.access-info .branch-name{
	font-size:var(--fz21);
}
.access-info dl {
	line-height: 1.5;
    margin-top: 1.25em;
}
.access-info dl dt {
	font-size:var(--fz14);
}
.access-info dl dd {
	font-size:var(--fz16);
}
.access-info dl + .embed-map{
    margin-top: 1.5em;
}
.embed-map iframe{
	aspect-ratio: 5 / 2;
    width: 100%;
    height: auto;
}


@media (min-width: 769px) {
	
}
@media (max-width: 768px) {
	.president-photo + * {
	    margin-top: 1.5em;
	}
	.president-name {
	    font-size:var(--fz13);
	}
	.president-name em {
	    font-size: var(--fz18);
	}

	.img-cell-table .preview-image.is-mobile-position {
		right: 10px;
		left: auto !important;
		top: 50%;
		transform: translateY(-50%);
		max-width: 45vw;
	}

	.history-table li,
	.history-table dl{
		display:block;
	}
	.history-table li > *,
	.history-table dl > *{
		width:100% !important;
	}
	.history-table li .history-date,
	.history-table dl .history-date{
		margin-bottom:0.5em;
	}
	.history-table li .history-content,
	.history-table dl .history-content{
		padding-left:1em;
	}
	
	.embed-map iframe{
		aspect-ratio: 5 / 3.5;
	}
}



/* SDGsページ
--------------------------------------------- */

.sdgs-icon-wrap{
	display:flex;
	padding:0;
	margin:0;
	list-style:none;
}
.sdgs-icon-wrap li{
	max-width:68px;
}

* + .sdgs-icon-wrap{
	margin-top:5em;
}

.process-reform dl{
	border-radius:15px;
	background:#fbfbfb;
	box-shadow: inset 0 0 25px rgba(0,0,0,0.15);
	padding:30px 40px;
}
.process-reform dl + dl{
	margin-top:1.5em;
}
.process-reform dl dt{
	font-size:var(--fz22);
	line-height: 1.65;
}
.process-reform + .movie-thum{
	margin-top:4em;
}

.sdgs-dev-item{
	display:flex;
	flex-direction: row-reverse;
	align-items:center;
	flex-wrap:wrap;
	gap:5%;
}
.sdgs-dev-item + .sdgs-dev-item{
	margin-top:90px;
}
.sdgs-dev-item .heading{
	font-size:var(--fz22);
	line-height: 2;
	margin-bottom:1.2em;
}
.sdgs-dev-item p{
	font-size:var(--fz16);
	line-height: 2;
}
.sdgs-dev-item .text{
	width:calc(95% - 260px);
}
.sdgs-dev-item .img{
	width:260px;
}
.sdgs-dev-item .img img{
	width:100%;
	aspect-ratio:1/1;
	object-fit: cover;
	border-radius:50%;
}


#sdgs-community-development .content-inner .img-wrap{
	gap:5%;
	margin-bottom: 50px;
}



@media (min-width: 769px) {
	
}
@media (max-width: 768px) {
	body.sdgs .block-contents-wrap .section-list > section .content .block-title{
		margin-bottom:12vw;
	}
	
	.process-reform dl {
	    padding: 10vw 8%;
	}
	.process-reform dl dt{
		font-size:var(--fz18);
		margin-bottom:0.5em;
	}
	.process-reform dl dd{
		font-size:var(--fz15);
	}
	.process-reform + .movie-thum {
		margin-right: -6.8%;
		margin-left: -6.8%;
	}
	.process-reform + .movie-thum iframe {
	    width: 100%;
	    height: auto;
		aspect-ratio: 16 / 9;
	}
	
	.sdgs-dev-item{
		padding-top: 2.2em;
		position:relative;
	}
	.sdgs-dev-item .img {
	    width: 80%;
	    margin: 0 auto 1em;
	}
	.sdgs-dev-item .text{
		width:100%;
	}
	.sdgs-dev-item .heading{
		font-size: var(--fz18);
		position:absolute;
		top:0;
		left:0;
	}
	.sdgs-dev-item .btn-wrap a{
        justify-content: flex-start;
		border-radius: 0;
		border-left:0;
		border-right:0;
		padding: 1.2em 0;
	}
	.sdgs-dev-item .btn-wrap a::after {
	    content: "";
	    display: block;
	    width: 21px;
	    aspect-ratio: 2 / 1;
	    background: url(img/arrow01.png) center center no-repeat;
	    background-size: contain;
	    position: absolute;
	    top: 50%;
	    right: 5px;
	    transform: translateY(-50%);
	    transition: all 0.3s ease-in-out 0s;
	}
}





/* 採用情報ページ
--------------------------------------------- */
.recruit-page-title-wrap .hero-img,
.recruit-page-title-wrap .hero-movie{
	width:100%;
	height:100vh;
	position:fixed;
	top:0;
	left:0;
	z-index:-1;
}
.recruit-page-title-wrap .hero-img img,
.recruit-page-title-wrap .hero-movie video{
	width:100%;
	height:100vh;
	object-fit:cover;
}
.recruit-page-title-wrap > section{
	display:flex;
	justify-content: center;
	align-items:center;
	min-height:100vh;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.recruit-page-title-wrap > section > *{
	max-width:650px;
	width:88%;
}
.recruit-page-title-wrap .page-title-wrap{
	color:#fff;
	text-align:center;
}
.recruit-page-title-wrap .page-title-wrap .sans-serif{
	font-size:var(--fz15);
}
.recruit-page-title-wrap .page-title-wrap .page-title{
	font-size:var(--fz40);
	letter-spacing:0.1em;
}
.recruit-page-title-wrap .page-lead{
	color:#fff;
	padding-bottom: 300px;
}
.recruit-page-title-wrap .page-lead .sans-serif{
	text-align:center;
	margin-bottom: 1em;
}
.recruit-page-title-wrap .page-lead .heading{
	font-size:var(--fz40);
	letter-spacing:0.1em;
	text-align:center;
	margin-bottom:2em;
}
.recruit-page-title-wrap .page-lead p{
	line-height:2.5;
	text-align:center;
}



#recruit-gallery{
	padding: 0;
}

.hscroll {
	position: relative;
	overflow: hidden;
}
.hscroll__inner {
	position: relative;
	display: flex;
	height: 100vh;
	will-change: transform;
}
.hscroll__inner.is-pinned {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
}
.hscroll__inner.is-after {
	position: absolute;
	left: 0;
	bottom: 0;
}
.hscroll__item {
	height:100%;
/*
  flex: 0 0 auto;
  min-width: 40vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border:1px solid #000;
*/
}
#recruit-gallery .hscroll__item img{
	max-width:none;
	width:auto;
	height:100%;
}



#senior-message ol{
	list-style: none;
    counter-reset: number;
}
#senior-message .swiper-slide{
	display:flex;
	align-items:center;
	height: auto;
	background:#fff;
	padding: 60px 3% 100px;
}
#senior-message .swiper-slide .inner{
	display: flex;
    flex-wrap: wrap;
	max-width: 800px;
	margin: auto;
}
#senior-message .swiper-slide .inner > *{
	width:100%;
}
#senior-message .swiper-slide .message-title-wrap{
	text-align:center;
}
#senior-message .swiper-slide .message-title-wrap .title{
	font-size: var(--fz25);
	margin-bottom: 0.5em;
}
#senior-message .swiper-slide .message-title-wrap::before {
	display:block;
    font-size: var(--fz20);
    line-height: 1;
    margin:0 auto 0.25em;
    counter-increment: number;
    content: counter(number, decimal-leading-zero);
}
#senior-message .swiper-slide .message-title-wrap::after {
	content:"";
	display:block;
	width:1em;
	height:1px;
	background:#000;
    margin:0 auto 1em;
}
#senior-message .swiper-slide .inner .message-data{
	font-size: var(--fz17);
	line-height:1.8;
	text-align:center;
	margin-top:1.5em; 
}
#senior-message .swiper-slide .inner .message-text{
	max-height:40vh;
	font-size: var(--fz17);
	line-height:1.8;
	margin-top: 3em;
	overflow-y:auto;
}

#recruitment-list .content-inner nav ul{
	display:flex;
	gap:5%;
	padding:0;
	margin:0;
	list-style:none;
}
#recruitment-list .content-inner nav .recruitment-cat-item{
/* 	width:100%; */
	min-width:120px;
	max-width:250px;
}
#recruitment-list .content-inner nav .recruitment-cat-item > a{
    color:#000;
}
#recruitment-list .content-inner nav .recruitment-cat-item > a .cat-name{
	display:flex;
	justify-content: flex-start;
	align-items:center;
    font-size: var(--fz18);
}
#recruitment-list .content-inner nav .recruitment-cat-item > a .cat-name span{
	display:block;
	width:20px;
	aspect-ratio:1/1;
	border-radius:50%;
	border:1px solid #000;
	margin-left:1em;
	position: relative;
}
#recruitment-list .content-inner nav .recruitment-cat-item > a .cat-name span:before,
#recruitment-list .content-inner nav .recruitment-cat-item > a .cat-name span:after{
	content: "";
	position: absolute;
	bottom: 30%;
	left: calc(50% - 0px);
	width: 1px;
	height: 40%;
	border-radius: 9999px;
	background-color: #000;
	transform-origin: 50% calc(100% - 0px);
}
#recruitment-list .content-inner nav .recruitment-cat-item > a .cat-name span:before{
	transform: rotate(45deg);
}
#recruitment-list .content-inner nav .recruitment-cat-item > a .cat-name span:after{
	transform: rotate(-45deg);
}
#recruitment-list .content-inner nav .employment-type-list{
	flex-wrap:wrap;
	gap:8px;
}
#recruitment-list .content-inner nav .employment-type-list li{
    font-size: var(--fz14);
    line-height:1;
    white-space:nowrap;
    background:#f2f2f2;
    padding:6px 15px;
}
#recruitment-list .content-inner div.recruitment-list > section{
    padding-top:180px;
    margin-top:-50px;
}
#recruitment-list .content-inner div.recruitment-list .recruitment-cat-title{
	font-size: var(--fz20);
	line-height:1;
    border:1px solid #000;
    border-left:7px solid #000;
    padding:1.5em;
}
#recruitment-list .content-inner div.recruitment-list > section .tab__menu{
    margin-top: 3em;
}
#recruitment-list .content-inner div.recruitment-list > section .tab__menu .tab__menu-item{
    font-size: var(--fz20);
}
#recruitment-list .content-inner div.recruitment-list .tab__panel-box dl{
	padding:2em 0;
}
.job-description-detail dl{
	flex-wrap:wrap;
	border-bottom:1px dashed rgba(0,0,0,0.5);
}
.job-description-detail dl:last-child{
	flex-wrap:wrap;
	border-bottom:1px solid #000;
}
.job-description-detail dl dt,
.job-description-detail dl dd{
	line-height:1.65;
}
.job-description-detail dl dt{
	width:175px;
}
.job-description-detail dl dd{
	width:calc(100% - 175px);
}
.job-description-detail dl dd.job-description-slider{
	width:100%;
}
.job-description-slider{
	padding-top: 50px;
	margin-top:3em;
	position:relative;
}
.job-description-slider .swiper-button-prev,
.job-description-slider .swiper-button-next{
	position:absolute;
	top:0;
	right:0;
}
.job-description-slider .swiper-button-prev{
	right: 60px;
}
.job-description-slider .swiper-button-prev span,
.job-description-slider .swiper-button-next span{
    display: block;
	width: 30px;
    height: 15px;
    background:url(img/arrow01.png) center center no-repeat;
    background-size:contain;
    cursor:pointer;
}
.job-description-slider .swiper-button-prev span{
	background-image:url(img/arrow01-left.png);
}
.job-description-slider .swiper-slide{
	height:auto;
	background:#f2f2f2;
}
.job-description-slider .swiper-slide .text{
	padding:15px;
}
.job-description-slider .swiper-slide .slide-count{
	text-align:center;
}
.job-description-slider .swiper-slide .slide-title{
	font-size: var(--fz16);
	text-align:center;
}
.job-description-slider .swiper-slide .slide-text{
	font-size: var(--fz14);
}

.recruit-contents-wrap.block-contents-wrap .section-list > section .content {
    padding-left: 0px;
}
.recruit-contents-wrap.block-contents-wrap .section-list > section .content + .content{
	margin-top:10em;
}
section.rows-2 .content .block-title {
    width:28%;
    padding-right: 6%;
    margin-bottom: 0 !important;
}
section.rows-2 .content .content-inner {
    width:72%;
}

.parental-leave td{
/* 	font-size: var(--fz13); */
	text-align:center;
}
.parental-leave tr.parental-leave-line01 th,
.parental-leave tr.parental-leave-line01 td{
	width:10%;
	border-bottom: 1px dashed rgba(0, 0, 0, 0.25);
	padding:0.5em;
}
.parental-leave tr:nth-child(n+3) th,
.parental-leave tr:nth-child(n+3) td{
	border-top: 0px;
	border-bottom: 0px;
	padding:0.5em;
}
.parental-leave tr:last-child th,
.parental-leave tr:last-child td{
	border-top: 1px solid rgba(0, 0, 0, 0.25);
	border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.block-contents-wrap .section-list > section#side-job{
	padding-left:0;
	padding-right:0;
}
.block-contents-wrap .section-list > section#side-job .content{
	max-width:none;
}
.block-contents-wrap .section-list > section#side-job .content > .img,
.block-contents-wrap .section-list > section#side-job .content > .text{
	width:50%;
}
.block-contents-wrap .section-list > section#side-job .content > .img .pc-sticky{
	top:0;
	height:100vh;
	object-fit: cover;
}
.block-contents-wrap .section-list > section#side-job .content > .text{
	padding:0 6%;
}
.block-contents-wrap .section-list > section#side-job .content > .text .text-inner{
	max-width:600px;
	margin-right:auto;
}
#side-job .lead{
	margin-bottom:10em;
}
#side-job .lead .heading{
	font-size: var(--fz30);
	margin-bottom:1.5em;
}
#side-job .lead p{

}
#side-job .content-inner dl + dl{
	margin-top:7em;
}
#side-job .content-inner dt{
	font-size: var(--fz20);
	border:1px solid rgba(0,0,0,0.5);
	border-right:0;
	border-left:0;
	padding:1.2em 0;
	margin-bottom:1.8em;
}


@media (min-width: 769px) {
	.recruit-page-title-wrap .page-lead p{
		
	}
	
	#senior-message .swiper-slide .inner .message-data{
/* 		order:3; */
	}
	
	.recruit-fix-btn{
		display:none;
	}
}
@media (max-width: 768px) {
	.recruit-page-title-wrap .page-title-wrap {
	    text-align: left;
	}
	.recruit-page-title-wrap .page-title-wrap .sans-serif{
		font-size:var(--fz12);
	}
	.recruit-page-title-wrap .page-title-wrap .page-title{
		font-size:var(--fz30);
	}
	.recruit-page-title-wrap > section.recruit-lead-wrap{
		height:auto;
/* 		padding-bottom: 150px; */
	}
	.recruit-page-title-wrap .page-lead .sans-serif{
		font-size:var(--fz15);
	}
	.recruit-page-title-wrap .page-lead .heading {
	    font-size: var(--fz25);
	}
	
	#senior-message .swiper-slide{
		padding:30px 8%;
	}
	#senior-message .swiper-slide .message-title-wrap .title{
		font-size: var(--fz18);
		margin-bottom: 0.5em;
	}
	#senior-message .swiper-slide .inner .message-data{
		font-size: var(--fz15);
		margin-top: 0.5em;
	}
	#senior-message .swiper-slide .inner .message-text{
		max-height: 45vh;
		font-size: var(--fz15);
	}
	
	#recruitment-list .content-inner nav .recruitment-list{
		display:block;
		border-top: 1px dashed rgba(0, 0, 0, 0.5);
	}
	#recruitment-list .content-inner nav .recruitment-cat-item{
		max-width: unset;
		border-bottom: 1px dashed rgba(0, 0, 0, 0.5);
	}
	#recruitment-list .content-inner nav .recruitment-cat-item > a {
		display: block;
	    padding:1em 0;
	}
	#recruitment-list .content-inner nav .recruitment-cat-item > a .cat-name {
	    justify-content: space-between;
	}
	section.rows-2 .content .block-title,
	section.rows-2 .content .content-inner,
	.job-description-detail dl dt,
	.job-description-detail dl dd{
		width:100%;
	}
	#recruitment-list .content-inner div.recruitment-list .recruitment-cat-title{
		font-size: var(--fz18);
		padding: 1.2em;
	}
	#recruitment-list .content-inner div.recruitment-list > section .tab__menu {
	    margin-top: 8vw;
	}
	#recruitment-list .content-inner div.recruitment-list > section .tab__menu .tab__menu-item {
		font-size: var(--fz15);
	}
	#recruitment-list .content-inner div.recruitment-list .tab__panel-box dl {
	    padding: 5vw 0;
	}
	
	.recruitment-list .tab__panel .btn-wrap{
		display:none;
	}
	
	.job-description-detail dl dt{
		margin-bottom:3vw;
	}
	.job-description-detail dl dd{
		padding-left: 4vw;
	}
	.job-description-detail dl dd.job-description-slider .swiper{
		margin-left: -4vw;
		margin-right: -5.9vw;
	}
	
	.block-contents-wrap .section-list > section#side-job .content > .img{
		width: 65%;
		margin-bottom: 20vw;
	}
	.block-contents-wrap .section-list > section#side-job .content > .text {
	    width: 100%;
	}
	.block-contents-wrap .section-list > section#side-job .content > .text .lead{
		font-size: var(--fz16);
		margin-bottom: 5em;
	}
	.block-contents-wrap .section-list > section#side-job .content > .img img{
		height: 85vw !important;
	}
	#side-job .lead .heading {
	    font-size: var(--fz25);
	}
	#side-job .content-inner dl + dl {
	    margin-top: 4em;
	}
	#side-job .content-inner dt{
		font-size: var(--fz18);
		padding: 0.8em 0;
	}
	#side-job .content-inner dd{
		font-size: var(--fz15);
		line-height: 1.65;
	}
	
	body .recruit-fix-btn{
		transform:translatey(100%);
    	transition: all 0.3s ease-in-out 0s;
	}
	body.is-primary-top .recruit-fix-btn{
		width:100%;
		padding: 10px;
		position:fixed;
		left:0;
		bottom:0;
		z-index: 1;
		transform:translatey(0);
	}
	body.is-primary-top .recruit-fix-btn .btn-wrap a{
		background:#fff;
	}
}





/* お知らせページ
--------------------------------------------- */

.contents-inner .post-list{
	border-top:1px solid rgba(0,0,0,0.5);
}
.contents-inner .post-list .article-list{
	border-bottom:1px solid rgba(0,0,0,0.5);
}
.contents-inner .post-list .article-list a{
	display:block;
	padding:1.5em 40px 1.5em 1%;
	position:relative;
}
.contents-inner .post-list .article-list a::after {
    content: "";
    display: block;
    width: 21px;
    aspect-ratio: 2 / 1;
    background: url(img/arrow01.png) center center no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out 0s;
}
.contents-inner .post-list .article-list a:hover{
	background-color:var(--l-gray);
	padding:1.5em 60px 1.5em 3%;
}
.contents-inner .post-list .article-list a:hover::after{
	right: 25px;
}

.contents-inner .post-list .article-list .heading{
	width:100%;
	font-size:var(--fz17);
}



@media (min-width: 769px) {
	#primary > .post-list-rows.contents-inner{
		padding: 180px 0;
	}
	.post-list-rows{
		flex-direction: row-reverse;
		flex-wrap:wrap;
		justify-content: space-between;
	}
	.post-list-rows .post-list,
	.post-list-rows .post-detail{
		width:calc(95% - 250px);
	}
	.post-list-rows aside{
		width:250px;
	}
	
	
	
}
@media (max-width: 768px) {
	#primary > .post-list-rows aside{
		width: calc(100% + 12vw);
		background-color:var(--l-gray);
		padding: 60px 7%;
		margin-top:5em;
		margin-left: -5.9vw;
		margin-right: 5.9vw;
	}
	#primary > .post-list-rows aside .widget ul{
		display:flex;
		flex-wrap:wrap;
		gap:5%;
	}
	#primary > .post-list-rows aside .widget ul > *{
		width:calc(95%/2);
	}
}




/* ブログ
--------------------------------------------- */
.blog-post-list{
	display:flex;
	flex-wrap:wrap;
	gap:3em 3%;
}
.blog-post-list > *{
	width:calc(94%/3);
}
.blog-post-list > * .img img{
	width:100%;
	aspect-ratio:1/1;
	object-fit:cover;
}
.blog-post-list > * .heading{
	font-size:var(--fz18);
	margin-top:1em;
}

.single .post-detail .entry-header{
	border-bottom:1px solid rgba(0,0,0,0.5);
}
.single .post-detail .entry-header .entry-title{
	font-size:var(--fz30);
}
.single .post-detail .entry-header .date-cat{
	margin:0.5em 0 1.5em;
}

.single .post-detail .post-navigation{
	border-top:1px solid rgba(0,0,0,0.5);
	padding-top: 3em;
}


@media (min-width: 769px) {
	
}
@media (max-width: 768px) {
	body.blog #primary > .contents-inner,
	body.category #primary > .contents-inner,
	body.single-format-standard #primary > .contents-inner{
		padding-bottom:0;
	}
	
	.blog-post-list {
	    gap: 3em 5%;
	}
	.blog-post-list > * {
	    width: calc(95% / 2);
	}
	.blog-post-list > * .heading {
	    font-size: var(--fz14);
	}
}



/* お知らせ、OEMブログ
--------------------------------------------- */
@media (max-width: 768px) {
	body.post-type-archive-news #page-title-wrap .page-title-wrap,
	body.post-type-archive-oem-blog #page-title-wrap .page-title-wrap,
	body.blog #page-title-wrap .page-title-wrap,
	body.single #page-title-wrap .page-title-wrap{
		top:50%;
	}
	body.post-type-archive-news #page-title-wrap .hero-img img,
	body.post-type-archive-oem-blog #page-title-wrap .hero-img img,
	body.blog #page-title-wrap .hero-img img,
	body.single #page-title-wrap .hero-img img{
		height:50vh;
	}
	
	.single .post-detail .entry-header .entry-title {
	    font-size: var(--fz20);
	    line-height: 1.65;
	}
	
	.post-detail .entry-content iframe{
		max-width:100% !important;
	}
}



/* お問い合わせページ
--------------------------------------------- */
body.contact .page-title-wrap .page-summary{
	max-width: 650px;
}

body.contact #primary > .contents-inner{
	padding-top:50px;
}

.submit-container nf-field-element input[type="submit"]{
	
}


.field-wrap {
    flex-wrap: wrap;
}
.label-right .nf-field-description {
    margin-right: 0 !important;
}

select{
	padding: 0.4em 0.75em;
}

.list-select-wrap .nf-field-element{
	position:relative;
}
.list-select-wrap .nf-field-element::after{
    position: absolute;
    top: calc(50% - 5px);
    right: 15px;
    width: 10px;
    height: 10px;
    background-color: #535353;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
    pointer-events: none;
}
.list-select-wrap .nf-field-element select{
	appearance: none;
	border: 1px solid #ccc;
	background-color: #fff;
	border-radius: 3px;
	cursor: pointer;
}


@media (min-width: 769px) {
	.nf-before-form-content{
		text-align: right;
	}
	.label-above{
		margin-top:40px;
	}
	.label-above .field-wrap{
		display: flex;
		flex-wrap: nowrap;
		align-items: center;
	}
	.label-above .field-wrap > .nf-field-label{
		width:300px;
		padding-right:1em;
	}
	.label-above .field-wrap > .nf-field-element{
		width:calc(100% - 300px);
	}
	.submit-container .field-wrap > .nf-field-element{
		width:100%;
	}
	.label-above .field-wrap .nf-field-label {
	    margin-bottom: 0px;
	}
	#nf-field-6-container{
		max-width:500px;
	}
	#nf-field-7-container{
		margin-top:0;
	}
	.nf-form-cont .label-right,
	.label-above .nf-error-wrap,
	.nf-form-cont .nf-field-description{
		padding-left:300px;
	}
	.label-right .nf-field-description{
		padding-left:0px;
	}
	.nf-after-form-content .nf-error-field-errors{
		text-align:center;
	}
	.nf-form-cont .nf-field-description{
		order: 20;
	}
}
@media (max-width: 768px) {
	
}





/* OLIVE
--------------------------------------------- */
@media (max-width: 768px) {
	body.olive #page-title-wrap,
	body.medicpiedo #page-title-wrap{
		border-top: 53px solid rgba(0, 0, 0, 0.85);
	}
	body.olive #page-title-wrap .hero-img img,
	body.medicpiedo #page-title-wrap .hero-img img{
		height: 30vh;
	}
}



