/*!
Theme Name: asahiya
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: asahiya
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.

asahiya 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);

	--blue: #0A2537;
	--orange: #C47C52;

}

@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);
	}
}

/* :target { scroll-margin-top: 30px; } */


/* 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%;
}

/* Page遷移時のアニメーション
--------------------------------------------- */
body{
	animation: fadein 1.5s 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.67em 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: border-box;
}

html {

}

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

/* Typography
--------------------------------------------- */
html { font-size: 100%; }

body,
button,
input,
select,
optgroup,
textarea {
	color: #000;
	font-size: var(--fz15);
	font-family: "Lusitana", "Shippori Mincho", serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1.8;
	letter-spacing: 0.2em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight:normal;
	line-height: 1.6;
	clear: both;
	margin:0;
}

p {
	margin:0;
	margin-bottom: 1.5em;
}
p:last-child {
	margin-bottom: 0;
}

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

blockquote {
	margin: 0 1.5em;
}

address {
	font-style: normal;
	margin: 0 0;
}

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 (min-width: 769px) {

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

/* Elements
--------------------------------------------- */
body {
	color:#fff;
	line-height: 2.2;
	background: #0A2537;
}

hr {
	background-color: rgba(255,255,255,0.2);
	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 {
	display: block;
	height: auto;
	vertical-align:middle;
	max-width: 100%;
}

figure {
	margin: 1em 0;
}

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

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

a:visited {
	color: #fff;
}

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

a:focus {
	outline: thin dotted;
}

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

@media (min-width: 769px) {
	a[href*="tel:"] {
	    pointer-events: none;
	    cursor: default;
	    text-decoration: none;
	}
}
@media (max-width: 768px) {

}

/* 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: 3px;
}

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 {
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.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 {
	position: relative;
}

.main-navigation li.nav-sns {
	font-size: 1.5em;
}

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

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

@media screen and (min-width: 37.5em) {

	.menu-toggle {
		display: none;
	}

	.main-navigation ul {

	}
}

.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 1.5em; */
}

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

.page-content,
.entry-content,
.entry-summary {
	margin: 1.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%;
}

/* 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;
}



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

.content-width-wide .content-width{
	max-width:100%;
}


.small{
	font-size:0.87em;
	letter-spacing:0;
	margin:0;
}
.medium{

}

.heading{
/* 	line-height:1.3; */
}

.white{
	color:#fff;
}

.right{
	text-align: right;
}

.main-header{
	text-align:center;
	margin-bottom:80px;
}
.main-title{
	font-size:var(--fz25);
	letter-spacing: 0.25em;
}
.main-title + p{
	margin-top:1.5em;
}

.color{
	color:var(--blue);
}

.text-blue{
	color:var(--blue);
}
.bg-blue,
a.bg-blue{
	color:#fff;
	background-color:var(--blue);
}
.bg-darkblue,
a.bg-darkblue{
	color:#fff;
	background-color:var(--aitech-darkblue);
}
.bg-blue a,
.bg-darkblue a{
	color:#fff;
}

.content-block > .inner{
	padding:80px 0 130px;
}

.bg-dark .inner{
	padding: 100px 0;
}

.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;
}

.tel-num::before{
/*
	content:'\f095';
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	
	font-size:0.85em;
	margin-right:0.15em;
*/
}

.textillate{
	visibility: hidden;
}

.text-dot{
	position:relative;
}
.text-dot::before{
	content:"・";
	line-height: 1;
	position:absolute;
	left:50%;
	top: -0.65em;
	transform: translate(-50%, 0);
}

.movie-wrap{
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 56.25%;
}
.movie-wrap iframe{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.btn-wrap{
	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"]{
	display: flex;
	justify-content: center;
	align-items:center;
	font-size:var(--fz19);
	text-decoration:none;
	line-height:1.3;
	background-color:var(--orange);
	padding:8px 30px;
	position:relative;
	cursor: pointer;
	transition:all 0.3s ease-in-out 0s;
}
.btn-wrap a::before,
a .btn-wrap > span::before,
.btn-wrap > span.more::before{
	content:"▼";
	font-size: 0.8em;
	margin-right:0.5em;
	transform: rotate(-90deg);
	transition:all 0.3s ease-in-out 0s;
}
.btn-wrap input[type="submit"],
.btn-wrap input[type="button"]{
	min-width: 200px;
	padding:12px 40px;
	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"]{
	color:var(--orange);
	background:#fff;
}
.btn-wrap a:hover::before,
.btn-wrap > span.more:hover::before,
a:hover .btn-wrap > span::before,
.btn-wrap input[type="submit"]:hover::before,
.btn-wrap input[type="button"]:hover{
}

.btn-wrap input[type="button"].wpcf7-previous{
	min-width: 100px;
	color:#808080;
}
.btn-wrap input[type="button"].wpcf7-previous:hover{
	color:#fff;
	background:#808080;
}

.bg-blue .btn-wrap a,
a.bg-blue .btn-wrap > span,
.bg-blue a .btn-wrap > span{
	color:var(--blue);
	background:#fff;
	transition:all 0.3s ease-in-out 0s;
}
.bg-blue .btn-wrap a::before,
a.bg-blue .btn-wrap > span::before,
.bg-blue a .btn-wrap > span::before{
	color:#fff;
	background:var(--blue);
}
.bg-blue .btn-wrap a:hover,
a.bg-blue:hover .btn-wrap > span,
.bg-blue a:hover .btn-wrap > span{
	opacity:0.8;
}


.title-wrap{
	margin-bottom: 50px;
}
.title-wrap .title{
	font-size:var(--fz16);
	letter-spacing: 0.2em;
}

.page-title-wrap{
	margin-bottom:100px;
}

.heading{
	font-size:var(--fz23);
}

.form dl{
	display:flex;
	flex:wrap;
	padding:15px 0;
	margin: 0;
}
.form dl:first-child{

}
.form dl dt{
	width:250px;
	font-size: var(--fz16);
}
.form dl dd{
	width:calc(100% - 250px);
	margin: 0;
}
.form dl dd input{
}
.form dl dd input[type="text"],
.form dl dd input[type="email"],
.form dl dd textarea{
	width:100%;
	background:#F9F9F8;
	border:1px solid #211815;
	padding: 10px 12px;
}
.form .required dt::after{
	content:"※";
    font-size: 0.7em;
	margin-left: 0.5em;
    position: relative;
    top: -0.4em;
}


.wpcf7-list-item.first {
	margin-left: 0;
}
.btn-wrap .wpcf7-spinner{
	position:absolute;
	right:0;
}

.swiper-wrapper{
	margin:0;
	padding:0;
}

@media (min-width: 769px) {
	.pc-none{
		display:none;
	}
	.pc-flex{
		display:flex;
	}
	
	.font-script{
		font-size:72px;
	}

}
@media (max-width: 768px) {
	.sp-none{
		display:none;
	}
	.sp-flex{
		display:flex;
	}
	
	.bg-dark .inner {
		padding: 60px 0;
	}
	
	.bg-lattice-tl,
	.bg-lattice-tr,
	.bg-lattice-bl,
	.bg-lattice-br{
		background-size:85% auto;
	}
	
	.main-header {
		margin-bottom: 30px;
	}
	.main-title {
		font-size: var(--fz16);
	}
	.main-title + p {
		width:80%;
		text-align:left;
		margin: 1.5em auto 0;
	}

	.title-wrap {
	    margin-bottom: 30px;
	}

	.content-block > .inner{
		padding:50px 0 80px;
	}
	
	.btn-wrap a{
		font-size:var(--fz15);
	}
	.btn-wrap a span.btn-inner{
		padding: 5px 20px;
	}
	
	.font-script{
		font-size:var(--fz44);
	}
	
	#photo-gallery {
		padding: 80px 0;
	}
	.home #photo-gallery,
	.en #photo-gallery{
		padding: 6% 0;
	}
	#photo-gallery .photo-list > *,
	#photo-gallery .photo-list3 > * {
		width: 100%;
	}
	#photo-gallery .photo-list img,
	#photo-gallery .photo-list3 img{
		aspect-ratio: 5/3 !important;
	}
	#photo-gallery .photo-list2{
		display: flex;
		flex-wrap: wrap;
	}
	
	.form dl{
		display:block;
		    padding: 15px 0;
	}
	.form dl dt,
	.form dl dd {
		width: 100%;
	}
	.form dl dt{
		margin-bottom: 0.25em;
	}
	.form dl dd input[type="text"],
	.form dl dd input[type="email"],
	.form dl dd textarea{
		font-size: var(--fz18);
	}
}


