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

larkbeak 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;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAIAAACRXR/mAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAABnSURBVHja7M5RDYAwDEXRDgmvEocnlrQS2SwUFST9uEfBGWs9c97nbGtDcquqiKhOImLs/UpuzVzWEi1atGjRokWLFi1atGjRokWLFi1atGjRokWLFi1af7Ukz8xWp8z8AAAA//8DAJ4LoEAAlL1nAAAAAElFTkSuQmCC) repeat 0 0;
    -webkit-animation: bg-scrolling-reverse 3s infinite;
    -moz-animation: bg-scrolling-reverse 3s infinite;
    -o-animation: bg-scrolling-reverse 3s infinite;
    animation: bg-scrolling-reverse 3s infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -o-animation-timing-function: linear;
    animation-timing-function: linear;
}

@-webkit-keyframes bg-scrolling-reverse {
	100% {
	  background-position: 50px 50px;
	}
  }
  @-moz-keyframes bg-scrolling-reverse {
	100% {
	  background-position: 50px 50px;
	}
  }
  @-o-keyframes bg-scrolling-reverse {
	100% {
	  background-position: 50px 50px;
	}
  }
  @keyframes bg-scrolling-reverse {
	100% {
	  background-position: 50px 50px;
	}
  }
  @-webkit-keyframes bg-scrolling {
	0% {
	  background-position: 50px 50px;
	}
  }
  @-moz-keyframes bg-scrolling {
	0% {
	  background-position: 50px 50px;
	}
  }
  @-o-keyframes bg-scrolling {
	0% {
	  background-position: 50px 50px;
	}
  }
  @keyframes bg-scrolling {
	0% {
	  background-position: 50px 50px;
	}
  }

/**
 * 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: 1em;
	margin: 0!important;
}

/* 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: #333333;
	font-family: 'Zen Kaku Gothic New', -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;
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
}

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

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%;
	display: block;
}

figure {
	margin: 1em 0;
}

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

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

a:visited {
	color: #333333;
}

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

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: auto;
    margin-right: 0;
    padding-left: 0;
    padding-right: 30px;
    max-width: 100%;
    width: 1000px;
    position: relative;
}


.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 li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

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


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

/*--------------------------------------------------------------
追加CSS
--------------------------------------------------------------*/

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
}

.custom_header {
    display: flex;
    justify-content: center;
    background: #fff;
}

.custom_header_logo {
    max-width: 400px;
    width: 25%;
    padding: 1em 0 1em 30px;
    margin: auto;
    margin-left: 0;
}

.menu-menu_1-container {
    width: calc(100% - 25%);
    max-width: 75%;
    margin: auto;
    margin-right: 0;
}

.main-navigation ul {
	display: flex;
	justify-content: end;
}

.main-navigation ul > li {
    width: calc(100%/6);
    text-align: center;
    font-weight: 700;
    font-size: 16px;
	position: relative;
}

.main-navigation ul > li:nth-child(1) {
    text-align: right;
	width: calc(100%/6 - 100%/12);
}

.main-navigation ul > li:nth-child(3) {
    text-align: left;
    width: calc(100%/6 - 60%/12);
}

.main-navigation ul > li:nth-child(2) {
    width: calc(100%/6 + 100%/12);
}

.current-menu-item a {
    color: #509fe2;
}

ul.sub-menu {
    display: block;
    box-shadow: 0 3px 3px rgb(0 0 0 / 20%);
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    top: calc(100% + 1em);
    z-index: 99999;
    opacity: 0;
    transition-duration: .5s;
    padding: 0;
    background: #fcb900;
}

ul.sub-menu:after {
    content: "";
    border: 10px solid;
    border-color: transparent transparent #fcb900 transparent;
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    width: 10px;
    margin: auto;
}

.sub-menu > li {
    width: 100%!important;
    text-align: center!important;
    margin: auto;
}

.main-navigation ul li:hover > ul, .main-navigation ul li.focus > ul {
    opacity: 1;
}

.sub-menu > li > a {
    padding: 0.5em 0;
}

.menu-toggle {
	display: none;
}

.sp_menu {
	display: none;
}

main {
    padding-top: clamp(90px,14vw,111.41px);
}

@media screen and (min-width: 1071px) {
	.is_sp {
		display: none;
	}
}


