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

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

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

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

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

body.has-loader {
	opacity: 0;
	transition: opacity 0.5s ease;
}

body.has-loader.loaded {
	opacity: 1;
}

.loader {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.95);
	transition: opacity 0.5s ease, visibility 0.5s ease;
	opacity: 1;
	visibility: visible;
	z-index: 9999;
}

.loader.is-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.loader__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	text-align: center;
	color: rgba(80, 85, 90, 1);
	font-family: new-atten, dnp-shuei-gothic-gin-std, sans-serif;
}

.loader__spinner {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 3px solid rgba(80, 85, 90, 0.2);
	border-top-color: rgba(86, 141, 196, 1);
	animation: loader-spin 0.8s linear infinite;
}

.loader__text {
	margin: 0;
	font-size: 90%;
	letter-spacing: 0.05em;
}

@keyframes loader-spin {
	to {
		transform: rotate(360deg);
	}
}

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

/**
 * 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: #404040;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

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

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

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

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

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

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 1em 0;
}

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

/* Links
--------------------------------------------- */
a {
	color: #4169e1;
}

a:visited {
	color: #800080;
}

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

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: 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 {
	display: none;
	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 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 {
		display: flex;
	}
}

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

/*--------------------------------------------------------------
# Contact Form Only Theme Customizations
--------------------------------------------------------------*/

/* Background image for all pages */
body {
	background-image: url('images/bg_primary.jpg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	min-height: 100vh;
	font-family: adobe-caslon-pro, serif;
	font-size: 13.25px;
	line-height: 2.2;
	text-align: justify;
	word-break: break-all;
}

/* English text font */
.eng {
	font-family: new-atten, dnp-shuei-gothic-gin-std, sans-serif;
}

/* Logo Header - 参考ファイルのheader h1スタイルを適用 */
.logo-header {
	position: absolute;
	top: 57px;
	left: 55px;
	z-index: 1000;
	width: 165px;
	display: flex;
	color: rgba(245,249,252,1); /* --white color */
}

.logo-header a {
	display: block;
	transition: opacity 0.3s ease;
}

.logo-header a:hover {
	opacity: 0.8;
}

.logo-header img {
	width: 100%;
	height: auto;
	display: block;
}

/* Hide unnecessary elements for contact form only theme */
.site-header,
.widget-area,
.comments-area,
.post-navigation,
.posts-navigation,
.page-header,
.entry-meta,
.entry-footer,
.author-info,
.search-form {
	display: none !important;
}

/* Simplify main content area */
.site-main {
	padding: 20px;
	max-width: 800px;
	margin: 0 auto;
}

/* Contact form styling */
.entry-content {
	text-align: center;
}

.entry-title {
	text-align: center;
	margin: 100px auto 20px;
	padding: 0 20px;
	font-size: 215%;
	letter-spacing: .02rem;
	color: rgba(245,249,252,1); /* --white color for visibility on background */
	font-weight: normal;
	line-height: 1.1;
	max-width: 800px;
}

.entry-description {
	text-align: center;
	margin: 0 auto 50px;
	padding: 0 20px;
	font-size: 95%;
	line-height: 1.8;
	color: rgba(245,249,252,1); /* --white color for visibility on background */
	font-family: new-atten, dnp-shuei-gothic-gin-std, sans-serif;
	max-width: 600px;
}

/* Contact Form 7 basic styling - 参考ファイルに合わせて調整 */
.wpcf7-form p {
	margin-bottom: 20px;
	text-align: left;
	line-height: 1.8;
}

.wpcf7-form label {
	display: block;
	margin-bottom: 8px;
	font-weight: normal;
	color: rgba(80,85,90,1); /* --base color */
	font-size: 95%;
	letter-spacing: .02rem;
	font-family: new-atten, dnp-shuei-gothic-gin-std, sans-serif;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="number"],
.wpcf7-form textarea,
.wpcf7-form select {
	width: 100%;
	padding: 16px 20px;
	border: 2px solid rgba(86,141,196,0.2);
	border-radius: 8px;
	font-size: 1rem;
	font-family: new-atten, dnp-shuei-gothic-gin-std, sans-serif;
	box-sizing: border-box;
	background: #fff;
	color: rgba(60,80,100,1);
	transition: all 0.3s ease;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
	outline: none;
	border-color: rgba(86,141,196,1);
	box-shadow: 0 0 0 3px rgba(86,141,196,0.1);
	background: rgba(86,141,196,0.03);
}

.wpcf7-form textarea {
	min-height: 120px;
	resize: vertical;
	line-height: 1.8;
}

.wpcf7-form input[type="number"] {
	-moz-appearance: textfield;
	width: auto;
	min-width: 140px;
	display: inline-block;
}

.wpcf7-form .wpcf7-form-control-wrap + span {
	margin-left: 8px;
	display: inline-block;
	color: rgba(60,80,100,1);
}

.wpcf7-form input[type="number"]::-webkit-inner-spin-button,
.wpcf7-form input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.wpcf7-form .wpcf7-list-item {
	display: inline-flex;
	align-items: center;
	margin: 8px 12px 8px 0;
}

.wpcf7-form .wpcf7-list-item-label {
	font-family: new-atten, dnp-shuei-gothic-gin-std, sans-serif;
	color: rgba(60,80,100,1);
	margin-left: 10px;
}

.wpcf7-form input[type="radio"] {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 18px;
	height: 18px;
	border: 2px solid rgba(86,141,196,0.4);
	border-radius: 50%;
	background: #fff;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 8px;
}

.wpcf7-form input[type="radio"]:checked {
	border-color: rgba(86,141,196,1);
	box-shadow: inset 0 0 0 4px rgba(86,141,196,1);
}

.wpcf7-form input[type="radio"]:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgba(86,141,196,0.25);
}