/*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*/



a:hover .shake-o-h,
.shake-o-h:hover {
    -webkit-animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
    animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

@-webkit-keyframes shake {
    10%,
    90% {
        -webkit-transform: translate3d(-1px, 0, 0);
        transform: translate3d(-1px, 0, 0);
    }
    20%,
    80% {
        -webkit-transform: translate3d(2px, 0, 0);
        transform: translate3d(2px, 0, 0);
    }
    30%,
    50%,
    70% {
        -webkit-transform: translate3d(-2px, 0, 0);
        transform: translate3d(-2px, 0, 0);
    }
    40%,
    60% {
        -webkit-transform: translate3d(2px, 0, 0);
        transform: translate3d(2px, 0, 0);
    }
}

@keyframes shake {
    10%,
    90% {
        -webkit-transform: translate3d(-1px, 0, 0);
        transform: translate3d(-1px, 0, 0);
    }
    20%,
    80% {
        -webkit-transform: translate3d(2px, 0, 0);
        transform: translate3d(2px, 0, 0);
    }
    30%,
    50%,
    70% {
        -webkit-transform: translate3d(-2px, 0, 0);
        transform: translate3d(-2px, 0, 0);
    }
    40%,
    60% {
        -webkit-transform: translate3d(2px, 0, 0);
        transform: translate3d(2px, 0, 0);
    }
}



/* Layout
--------------------------------------------- */

#masthead{
	display:flex;
	justify-content: space-between;
	width:100%;
	padding: 20px 3%;
	position:fixed;
	top:0;
	left:0;
	z-index:4;
}
#masthead .site-branding{
	position: relative;
    z-index: 2;
}
#masthead .site-branding .site-title{
	display:flex;
	align-items:center;
}
#masthead .site-branding .logo{
	width:36px;
	margin-right: 25px;
}
#masthead .site-branding .site-copy{
	font-size: var(--fz20);
	line-height: 1.5;
	white-space:nowrap;
}

.header-lang-link{
	position: fixed;
    top: 20px;
    right: 100px;
}
.header-lang-link a{
	display: block;
	font-size: var(--fz17);
    padding: 0.4em;
}

.today{
/* 	text-shadow: 0 0 15px var(--blue); */
	text-shadow: 0 0 7px rgba(10,37,50,0.25);
	position: fixed;
	right: -3em;
	top: 50%;
	z-index: 2;
    transform: translate(0%, -50%) rotate(90deg);
    transform-origin: center;
}


main#primary{
	padding:200px 0 200px;
}


.page-header{
	margin-bottom:80px;
}
.page-header.flex{
	display:flex;
	justify-content: space-between;
	align-items:flex-end;
	flex-wrap: wrap;
}
.page-header .text{
	text-align:center;
}
.page-header.flex .text{
	width:35%;
	text-align:left;
}
.page-header.flex .text .inner{
	margin-left: auto;
	max-width: 400px;
	width: 70%;
	padding-right: 30px;
}
.page-header .text h1.page-title{
	font-size: var(--fz27);
}
.page-header .text p.page-title{
	font-size: var(--fz14);
}
.page-header.flex .text p.page-title{
	font-size: var(--fz20);
	margin-top:2em;
}
.page-header.flex .post-thumbnail{
	width:65%;
}
.page-header.flex .post-thumbnail img{
	aspect-ratio: 9 / 4;
    object-fit: cover;
}


footer#colophon{
	color:var(--blue);
	background:#fff;
	padding:85px 0;
}
footer#colophon a{
	color:var(--blue);
}
footer#colophon .inner{
	display:flex;
	justify-content: space-between;
}
footer#colophon nav{
	display:flex;
}
footer#colophon nav ul{
	font-size: var(--fz14);
	padding:0;
	margin:0;
	list-style:none;
}
footer#colophon nav > ul > li + li{
	margin-top:1.5em;
}
footer#colophon nav ul ul{
	font-size: var(--fz11);
	line-height:2;
	border-left:1px solid var(--blue);
	padding:0 0 0 1.5em;
	margin:5px 0 0 5px;
	list-style:none;
}
footer#colophon nav ul + ul{
	margin-left:100px;
}
footer#colophon .site-info{
	text-align:right;
}
footer#colophon .logo{
	width:60px;
	margin-left:auto;
	margin-bottom: 45px;
}
footer#colophon address{
	font-size: var(--fz12);
	line-height: 1.8;
}