@media screen and (max-width: 1070px) {

	.is_pc {
		display: none;
	}

	.sp_menu {
		display: block;
	}

	header {
		height: auto;
		position: fixed;
		width: 100%;
		background: #fff;
		top: 0;
		left: 0;
		right: 0;
		z-index: 99997;
	}

	main {
		display: block;
		padding-top: clamp(90px,14vw,111.41px);
		overflow: hidden;
	}

	.custom_header_logo {
		max-width: 65%;
		width: 300px;
		padding: .5em 0 1em;
	}

	.menu-menu_1-container {
		display: none;
	}

	.main-navigation.toggled 

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

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

	button#menu_btn {
		display: none;
	}

	 /*　ハンバーガーメニューボタン　*/

	 .hamburger {
		display: block;
		position: absolute;
		z-index: 99999;
		right: 2%;
		top: 25%;
		width: 70px;
		height: 70px;
		cursor: pointer;
		text-align: center;
		margin: 0;
	}

	.hamburger span {
		display: block;
		position: absolute;
		width: 65%;
		height: 5px;
		border-radius: 20px;
		left: 0;
		right: 0;
		margin: auto;
		background: #BBBBBB;
		-webkit-transition: 0.5s ease-in-out;
		-moz-transition: 0.5s ease-in-out;
		transition: 0.5s ease-in-out;
	}

	.hamburger span:nth-child(1) {
		top: 25%;
	}

	.hamburger span:nth-child(2) {
		top: calc(50% - 2.5px);
	}

	.hamburger span:nth-child(3) {
		top: 68%;
	}

  	/* スマホメニューを開いてる時のボタン */
  	.hamburger.active span:nth-child(1) {
  	  	top : 25%;
  	  	left: 0;
  	  	background :#fff;
  	  	-webkit-transform: rotate(-45deg);
  	  	-moz-transform   : rotate(-45deg);
  	  	transform        : rotate(-45deg);
  	}

  	.hamburger.active span:nth-child(2),
  	.hamburger.active span:nth-child(3) {
		top: 25%;
		bottom: auto;
		background: #fff;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		transform: rotate(45deg);
  	}

  	/* メニュー背景　*/
  	nav.globalMenuSp {
  	  	position: fixed;
  	  	z-index : 99998;
  	  	top  : 0;
  	  	left : 0;
  	  	color: #fff;
  	  	background: #ffbf31de;
  	  	text-align: center;
  	  	width: 100%;
		height: 100%;
  	  	transform: scale(0,0);
  	  	transition: all 0.6s;
  	}

  	nav.globalMenuSp ul {
  	  	margin: 0 auto;
  	  	padding: 0;
  	  	width: 100%;
  	}

  	nav.globalMenuSp ul li {
  	  	list-style-type: none;
  	  	padding: 0;
  	  	width: 100%;
  	  	transition: .4s all;
  	}
  	nav.globalMenuSp ul li:last-child {
  	  	padding-bottom: 0;
  	}
  	nav.globalMenuSp ul li:hover{
  	  	background :#ddd;
  	}

  	nav.globalMenuSp ul li a {
  	  	display: block;
  	  	color: #fff;
  	  	padding: 1em 0;
  	  	text-decoration :none;
  	}

  	/* クリックでjQueryで追加・削除 */
  	nav.globalMenuSp.active {
  	  	opacity: 100;
  	  	display: block;
  	  	transform: scale(1,1);
  	}

	  ul#menu-sp_menu {
		display: block;
		text-align: center;
		position: absolute;
		left: 0;
		right: 0;
		width: 100%;
		top: 50%;
		transform: translate(0, -50%);
	}

	#menu-sp_menu > li {
		width: 100%!important;
		text-align: center!important;
	}

	#menu-sp_menu > li > a {
		font-size: 2em!important;
		padding: 0.5em!important;
	}

	.custom_header {
		padding-right: 1em;
	}

}

@media screen and (max-width: 450px) {

	.custom_header_logo {
		max-width: 60%;
	}

	.hamburger {
		width: 15%;
		height: 65px;
		top: 15%;
		right: 2%;
	}

	.custom_header {
		padding-right: .5em;
	}



}

/*--------------------------------
HOME
--------------------------------*/

.main_slide {
    max-width: 950px;
    margin: auto;
    margin-right: 10%;
}

.first_area {
    position: relative;
}

.first_catch_area {
    background: #00689a;
    max-width: 800px;
    padding: 2%;
    margin: auto;
    margin-left: 10%;
    transform: translate(0, -50%);
    z-index: 10;
    position: relative;
}

.nuki_txt {
	font-size: min(3.35vw,50px);
    line-height: 0.95em;
    font-weight: 700;
    letter-spacing: 0.1em;
    -webkit-text-stroke: 0.03em #fff;
    color: transparent;
    font-family: 'Noto Sans JP', sans-serif;
}

.first_catch_2 {
    margin: 1em 0;
    line-height: 1.8;
    font-size: 24px;
    font-weight: 700;
    color: #ffb41f;
}

a {
    text-decoration: none;
}

.lb_btn_a > a {
    display: block;
    background: #fff;
    padding: 2% 5%;
    width: fit-content;
    border-radius: 50px;
    box-shadow: 10px 10px 0;
	font-weight: 700;
	transition-duration: .2s;
	white-space: nowrap;
}

.lb_btn_a > a:hover {
    box-shadow: 5px 5px 0;
    transform: translate(5px, 5px);
}

.inner_a {
    max-width: 1000px;
    margin: auto;
}

.top_about_area {
    background: #fff;
    padding: 2% 0;
}

h3.js_typing {
    margin: auto;
    margin-bottom: 1em;
	font-size: clamp(18px,6.67vw,25px);
	color: #56c649;
    overflow: hidden;
    width: 100%;
	font-weight: 700;
}

.top_about_catch {
    line-height: 1.8;
    font-size: 1.2em;
}

.top_flow {
    display: flex;
}

.flow_line {
    border-right: solid 3px #f9a826;
    width: 0;
    font-size: 0;
}

ul {
    padding: 0;
	margin: 0;
}

li {
    list-style: none;
}

.top_flow ul {
    width: calc(100% - 5px);
}

.flow_txt {
    padding-left: 5%;
}

.top_flow li {
    display: flex;
    position: relative;
}

.flow_title {
    font-size: 1.4em;
    font-weight: 700;
}

.flow_catch {
    padding-left: 1.4em;
    margin-top: 0.5em;
}