.wpcf7-form input[type="submit"] {
	background: rgba(86,141,196,1); /* --blue color */
	color: rgba(245,249,252,1); /* --white color */
	padding: 15px 30px;
	border: none;
	border-radius: 25px;
	font-size: 90%;
	font-family: new-atten, dnp-shuei-gothic-gin-std, sans-serif;
	letter-spacing: .02rem;
	cursor: pointer;
	transition: background 0.3s ease;
	margin: 10px auto 0;
	display: block;
}

.wpcf7-form input[type="submit"]:hover {
	background: rgba(70,121,170,1);
}

.wpcf7-form input[type="submit"]:active {
	background: rgba(59,104,146,1);
}

/* Contact page wrapper styling */
.contact-page-wrapper {
	max-width: 800px;
	padding: 0;
	color: rgba(80,85,90,1); /* --base color */
	text-align: center;
	background: transparent;
	margin: 0 auto 50px;
	position: relative;
}

/* Form box styling */
.form-box {
	background: white;
	border-radius: 8px;
	padding: 40px;
	margin-top: 0;
}

.form-privacy-link {
	margin-top: 24px;
	text-align: center;
}

.form-privacy-link a {
	display: inline-block;
	font-size: 90%;
	letter-spacing: .02rem;
	color:#fff;
	padding-bottom: 4px;
	text-decoration: underline;
	text-decoration-color: rgba(245,249,252,1);
	text-decoration-thickness: 1px;
}

.contact-form-default {
	margin: 0;
}

/* Response messages styling */
.wpcf7-response-output {
	margin: 20px 0 0 0;
	padding: 15px;
	border-radius: 4px;
	text-align: center;
}