@media (max-width: 768px) {
	#masthead{
		padding: 15px 6%;
	}
	#masthead .site-branding .logo {
	    width: 20px;
	    margin-right: 15px;
	}
	#masthead .site-branding .site-copy {
	    font-size: var(--fz10);
	}
	
	.header-lang-link {
	    top: 16px;
	    right: 72px;
	}
	.header-lang-link a {
	    font-size: var(--fz14);
	}
	
	.today{
		display:none;
	}
	
	main#primary {
	    padding: 100px 0 150px;
	}
	
	.page-header.flex{
		position:relative;
	}
	.page-header.flex .text{
		position:absolute;
		top:10%;
		left:0;
		width:100%;
	}
	.page-header.flex .text .inner {
	    margin-left: 0;
	    max-width: none;
	    width: 100%;
	    padding-right: 30px;
	    padding-left: 7%;
	}
	.page-header.flex .text p.page-title {
	    margin-top: 1em;
	}
	.page-header.flex .post-thumbnail{
		width:80%;
		margin-left: auto;
	}
	.page-header.flex .post-thumbnail img {
	    aspect-ratio: 3 / 5;
	}
	
	footer#colophon {
	    padding: 50px 0;
	}
	footer#colophon .inner{
		display:block;
	}
	footer#colophon nav{
		display:block;
	}
	footer#colophon nav ul + ul {
		margin-top: 2em;
	    margin-left: 0px;
	}
	footer#colophon nav > ul > li + li {
	    margin-top: 2em;
	}
	footer#colophon .site-info{
		display: flex;
		align-items: center;
		text-align:left;
		gap:20px;
		margin-top: 80px;
	}
	footer#colophon .logo {
	    margin-left: 0;
	    margin-bottom: 0;
	}
}


/* nav
--------------------------------------------- */

/* ハンバーガーメニュー */
.hamburger-overlay {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 1000;
	width: 64px;
	height: 45px;
	padding: 20px;
	border: none;
	background: transparent;
	cursor: pointer;
}

.hamburger-overlay__line {
	position: absolute;
	left: 11px;
	width: 44px;
	height: 1px;
	background-color: #fff;
	transition: all .6s;
}

.hamburger-overlay__line:nth-of-type(1) { top: 14px; }
.hamburger-overlay__line:nth-of-type(2) { top: 23px; }
.hamburger-overlay__line:nth-of-type(3) { top: 32px; }

.hamburger-overlay.active .hamburger-overlay__line {
	background-color: #fff;
}

.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);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  background-color: #C47C52;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease; /* 軽いフェードで開閉 */
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-overlay__content{
	display:flex;
	gap: 80px;
	width: 90%;
	max-width: 1100px;
}
.nav-overlay__content nav{
/* 	column-count: 2; */
	display:flex;
	width:70%;
}
.nav-overlay__content nav > *{
	width:40%;
}
.nav-overlay__content nav > *:last-child{
	width:60%;
}
.nav-overlay__content .site-info.nav-group{
	width:30%;
}
.nav-overlay__content .nav-group dt{
	font-size: var(--fz30);
	letter-spacing: 0.2em;
	line-height:1.5;
}
.nav-overlay__content .nav-group ul{
	padding:0;
	margin:1em 0 0;
	list-style:none;
}
.nav-overlay__content .nav-group ul li{
	display:flex;
	flex-wrap:wrap;
/* 	align-items:center; */
	line-height: 1.4;
}
.nav-overlay__content .nav-group ul li + li{
	margin-top:0.75em;
}
.nav-overlay__content .nav-group ul li::before{
	content:"";
	display:block;
	width:20px;
	height:1px;
	background:rgba(255,255,255,0.5);
	margin-top: 0.6em;
	margin-right: 15px;
}
.nav-overlay__content .nav-group ul li a{
	width:calc(100% - 35px);
}
/*
.nav-overlay__content .nav-menu,
.nav-overlay__content .nav-shop
*/
.nav-overlay__content .nav-group + .nav-group{
	margin-top:50px;
}

.nav-overlay__content .tel-num span{
	display:inline-block;
	font-size: var(--fz17);
	letter-spacing: 0.3em;
	border-bottom:1px solid #fff;
	margin-bottom:0.75em;
}
.nav-overlay__content .biz-time{
	font-size: var(--fz14);
	line-height:1.5;
}
.nav-overlay__content address{
	margin-bottom:1.5em;
}
.nav-overlay__content .mail-to{
	font-size: var(--fz17);
}

@media (max-width: 768px) {
	.hamburger-overlay__line {
	    width: 34px;
	}
	.hamburger-overlay{
		top: 15px;
		right: 15px;
		width: 56px;
		height: 42px;
	}
	.hamburger-overlay__line:nth-of-type(2) {
	    top: 21px;
	}
	.hamburger-overlay__line:nth-of-type(3) {
	    top: 28px;
	}
	.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
	    transform: translateY(7px) rotate(-19deg);
	}
	.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
	    transform: translateY(-7px) rotate(19deg);
	}
	
	.nav-overlay{
		overflow-y: scroll;
		display:block;
	}
	.nav-overlay__content{
		display:block;
		width: 80%;
		padding: 100px 0 60px;
        margin: 0 auto;
	}
	.nav-overlay__content .nav-menu,
	.nav-overlay__content .nav-shop {
	    margin-top: 30px;
	}
	.nav-overlay__content nav {
	    column-count: auto;
	    display: block;
	    width: 100%;
	}
	.nav-overlay__content nav > *,
	.nav-overlay__content nav > *:last-child,
	.nav-overlay__content .site-info.nav-group {
	    width: 100%;
	}
	.nav-overlay__content .nav-group + .nav-group,
	.nav-overlay__content .site-info.nav-group {
	    margin-top:1.5em;
	}
	.nav-overlay__content .nav-group dt {
	    font-size: var(--fz22);
	}
	.nav-overlay__content nav .nav-group dd {
	    display:none;
	}
	.nav-overlay__content .nav-group ul {
		padding-left:1.5em;
	    margin: 0.3em 0 0;
	}
	.nav-overlay__content .site-info.nav-group dd{
		padding-left:1.5em;
	}
}



/* Common parts
--------------------------------------------- */
.page .entry-content{
	margin-bottom: 80px;
}