.top_flow li:after {
    content: "";
    height: 20px;
    width: 20px;
    background: #00689a;
    border-radius: 50%;
    position: absolute;
    display: block;
    left: -11px;
}

.lb_btn_b > a {
    display: block;
    background: #ffb41f;
    padding: 2% 5%;
    width: fit-content;
    border-radius: 50px;
    box-shadow: 10px 10px 0 #000;
    font-weight: 700;
    color: #fff;
	margin: auto;
	transition-duration: .3s;
	white-space: nowrap;
}

.lb_btn_b {
    margin: 5% auto 0;
    position: relative;
    z-index: 999;
}

.top_flow_area {
    margin: 5% auto;
}

.lb_btn_b > a:hover {
    box-shadow: 5px 5px 0 #000;
    transform: translate(5px, 5px);
}

.production_results_list ul {
    font-size: 0;
}

.production_results_list li {
    display: inline-block;
    font-size: 1rem;
    width: calc(100%/3 - 2%*2);
    text-align: center;
    font-weight: 700;
    margin: auto 2%;
}

.production_results_list p {
    margin: 0.5em auto;
}

.production_results_area {
    position: relative;
	padding-bottom: 3%;
}

.blur {
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,0) 20%, rgba(255,255,255,1) 80%);
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    height: 90%;
}

.top_contact {
    background: #e2e2e2;
    padding-top: 3em;
}

.top_contact_catch {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1em;
}


.contact_us {
    padding: 80px 0;
}

.toiawase_form {
    width: 90%;
    max-width: 700px;
    margin: auto;
}

.toiawase_form_1 {
    width: 30%;
}

.toiawase_form_2 {
    width: 30%;
}

.toiawase_form_3 {
    width: 40%;
}

.toiawase_form_4 {
    width: 40%;
}

.toiawase_form_0 .num2 {
    margin: 0.2em auto 0.5em;
}

.hissu {
	background: #3d8dad;
    color: #fff;
    font-size: 70%;
    display: inline-block;
    padding: 3px 5px;
    border-radius: 5px;
    margin: auto 10px;
    vertical-align: top;
}

input#soudan_btn {
    display: none;
}

label.submit_btn {
    display: block;
    background: #fff;
    padding: 2% 5%;
    width: fit-content;
    border-radius: 50px;
    box-shadow: 10px 10px 0;
    font-weight: 700;
	transition-duration: .3s;
}

label.submit_btn:hover {
    box-shadow: 5px 5px 0;
    transform: translate(5px, 5px);
}

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 {
	border-radius: 5px;
	width: 100%;
}

select {
    color: #666;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 3px;
}

.toiawase_form_0 {
    margin: 1em 0;
}

.top_contact p {
    margin: 0;
}

.home_news {
    background: #ffb41f;
    color: #fff;
    padding: 3em 0;
}

.inner_b {
    max-width: 1200px;
    margin: auto;
}

.home_news > div {
    display: flex;
}

.news_title {
    font-size: 1.5em;
    font-weight: 700;
    width: 25%;
    margin: 0 auto;
    margin-left: 0;
}

.news_area {
    width: 70%;
    margin: 0 auto;
}


.home_performance {
    padding: 80px 0;
}

.home_news > div {
    display: flex;
}

.news_title > div > div {
    line-height: 1;
}

.news_area {
    width: 75%;
}

.news_area > ul {
    margin: 0;
}

.news_area > ul > li {
    padding: 20px 0;
    margin: 0;
    list-style: none;
    font-size: 16px;
}

.news_area > ul > li:first-child {
    padding-top: 8px;
}

.news_area > ul > li > span {
    display: inline-block;
    margin-right: 15px;
	vertical-align: top;
}

.top_document_area {
    text-align: center;
}

.top_document {
    padding: 3% 0;
}

@media screen and (max-width: 1200px) {

	.main_slide {
		max-width: none;
		width: 50%;
		margin: auto;
		margin-right: 0;
	}

	.first_catch_area {
		max-width: none;
		width: 50%;
		transform: translate(0, 0);
		margin: auto;
		margin-left: 0;
	}

	.first_area {
		display: flex;
		flex-direction: row-reverse;
	}

	.first_catch_area {
		max-width: none;
		width: 50%;
		transform: translate(0, 0);
		margin: 0 auto;
		margin-left: 0;
		position: relative;
		padding: 0;
	}

	.responsive_box {
		position: absolute;
		left: 0;
		right: 0;
		margin: auto;
		width: 90%;
		top: 50%;
		transform: translate(0,-50%);
	}

	.nuki_txt {
		font-size: 3.43vw;
	}

	.first_catch_2 {
		font-size: 2vw;
	}

	.lb_btn_a > a {
		font-size: 1.71vw;
	}

	.inner_b {
		width: 95%;
	}

	.inner_a {
		width: 95%;
	}

}