.wpcf7-mail-sent-ok {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

.wpcf7-not-valid-tip {
	color: #dc3545;
	font-size: 14px;
	margin-top: 5px;
}

/* 404 Error Page Styling */
.error-404-content {
	text-align: center;
	padding: 40px 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	max-width: 600px;
}

.error-404-number {
	font-size: clamp(80px, 15vw, 120px);
	font-weight: bold;
	color: white;
	margin: 0 0 20px 0;
	line-height: 1;
}

.error-404-message {
	font-size: clamp(18px, 4vw, 24px);
	color: white;
	margin: 0;
	font-weight: normal;
}

/* Mobile Responsive for Logo - 参考ファイルに合わせて調整 */
@media (max-width: 1080px) {
	.logo-header {
		top: 50px;
		left: 22px;
		width: 148px;
	}
}

@media (max-width: 1080px) {
	body {
		font-size: 13px;
	}
	
	.entry-title {
		font-size: 200%;
		line-height: 1.2;
		margin: 80px auto 15px;
	}
	
	.entry-description {
		font-size: 90%;
		margin: 0 auto 40px;
	}
}

@media (max-width: 640px) {
	body {
		line-height: 2.0;
	}
	
	.logo-header {
		top: 40px;
		left: 22px;
		width: 148px;
	}
	
	.entry-title {
		font-size: 180%;
		letter-spacing: .02rem;
		margin: 60px auto 15px;
		line-height: 1.1;
	}
	
	.entry-description {
		font-size: 85%;
		margin: 0 auto 30px;
	}
	
	/* .contact-page-wrapper {
		max-width: 90%;
		padding: 0 20px;
		margin: 0 auto 30px;
	} */
	
	.form-box {
		padding: 30px 20px;
	}

	.form-privacy-link {
		margin-top: 20px;
		text-align: center;
	}

	.form-privacy-link a {
		font-size: 85%;
	}
}

/* Thanks page styling */
.thanks-box {
	background: white;
	border-radius: 8px;
	padding: 60px 40px;
	margin-top: 0;
	text-align: center;
}

.thanks-content {
	max-width: 500px;
	margin: 0 auto;
}

.thanks-icon {
	margin-bottom: 30px;
	color: rgba(86,141,196,1); /* --blue color */
}

.thanks-icon svg {
	width: 80px;
	height: 80px;
}

.thanks-message h2 {
	font-size: 140%;
	letter-spacing: .02rem;
	color: rgba(80,85,90,1); /* --base color */
	margin-bottom: 20px;
	font-family: new-atten, dnp-shuei-gothic-gin-std, sans-serif;
}

.thanks-message p {
	font-size: 95%;
	line-height: 1.8;
	color: rgba(80,85,90,1); /* --base color */
	margin-bottom: 40px;
	font-family: new-atten, dnp-shuei-gothic-gin-std, sans-serif;
}

.thanks-actions {
	margin-top: 40px;
}

.btn-home {
	display: inline-block;
	background: rgba(86,141,196,1); /* --blue color */
	color: #fff;
	padding: 15px 30px;
	border-radius: 25px;
	text-decoration: none;
	font-size: 90%;
	font-family: new-atten, dnp-shuei-gothic-gin-std, sans-serif;
	letter-spacing: .02rem;
	transition: background-color 0.2s ease;
}

.btn-home:hover {
	background: rgba(80,85,90,1); /* --base color */
	color: #fff;
}

.btn-home:visited {
	color: #fff;
}

/* Mobile responsive for thanks page */
@media (max-width: 640px) {
	.thanks-box {
		padding: 40px 20px;
	}
	
	.thanks-icon svg {
		width: 60px;
		height: 60px;
	}
	
	.thanks-message h2 {
		font-size: 120%;
	}
	
	.thanks-message p {
		font-size: 90%;
	}
}

/*--------------------------------------------------------------
# Recruit Page Sections
--------------------------------------------------------------*/

/* Form Section */



.recruit-info-container {
	max-width: 1024px;
	margin: 0 auto;
}

/* Recruit Info Header */
.recruit-info-header {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	padding: 32px;
	margin-bottom: 24px;
	text-align: center;
}

/* Accordion Toggle Button */
.accordion-toggle {
	width: 100%;
	background: rgba(86,141,196,1);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 16px 24px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 24px;
	transition: background 0.3s ease;
}

.accordion-toggle:hover {
	background: rgba(70,121,170,1);
}

.accordion-toggle.active {
	background: rgba(59,104,146,1);
}

.toggle-icon {
	font-size: 0.875rem;
	transition: transform 0.3s ease;
}

.recruit-header-top {
	margin-bottom: 16px;
}

.recruit-title-group {
	display: flex;
	align-items: center;
	gap: 12px;
	justify-content: center;
}

.recruit-icon {
	font-size: 2rem;
	color: rgba(86,141,196,1);
}

	.recruit-info-title {
	font-size: 1.5rem;
	color: rgba(86,141,196,1);
	margin: 0;
	font-weight: 700;
	text-align: center;
}

.recruit-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
	justify-content: center;
}