.block-title-wrap{
	text-align:center;
	margin-bottom: 70px;
}
.block-title-wrap .block-tittle-en{
	font-size: var(--fz20);
	letter-spacing: 0.2em;
	margin-bottom: 20px;
}
.block-title-wrap .block-tittle-ja{
	font-size: var(--fz15);
	margin-bottom: 0;
}

article section{

}
article section + section{
	margin-top:150px;
}

.wp-pagenavi{
	display:flex;
	justify-content: center;
	align-items:center;
	gap: 3.5em;
	font-size: var(--fz20);
	line-height:1;
	letter-spacing: 0;
	margin-top: 4em;
}
.wp-pagenavi .current{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.5em;
    height: 2.5em;
/* 	color: var(--blue); */
	border-radius: 50%;
/* 	background:#fff; */
	border:1px solid rgba(255,255,255,0.25);
	border-radius:50%;
/* 	margin: 0 0.25em; */
}
.wp-pagenavi .first,
.wp-pagenavi .last,
.wp-pagenavi .extend,
.wp-pagenavi .extend + .larger.page{
	display:none;
}

@media (max-width: 768px) {
	.block-title-wrap .block-tittle-en {
	    margin-bottom: 8px;
	    line-height: 1.5;
	}
	.block-title-wrap .block-tittle-ja {
	    font-size: var(--fz13);
	}
	
	.wp-pagenavi{
		justify-content: space-around;
		gap:0;
		font-size: var(--fz13);
	}
	.wp-pagenavi .current{
		width: 3em;
		height: 3em;
	}
}



/* Home
--------------------------------------------- */
.home main#primary,
.en main#primary {
	height: 100svh;
    padding: 0;
    position:relative;
}
.home .site-branding .home-header-copy-ja,
.en .site-branding .home-header-copy-ja{
	font-size: var(--fz20);
	margin-bottom: 0.7em;
}
.home .site-branding .home-header-copy-en,
.en .site-branding .home-header-copy-en{
	font-size: var(--fz11);
	line-height: 1.7;
}
.en .site-branding .home-header-copy-en{
	font-size: var(--fz20);
}
#home-main-text{
	width:60%;
	max-width:450px;
	position:absolute;
	top:50%;
	left:50%;
	z-index: 3;
	transform:translate(-50%,-50%);
	pointer-events: none;
}

#mv-wrap{
	width:100%;
	height:100%;
	position:relative;
}
#mv-wrap::before{
	content:"";
	width:100%;
	height:100%;
	background:rgba(0,0,0,0.3);
	position:absolute;
	top:0;
	left:0;
	z-index: 2;
}
#mv-wrap .swiper{
	height:100%;
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
#mv-wrap .swiper-slide-active.swiper-slide img,
#mv-wrap .swiper-slide-duplicate-active.swiper-slide img,
#mv-wrap .swiper-slide-prev.swiper-slide img {
	animation: zoomUp 7s linear 0s normal both;
}
#mv-wrap .swiper .swiper-slide img{
	width:100%;
	height:100%;
	object-fit:cover;
}

#mv-wrap .swiper-pagination{
	display: flex;
	gap:2em;
	position:absolute;
	top:50%;
	left:3%;
	z-index: 3;
	transform: translate(-50%, -50%) rotate(90deg);
	transform-origin: center;
}
#mv-wrap .swiper-pagination span{
	font-size: var(--fz13);
	cursor: pointer;
}
#mv-wrap .swiper-pagination span.swiper-pagination-bullet-active{
	color:var(--orange);
}


.swiper-fade .swiper-container-free-mode .swiper-slide {
      transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
}
.swiper-fade .swiper-slide.swiper-slide-visible {
    pointer-events: auto;
}
.swiper-fade .swiper-container-free-mode .swiper-slide {
      pointer-events: none;
}
.swiper-fade .swiper-slide-active .swiper-slide-active {
      pointer-events: auto;
}

.infinity-smooth-slide .swiper-wrapper {
	transition-timing-function: linear;
}

.carousel-slide{
	position:relative;
}
.carousel-slide .swiper-button-prev,
.carousel-slide .swiper-button-next{
	display:block;
	width: 20px;
	height: 40px;
	position:absolute;
	top:50%;
	transform:translateY(-50%);
}
.carousel-slide .swiper-button-prev{
	left: -50px;
}
.carousel-slide .swiper-button-next{
	right: -50px;
}
.carousel-slide .swiper-button-prev span,
.carousel-slide .swiper-button-next span{
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}
.carousel-slide .swiper-button-prev span::before,
.carousel-slide .swiper-button-prev span::after,
.carousel-slide .swiper-button-next span::before,
.carousel-slide .swiper-button-next span::after{
	content: "";
	position: absolute;
	top: calc(50% - 0px);
	width: 27px;
	height: 1px;
	border-radius: 9999px;
	background-color: var(--orange);
}
.carousel-slide .swiper-button-prev span::before,
.carousel-slide .swiper-button-prev span::after{
	left: 0;
	transform-origin: 0px 50%;
}
.carousel-slide .swiper-button-next span::before,
.carousel-slide .swiper-button-next span::after{
	right: 0;
	transform-origin: calc(100% - 0px) 50%;
}
.carousel-slide .swiper-button-prev span::before{
	transform: rotate(45deg);
}
.carousel-slide .swiper-button-prev span::after{
	transform: rotate(-45deg);
}
.carousel-slide .swiper-button-next span::before{
	transform: rotate(-45deg);
}
.carousel-slide .swiper-button-next span::after{
	transform: rotate(45deg);
}
.swiper-button-disabled{
	opacity:0.5;
}
.swiper-button-prev:not(.swiper-button-disabled),
.swiper-button-next:not(.swiper-button-disabled){
	cursor: pointer;
}