@media screen and (max-width: 500px) {

	.first_area {
		display: block;
	}

	.main_slide {
		width: 100%;
	}

	.first_catch_area {
		width: 100%;
		padding: 5% 3%;
	}

	.responsive_box {
		position: relative;
		transform: translate(0, 0);
		width: 100%;
	}

	.nuki_txt {
		font-size: 6.4vw;
	}

	.first_catch_2 {
		font-size: 3.6vw;
	}

	.lb_btn_a > a {
		font-size: 2.8vw;
	}

	h3 {
		margin-bottom: 3%;
	}

	.inner_a {
		width: 95%;
	}

	.top_about_area {
		padding: 8% 0;
	}

	.top_about_catch {
		font-size: clamp(12px,3.2vw,18px);
	}

	.top_flow {
		width: 80%;
		margin: auto;
	}

	.top_flow li:after {
		left: -9px;
		height: 15px;
		width: 15px;
	}

	.flow_title {
		font-size: clamp(12px,4.4vw,24px);
	}

	.flow_catch {
		font-size: clamp(12px,3.2vw,18px);
	}

	.flow_txt {
		width: 60%;
	}

	.flow_img {
		width: 40%;
	}

	.lb_btn_b > a {
		font-size: clamp(12px,2.8vw,14px);
	}

	.production_results_list li {
		width: calc(100%/2 - 3%*2);
		margin: 3%;
	}

	.production_results_list p {
		font-size: clamp(12px,2.8vw,14px);
	}

	.production_results_area {
		padding-bottom: 20%;
	}

	.top_flow_area {
		margin: 25% auto;
	}

	.production_results_area .lb_btn_b {
		margin: 0;
		transform: translate(0, -100%);
	}

	.top_contact_catch {
		font-size: clamp(12px,6.4vw,32px);
	}

	.toiawase_form {
		width: 100%;
	}

	.toiawase_form_1 {
		width: 60%;
	}

	.toiawase_form_2 {
		width: 60%;
	}

	.toiawase_form_3 {
		width: 80%;
	}

	label.submit_btn {
		font-size: clamp(16px,3.6vw,20px);
	}

	.home_news > div {
		display: block;
	}

	.news_title {
		width: 100%;
	}

	.news_area {
		width: 100%;
	}

	.news_area > ul > li > span {
		display: block;
		font-size: clamp(16px,3.2vw,18px);
	}

	.news_area > ul > li > span:nth-child(1) {
		font-size: 80%;
	}



}

/*----------------------------------------------
フッター
----------------------------------------------*/

nav.footer-nav ul {
    display: flex;
    justify-content: center;
}

nav.footer-nav li {
    margin: auto 1em;
}

.site-footer-copyright {
    text-align: center;
    margin-top: 2em;
    font-size: .8rem;
}

@media screen and (max-width: 500px) {

	nav.footer-nav ul {
		display: block;
	}

	nav.footer-nav li {
		margin: 1em;
		text-align: center;
	}

}






/*-------------------------------------------------
アニメーション
---------------------------------------------------*/

/*=================================
下からフェードイン＿繰り返し
=================================*/

.fadeIn_up {
	opacity: 0;
	transform: translate(0, 50%);
	transition: 2s;
  }
  
  .fadeIn_up.is-show {
	animation: fadeIn_up 1.5s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
  }
   
  @keyframes fadeIn_up {
	0% {
		transform: translate(0, 50%);
		opacity: 0;
	}
	100% {
		transform: translate(0, 0);
		opacity: 1;
	}
	40%,100% {
	  opacity: 1;
	}
  }


/*=================================
会社概要＿タイトル
=================================*/
  
.reveal-text,
.reveal-text::after {
  -webkit-animation-delay: var(--animation-delay, 2s);
          animation-delay: var(--animation-delay, 2s);
  -webkit-animation-iteration-count: var(--iterations, 1);
          animation-iteration-count: var(--iterations, 1);
  -webkit-animation-duration: var(--duration, 800ms);
          animation-duration: var(--duration, 800ms);
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
          animation-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
}

.reveal-text {
  --animation-delay: var(--delay, 0);
  --animation-duration: var(--duration, 800ms);
  --animation-iterations: var(--iterations, 1);
  position: relative;
  -webkit-animation-name: clip-text;
          animation-name: clip-text;
  white-space: nowrap;
  cursor: default
  
}

.reveal-text::after {
    content: "";
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0693e3;
    transform: scaleX(0);
    transform-origin: 0 50%;
    pointer-events: none;
    -webkit-animation-name: text-revealer;
            animation-name: text-revealer;
  }


@-webkit-keyframes clip-text {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}


@keyframes clip-text {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}


@-webkit-keyframes text-revealer {
  
  0%, 50% {
    transform-origin: 0 50%;
  }
  
  60%, 100% {
    transform-origin: 100% 50%;   
  }

  
  60% {
    transform: scaleX(1);
  }
  
  100% {
    transform: scaleX(0);
  }
}


@keyframes text-revealer {
  
  0%, 50% {
    transform-origin: 0 50%;
  }
  
  60%, 100% {
    transform-origin: 100% 50%;   
  }

  
  60% {
    transform: scaleX(1);
  }
  
  100% {
    transform: scaleX(0);
  }
}


/*=================================
事業内容＿
=================================*/

.fadeIn_left_right {
	opacity: 0;
	transform: translate(50%, 0);
	transition: 2s;
}

.fadeIn_left_right.is-show {
	animation: slideIn_left_right 1.5s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
  }
   
  @keyframes slideIn_left_right {
	0% {
	  transform: translateX(-180px);
	  opacity: 0;
	}
	100% {
	  transform: translateX(0);
	}
	40%,100% {
	  opacity: 1;
	}
  }
   

  .fadeIn_right_left {
	opacity: 0;
	transform: translate(-50%, 0);
	transition: 2s;
}