.badge {
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 0.875rem;
	font-weight: 500;
}

	.badge-primary {
	background: rgba(86,141,196,1);
	color: #fff;
}

.badge-secondary {
	background: rgba(86,141,196,0.12);
	color: rgba(86,141,196,1);
}

.recruit-shop-names {
	color: #64748b;
	margin: 0;
	font-size: 0.95rem;
	text-align: center;
}

/* Recruit Cards */
.recruit-cards {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.recruit-card {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	margin-bottom: 24px;
}

.card-title {
	padding: 20px 24px;
	margin: 0;
	font-size: 1.25rem;
	font-weight: 600;
	color: rgba(86,141,196,1);
	display: flex;
	align-items: center;
	gap: 8px;
	border-bottom: 1px solid #e2e8f0;
	justify-content: center;
	text-align: center;
}

.card-icon {
	font-size: 1.25rem;
	color: rgba(86,141,196,1);
}

.card-content {
	padding: 24px;
	color: #334155;
	line-height: 1.75;
}

.recruit-info-wrapper .card-content,
.recruit-info-wrapper .card-title,
.recruit-info-wrapper .content-subtitle,
.recruit-info-wrapper .info-box,
.recruit-info-wrapper .info-box-text,
.recruit-info-wrapper .bullet-list,
.recruit-info-wrapper .salary-highlight,
.recruit-info-wrapper .salary-amount,
.recruit-info-wrapper .salary-note,
.recruit-info-wrapper .salary-box,
.recruit-info-wrapper .salary-example-box,
.recruit-info-wrapper .salary-breakdown-list,
.recruit-info-wrapper .small-text,
.recruit-info-wrapper .small-text-list,
.recruit-info-wrapper .shift-examples,
.recruit-info-wrapper .shift-item,
.recruit-info-wrapper .holiday-highlight,
.recruit-info-wrapper .holiday-main,
.recruit-info-wrapper .holiday-sub,
.recruit-info-wrapper .training-box,
.recruit-info-wrapper .training-title,
.recruit-info-wrapper .training-list,
.recruit-info-wrapper .benefits-grid,
.recruit-info-wrapper .benefit-item,
.recruit-info-wrapper .location-box,
.recruit-info-wrapper .location-title,
.recruit-info-wrapper .location-subtitle,
.recruit-info-wrapper .location-list,
.recruit-info-wrapper .content-block,
.recruit-info-wrapper .content-divider,
.recruit-info-wrapper .card-content p {
	font-family: new-atten, dnp-shuei-gothic-gin-std, sans-serif;
}

.message-body,
.cta-content,
.cta-content p,
.cta-content h3 {
	font-family: adobe-caslon-pro, serif;
}

.card-content p {
	margin-bottom: 16px;
	text-align: left;
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}

.card-content p:last-child {
	margin-bottom: 0;
}

/* Content Blocks */
.content-block {
	margin-top: 16px;
}

.content-block:first-child {
	margin-top: 0;
}

.content-subtitle {
	color: rgba(86,141,196,1);
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 12px;
}

.content-divider {
	height: 1px;
	background: #e2e8f0;
	margin: 16px 0;
}

/* Info Boxes */
.info-box {
	background: #f8fafc;
	border-radius: 8px;
	padding: 16px;
	margin-bottom: 12px;
}

.info-box-title {
	color: rgba(86,141,196,1);
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 8px;
}

.info-box-text {
	color: #334155;
	margin-left: 12px;
	font-size: 0.95rem;
}

.info-box-text p {
	margin-bottom: 4px;
}

.alert-box {
	background: #fef3c7;
	border: 1px solid #fde68a;
	border-radius: 8px;
	padding: 16px;
}

.alert-title {
	color: #78350f;
	font-weight: 600;
	margin-bottom: 8px;
}

.alert-text {
	color: #92400e;
	font-size: 0.875rem;
	line-height: 1.6;
}

/* Bullet Lists */
.bullet-list {
	list-style: none;
	padding: 0;
	margin: 12px auto;
	max-width: 700px;
	text-align: left;
}

.bullet-list li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-bottom: 8px;
	color: #334155;
}