@media (min-width: 769px) {
	#home-pickup{
		width: 90%;
		position:absolute;
		right:5%;
		bottom:0;
		z-index: 3;
	}
	#home-pickup .swiper-wrapper{
		display:flex;
		justify-content: flex-end;
		align-items: flex-end;
		gap:30px;
		padding-top: 10px;
	}
	#home-pickup a{
		display: flex;
        align-items: center;
		max-width: 260px;
	    width: 100%;
	    min-height: 76px;
		border-left: 1px solid #fff;
		border-bottom:6px solid var(--orange);
		padding: 11px 55px 9px 25px;
		position:relative;
	}
	#home-pickup .pickup-title{
	    display: flex;
	    align-items: center;
	    height: 100%;
		font-size: var(--fz13);
		letter-spacing: 0.1em;
	}
	#home-pickup .pickup-sub{
		display:flex;
		align-items:center;
		width:100%;
		font-size: var(--fz14);
		line-height: 1;
		white-space:nowrap;
		position:absolute;
		top:0;
		right:0;
		transform: translateY(-50%);
	}
	#home-pickup .pickup-sub::before{
		content:"";
		height:1px;
		width:100%;
		background:#fff;
		margin-right:0.5em;
	}
}
@media (max-width: 768px) {
	.home .site-branding .home-header-copy-ja,
	.en .site-branding .home-header-copy-ja {
	    font-size: var(--fz14);
	    margin-bottom: 0.4em;
	}
	.home .site-branding .home-header-copy-en,
	.en .site-branding .home-header-copy-en {
	    font-size: var(--fz8);
	}
	
	.carousel-slide .swiper-button-prev {
	    left: -22px;
	}
	.carousel-slide .swiper-button-next {
	    right: -22px;
	}
	.carousel-slide .swiper-button-prev,
	.carousel-slide .swiper-button-next {
	    width: 14px;
	    height: 25px;
	}
	.carousel-slide .swiper-button-prev span::before,
	.carousel-slide .swiper-button-prev span::after,
	.carousel-slide .swiper-button-next span::before,
	.carousel-slide .swiper-button-next span::after {
	    width: 17px;
	}
	
	#home-main-text {
    	width: 70%;
	}
	
	#mv-wrap .swiper-pagination{
		display:none;
	}
	
	#home-pickup{
		position:fixed;
		left:0;
		bottom:0;
		z-index: 3;
		width:100%;
	}
	#home-pickup .swiper-wrapper{
		align-items: flex-end;
	}
	#home-pickup a{
		display:flex;
		align-items:center;
		width:100%;
		border-bottom:6px solid var(--orange);
		padding: 11px 15px 11px 20px;
	}
	#home-pickup .pickup-title{
		font-size: var(--fz13);
		letter-spacing: 0.1em;
		display: block;
		overflow: hidden;
	}
	#home-pickup .pickup-title span{
		white-space: nowrap;
		display: inline-block;
	}
	#home-pickup .pickup-title br{
		display:none;
	}
	#home-pickup .pickup-sub{
		font-size: var(--fz13);
		line-height: 1;
		border-right:1px solid #fff;
		padding:5px 1em 5px 0;
		margin-right:1em;
		white-space: nowrap;
	}
	/* アニメーション用クラス */
	.scroll-text {
		display: inline-block;
		animation: scrollText linear 1 forwards;
	}
	@keyframes scrollText {
		0%   { transform: translateX(0); }
		100% { transform: translateX(-100%); } 
	}
}



/* About
--------------------------------------------- */
body.about .page-header{
	margin-bottom:100px;
}
body.about .page-title.logo{
	width:66px;
	margin:0 auto;
}

.about-content{
	margin-bottom: 170px;
}
.about-content .text{
	display:flex;
}
.about-content .img + .text{
	margin-top:60px;
}
.about-content .text .title{
	width:45%;
	font-size: var(--fz20);
}
.about-content .text > div{
	width:55%;
}

#shop-location .img{
	display:flex;
	gap:20px;
}
#shop-location .img img{
	width:100%;
}


.shop-info{
	margin-bottom:200px;
}
.info-group{
	margin-top:45px;
}
.info-group dl{
	display:flex;
	flex-wrap:wrap;
}
.info-group dl dt{
	width:130px;
}
.info-group dl dd{
	width:calc(100% - 130px);
}

#access-map iframe{
	width:100%;
	height:580px;
}


#shop-location .swiper-slide{
/*
	aspect-ratio:2/3;
	object-fit:cover;
*/
}
#shop-location-galley{
	margin-bottom:80px;
}

#about-scene .slide-item{
	display:flex;
	flex-wrap:wrap;
	flex-direction: row-reverse;
}
#about-scene .slide-item > *{
	width:50%;
}
#about-scene .slide-item > img{
	aspect-ratio:5/6;
	object-fit:cover;
}
#about-scene .slide-item > .text{
	color:#fff;
	background:var(--orange);
	padding:50px;
}
#about-scene .slide-item > .text dt{
	font-size: var(--fz14);
	margin-bottom:3em;
}
#about-scene .slide-item > .text dd{
	font-size: var(--fz25);
	line-height: 1.75;
}

#about-scene ol{
	counter-reset: listnum;
	list-style: none;
}
#about-scene ol dt::after{
	counter-increment: listnum;
	content: counter(listnum);
}

#about-staff ul{
	padding:0;
	margin:0;
	list-style:none;
}
#about-staff li{
	display:flex;
	gap:50px;
}
#about-staff li + li{
	margin-top:120px;
}
#about-staff li .img{
	width:35%;
}
#about-staff li .text{
	width:65%;
}
#about-staff li .staff-name{
	font-size: var(--fz25);
	margin-bottom:1em;
}

@media (min-width: 769px) {
	.info-group dl dd small::before{
		content:"（";
	}
	.info-group dl dd small::after{
		content:"）";
	}
}
@media (max-width: 768px) {
	body.about .page-header {
	    margin-bottom: 60px;
	}
	body.about .page-title.logo {
	    width: 15%;
	    max-width: 55px;
	}
	
	.about-content {
	    margin-bottom: 100px;
	}
	.about-content .img,
	#shop-info .img {
	    margin-left: -6.5%;
	    margin-right: -6.5%;
	}
	.about-content .text {
	    display: block;
	}
	.about-content .text .title,
	.about-content .text > div{
		width:100%;
	}
	.about-content .text .title{
		margin-bottom: 1.5em;
	}
	
	#about-scene .carousel-slide{
		max-width: 83%;
	}
	#about-scene .slide-item > .text {
	    padding: 15px;
	}
	#about-scene .slide-item > .text dt {
	    font-size: var(--fz10);
	    margin-bottom: 1em;
	}
	#about-scene .slide-item > .text dd {
	    font-size: var(--fz15);
	}
	#about-scene .slide-item > img {
	    aspect-ratio: 1 / 1;
	}
	
	#shop-movie .img{
		max-width: 100%;
		margin-bottom: 30px;
	}
	
	#about-staff li {
	    flex-wrap: wrap;
	    align-items:flex-end;
	    gap: 20px;
	}
	#about-staff li .img {
	    width:40%;
	}
	#about-staff li .text {
	    width:calc(60% - 20px);
	}
	#about-staff li .staff-name {
	    font-size: var(--fz19);
	    margin-bottom: 0;
	}
	
	.shop-info {
	    margin-bottom: 70px;
	}
	.info-group dl{
		font-size: var(--fz12);
	}
	.info-group dl + dl{
		margin-top:1.5em;
	}
	.info-group dl dt {
	    width: 105px;
	}
	.info-group dl dd {
	    width: calc(100% - 105px);
	}
	.info-group dl dd small {
	    display: block;
		border-left: 1px solid rgba(255,255,255,0.5);
		padding-left:1.5em;
	}
	
	#access-map{
		padding: 0 5%;
	}
	#access-map iframe{
		height:90vw;
	}
}