.fadeIn_right_left.is-show {
	animation: slideIn_right_left 1.5s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
  }
   
  @keyframes slideIn_right_left {
	0% {
	  transform: translateX(180px);
	  opacity: 0;
	}
	100% {
	  transform: translateX(0);
	}
	40%,100% {
	  opacity: 1;
	}
  }




/*=================================
制作実績
=================================*/

  .anim-box.kiran {
	opacity: 1;
	overflow: hidden;
	position: relative;
	cursor: pointer;
  }
  .anim-box.kiran::before {
	background-color: #fff;
	content: "";
	display: block;
	position: absolute;
	top: -100px;
	left: 0;
	width: 30px;
	height: 100%;
	opacity: 0;
	transition: cubic-bezier(0.32, 0, 0.67, 0);
  }
  .anim-box.kiran:hover::before {
	animation: kiran 0.5s linear 1;
  }
   
  @keyframes kiran {
	0% {
	  transform: scale(2) rotate(45deg);
	  opacity: 0;
	}
	20% {
	  transform: scale(20) rotate(45deg);
	  opacity: 0.6;
	}
	40% {
	  transform: scale(30) rotate(45deg);
	  opacity: 0.4;
	}
	80% {
	  transform: scale(45) rotate(45deg);
	  opacity: 0.2;
	}
	100% {
	  transform: scale(50) rotate(45deg);
	  opacity: 0;
	}
  }
   


/*-------------------------------------------------
会社概要
---------------------------------------------------*/

.company_profile_title.nuki_txt {
    -webkit-text-stroke: 0.03em #0693e3;
	line-height: 1.2;
}

.company_profile_area, 
.greetings_area {
    display: flex;
}

.company_profile_title {
    width: 30%;
    margin: 0 auto;
    margin-left: 0;
	height: fit-content;
}

.company_profile_contents {
    width: 70%;
    margin: 0 auto;
	font-weight: 700;
}

.greetings_area {
    margin-top: 10%;
}

.company_profile_contents > div:nth-child(1) {
    border-bottom: dotted 2px #ffb41f;
    padding-bottom: 3%;
}

.company_profile_contents li {
    margin: 0 auto 2em;
}

.company_profile_list_title {
    font-size: 1.2rem;
    margin-bottom: 1%;
    border-bottom: solid 2px #ffb41f;
    padding: .5% 10% .2% 1%;
    width: fit-content;
}

.greetings_area_container {
    display: flex;
    margin-bottom: 6%;
}

.greetings_catch {
    width: 75%;
    margin: auto;
    line-height: 1.8;
	white-space: normal;
}

.greetings_img {
    width: 25%;
    margin: 0 auto;
}

.company_profile_list_catch {
    padding-left: 1%;
}

@media screen and (max-width: 1000px) {

	.company_profile_title {
		-ms-writing-mode: tb-rl;
		writing-mode: vertical-rl;
		width: clamp(45px,5vw,50px);
		font-size: clamp(40px,4.5vw,45px);
	}

	.company_profile_contents {
		width: calc(90% - clamp(35px,5vw,50px));
	}

	.greetings_img {
		width: 40%;
		margin: 0% auto;
		margin-right: 0;
	}

	.greetings_catch {
		width: 80%;
	}

	.greetings_catch {
		font-size: min(3.73vw,16px);
		line-height: 2;
		width: 100%;
	}

	.greetings_area_container {
		display: block;
		margin-bottom: 15%;
	}

}






/*-------------------------------------------------
事業内容
---------------------------------------------------*/

.business_content_title {
    -webkit-text-stroke: 0.04em #ff6900;
    line-height: 1.2;
}

.business_content_area {
    display: flex;
    margin-bottom: 5%;
}

.business_content_title {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    width: clamp(45px,5vw,50px);
    font-size: clamp(40px,4.5vw,45px);
    margin: 0 auto;
}

.business_content {
    width: calc(80% - clamp(35px,5vw,50px));
    margin: 0 auto;
}

.business_content_in {
    position: relative;
    background: #d4415ca6;
    color: #fff;
    font-size: clamp(14px,0.94vw,18px);
    padding: 4%;
}

.business_content_catch {
    line-height: 1.8;
    font-weight: 700;
}

.lb_btn_c {
    margin: 5% auto 0;
}

.lb_btn_c > a {
    background: #fff;
    display: block;
    width: fit-content;
    padding: 1% 5%;
    font-size: clamp(14px,0.94vw,18px);
    border-radius: 50px;
    box-shadow: 10px 10px 0;
    margin-bottom: 10px;
	transition-duration: .2s;
	font-weight: 700;
	white-space: nowrap;
}

.lb_btn_c > a:hover {
    box-shadow: 5px 5px 0;
    transform: translate(5px, 5px);
}

.business_content_catch_img {
    position: absolute;
    width: 25%;
    right: -5%;
    bottom: -20%;
}

.business_content_in.bottom_long {
    padding-bottom: 15%;
}

@media screen and (max-width: 500px) {

	.business_content_title {
		width: clamp(50px,14vw,70px);
		font-size: clamp(24px,7vw,35px);
		margin: 0 auto;
	}

	.business_content {
		width: calc(85% - clamp(24px,7vw,35px));
	}

	.business_content_area {
		margin-bottom: 20%;
	}

	.business_content_catch_img {
		width: 40%;
		right: -2%;
	}

}




/*-------------------------------------------------
制作実績
---------------------------------------------------*/