.bullet-list li::before {
	content: "";
	width: 6px;
	height: 6px;
	background: rgba(86,141,196,1);
	border-radius: 50%;
	margin-top: 8px;
	flex-shrink: 0;
}

.bullet-list.purple li::before {
	background: rgba(86,141,196,1);
}

.salary-breakdown-list,
.training-list,
.location-list,
.recruit-info-wrapper .benefits-grid,
.recruit-info-wrapper .shift-examples,
.recruit-info-wrapper .holiday-highlight,
.recruit-info-wrapper .salary-highlight,
.recruit-info-wrapper .training-box {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}

.salary-breakdown-list p,
.training-list p,
.location-list p,
.benefits-grid .benefit-item,
.shift-examples .shift-item,
.holiday-highlight p,
.salary-highlight p,
.training-box p {
	text-align: left;
}

/* Salary Styles */
.salary-highlight {
	background: rgba(86,141,196,0.08);
	border: 1px solid rgba(86,141,196,0.25);
	border-radius: 8px;
	padding: 16px;
	margin-bottom: 16px;
}

.salary-amount {
	color: rgba(86,141,196,1);
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 4px;
}

.salary-note {
	color: rgba(70,121,170,1);
	font-size: 0.875rem;
	margin: 0;
}

.salary-box {
	background: #f8fafc;
	border-radius: 8px;
	padding: 16px;
	margin-top: 12px;
}

.salary-box p {
	color: #334155;
	margin-bottom: 8px;
}

.salary-breakdown-list {
	margin: 12px 0 12px 16px;
}

.salary-breakdown-list p {
	font-size: 0.875rem;
	color: #64748b;
	margin-bottom: 4px;
}

.salary-example-box {
	background: #dbeafe;
	border-radius: 8px;
	padding: 16px;
	margin-top: 12px;
}

.salary-example-box p {
	color: #334155;
	margin-bottom: 8px;
}

.salary-total {
	color: #1e40af !important;
	font-weight: 600 !important;
}

.small-text {
	font-size: 0.875rem;
	color: #64748b;
	margin-top: 12px;
}

.small-text-list {
	margin-top: 16px;
}

.small-text-list p {
	font-size: 0.875rem;
	color: #64748b;
	margin-bottom: 4px;
}

/* Shift Styles */
.shift-examples {
	margin: 12px 0;
}

.shift-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px;
	background: #f8fafc;
	border-radius: 8px;
	margin-bottom: 8px;
}

	shift-badge {
	padding: 4px 12px;
	background: rgba(86,141,196,0.12);
	border: 1px solid rgba(86,141,196,0.3);
	border-radius: 6px;
	font-size: 0.875rem;
	font-weight: 500;
	color: rgba(86,141,196,1);
	white-space: nowrap;
}

.shift-item span:last-child {
	color: #334155;
}

/* Holiday Styles */
.holiday-highlight {
	background: rgba(86,141,196,0.08);
	border: 1px solid rgba(86,141,196,0.25);
	border-radius: 8px;
	padding: 16px;
	margin-bottom: 16px;
}

.holiday-main {
	color: rgba(86,141,196,1);
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 4px;
}

.holiday-sub {
	color: rgba(70,121,170,1);
	font-size: 0.875rem;
	margin: 0;
}

/* Training Styles */
.training-box {
	background: #fff7ed;
	border-radius: 8px;
	padding: 16px;
	margin: 12px 0;
}

.training-section {
	margin-bottom: 12px;
}

.training-section:last-child {
	margin-bottom: 0;
}

.training-title {
	color: rgba(86,141,196,1);
	font-weight: 600;
	margin-bottom: 8px;
}

.training-list {
	margin-left: 16px;
}

.training-list p {
	font-size: 0.875rem;
	color: #334155;
	margin-bottom: 4px;
}

/* Benefits Grid */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 12px;
}