/* Menu
--------------------------------------------- */

.menu-anchor,
.menu-anchor > a,
.menu-anchor .menu-anchor-nav ul{
	display:flex;
	justify-content: center;
	line-height: 1.2;
}
.menu-anchor{
	margin-bottom: 100px;
}
.menu-anchor .todays-menu{
	align-items: center;
	color:#000;
	background:#fff;
	padding:15px 30px;
	margin-right:1em;
}
.menu-anchor .menu-anchor-nav{
	color:#fff;
	background:var(--orange);
	padding:15px 10px;
}
.menu-anchor .menu-anchor-nav ul{
	padding:0;
	margin:0;
	list-style:none;
}
.menu-anchor .menu-anchor-nav li + li{
	border-left:1px solid #fff;
}
.menu-anchor .menu-anchor-nav li a{
	display:block;
	font-size: var(--fz14);
	padding:5px 20px;
}

.menu-gallery-flex{
	display:flex;
	gap:10px;
}
.menu-gallery-flex .img{
	width:100%;
}

.menu-group{
	margin-top:160px;
}
.menu-group + .menu-group{
	margin-top:300px;
}

.menu-group-title{
	font-size: var(--fz18);
	color:#fff;
	background:var(--orange);
	text-align:center;
	padding:15px;
	margin-bottom: 60px;
}

.menu-group > section{
	margin-top:120px;
}

.menu-list-title-wrap .inner{
	border-bottom:1px solid #fff;
	padding-bottom:0.5em;
}
.menu-list-title-wrap.course-layout .inner{
	display:flex;
	justify-content: space-between;
	align-items:flex-end;
}
.menu-list-title-wrap.course-layout .inner .course-price{
	line-height:1.4;
	margin-left:auto;
}
.menu-list-title-wrap .inner *{
	font-size: var(--fz20);
}
.menu-course-note{
	font-size: var(--fz12);
	text-align:right;
	margin-top:0.5em;
}
.menu-list-comment{
	font-size: var(--fz14);
	margin-top:2.0em;
}
.menu-list{
	border-bottom:1px solid rgba(255,255,255,0.25);
	margin-top: 40px;
	position:relative;
}
.menu-list::after{
	content:"";
	width:25px;
	border-bottom:1px solid #fff;
	position:absolute;
	bottom:-1px;
	left:0;
}
.menu-list.normal-menu{
	margin-top: 80px;
}
.menu-list-item{
	display:flex;
}
.menu-list-item{
	flex-wrap:wrap;
	border-top:1px solid rgba(255,255,255,0.25);
	padding:15px 0;
	position:relative;
}
.menu-list-item::before{
	content:"";
	width:25px;
	border-top:1px solid #fff;
	position:absolute;
	top:-1px;
	left:0;
}
.menu-list.normal-menu .menu-list-item{
	justify-content: space-between;
}
.menu-list-item p{
	margin:0;
}

.normal-menu .menu-list-item > div{
	width:calc(100% - 90px);
}
.normal-menu .menu-list-item .menu-price{
	width:90px;
	text-align:right;
}
.course-menu .menu-list-item .menu-name{
	width:200px;
	font-size: var(--fz14);
}
.course-menu .menu-list-item.no-txt .menu-name{
	width:auto;
}
.course-menu .menu-list-item .menu-text{
	width:calc(100% - 200px);
	font-size: var(--fz14);
}

@media (min-width: 769px) {
	.menu-anchor .menu-anchor-nav ul {
	    flex-wrap: wrap;
	    gap: 10px 0;
	}
}
@media (max-width: 768px) {
	.menu-anchor{
		display:block;
	}
	.menu-anchor .todays-menu {
	    margin-right: 0em;
	    margin-bottom:1.5em;
	}
	.menu-anchor .menu-anchor-nav{
		overflow-x: scroll;
	}
	.menu-anchor .menu-anchor-nav ul {
		justify-content: flex-start;
	    white-space: nowrap;
	}
	
	.menu-gallery-flex{
		flex-wrap:wrap;
		gap:6px;
	}
	.menu-gallery-flex .img{
		width:calc(50% - 3px);
	}
	
	.menu-group > section {
	    margin-top: 80px;
	}
	.menu-group > section + section{
		margin-top:150px;
	}
	.menu-group + .menu-group {
	    margin-top: 200px;
	}
	.menu-group-title{
		font-size: var(--fz17);
		padding:10px;
		margin-bottom: 30px;
	}
	
	.menu-list-title-wrap .inner {
/* 	    position: relative; */
/* 	    margin-bottom: 6em; */
	}
	.menu-list-title-wrap.course-layout .inner{
		flex-wrap:wrap;
	}
	.menu-list-title-wrap.course-layout .inner .course-price{
/*
		position: absolute;
	    right: 0;
	    bottom: -2em;
*/
	}
	.menu-list-comment + .menu-list{
		margin-top:1em;
	}
	
	.menu-list.normal-menu .menu-list-item {
	    align-items:flex-end;
	}
	
	.course-menu .menu-list-item .menu-name {
	    width: 30%;
	}
	.course-menu .menu-list-item .menu-text {
	    width: 70%;
	    line-height: 1.8;
	}
}



/* Todays menu
--------------------------------------------- */

#todays-menu{
	color:#000;
	background:#F6EEE1;
	padding:30px;
}

#todays-menu header{
	display:flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom:80px;
	position:relative;
}
#todays-menu .logo-wrap{
	display:flex;
	align-items: flex-end;
}
#todays-menu .logo-wrap .logo{
	width:36px;
	margin-right:20px;
}
#todays-menu .logo-wrap .site-copy{
	font-size: var(--fz11);
	line-height:1.4;
}
#todays-menu .page-title{
	font-size: var(--fz19);
	text-align:center;
	line-height: 1;
	position:absolute;
	top:0;
	left:50%;
	transform:translateX(-50%);
}
#todays-menu .about-icon{
	border:4px double rgba(0,0,0,0.5);
	padding:5px 20px;
	margin:0;
	list-style:none;
}
#todays-menu .about-icon li{
	font-size: var(--fz11);
	line-height: 2;
}