.production_results_title {
    -webkit-text-stroke: 0.03em #ffb41f;
    text-align: center;
    line-height: 1.5;
    margin: 5% auto;
}

.production_results_page .production_results_list li {
    margin: 3%;
    width: calc(100%/3 - 3%*2);
}

.production_results_list li img {
    display: block;
    width: 100%;
}

@media screen and (max-width: 700px) {

	.production_results_page .production_results_list li {
		margin: 4% 2%;
		width: calc(100%/2 - 2%*2);
	}

}


@media screen and (max-width: 400px) {

	.production_results_page .production_results_list li {
		margin: 4% 2%;
		width: calc(100%/1 - 2%*2);
	}
	
}


/*-------------------------------------------------
制作フロー
---------------------------------------------------*/

.production_flow_page_flow {
    display: flex;
}

.production_flow_page_flow ul {
    width: calc(100% - 5px);
}

.production_flow_page_flow li {
    display: flex;
    position: relative;
    margin: 0 auto 10%;
}

.flow_title {
    font-size: clamp(20px,1.56vw,30px);
}

.flow_catch {
    font-size: clamp(14px,0.94vw,18px);
	line-height: 1.8;
}

.production_flow_page_flow li:after {
    content: "";
    height: 20px;
    width: 20px;
    background: #00689a;
    border-radius: 50%;
    position: absolute;
    display: block;
	left: -11px;
}

.production_flow_title {
    -webkit-text-stroke: 0.03em #00689a;
}

.production_flow_catch {
    line-height: 1.8;
    margin: 3% auto 5%;
    font-size: clamp(14px,0.94vw,18px);
    font-weight: 700;
    color: #ffb41f;
}



@media screen and (max-width: 500px) {

.production_flow_page_flow li {
    display: block;
}

.production_flow_page_flow .flow_txt {
    width: 100%;
}

.production_flow_page_flow .flow_img {
    padding-left: 5%;
    width: 35%;
    margin: 0 auto;
    margin-right: 0;
}

.production_flow_page_flow li:after {
    top: 0;
}

.production_flow_catch {
    margin: 3% auto 10%;
}

.production_flow_title {
    font-size: clamp(24px,7vw,35px);
}

}


/*------------------------------------------------
Q&A
------------------------------------------------*/

.question {
    display: flex;
    width: fit-content;
  }
  
  .question_img {
    margin-right: 0%;
    width: 15%;
  }
  
  .question_txt {
    width: fit-content;
    padding: 2% 5%;
    margin: auto;
    margin-left: 5%;
    background-color: #ffa9d1;
    color: #fff;
    font-size: 120%;
    font-weight: 700;
    position: relative;
    border-radius: 25px;
  }
  
  .question_txt::before {
    content: "";
    font-size: 0;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    border-style: solid;
    border-width: 0 20px 20px 0;
    border-color: transparent #ffa9d1 transparent transparent;
    position: absolute;
    left: -8px;
  }
  
  .anser {
    width: fit-content;
    padding: 2% 5%;
    margin: auto;
    margin-right: 5%;
    margin-bottom: 10%;
    background-color: #85bcd6;
    color: #fff;
    font-size: 120%;
    font-weight: 700;
    position: relative;
    border-radius: 25px;
    line-height: 1.5;
  }
  
  .anser a {
    color: #ffdd34;
    text-decoration: underline;
  }
  
  .anser::after {
    content: "";
    font-size: 0;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    border-style: solid;
    border-width: 0 3px 20px 16px;
    border-color: transparent transparent transparent #85bcd6;
    position: absolute;
    right: -15px;
  }

  .q_a {
    padding: 80px 0;
}
  
.q_a_area {
    max-width: 1000px;
    margin: auto;
	overflow: hidden;
}

.contact_us_btn {
    width: fit-content;
    margin: auto;
	padding-bottom: 5%;
}

.btn-copy {
    font-size: 1.5rem!important;
    font-weight: bold!important;
    position: relative!important;
    margin-bottom: 0.2em!important;
    text-align: center!important;
}

.contact_us_btn_div {
    width: fit-content;
    margin: 4% auto;
}

.btn-copy:before {
    margin-right: 1rem!important;
    content: '＼'!important;
}

.btn-copy:after {
    margin-left: 1rem!important;
    content: '／'!important;
}

.contact_us_yellowbtn:after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 1.2rem;
    line-height: 1;
    position: absolute;
    top: calc(50% - 0.5rem);
    right: 2.5rem;
    margin: 0;
    padding: 0;
    content: '\f054';
}