.benefit-item {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	padding: 12px;
	background: #f8fafc;
	border-radius: 8px;
	font-size: 0.875rem;
	color: #334155;
}

.benefit-item::before {
	content: "";
	width: 6px;
	height: 6px;
	background: #dc2626;
	border-radius: 50%;
	margin-top: 6px;
	flex-shrink: 0;
}

/* Location Styles */
.location-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 16px;
}

.location-box {
	background: #f8fafc;
	border-radius: 8px;
	padding: 16px;
}

.location-title {
	color: rgba(86,141,196,1);
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 8px;
}

.location-subtitle {
	color: #334155;
	margin-bottom: 12px;
}

.location-list p {
	font-size: 0.875rem;
	color: #64748b;
	margin-bottom: 4px;
}

/* Accordion Content */
.accordion-content {
	margin-top: 24px;
}

/* CTA Card */
.cta-card {
	background: linear-gradient(135deg, rgba(86,141,196,1) 0%, rgba(70,121,170,1) 100%);
	border: none;
	box-shadow: 0 4px 12px rgba(86, 141, 196, 0.3);
}

.cta-content {
	text-align: center;
	padding: 48px 32px;
}

.cta-title {
	color: #fff;
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 16px;
	line-height: 1.4;
}

.cta-description {
	color: rgba(255, 255, 255, 0.95);
	font-size: 1.125rem;
	margin-bottom: 32px;
	line-height: 1.6;
}

	.btn-cta {
	background: #fff;
	color: rgba(86,141,196,1);
	border: none;
	border-radius: 8px;
	padding: 18px 56px;
	font-size: 1.25rem;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.btn-cta:hover {
	background: #f8fafc;
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
	transform: translateY(-3px);
}

.btn-cta:active {
	transform: translateY(0);
}

/* Mobile responsive for recruit page */
@media (max-width: 768px) {

	.recruit-info-wrapper {
		padding: 40px auto;
	}

	.recruit-info-header {
		padding: 24px 16px;
	}

	.recruit-info-title {
		font-size: 1.25rem;
	}

	.card-title {
		padding: 16px;
		font-size: 1.125rem;
		flex-direction: column;
	}

	.card-content {
		padding: 16px;
	}

	.card-icon {
		font-size: 1rem;
	}

	.benefits-grid {
		grid-template-columns: 1fr;
	}

	.location-grid {
		grid-template-columns: 1fr;
	}

	.shift-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}

	.cta-content {
		padding: 32px 20px;
	}

	.cta-title {
		font-size: 1.5rem;
	}

	.cta-description {
		font-size: 1rem;
		margin-bottom: 24px;
	}

	.btn-cta {
		width: 100%;
		padding: 16px 20px;
		font-size: 1.1rem;
	}
}

/* Footer styling */
.site-footer {
	background: transparent;
	padding: 40px 0;
	margin-top: 80px;
}

.footer-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	padding: 0 20px;
}

.copyright {
	color: rgba(245,249,252,1); /* --white color */
	font-family: adobe-caslon-pro, serif;
	font-size: 90%;
	letter-spacing: .02rem;
	margin: 0;
}

/* Mobile responsive for footer */
@media (max-width: 640px) {
	.site-footer {
		padding: 30px 0;
		margin-top: 60px;
	}
	
	.copyright {
		font-size: 85%;
	}
}

/* 404 Error page styling */
.error-404-content {
	text-align: center;
	min-height: calc(100vh - 200px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 40px 20px;
}

.error-404-number {
	font-size: 800%;
	color: rgba(245,249,252,1); /* --white color */
	font-family: adobe-caslon-pro, serif;
	margin-bottom: 20px;
	line-height: 1;
}

.error-404-message {
	font-size: 150%;
	color: rgba(245,249,252,1); /* --white color */
	font-family: new-atten, dnp-shuei-gothic-gin-std, sans-serif;
	letter-spacing: .02rem;
	margin: 0;
}

/* Mobile responsive for 404 page */
@media (max-width: 640px) {
	.error-404-number {
		font-size: 600%;
	}
	
	.error-404-message {
		font-size: 120%;
	}
}