#todays-menu-contents{
	display: flex;
	align-items:flex-start;
    gap: 4em;
}
#todays-menu-contents .layout-column{
	width:100%;
}
.menu-group-wrap + .menu-group-wrap{
	margin-top:3em;
}
.todays-menu-group-title{
	text-align:center;
	margin-bottom:20px;
}
.todays-menu-item{
	display:flex;
	justify-content: space-between;
	align-items:flex-end;
	font-size: var(--fz12);
	line-height: 1.4;
	letter-spacing: 0.15em;
}
.todays-menu-item + .todays-menu-item{
	margin-top:1.3em;
}
.todays-menu-item .menu-ken-syun{
	font-size: var(--fz9);
}
.todays-menu-item .menu-ken-syun + .menu-name{
	margin-top:0.5em;
}
.todays-menu-item.underline{
	border-bottom:1px dashed var(--orange);
	padding-bottom:1em;
}

#todays-menu-main{
	margin-top: -35px;
}
#todays-menu-main .todays-menu-group-title{
	margin-bottom: 10px;
}

#todays-menu-dessert{
	text-align:center;
	background:url(img/todays_menu_group_dessert_waku_side.svg) center center no-repeat;
	background-size: 100% auto;
	padding:30px;
	margin-top: 2em;
	position:relative;
}
#todays-menu-dessert::before{
	content:"";
	display:block;
	width:100%;
	height:30px;
	background:url(img/todays_menu_group_dessert_waku_top.svg) center top no-repeat;
	background-size: 100% auto;
	position:absolute;
	top:0;
	left:0;
}
#todays-menu-dessert::after{
	content:"";
	display:block;
	width:100%;
	height:30px;
	background:url(img/todays_menu_group_dessert_waku_bottom.svg) center bottom no-repeat;
	background-size: 100% auto;
	position:absolute;
	bottom:0;
	left:0;
}
#todays-menu-dessert .todays-menu-group-title{
	margin-bottom: 35px;
}
#todays-menu-dessert .todays-menu-group-title img{
	width: 35%;
    margin: auto;
}
#todays-menu-dessert .todays-menu-item{
	display:block;
}
#todays-menu-dessert .todays-menu-item + .todays-menu-item{
	margin-top: 2.3em;
}
#todays-menu-dessert .todays-menu-item .menu-name-wrap{
	display:flex;
	justify-content: center;
	margin-bottom: 0.6em;
}
#todays-menu-dessert .todays-menu-item .menu-name-wrap .menu-ken-syun{
	margin:0.2em 0.5em 0 0;
}
#todays-menu-dessert .todays-menu-item .menu-name-wrap .menu-name{
	margin:0;
}

@media (max-width: 768px) {
	#todays-menu{
		max-width:100%;
	}
	#todays-menu header{
		display: block;
		text-align: center;
		margin-bottom: 30px;
	}
	#todays-menu .logo-wrap{
		display:none;
	}
	#todays-menu .page-title{
		position:static;
		transform: none;
	}
	#todays-menu .about-icon{
		display: inline-block;
		margin-top: 1em;
	}
	
	#todays-menu-contents{
		display:block;
	}
	#todays-menu-main {
	    margin-top: 0px;
	}
	.layout-column + .layout-column{
		margin-top: 3em;
	}
}


@media print{
	body,
	#todays-menu{
/* 		background: #F6EEE1; */
		background: #fff !important;
	}
	#masthead,
	#colophon,
	.today,
	.page-header{
		display:none;
	}
	main#primary {
	    padding: 0;
	}
	.page .entry-content {
	    margin: 0;
	}
	.content-width{
		width:100%;
		max-width:100%;
	}
	#todays-menu{
		padding:0;
		position:relative;
	}
	#todays-menu header{
		display: flex;
	    justify-content: space-between;
	    align-items: flex-start;
	    margin-bottom: 80px;
	}
	#todays-menu .logo-wrap{
		display:flex;
	}
	#todays-menu .about-icon {
		margin-top:0 !important;
/*
	    position:absolute;
	    top:0;
	    right:0;
*/
	}
	#todays-menu-contents {
	    gap: 3em;
	}
	#todays-menu-contents {
        display: flex !important;
    }
    .layout-column + .layout-column {
        margin-top: 0 !important;
    }
    .todays-menu-item{
	    font-size: var(--fz14);
	    line-height: 1.3;
    }
    #todays-menu-main {
	    margin-top: -35px !important;
	}
}


/* News & Topics
--------------------------------------------- */

.news-cat-list{
	padding:0;
	margin:0;
	list-style:none;

	display:flex;
	justify-content: center;
	gap:15px;
	
	margin-bottom:150px;
}
.news-cat-list a{
	display:block;
	font-size: var(--fz14);
	line-height:1;
	padding: 0.55em 1.5em;
	border:1px solid #fff;
	border-radius:30px;
}
.news-cat-list a:hover,
.news-cat-list .current-cat a{
	color:#fff;
	background:var(--orange);
	border-color:var(--orange);
}


.news-list{
	display:flex;
	flex-wrap:wrap;
	gap:65px;
}
.news-list > *{
	width:calc(33.33% - 43.333px);
	margin-bottom:75px;
}
.news-list img{
	aspect-ratio:1/1;
	object-fit:cover;
	margin-bottom:25px;
}
.news-list .article-date{
	display: block;
	line-height: 1;
	margin-bottom:1em;
}
.news-list .heading{
	font-size: var(--fz20);
}
.cat-data{
    display: inline-block;
	font-size: var(--fz12);
	line-height:1;
	border:1px solid rgba(255,255,255,0.5);
	border-radius:30px;
	padding:7px 20px;
}
.news-list .cat-data{
	margin-top: 2em;
}
.entry-header .entry-meta{
	display: flex;
    align-items: center;
}
.entry-header .entry-meta .cat-data{
	margin-left:2em;
}
body.single article .entry-header{
	border-bottom:1px solid rgba(255,255,255,0.5);
	margin-bottom: 60px;
}
body.single article .entry-header .entry-title{
	font-size: var(--fz25);
	margin:0.65em 0;
}