.contact_us_yellowbtn {
    background-color: #fff100;
    border-radius: 100vh;
    width: fit-content;
    margin: auto;
    padding: 1rem 5rem 1rem 3rem;
    font-size: 120%;
    filter: drop-shadow(0px 8px 0px #ccc100);
    color: #000;
    position: relative;
    font-weight: 700;
    display: block;
	white-space: nowrap;
}

.hover_yellowbtn:hover {
    color: #000;
    transform: translate(0px,6px);
    filter: drop-shadow(0px 2px 0px #ccc100);
}




@media screen and (max-width:1024px) {

    .q_a_area {
        max-width: 1000px!important;
        margin: auto!important;
        font-size: 12px!important;
    }

    .anser {
        width: 65%!important;
        font-size: 13px!important;
    }

    .anser::after {
        right: -10px!important;
    }

    .question_txt {
        font-size: 13px!important;
    }

    .q_a {
        padding: 30px 0!important;
    }

    .btn-copy {
        font-size: 1rem!important;
    }


}




/*----------------------------------------------------
ECサイト制作
-----------------------------------------------------*/


.ec-site-page .ec-site-page_1 {
    position: relative;
} 

.ec-site-page .ec-site-page_1-1 {
    width: 70%;
    position: absolute;
    right: 0;
    top: 20%;
}

.ec-site-page .hukidashi_area {
    background: #fff;
    font-size: clamp(20px,1.44vw,30px);
    max-width: 50%;
    padding: 1% 2%;
    border-radius: 50px;
    line-height: 1.5;
    text-align: center;
    margin: auto;
}

.ec-site-page .ec-site-page_1-2 {
    position: absolute;
    right: 0;
    top: 50%;
    font-size: 3.2vw;
    font-weight: 700;
    text-align: center;
    width: 70%;
}

.ec-site-page .hukidashi_area::after {
    content: "";
    border: solid 20px #fff;
    position: absolute;
    bottom: -40px;
    border-bottom: solid 20px transparent;
    border-left: solid 20px transparent;
    border-right: solid 20px transparent;
    right: 0;
    left: 0;
    margin: auto;
    width: 20px;
}

.ec-site-page .ec-site-page_2 {
    margin: 5% auto;
}

.ec-site-page .ec-site-page_2-1 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 2%;
    font-weight: 700;
}

.ec-site-page .ec-site-page_1-2-2 {
    font-size: clamp(30px,5vw,75px);
    line-height: 1.5;
    letter-spacing: 0em!important;
    -webkit-text-stroke: 0.03em #3d8dad!important;
    color: #ffffff!important;
    font-family: 'Noto Sans JP', sans-serif!important;
    font-weight: 700;
}

.ec-site-page .ec-site-page_1-2-1 {
    font-size: clamp(23px,3.5vw,70px);
}

.ec-site-page .ec-site-page_2-2 {
    max-width: 900px;
    margin: auto;
}

.ec-site-page .ec-site-page_2-2 li {
    list-style: none;
    width: calc(95%/2);
    border: solid 5px #3d8dad;
    padding: 7% 4% 3%;
    margin: 2% auto;
    position: relative;
}

.ec-site-page .ec-site-page_2-2 ul {
    padding: 0;
    margin: 0;
    display: flex;
}

.ec-site-page .ec-site-page_2-2-2 {
    color: #3d8dad;
    font-size: 24px;
    margin: 4% auto 2%;
}

.ec-site-page .ec-site-page_2-2-3 {
    line-height: 2;
}

.ec-site-page .ec-site-page_2-2 li:after {
    content: "";
    border: solid 40px #3d8dad;
    position: absolute;
    top: 0;
    left: 0;
}

.ec-site-page .ec-site-page_2-2 ul:nth-child(1) li:nth-child(1):before {
    content: "01";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9;
    color: #fff;
    font-size: 60px;
    padding: 2%;
	line-height: 1;
}

.ec-site-page .ec-site-page_2-2 ul:nth-child(1) li:nth-child(2):before {
    content: "02";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9;
    color: #fff;
    font-size: 60px;
    padding: 2%;
	line-height: 1;
}

.ec-site-page .ec-site-page_2-2 ul:nth-child(2) li:nth-child(1):before {
    content: "03";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9;
    color: #fff;
    font-size: 60px;
    padding: 2%;
	line-height: 1;
}

.ec-site-page .ec-site-page_2-2 ul:nth-child(2) li:nth-child(2):before {
    content: "04";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9;
    color: #fff;
    font-size: 60px;
    padding: 2%;
	line-height: 1;
}

.ec-site-page .ec-site-page_3-1 {
    text-align: center;
}

.ec-site-page .ec-site-page_3-1 > span {
    display: block;
    margin: 1% auto;
    font-size: 30px;
}

.ec-site-page .ec-site-page_3 .performance_list {
    display: block;
    margin: auto;
    font-size: 0;
    width: 70%;
}

.ec-site-page .ec-site-page_3 .home_performance {
    padding-top: 1%;
}

.ec-site-page .ec-site-page_3 .ec-site-page_3 {
    margin-top: 10%;
}

.ec-site-page .ec-site-page_3 .performance_list_box {
    box-shadow: 5px 5px 5px #ccc;
    width: calc(100%/3 - 25px*2);
    display: inline-block;
    font-size: 18px;
}

.ec-site-page .ec-site-page_3-2-2 {
    padding: 3%;
}

.ec-site-page .ec-site-page_2-2-1 {
    height: 300px;
}

.ec-site-page .ec-site-page_2-2-1 img {
    width: 100%;
    height: 300px;
	object-fit: contain;
}

@media screen and (max-width:1024px) {

    .ec-site-page .ec-site-page_1-1 {
        width: 70%;
        position: absolute;
        right: 0;
        top: 25%;
    }

    .ec-site-page .hukidashi_area::after {
        content: "";
        border: solid 10px #fff;
        position: absolute;
        bottom: -20px;
        border-bottom: solid 10px transparent;
        border-left: solid 10px transparent;
        border-right: solid 10px transparent;
        right: 0;
        left: 0;
        margin: auto;
        width: 20px;
    }

    .ec-site-page .hukidashi_area {
        font-size: 16px;
        right: 15%;
    }

    .ec-site-page .ec-site-page_1-2 {
        top: 55%;
        width: 70%;
        right: 0;
    }

    .ec-site-page .ec-site-page_3 .performance_list {
        display: block;
        width: 95%;
        margin: auto;
    }

    .ec-site-page .ec-site-page_3 .performance_list_box {
        width: 100%;
    }

}


@media screen and (max-width:600px) {

    .ec-site-page .ec-site-page_1-1 {
        top: 15%;
    }

    .ec-site-page .hukidashi_area {
        font-size: clamp(11px,1.5vw,18px);
        right: 7%;
        max-width: 80%;
        padding: 1% 6%;
    }

    .ec-site-page .ec-site-page_1-2 {
        top: 55%;
        width: 65%;
        right: 0;
        font-size: clamp(16px,4vw,22px);
        line-height: 1.2;
    }

    .ec-site-page .ec-site-page_1-2-1 {
        font-size: clamp(12px,3.5vw,20px);
    }

    .ec-site-page .ec-site-page_1-2-2 {
        font-size: clamp(14px,4.7vw,28px);
    }

    .ec-site-page .ec-site-page_2-2 ul {
        display: block;
    }

    .ec-site-page .ec-site-page_2-2 li {
        list-style: none;
        width: 95%;
        border: solid 5px #3d8dad;
        padding: 15% 8% 7%;
        margin: 2% auto;
        position: relative;
    }

    .ec-site-page .ec-site-page_3-1 > span {
        font-size: 24px;
    }
    
    .ec-site-page .ec-site-page_3-1 > span:nth-child(2) {
        font-size: 14px;
        margin-top: 3%;
        display: block;
    }

    .ec-site-page .ec-site-page_3 {
        margin-top: 20%;
    }

    .ec-site-page .ec-site-page_2-1 {
        text-align: center;
        font-size: 24px;
        margin-bottom: 6%;
        font-weight: 700;
        margin-top: 15%;
    }


}


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

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


.web-site-page .ec-site-page_1-1 {
    width: 100%;
    top: 30%;
}

.web-site-page .ec-site-page_1-2 {
    width: 100%;
}

.web-site-page .ec-site-page_1-2-2 {
    -webkit-text-stroke: 0.03em #cb1785!important;
}

.web-site-page .ec-site-page_2-2 li {
    border: solid 5px #654c9f;
}

.web-site-page .ec-site-page_2-2 li:after {
    content: "";
    border: solid 40px #654c9f;
}

.web-site-page .ec-site-page_2-2-2 {
    color: #cb1785;
}

.ec-site-page {
    margin-bottom: 5%;
}

.ec-site-page_1 img {
    width: 100%;
}

@media screen and (max-width: 600px){

    .web-site-page .ec-site-page_1-2-2 {
        font-size: clamp(16px,6.5vw,35px);
    }

    .ec-site-page .hukidashi_area::after {
        content: "";
        border: solid 5px #fff;
        position: absolute;
        bottom: -10px;
        border-bottom: solid 5px transparent;
        border-left: solid 5px transparent;
        border-right: solid 5px transparent;
        right: 0;
        left: 0;
        margin: auto;
        width: 0px;
    }

}


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

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


.onestop-site-page .ec-site-page_1-1 {
    width: 100%;
    top: 30%;
}

.onestop-site-page .ec-site-page_1-2 {
    width: 100%;
}

.onestop-site-page .ec-site-page_1-2-2 {
    -webkit-text-stroke: 0.03em #006818!important;
}

.onestop-site-page .ec-site-page_2-2 li {
    border: solid 5px #1db93f;
}

.onestop-site-page .ec-site-page_2-2 li:after {
    content: "";
    border: solid 40px #1db93f;
}

.onestop-site-page .ec-site-page_2-2-2 {
    color: #006818;
}

@media screen and (max-width: 600px){

    .onestop-site-page .ec-site-page_1-2-2 {
        font-size: clamp(16px,6.5vw,35px);
    }

    .ec-site-page .hukidashi_area::after {
        content: "";
        border: solid 5px #fff;
        position: absolute;
        bottom: -10px;
        border-bottom: solid 5px transparent;
        border-left: solid 5px transparent;
        border-right: solid 5px transparent;
        right: 0;
        left: 0;
        margin: auto;
        width: 0px;
    }

}

.web-site-page .production_results_list li {
    margin: 2%;
}

.ec-site-page .production_results_list li {
    margin: 2%;
}

.contact_us_btn {
    margin-top: 5%;
}



/*--------------------------------------
TOPへ戻るボタン
---------------------------------------*/

.return_top > a {
    background: #3d8f924d;
    display: block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: fixed;
    right: 1%;
    bottom: 3%;
}

.return_top_img {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    text-align: center;
    margin: auto;
    width: fit-content;
    transform: translate(0, -30%);
}

.return_top_img img {
    max-width: 50px;
}

.return_top_icon::before {
    content: "";
    border: solid 12px;
    border-color: transparent transparent #FFF transparent;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 15px;
    top: 0;
}

.return_top_icon {
    position: absolute;
    left: 0;
    right: 0;
    top: -5px;
    margin: auto;
}

.hover_on {
    display: none;
}

.return_top > a:hover .hover_off {
    display: none;
}

.return_top > a:hover .hover_on {
    display: block;
}

.return_top {
    z-index: 99999;
    position: relative;
}

.grecaptcha-badge {
    display: none!important;
}