@media (max-width: 768px) {
	.news-cat-list{
		flex-wrap: wrap;
		margin-top: -30px;
		margin-bottom: 60px;
	}
	.news-cat-list a{
		font-size: var(--fz11);
	}
	
	.cat-data{
	    font-size: var(--fz10);
	    padding: 4px 15px;
	}
	
	.news-list{
		display:block;
		border-top: 1px solid rgba(255, 255, 255, 0.25);
	}
	.news-list > *{
		width:100%;
		margin-bottom:0px;
	}
	.news-list > * a{
		display:flex;
		align-items:center;
		gap: 20px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.25);
		padding:1.8em 0;
	}
	.news-list > * a img{
		width:40%;
		margin: 0;
		aspect-ratio: 4 / 3;
	}
	.news-list > * a .text{
		width:60%;
	}
	.news-list .article-date{
	    font-size: var(--fz10);
	}
	.news-list .heading {
	    font-size: var(--fz13);
	}
	.news-list .cat-data {
	    font-size: var(--fz10);
	    padding: 4px 15px;
	    margin-top: 1.5em;
	}
	
	body.single article .entry-header{
		margin-bottom: 30px;
	}
	body.single article .entry-header .entry-title {
	    font-size: var(--fz20);
	}
	
}


.back-list-link{
	margin-top:200px;
}
.back-list-link a{
	font-size: var(--fz20);
	padding-left: 2.5em;
	position:relative;
}
.back-list-link a::before,
.back-list-link a::after{
	content: "";
    position: absolute;
    top: calc(45% - 0px);
    left: 0;
    transform-origin: 0px 50%;
    width: 19px;
    height: 1px;
    background-color: rgba(255,255,255,0.5);
}
.back-list-link a::before{
	transform: rotate(45deg);
}
.back-list-link a::after{
	transform: rotate(-45deg);
}

@media (max-width: 768px) {
	.back-list-link {
	    margin-top: 80px;
	}
	.back-list-link a {
	    font-size: var(--fz12);
	}
}


/* Shopping
--------------------------------------------- */
.shopping-detail{
	flex-wrap:wrap;
	justify-content: space-between;
}
.shopping-detail .shopping-img,
.shopping-detail .entry-content{
	width:47%;
	margin:0;
}
.thumbnail-slide-thum{
	overflow:visible;
	margin-top: 25px;
}
.thumbnail-slide-thum .swiper-wrapper{
	display: flex;
    flex-wrap: wrap;
    gap:16px;
}
.thumbnail-slide-thum .swiper-wrapper .swiper-slide{
	width:calc(25% - 12px) !important;
	cursor: pointer;
}

.shopping-detail .entry-content .entry-header{
	border:0;
	margin:0 0 2em;
}
.shopping-detail .entry-content .entry-header .entry-title{
	font-size: var(--fz25);
	margin:0;
}

.shopping-dokodemo-tag{
	margin-bottom:40px;
}
.shopping-dokodemo-tag .cartjs_product_table table{
	width:100% !important;
}
.shopping-dokodemo-tag .cartjs_product_table table td{
	text-align:right;
}
.shopping-dokodemo-tag .cartjs_product_table table .cartjs_sales_price td{
	font-size: var(--fz25) !important;
}
.shopping-dokodemo-tag .cartjs_box .cartjs_cart_in{
	width: 60% !important;
	margin-bottom:20px !important;
	position:relative;
}
.shopping-dokodemo-tag .cartjs_box .cartjs_cart_in::before{
	content:"\f07a";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position:absolute;
	top:50%;
	left:30px;
	transform: translateY(-50%);
	pointer-events: none;
}
.shopping-dokodemo-tag .cartjs_box .cartjs_cart_in input[type="submit"]{
	width: 100% !important;
	height: auto !important;
    padding: 15px 0 15px 20px;
	background-color: #C47C52 !important;
    border-radius: 0 !important;
    margin-bottom:0 !important;
}
.shopping-dokodemo-tag .cartjs_sk_link_other{
	width: 100% !important;
	text-align:center !important;
}

.shopping-mail-type-tag{
	padding: 20px 0;
	margin-bottom: 40px;
}
.shopping-mail-type-tag dl{
	display:flex;
	justify-content: space-between;
	align-items: center;
}
.shopping-mail-type-tag dl dd{
	font-size: var(--fz25);
}
.mail-btn a::before{
	content:"\f0e0";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	transform: rotate(0deg);
}

.shopping-other-item{
	margin-top:150px;
}
.shopping-other-item .title{
	font-size: var(--fz20);
	text-align:center;
	border-bottom:1px solid rgba(255,255,255,0.5);
	padding-bottom:1em;
	margin-bottom:2em;
}
.shopping-other-item .item-list{
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
}
.shopping-other-item .item-list .item{
	width:calc(50% - 20px);
}
.shopping-other-item .item-list .item .item-name{
	font-size: var(--fz18);
	margin-top:1em;
}

@media (max-width: 768px) {
	.shopping-detail .shopping-img,
	.shopping-detail .entry-content {
	    width: 100%;
	}
	.shopping-detail .shopping-img{
		margin-bottom: 35px;
	}
	.thumbnail-slide-thum {
	    overflow: visible;
	}
	.thumbnail-slide-thum .swiper-wrapper {
	    gap: 5px;
	}
	.thumbnail-slide-thum .swiper-wrapper .swiper-slide {
	    width: calc(20% - 4px) !important;
	}
	
	.shopping-detail .entry-content .entry-header {
	    border: 0;
	    margin: 0;
	}
	.shopping-detail .entry-content .entry-header .entry-title {
	    font-size: var(--fz20);
	}
	.shopping-dokodemo-tag {
	    margin-bottom: 20px;
	}
	.shopping-dokodemo-tag .cartjs_box .cartjs_cart_in {
	    width: 100% !important;
	    margin-bottom: 15px !important;
	}
	.shopping-other-item .item-list .item .item-name{
		font-size: var(--fz15);
		line-height: 1.4;
	}
}




/* English page
--------------------------------------------- */

@media (min-width: 769px) {
	.en-header .nav-overlay__content nav{
		width:60%;
	}
	.en-header .nav-overlay__content .site-info.nav-group{
		width:40%;
	}
	.en-header .nav-overlay__content nav > * {
	    width: 50%;
	}
}
@media (max-width: 768px) {
	.en .site-branding .home-header-copy-en {
        font-size: var(--fz12);
    }
}










