/* template.css は normalize.css をベースとしてカスタマイズしたものです */
/* 2019-08-19 */

/* box-sizing は BOXサイズの計算方法を指定するプロパティ */
/* 値をborder−box とした場合、paddingとmaeginの値をBOXサイズ内に含めて計算される */
*, *:before, *:after, *:hover {
/* 【2021.12.8】すべての要素でレイアウト崩れのトリガーになっているので削除する
	margin: 0;
	padding: 0;
	border: 0;
*/
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	}

/* 旧ブラウザ向けにHTML5のdisplayルールを設定する  */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
	display: block;
	}

/* _blankの付くリンクのアイコンを付ける */
a[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-left: 6px;
	background: url(/wp/wp-content/themes/premium/img/thema_icon-outlink.png) center center / 13px auto no-repeat;
}

/* リンクのクリック時やマウスフォーカス時の枠を消す */
*:focus {outline: none;}

body {
/*	font-family:"Hiragino Kaku Gothic Pro", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "ヒラギノ角ゴ ProN", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana;
	font-size: calc(0.5rem + 1vmin);*/
	line-height: 1.6;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	font-size: 1rem;
	color: #212121;
	background-color:#fff;
	margin: 135px 0 0 0;
	padding:0;
	height: 100%;
	width: 100%;
	}
	@media all and (-ms-high-contrast: none) {
		body {
			font-family: "游ゴシック Medium", Verdana, Meiryo, sans-serif;
		}
	}

p {
	display: block;
	-webkit-margin-before: .5em;
	-webkit-margin-after: .5em;
	-webkit-margin-start: 0px;
	-webkit-margin-end: 0px;
	}

h1 {
	font-size: calc(0.5rem + 3vmin);/* 32px or 31~34 */
	font-weight: bold;
	}

h2 {
	/*font-size: 2.6vw;*/
	font-size: calc(0.5rem + 2.5vmin);/* 28px or 27~30 */
	font-weight: bold;
	}

h3 {
	font-size: calc(0.5rem + 1.8vmin);/* 24px or 23~26 */
	font-weight: bold;
	}

h4 {
	font-size: calc(0.5rem + 1.4vmin);/* 20px or 19~23 */
	font-weight: bold;
	}

h5 {
	font-size: calc(0.5rem + 1vmin);/* 16px or 16~18 */
	font-weight: bold;
	}

@media screen and (max-width: 640px) {
	h1 {font-size: calc(0.7rem + 3vmin);}
	h2 {font-size: calc(0.7rem + 2.5vmin);}
	h3 {font-size: calc(0.7rem + 1.8vmin);}
	h4 {font-size: calc(0.7rem + 1.4vmin);}
	}

/**
 * Add the correct display in IE 9-.
 */

ul, ol {
	list-style: none;
	}

/* ------ list style ------*/
ul.list-num {/* 数字 */
	padding-left: 1.6em;
	list-style-type: decimal;
	}

ul.list-disk {/* ●印 */
	padding-left: 1.6em;
	list-style-type: disc;
	}

ul.list-caution-num li {/* ※印 */
	padding-left: 2.4em;
	position: relative;
	}
	ul.list-caution-num li:before {
		position: absolute;
		left: 0;
		}
	ul.list-caution-num li:nth-of-type(1):before {
		content: "※1";
		}
	ul.list-caution-num li:nth-of-type(2):before {
		content: "※2";
		}
	ul.list-caution-num li:nth-of-type(3):before {
		content: "※3";
		}
	ul.list-caution-num li:nth-of-type(4):before {
		content: "※4";
		}
	ul.list-caution-num li:nth-of-type(5):before {
		content: "※5";
		}
	ul.list-caution-num li:nth-of-type(6):before {
		content: "※6";
		}
	ul.list-caution-num li:nth-of-type(7):before {
		content: "※7";
		}
	ul.list-caution-num li:nth-of-type(8):before {
		content: "※8";
		}
	ul.list-caution-num li:nth-of-type(9):before {
		content: "※9";
		}
	ul.list-caution-num li:nth-of-type(10):before {
		content: "※10";
		}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
	box-sizing: content-box; /* 1 */
	height: 0; /* 1 */
	overflow: visible; /* 2 */
	}

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

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

/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */

a {
	background-color: transparent; /* 1 */
	-webkit-text-decoration-skip: objects; /* 2 */
	text-decoration: none;
	}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */

a:active {
	outline-width: 0;
	}

a:hover {
	outline-width: 0;
	}

	/* 透過したい画像の方が少ないので利用しない。
a:hover img {
	opacity: 0.6;
	filter: alpha(opacity=60);
	-ms-filter: "alpha( opacity=60 )";
	}
*/

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
	border-bottom: none; /* 1 */
	text-decoration: underline; /* 2 */
	text-decoration: underline dotted; /* 2 */
	}

/**
 * addressタグで斜めにならないようにする
 */
address{
	font-style:normal;
	}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */

b,
strong {
	font-weight: inherit;
	}

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

/**
 * Add the correct font style in Android 4.3-.
 */

dfn {
	font-style: italic;
	}

/**
 * Add the correct background and color in IE 9-.
 */

mark {
	background-color: #ff0;
	color: #000;
	}

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

/**
 * Add the correct display in IE 9-.
 */

audio,
video {
	display: inline-block;
	}

/**
 * Add the correct display in iOS 4-7.
 */

audio:not([controls]) {
	display: none;
	height: 0;
	}

/**
 * Remove the border on images inside links in IE 10-.
 */

img {
	border-style: none;
	border: 0; }

/**
 * Hide the overflow in IE.
 */

svg:not(:root) {
	overflow: hidden;
	}

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

/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "Helvetica Neue", Helvetica, Arial, sans-serif; /* 1 */
	font-size: 1em; /* 1 */
	line-height: 1.6; /* 1 */
	margin: 0; /* 2 */
	}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
	overflow: visible;
	}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
	text-transform: none;
	}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *	controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */

button,
html [type="button"], /* 1 */
[type="reset"],
[type="submit"] {
	-webkit-appearance: button; /* 2 */
	}

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

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
	}

/**
 * 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; /* 1 */
	color: inherit; /* 2 */
	display: table; /* 1 */
	max-width: 100%; /* 1 */
	padding: 0; /* 3 */
	white-space: normal; /* 1 */
	}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
	display: inline-block; /* 1 */
	vertical-align: baseline; /* 2 */
	}

/**
 * Remove the default vertical scrollbar in IE.
 */

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; /* 1 */
	padding: 0; /* 2 */
	}

/**
 * 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; /* 1 */
	outline-offset: -2px; /* 2 */
	}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-cancel-button,
[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; /* 1 */
	font: inherit; /* 2 */
	}

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

/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */

details, /* 1 */
menu {
	display: block;
	}

/*
 * Add the correct display in all browsers.
 */

summary {
	display: list-item;
	}

/* Scripting
	 ========================================================================== */

/**
 * Add the correct display in IE 9-.
 */

canvas {
	display: inline-block;
	}

/**
 * Add the correct display in IE.
 */

template {
	display: none;
	}

/* Hidden
	 ========================================================================== */

/**
 * Add the correct display in IE 10-.
 */

[hidden] {
	display: none;
	}


/* スマホ用のバーガーボタンをタップした際に変更される半透明背景色を
   予め透明黒にしておくことでフラッシュしたような効果を無くす
 */
body {
  background-color: rgba(0, 0, 0, 0);
}

.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.inset-0 {
  inset: 0px;
}
.inset-x-0 {
  left: 0px;
  right: 0px;
}
.left-0 {
  left: 0px;
}
.left-\[14px\] {
  left: 14px;
}
.left-\[4px\] {
  left: 4px;
}
.left-\[8px\] {
  left: 8px;
}
.right-0 {
  right: 0px;
}
.right-\[16px\] {
  right: 16px;
}
.top-0 {
  top: 0px;
}
.top-1\/2 {
  top: 50%;
}
.top-\[4px\] {
  top: 4px;
}
.top-\[8px\] {
  top: 8px;
}
.top-\[13px\] {
  top: 13px;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-50 {
  z-index: 50;
}
.-m-\[12px\] {
  margin: -12px;
}
.mx-\[145px\] {
  margin-left: 145px;
  margin-right: 145px;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-\[10px\] {
  margin-top: 10px;
  margin-bottom: 10px;
}
.-ml-\[4px\] {
  margin-left: -4px;
}
.-mt-\[6px\] {
  margin-top: -6px;
}
.-mt-\[85px\] {
  margin-top: -85px;
}
.-mt\[85px\] {
  margin-top: -85px;
}
.mb-\[10px\] {
  margin-bottom: 10px;
}
.mb-\[120px\] {
  margin-bottom: 120px;
}
.mb-\[12px\] {
  margin-bottom: 12px;
}
.mb-\[15px\] {
  margin-bottom: 15px;
}
.mb-\[16px\] {
  margin-bottom: 16px;
}
.mb-\[17px\] {
  margin-bottom: 17px;
}
.mb-\[20px\] {
  margin-bottom: 20px;
}
.mb-\[21px\] {
  margin-bottom: 21px;
}
.mb-\[22px\] {
  margin-bottom: 22px;
}
.mb-\[24px\] {
  margin-bottom: 24px;
}
.mb-\[25px\] {
  margin-bottom: 25px;
}
.mb-\[26px\] {
  margin-bottom: 26px;
}
.mb-\[27px\] {
  margin-bottom: 27px;
}
.mb-\[2px\] {
  margin-bottom: 2px;
}
.mb-\[30px\] {
  margin-bottom: 30px;
}
.mb-\[36px\] {
  margin-bottom: 36px;
}
.mb-\[40px\] {
  margin-bottom: 40px;
}
.mb-\[42px\] {
  margin-bottom: 42px;
}
.mb-\[45px\] {
  margin-bottom: 45px;
}
.mb-\[4px\] {
  margin-bottom: 4px;
}
.mb-\[50px\] {
  margin-bottom: 50px;
}
.mb-\[6px\] {
  margin-bottom: 6px;
}
.mb-\[8px\] {
  margin-bottom: 8px;
}
.ml-\[10px\] {
  margin-left: 10px;
}
.ml-auto {
  margin-left: auto;
}
.mr-10 {
  margin-right: 2.5rem;
}
.mr-\[10px\] {
  margin-right: 10px;
}
.mr-\[8px\] {
  margin-right: 8px;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-\[10px\] {
  margin-top: 10px;
}
.mt-\[15px\] {
  margin-top: 15px;
}
.mt-\[20px\] {
  margin-top: 20px;
}
.mt-\[21px\] {
  margin-top: 21px;
}
.mt-\[24px\] {
  margin-top: 24px;
}
.mt-\[40px\] {
  margin-top: 40px;
}
.mt-\[4px\] {
  margin-top: 4px;
}
.block {
  display: block;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.aspect-video {
  aspect-ratio: 16 / 9;
}
.aspect-video img {
  object-fit: cover;
  height: 100%;
}
.h-10 {
  height: 2.5rem;
}
.h-\[120px\] {
  height: 120px;
}
.h-\[14px\] {
  height: 14px;
}
.h-\[150px\] {
  height: 150px;
}
.h-\[165px\] {
  height: 165px;
}
.h-\[16px\] {
  height: 16px;
}
.h-\[170px\] {
  height: 170px;
}
.h-\[188px\] {
  height: 188px;
}
.h-\[18px\] {
  height: 18px;
}
.h-\[195px\] {
  height: 195px;
}
.h-\[1px\] {
  height: 1px;
}
.h-\[20px\] {
  height: 20px;
}
.h-\[210px\] {
  height: 210px;
}
.h-\[25px\] {
  height: 25px;
}
.h-\[2px\] {
  height: 2px;
}
.h-\[30px\] {
  height: 30px;
}
.h-\[32px\] {
  height: 32px;
}
.h-\[34vh\] {
  height: 34vh;
}
.h-\[40px\] {
  height: 40px;
}
.h-\[60px\] {
  height: 60px;
}
.h-\[75px\] {
  height: 75px;
}
.h-\[80px\] {
  height: 80px;
}
.h-\[85px\] {
  min-height: 85px;
}
.h-\[8px\] {
  height: 8px;
}
.h-\[90px\] {
  height: 90px;
}
.h-auto {
  height: auto;
}
.h-full {
  height: 100%;
}
.h-px {
  height: 1px;
}
.h-screen {
  height: 100vh;
}
#menu-opened {
  height: calc(100dvh - 60px);
  padding-bottom: 2.5rem;
  overflow-y: auto;
}
.w-1\/2 {
  width: 50%;
}
.w-3 {
  width: 0.75rem;
}
.w-3\.5 {
  width: 0.875rem;
}
.w-4 {
  width: 1rem;
}
.w-40 {
  width: 10rem;
}
.w-\[120px\] {
  width: 120px;
}
.w-\[12px\] {
  width: 12px;
}
.w-\[134px\] {
  width: 134px;
}
.w-\[13px\] {
  width: 13px;
}
.w-\[140px\] {
  width: 140px;
}
.w-\[145px\] {
  width: 145px;
}
.w-\[14px\] {
  width: 14px;
}
.w-\[15px\] {
  width: 15px;
}
.w-\[16px\] {
  width: 16px;
}
.w-\[170px\] {
  width: 170px;
}
.w-\[17px\] {
  width: 17px;
}
.w-\[180px\] {
  width: 180px;
}
.w-\[18px\] {
  width: 18px;
}
.w-\[20px\] {
  width: 20px;
}
.w-\[215px\] {
  width: 215px;
}
.w-\[22px\] {
  width: 22px;
}
.w-\[245px\] {
  width: 245px;
}
.w-\[25px\] {
  width: 25px;
}
.w-\[28px\] {
  width: 28px;
}
.w-\[30px\] {
  width: 30px;
}
.w-\[31px\] {
  width: 31px;
}
.w-\[320px\] {
  width: 320px;
}
.w-\[335px\] {
  width: 335px;
}
.w-\[40px\] {
  width: 40px;
}
.w-\[45px\] {
  width: 45px;
}
.w-\[50px\] {
  width: 50px;
}
.w-\[75px\] {
  width: 75px;
}
.w-auto {
  width: auto;
}
.w-fit-content {
  width: -moz-fit-content;
  width: fit-content;
}
.w-full {
  width: 100%;
}
.w-px {
  width: 1px;
}
.w-screen {
  width: 100vw;
}
.max-w-\[335px\] {
  max-width: 335px;
}
.max-w-archive {
  width: 100%;
  max-width: 820px;
}
@media (max-width: 1199px) {
  .max-w-archive {
    max-width: 1280px;
  }
}
.max-w-none {
  max-width: none;
}
.max-w-pc {
  width: 100%;
  max-width: 1280px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1199px) {
  .max-w-pc {
    padding-left: 4vw;
    padding-right: 4vw;
  }
}
.narrow-w-pc {
  width: 100%;
  max-width: 880px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1199px) {
  .narrow-w-pc {
    padding-left: 4vw;
    padding-right: 4vw;
  }
}
.max-w-post {
  max-width: 880px;
}
.max-w-sp {
  max-width: 440px;
}
.shrink-0 {
  flex-shrink: 0;
}
.grow {
  flex-grow: 1;
}
.origin-left {
  transform-origin: left;
}
.-translate-x-\[4px\] {
  transform: translate(-4px, 0);
}
.-translate-x-\[8px\] {
  transform: translate(-8px, 0);
}
.-translate-y-1\/2 {
  transform: translate(0, -50%);
}
.-translate-y-\[4px\] {
  transform: 0, -4px;
}
.-translate-y-\[8px\] {
  transform: translate(0, -8px);
}
.translate-x-full {
  transform: translate(100%, 0);
}
.rotate-180 {
  transform: rotate(180deg);
}
.scale-50 {
  transform: scaleX(0.5) scaleY(0.5);
}
.scale-\[0\.8\] {
  transform: scaleX(0.8) scaleY(0.8);
}
.scale-\[0\.95\] {
  transform: scaleX(0.95) scaleY(0.95);
}
.cursor-pointer {
  cursor: pointer;
}
.list-\[\'\30fb \'\] {
  list-style-type: "・";
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.items-stretch {
  align-items: stretch;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-\[8px\] {
  gap: 8px;
}
.gap-\[10px\] {
  gap: 10px;
}
.gap-\[12px\] {
  gap: 12px;
}
.gap-\[14px\] {
  gap: 14px;
}
.gap-\[20px\] {
  gap: 20px;
}
.gap-x-1 {
  -moz-column-gap: 0.25rem;
  column-gap: 0.25rem;
}
.gap-x-1\.5 {
  -moz-column-gap: 0.375rem;
  column-gap: 0.375rem;
}
.gap-x-2 {
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
}
.gap-x-2\.5 {
  -moz-column-gap: 0.625rem;
  column-gap: 0.625rem;
}
.gap-x-\[10px\] {
  -moz-column-gap: 10px;
  column-gap: 10px;
}
.gap-x-\[12px\] {
  -moz-column-gap: 12px;
  column-gap: 12px;
}
.gap-x-\[13px\] {
  -moz-column-gap: 13px;
  column-gap: 13px;
}
.gap-x-\[14px\] {
  -moz-column-gap: 14px;
  column-gap: 14px;
}
.gap-x-\[16px\] {
  -moz-column-gap: 16px;
  column-gap: 16px;
}
.gap-x-\[17px\] {
  -moz-column-gap: 17px;
  column-gap: 17px;
}
.gap-x-\[19px\] {
  -moz-column-gap: 19px;
  column-gap: 19px;
}
.gap-x-\[20px\] {
  -moz-column-gap: 20px;
  column-gap: 20px;
}
.gap-x-\[24px\] {
  -moz-column-gap: 24px;
  column-gap: 24px;
}
.gap-x-\[25px\] {
  -moz-column-gap: 25px;
  column-gap: 25px;
}
.gap-x-\[4px\] {
  -moz-column-gap: 4px;
  column-gap: 4px;
}
.gap-x-\[50px\] {
  -moz-column-gap: 50px;
  column-gap: 50px;
}
.gap-x-\[52px\] {
  -moz-column-gap: 52px;
  column-gap: 52px;
}
.gap-x-\[8px\] {
  -moz-column-gap: 8px;
  column-gap: 8px;
}
.gap-x-\[9px\] {
  -moz-column-gap: 9px;
  column-gap: 9px;
}
.gap-y-5 {
  row-gap: 1.25rem;
}
.gap-y-\[20px\] {
  row-gap: 20px;
}
.gap-y-\[25px\] {
  row-gap: 25px;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-x-scroll {
  overflow-x: scroll;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-sm {
  border-radius: 0.125rem;
}
.border {
  border-width: 1px;
}
.border-2 {
  border-width: 2px;
}
.border-x-\[1px\] {
  border-left-width: 1px;
  border-right-width: 1px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-l-\[1px\] {
  border-left-width: 1px;
}
.border-r-\[1px\] {
  border-right-width: 1px;
}
.border-\[\#cccccc\] {
  border-color: #ccc;
}
.border-primary-gray {
  border-color: #4c4c4c;
}
.border-primary-orange {
  border-color: #fd6c26;
}
.border-white {
  border-color: white;
}
.bg-\[\#00BF10\] {
  background-color: #00bf10;
}
.bg-\[\#FF3333\] {
  background-color: #f33;
}
.bg-\[\#f2f2f2\] {
  background-color: #f2f2f2;
}
.bg-black {
  background-color: black;
}
.bg-gray-500 {
  background-color: #6b7280;
}
.bg-primary-blue {
  background-color: #00afbf;
}
.bg-primary-gray {
  background-color: #4c4c4c;
}
.bg-primary-light {
  background-color: #ebedf0;
}
.bg-primary-orange {
  background-color: #fd6c26;
}
.bg-secondary-orange {
  background-color: #ff9326;
}
.bg-tertiary-orange {
  background-color: #fc6d26;
}
.bg-white {
  background-color: white;
}
.bg-opacity-90 {
  opacity: 0.9;
}
.fill-current {
  fill: currentColor;
}
.stroke-primary-blue {
  stroke: #00afbf;
}
.stroke-white {
  stroke: #fff;
}
.object-cover {
  -o-object-fit: cover;
  object-fit: cover;
}
.object-center {
  -o-object-position: center;
  object-position: center;
}
.p-\[10px\] {
  padding: 10px;
}
.p-\[15px\] {
  padding: 15px;
}
.p-\[12px\]  {
  padding: 12px;
}
.p-\[20px\] {
  padding: 20px;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-\[10px\] {
  padding-left: 10px;
  padding-right: 10px;
}
.px-\[16px\] {
  padding-left: 16px;
  padding-right: 16px;
}
.px-\[18px\] {
  padding-left: 18px;
  padding-right: 18px;
}
.px-\[20px\] {
  padding-left: 20px;
  padding-right: 20px;
}
.px-\[40px\] {
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 1199px) {
  .px-\[40px\] {
    padding-left: 4vw;
    padding-right: 4vw;
  }
}
.px-\[4px\] {
  padding-left: 4px;
  padding-right: 4px;
}
.px-\[6px\] {
  padding-left: 6px;
  padding-right: 6px;
}
.px-\[8px\] {
  padding-left: 8px;
  padding-right: 8px;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-\[15px\] {
  padding-top: 15px;
  padding-bottom: 15px;
}
.py-\[16px\] {
  padding-top: 16px;
  padding-bottom: 16px;
}
.py-\[20px\] {
  padding-top: 20px;
  padding-bottom: 20px;
}
.py-\[2px\] {
  padding-top: 2px;
  padding-bottom: 2px;
}
.py-\[30px\] {
  padding-top: 30px;
  padding-bottom: 30px;
}
.py-\[40px\] {
  padding-top: 40px;
  padding-bottom: 40px;
}
.py-\[8px\] {
  padding-top: 8px;
  padding-bottom: 8px;
}
.pb-0 {
  padding-bottom: 0px;
}
.pb-\[10px\] {
  padding-bottom: 10px;
}
.pb-\[13px\] {
  padding-bottom: 13px;
}
.pb-\[15px\] {
  padding-bottom: 15px;
}
.pb-\[20px\] {
  padding-bottom: 20px;
}
.pb-\[2px\] {
  padding-bottom: 2px;
}
.pb-\[40px\] {
  padding-bottom: 40px;
}
.pl-\[10px\] {
  padding-left: 10px;
}
.pr-\[10px\] {
  padding-right: 10px;
}
.pt-0 {
  padding-top: 0px;
}
.pt-\[5px\] {
  padding-top: 5px;
}
.pt-\[10px\] {
  padding-top: 10px;
}
.pt-\[12px\] {
  padding-top: 12px;
}
.pt-\[15px\] {
  padding-top: 15px;
}
.pt-\[16px\] {
  padding-top: 16px;
}
.pt-\[20px\] {
  padding-top: 20px;
}
.pt-\[26px\] {
  padding-top: 26px;
}
.pt-\[30px\] {
  padding-top: 30px;
}
.pt-\[32px\] {
  padding-top: 32px;
}
.pt-\[40px\] {
  padding-top: 40px;
}
.pt-\[48px\] {
  padding-top: 48px;
}
.pt-\[4px\] {
  padding-top: 4px;
}
.pt-\[60px\] {
  padding-top: 60px;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-\[10px\] {
  font-size: 10px;
}
.text-\[12px\] {
  font-size: 12px;
}
.text-\[13px\] {
  font-size: 13px;
}
.text-\[14px\] {
  font-size: 14px;
}
.text-\[16px\] {
  font-size: 16px;
}
.text-\[18px\] {
  font-size: 18px;
}
.text-\[19px\] {
  font-size: 19px;
}
.text-\[21px\] {
  font-size: 21px;
}
.text-\[24px\] {
  font-size: 24px;
}
.text-\[28px\] {
  font-size: 28px;
}
.font-bold {
  font-weight: 700;
}
.leading-4 {
  line-height: 1rem;
}
.leading-5 {
  line-height: 1.25rem;
}
.leading-6 {
  line-height: 1.5rem;
}
.leading-7 {
  line-height: 1.75rem;
}
.leading-9 {
  line-height: 2.25rem;
}
.font-palt {
  font-feature-settings: "palt" 1;
}
.tracking-normal {
  letter-spacing: 0em;
}
.tracking-tighter {
  letter-spacing: -0.05em;
}
.text-primary-blue {
  color: #00afbf;
}
.text-primary-orange {
  color: #fd6c26;
}
.text-tertiary-orange {
  color: #fc6d26;
}
.text-white {
  color: white;
}
.underline {
  text-decoration-line: underline;
}
.opacity-0 {
  opacity: 0;
}
.opacity-20 {
  opacity: 0.2;
}
.drop-shadow-md {
  filter: drop-shadow(0 4px 2px rgba(0, 0, 0, 0.05)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.05));
}
.drop-shadow-xl {
  filter: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.03)) drop-shadow(0 8px 5px rgba(0, 0, 0, 0.08));
}
.duration-300 {
  transition-duration: 300ms;
}
.overflow-hidden {
  overflow: hidden;
}
.hover\:border-white:hover {
  border-color: white;
}
.hover\:bg-hover-blue:hover {
  background-color: #30d2f2;
}
.hover\:bg-hover-orange:hover {
  background-color: #ff9326;
}
.hover\:bg-primary-blue:hover {
  background-color: #00afbf;
}
.hover\:bg-primary-orange:hover {
  background-color: #fd6c26;
}
.hover\:text-white:hover {
  color: white;
}
.hover\:opacity-80:hover {
  opacity: 0.8;
}
.group:hover .group-hover\:stroke-white {
  stroke: #fff;
}
.group:hover .group-hover\:text-white {
  color: white;
}
@media (min-width: 1200px) {
  .lg\:absolute {
    position: absolute;
  }
  .lg\:relative {
    position: relative;
  }
  .lg\:sticky {
    position: sticky;
  }
  .lg\:-bottom-\[14px\] {
    bottom: -14px;
  }
  .lg\:top-\[13px\] {
    top: 13px;
  }
  .lg\:left-\[8px\] {
    left: 8px;
  }
  .lg\:right-0 {
    right: 0px;
  }
  .lg\:right-\[40px\] {
    right: 40px;
  }
  .lg\:top-\[50px\] {
    top: 50px;
  }
  .lg\:top-\[50px\] {
    top: 50px;
  }
  .lg\:top-\[100px\] {
    top: 100px;
  }
  .lg\:top-\[8px\] {
    top: 8px;
  }
  .lg\:z-0 {
    z-index: 0;
  }
  .lg\:m-0 {
    margin: 0px;
  }
  .lg\:-ml-\[6px\] {
    margin-left: -6px;
  }
  .lg\:mt-\[60px\] {
    margin-top: 60px;
  }
  .lg\:-mt-\[130px\] {
    margin-top: -130px;
  }
  .lg\:-mt-\[260px\] {
    margin-top: -260px;
  }
  .lg\:-mt-\[40px\] {
    margin-top: -40px;
  }
  .lg\:mb-0 {
    margin-bottom: 0px;
  }
  .lg\:mb-\[0\] {
    margin-bottom: 0;
  }
  .lg\:mb-\[80px\] {
    margin-bottom: 80px;
  }
  .lg\:mb-\[120px\] {
    margin-bottom: 120px;
  }
  .lg\:mb-\[12px\] {
    margin-bottom: 12px;
  }
  .lg\:mb-\[16px\] {
    margin-bottom: 16px;
  }
  .lg\:mb-\[18px\] {
    margin-bottom: 18px;
  }
  .lg\:mb-\[20px\] {
    margin-bottom: 20px;
  }
  .lg\:mb-\[240px\] {
    margin-bottom: 240px;
  }
  .lg\:mb-\[24px\] {
    margin-bottom: 24px;
  }
  .lg\:mb-\[30px\] {
    margin-bottom: 30px;
  }
  .lg\:mb-\[32px\] {
    margin-bottom: 32px;
  }
  .lg\:mb-\[40px\] {
    margin-bottom: 40px;
  }
  .lg\:mb-\[48px\] {
    margin-bottom: 48px;
  }
  .lg\:mb-\[50px\] {
    margin-bottom: 50px;
  }
  .lg\:mb-\[51px\] {
    margin-bottom: 51px;
  }
  .lg\:mb-\[52px\] {
    margin-bottom: 52px;
  }
  .lg\:mb-\[8px\] {
    margin-bottom: 8px;
  }
  .lg\:ml-\[20px\] {
    margin-left: 20px;
  }
  .lg\:mr-0 {
    margin-right: 0px;
  }
  .lg\:mr-\[20px\] {
    margin-right: 20px;
  }
  .lg\:mr-\[40px\] {
    margin-right: 40px;
  }
  .lg\:mt-0 {
    margin-top: 0px;
  }
  .lg\:mt-\[17px\] {
    margin-top: 17px;
  }
  .lg\:mt-\[20px\] {
    margin-top: 20px;
  }
  .lg\:mt-\[28px\] {
    margin-top: 28px;
  }
  .lg\:mt-\[40px\] {
    margin-top: 40px;
  }
  .lg\:mt-\[48px\] {
    margin-top: 48px;
  }
  .lg\:mt-\[6px\] {
    margin-top: 6px;
  }
  .lg\:block {
    display: block;
  }
  .lg\:flex {
    display: flex;
  }
  .lg\:grid {
    display: grid;
  }
  .lg\:hidden {
    display: none;
  }
  .lg\:aspect-video {
    aspect-ratio: 16 / 9;
  }
  .lg\:aspect-video img {
    object-fit: cover;
    height: 100%;
  }
  .lg\:h-\[100px\] {
    height: 100px;
  }
  .lg\:h-\[170px\] {
    height: 170px;
  }
  .lg\:h-\[150px\] {
    height: 150px;
  }
  .lg\:h-\[160px\] {
    height: 160px;
  }
  .lg\:h-\[19px\] {
    height: 19px;
  }
  .lg\:h-\[240px\] {
    height: 240px;
  }
  .lg\:h-\[24px\] {
    height: 24px;
  }
  .lg\:h-\[2px\] {
    height: 2px;
  }
  .lg\:h-\[300px\] {
    height: 300px;
  }
  .lg\:h-\[38px\] {
    height: 38px;
  }
  .lg\:h-\[40px\] {
    height: 40px;
  }
  .lg\:h-\[460px\] {
    height: 460px;
  }
  .lg\:h-\[500px\] {
    height: 500px;
  }
  .lg\:h-\[50px\] {
    height: 50px;
  }
  .lg\:h-\[60px\] {
    height: 60px;
  }
  .gap-y-\[18px\] {
    row-gap: 18px;
  }
  .lg\:w-\[128px\] {
    width: 128px;
  }
  .lg\:h-\[72px\] {
    height: 72px;
  }
  .lg\:h-\[80px\] {
    height: 80px;
  }
  .lg\:h-\[9\.6vh\] {
    height: 9.6vh;
  }
  .lg\:h-auto {
    height: auto;
  }
  .lg\:h-fit-content {
    height: -moz-fit-content;
    height: fit-content;
  }
  .lg\:h-full {
    height: 100%;
  }
  .lg\:w-1\/2 {
    width: 50%;
  }
  .lg\:w-\[100px\] {
    width: 100px;
  }
  .lg\:w-\[150px\] {
    width: 150px;
  }
  .lg\:w-\[170px\] {
    width: 170px;
  }
  .lg\:w-\[200px\] {
    width: 200px;
  }
  .lg\:w-\[22px\] {
    width: 22px;
  }
  .lg\:w-\[24px\] {
    width: 24px;
  }
  .lg\:w-\[25px\] {
    width: 25px;
  }
  .lg\:w-\[28px\] {
    width: 28px;
  }
  .lg\:w-\[290px\] {
    width: 290px;
  }
  .lg\:w-\[30px\] {
    width: 30px;
  }
  .lg\:w-\[330px\] {
    width: 330px;
  }
  .lg\:w-\[366px\] {
    width: 366px;
  }
  .lg\:w-\[36px\] {
    width: 36px;
  }
  .lg\:w-\[44px\] {
    width: 44px;
  }
  .lg\:w-\[47px\] {
    width: 47px;
  }
  .lg\:w-\[500px\] {
    width: 500px;
  }
  .lg\:w-\[50px\] {
    width: 50px;
  }
  .lg\:w-\[560px\] {
    width: 560px;
  }
  .lg\:w-\[60px\] {
    width: 60px;
  }
  .lg\:w-\[62px\] {
    width: 62px;
  }
  .lg\:w-\[80px\] {
    width: 80px;
  }
  .lg\:w-\[820px\] {
    width: 820px;
  }
  .lg\:w-\[90px\] {
    width: 90px;
  }
  .lg\:w-auto {
    width: auto;
  }
  .lg\:w-fit-content {
    width: -moz-fit-content;
    width: fit-content;
  }
  .lg\:w-full {
    width: 100%;
  }
  .lg\:max-w-full {
    max-width: 100%;
  }
  .lg\:max-w-pc {
    max-width: 1280px;
    padding-left: 40px;
    padding-right: 40px;
  }
  .lg\:-translate-y-1\/2 {
    transform: translate(0, -50%);
  }
  .lg\:translate-x-0 {
    transform: translate(0px, 0);
  }
  .lg\:scale-100 {
    transform: scaleX(1) scaleY(1);
  }
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg\:flex-row {
    flex-direction: row;
  }
  .lg\:flex-row-reverse {
    flex-direction: row-reverse;
  }
  .lg\:flex-col {
    flex-direction: column;
  }
  .lg\:flex-wrap {
    flex-wrap: wrap;
  }
  .lg\:items-start {
    align-items: flex-start;
  }
  .lg\:items-center {
    align-items: center;
  }
  .lg\:justify-center {
    justify-content: center;
  }
  .lg\:justify-between {
    justify-content: space-between;
  }
  .lg\:gap-\[16px\] {
    gap: 16px;
  }
  .lg\:gap-\[20px\] {
    gap: 20px;
  }
  .lg\:gap-\[50px\] {
    gap: 50px;
  }
  .lg\:gap-x-2 {
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
  }
  .lg\:gap-x-2\.5 {
    -moz-column-gap: 0.625rem;
    column-gap: 0.625rem;
  }
  .lg\:gap-x-\[158px\] {
    -moz-column-gap: 158px;
    column-gap: 158px;
  }
  .lg\:gap-x-\[16px\] {
    -moz-column-gap: 16px;
    column-gap: 16px;
  }
  .lg\:gap-x-\[20px\] {
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
  .lg\:gap-x-\[24px\] {
    -moz-column-gap: 24px;
    column-gap: 24px;
  }
  .lg\:gap-x-\[30px\] {
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
  .lg\:gap-x-\[40px\] {
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
  .lg\:gap-x-\[50px\] {
    -moz-column-gap: 50px;
    column-gap: 50px;
  }
  .lg\:gap-x-\[8px\] {
    -moz-column-gap: 8px;
    column-gap: 8px;
  }
  .lg\:gap-y-\[30px\] {
    row-gap: 30px;
  }
  .lg\:gap-y-\[60px\] {
    row-gap: 60px;
  }
  .lg\:gap-y-\[80px\] {
    row-gap: 80px;
  }
  .lg\:overflow-auto {
    overflow: auto;
  }
  .lg\:border-2 {
    border-width: 2px;
  }
  .lg\:border-b {
    border-bottom-width: 1px;
  }
  .lg\:bg-transparent {
    background-color: transparent;
  }
  .lg\:p-0 {
    padding: 0px;
  }
  .lg\:p-\[20px\] {
    padding: 20px;
  }
  .lg\:p-\[30px\] {
    padding: 30px;
  }
  .lg\:p-\[40px\] {
    padding: 40px;
  }
  .lg\:p-\[80px\] {
    padding: 80px;
  }
  .lg\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }
  .lg\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .lg\:px-\[14px\] {
    padding-left: 14px;
    padding-right: 14px;
  }
  .lg\:px-\[20px\] {
    padding-left: 20px;
    padding-right: 20px;
  }
  .lg\:px-\[30px\] {
    padding-left: 30px;
    padding-right: 30px;
  }
  .lg\:px-\[50px\] {
    padding-left: 50px;
    padding-right: 50px;
  }
  .lg\:px-\[8px\] {
    padding-left: 8px;
    padding-right: 8px;
  }
  .lg\:py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .lg\:py-2\.5 {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }
  .lg\:py-\[40px\] {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .lg\:py-\[100px\] {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .lg\:py-\[14px\] {
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .lg\:py-\[150px\] {
    padding-top: 150px;
    padding-bottom: 150px;
  }
  .lg\:py-\[18px\] {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .lg\:py-\[20px\] {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .lg\:py-\[2px\] {
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .lg\:py-\[30px\] {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .lg\:py-\[45px\] {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .lg\:py-\[50px\] {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .lg\:pb-0 {
    padding-bottom: 0px;
  }
  .lg\:pb-\[100px\] {
    padding-bottom: 100px;
  }
  .lg\:pb-\[120px\] {
    padding-bottom: 120px;
  }
  .lg\:pb-\[5px\] {
    padding-bottom: 5px;
  }
  .lg\:pb-\[18px\] {
    padding-bottom: 18px;
  }
  .lg\:pb-\[30px\] {
    padding-bottom: 30px;
  }
  .lg\:pb-\[40px\] {
    padding-bottom: 40px;
  }
  .lg\:pb-\[52px\] {
    padding-bottom: 52px;
  }
  .lg\:pb-\[70px\] {
    padding-bottom: 70px;
  }
  .lg\:pl-\[16px\] {
    padding-left: 16px;
  }
  .lg\:pr-\[20px\] {
    padding-right: 20px;
  }
  .lg\:pt-0 {
    padding-top: 0px;
  }
  .lg\:pt-\[80px\] {
    padding-top: 80px;
  }
  .lg\:pt-\[115px\] {
    padding-top: 115px;
  }
  .lg\:pt-\[120px\] {
    padding-top: 120px;
  }
  .lg\:pt-\[20px\] {
    padding-top: 20px;
  }
  .lg\:pt-\[24px\] {
    padding-top: 24px;
  }
  .lg\:pt-\[30px\] {
    padding-top: 30px;
  }
  .lg\:pt-\[40px\] {
    padding-top: 40px;
  }
  .lg\:pt-\[96px\] {
    padding-top: 96px;
  }
  .lg\:text-left {
    text-align: left;
  }
  .lg\:text-center {
    text-align: center;
  }
  .lg\:text-\[12px\] {
    font-size: 12px;
  }
  .lg\:text-\[14px\] {
    font-size: 14px;
  }
  .lg\:text-\[16px\] {
    font-size: 16px;
  }
  .lg\:text-\[18px\] {
    font-size: 18px;
  }
  .lg\:text-\[21px\] {
    font-size: 21px;
  }
  .lg\:text-\[24px\] {
    font-size: 24px;
  }
  .lg\:text-\[28px\] {
    font-size: 28px;
  }
  .lg\:text-\[36px\] {
    font-size: 36px;
  }
  .lg\:text-\[38px\] {
    font-size: 38px;
  }
  .lg\:text-\[48px\] {
    font-size: 48px;
  }
  .lg\:leading-7 {
    line-height: 1.75rem;
  }
  .lg\:leading-9 {
    line-height: 2.25rem;
  }
  .lg\:leading-\[58px\] {
    line-height: 58px;
  }
  .lg\:opacity-100 {
    opacity: 1;
  }
  .lg\:drop-shadow-md {
    filter: drop-shadow(0 4px 2px rgba(0, 0, 0, 0.05)) drop-shadow(0 2px 2px rgba(0, 0, 0, 0.05));
  }
}

/* ハンバーガーメニュー（通常時は隠す） */
.navToggle {
  display: none;
}

a, #header-set, .header-wrapper /*, li, img*/ {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
a {
  color: #0bc151;
}

/* フルードイメージ 2021.11.11 */
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

/* ヘッダー */
#header-set {
  /*	width: 100%;
	margin: 0 auto;*/
  height: 95px;
  background-color: #fff;
  /*	position: sticky;*/
  /*	position: -webkit-sticky;*/
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  position: fixed;
}
#header-set.active {
  /*	height: 95px;*/
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.4);
}
.header-wrapper {
  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
  padding: 3.5rem 2rem 4rem;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  /*	-ms-flex-align: center;
	align-items: center;*/
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.active .header-wrapper {
  padding: 1.25rem 2rem 1rem;
  /*	box-shadow: 0 3px 4px rgba(0, 0, 0, 0.4);
	-webkit-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.4);*/
}
.active .nav-menu ul li.inquiry-button a {
  padding: 0.8rem 1.5rem;
}
/*
.header-wrapper {
	width: 100%;
	max-width: 1420px;
	margin: 0 auto;
	padding: 4.5rem 2rem 5rem;
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -ms-flexbox;
	justify-content: space-between;
	-ms-flex-pack: justify;
}
*/
/* SmartCompany ロゴ */
.header-logo {
  width: 17vw;
  min-width: 168px;
}
/*.header-logo img {
	width: 100%;
	max-width: 250px;
	height: auto;
}*/
/* 2021.11.11 **********/
.header-logo img {
  width: 131px;
  height: 61px;
}
/********** 2021.11.11 */

/* ページトップボタン */
#page-top-button {
  position: fixed;
  right: 3rem;
  bottom: 4rem;
  z-index: 99;
}
#page-top-button a {
  color: #000;
}
/* アラートランプ */
#page-top-button .box-alert {
  font-size: 0.5rem;
  letter-spacing: 0.1rem;
  position: relative;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
}
#page-top-button .box-alert .indicater {
  width: 12px;
  height: 12px;
  background: #6dda97;
  position: relative;
  display: inline-block;
  margin-right: 10px;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
}
#page-top-button .box-alert .indicater .ring {
  height: 22px;
  width: 22px;
  top: -5px; /*A.中心*/
  left: -5px; /*A.中心*/
  background: rgba(109, 218, 151, 0.3);
  position: absolute;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  z-index: -1;
}
#page-top-button:hover .ring {
  animation: pulsate-1001 1s ease-out;
  animation-iteration-count: infinite;
  -webkit-animation: pulsate-1001 1s ease-out;
  -webkit-animation-iteration-count: infinite;
  -moz-animation: pulsate-1001 1s ease-out;
  -moz-animation-iteration-count: infinite;
}
@keyframes pulsate-1001 {
  0% {
    transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(2, 2);
    opacity: 0;
  }
}
@-webkit-keyframes pulsate-1001 {
  0% {
    -webkit-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2, 2);
    opacity: 0;
  }
}
@-moz-keyframes pulsate-1001 {
  0% {
    -moz-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -moz-transform: scale(2, 2);
    opacity: 0;
  }
}
#page-top-button .scroll-show img {
  width: 100%;
  height: 100%;
}
#page-top-button .scroll-show {
  width: 12px;
  /*	color: #6dda97;*/
  /*	font-size: .6rem;*/
  position: fixed;
  bottom: 5rem;
  margin: 0;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
}

/* メニュー */
.nav-menu {
  color: #000;
}
.nav-menu a {
  color: #000;
  font-size: 0.9rem;
  /*	font-weight: bold;*/
  text-decoration: none;
  white-space: nowrap;
  flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
}
.nav-menu ul {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  padding-left: 0;
}
.nav-menu ul li {
  text-align: center;
  vertical-align: middle;
  margin: 0 calc(1.6vw * 0.8);
  padding-bottom: 1.5rem;
  /*	display: table-cell;*/
}
.nav-menu a:hover,
.nav-menu li.current-menu-item a,
.nav-menu li.current-page-ancestor a {
  color: #0bc151;
}
.nav-menu ul li:hover,
.nav-menu li.current-menu-item,
.nav-menu li.current-page-ancestor {
  border-bottom: 2px solid #0bc151;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.nav-menu ul li:first-child {
  padding-left: 0;
}
.nav-menu ul li:last-child {
  padding-right: 0;
  border: none; /* hoverしてもborderを表示させない */
}
/* お問い合わせボタン */
.nav-menu ul li.inquiry-button a {
  color: #fff;
  margin-right: 0;
  padding: 1rem 2rem;
  background-color: #0bc151;
  background-image: none;
  border-radius: 10vw;
  -webkit-border-radius: 10vw;
  -moz-border-radius: 10vw;
}
.nav-menu ul li.inquiry-button a:hover {
  color: #fff;
  background-color: #0a7734;
}
.nav-menu ul li.inquiry-button a[target=_blank]:after {
  background-image: url(/wp/wp-content/themes/premium/img/thema_icon-outlink--white.png)
}

/* パンくず */
.breadcrumb {
  font-size: 0.75rem;
  letter-spacing: 0.6vw;
  margin-bottom: 2rem;
}
.breadcrumb a {
  color: #0bc151;
}
.breadcrumb ol {
  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
  padding-left: 11vw;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
}
.breadcrumb ol li:before {
  content: "-";
  margin: 0 0.5rem;
}
.breadcrumb ol li:first-child:before {
  content: "←";
  color: #0bc151;
  margin-right: 0.5rem;
}

/* メインイメージ */
#main-image {
  margin: 135px 0 0;
  position: relative;
}
.main-img-wrapper {
  width: 100%;
  max-width: 1300px;
  height: 65vw;
  max-height: 700px;
  margin: 0 auto;
  position: relative;
}
/* キャッチコピー */
.main-img-wrapper .catchcopy {
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.7vw;
  left: 5vw;
  top: calc(105% / 1.55);
  position: absolute;
  z-index: 3;
}
/* 通常状態では改行を無効にする */
.main-img-wrapper .catchcopy br {
  display: none;
}
/* No.1獲得 */
.main-img-wrapper .no1_txt-top {
  width: 53vw;
  max-width: 487px;
  min-width: 312px;
  left: 7vw;
  top: 0;
  position: absolute;
  z-index: 2;
}
.main-img-wrapper .no1_txt-top img {
  width: 100%;
  height: auto;
}
/* メイン画像 */
.main-img-wrapper .main-img {
  width: 60vw;
  max-width: 600px;
  right: 0;
  position: absolute;
  z-index: 1;
}
.main-img-wrapper .main-img img {
  width: 100%;
  height: auto;
}
/*
.main-img-wrapper .main-img img {
	width: 60vw;
	max-width: 600px;
	right: 0;
	position: absolute;
	z-index: 1;
}
*/
/* 背景の文字 */
.main-subcopy {
  width: 100%;
  /*	color: transparent;*/
  color: rgba(0, 0, 0, 0.01);
  font-size: 12rem;
  letter-spacing: 1vw;
  text-align: center;
  top: 10rem;
  position: absolute;
  overflow: hidden;
  white-space: nowrap;
  flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  text-shadow: 1px 1px 18px rgba(210, 210, 210, 0.3), -1px 1px 18px rgba(210, 210, 210, 0.3), 1px -1px 18px rgba(210, 210, 210, 0.3), -1px -1px 18px rgba(210, 210, 210, 0.3);
  z-index: -1;
}

/* トップ - ABOUT -------------------------------------- */
#top-about {
  width: 100%;
  /*	height: 85vw;
	max-height: 1150px;*/
  min-height: 1050px;
  text-align: center;
  position: relative;
  /*	overflow: hidden;*/
}
.top-about-wrapper {
  /*	width: calc(60vw * 1.5 );*/
  width: calc(50vw * 1.5);
  max-width: 1050px;
  min-width: 640px;
  margin: auto;
  padding: 1.5rem 1.8rem 4rem;
  background-color: #fff;
  box-shadow: 0px 0px 15px 6px rgba(146, 146, 146, 0.2);
  position: relative;
  right: 0;
  left: 0;
  z-index: 1;
}
/* スクロールアイコン */
.top-about-wrapper .scroll-alert {
  font-size: 0.5rem;
  letter-spacing: 0.1rem;
  position: relative;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
}
.top-about-wrapper .scroll-alert .indicater {
  width: 12px;
  height: 12px;
  background: #6dda97;
  position: relative;
  display: inline-block;
  margin-right: 10px;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
}
.top-about-wrapper .scroll-alert .indicater .ring {
  height: 22px;
  width: 22px;
  top: -5px; /*A.中心*/
  left: -5px; /*A.中心*/
  background: rgba(109, 218, 151, 0.3);
  position: absolute;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  animation: pulsate 1s ease-out; /* スピードなど */
  animation-iteration-count: infinite;
  -webkit-animation: pulsate 1s ease-out;
  -webkit-animation-iteration-count: infinite;
  -moz-animation: pulsate 1s ease-out;
  -moz-animation-iteration-count: infinite;
  z-index: -1;
}
/*
	.indicater:hover .ring {
		animation: pulsate 1s ease-out; 
		animation-iteration-count: infinite;
		-webkit-animation: pulsate 1s ease-out;
		-webkit-animation-iteration-count: infinite;
		-moz-animation: pulsate 1s ease-out;
		-moz-animation-iteration-count: infinite;
	}
	*/
@keyframes pulsate {
  0% {
    transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.3, 1.3);
    opacity: 0;
  }
}
@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.3, 1.3);
    opacity: 0;
  }
}
@-moz-keyframes pulsate {
  0% {
    -moz-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -moz-transform: scale(1.3, 1.3);
    opacity: 0;
  }
}
.rwd {
  position: relative;
}
.rwd .scroll-show img {
  width: 100%;
  height: 100%;
}
.top-about-wrapper .scroll-show {
  width: 10px;
  /*	color: #6dda97;*/
  /*	font-size: .6rem;*/
  position: absolute;
  margin: -8px 0 0 1px;
  /*	transform: rotate(90deg);*/
  /*	-webkit-transform: rotate(90deg);*/
  /*	-moz-transform: rotate(90deg);*/
}
/* One人事ロゴ */
/*.top-about-wrapper .smartcompany-logo {
	width: 28vw;
	max-width: 400px;
	margin: 5rem auto 0;
}*/
/* 2021.11.11 **********/
.top-about-wrapper .smartcompany-logo {
  max-width: 400px;
  margin: 5rem auto 0;
}
/********** 2021.11.11 */

/* キャッチコピー */
.top-about-wrapper .about-copy {
  position: relative;
  z-index: 3;
  color: #14923f;
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 0.4vw;
  text-align: center;
  margin: 3rem auto;
}
/* サブコピー */
.top-about-wrapper .about-subcopy {
  text-align: center;
}
/* スクリーンショットイメージ */
.top-about-wrapper .about-img {
  width: 40vw;
  margin: 0 auto;
  text-align: center;
}
.top-about-wrapper .about-img img {
  width: 100%;
  max-width: 640px;
  position: relative;
  z-index: 10;
}
/* 紹介文 */
.top-about-wrapper .about-txt {
  text-align: left;
  width: 54vw;
  max-width: 640px;
  font-size: 0.9rem;
  margin: 0 auto;
}
/* 詳しくはこちら */
.top-about-wrapper .about-more {
  margin: 4rem auto 5rem;
  text-align: center;
}
.top-about-wrapper .about-more a {
  color: #fff;
  font-size: 0.8rem;
  padding: 1rem 5rem;
  border: 1px solid #0bc151;
  background-color: #0bc151;
  border-radius: 10vw;
  -webkit-border-radius: 10vw;
  -moz-border-radius: 10vw;
  margin-right: 0;
  background-image: none;
}
.top-about-wrapper .about-more a:hover {
  color: #0bc151;
  background-color: #fff;
}
.top-about-wrapper .about-more a[target="_blank"]::after {
  background-image: url(/wp/wp-content/themes/premium/img/thema_icon-outlink--white.png);
}
.top-about-wrapper .about-more a[target="_blank"]:hover::after {
  background-image: url(/wp/wp-content/themes/premium/img/thema_icon-outlink.png);
}

/* 背景文字画像(ABOUT) */
.about-back-img {
  width: 17.285vw;
  overflow: hidden;
  position: absolute;
  top: 8rem;
  left: calc(85vw / 1.05);
  /*	right: calc(4vw / 2.5 );*/
  /*	left: calc(110vw * 0.75 );*/
  z-index: -1;
}
.about-back-img img {
  width: 20vw;
  max-width: 202px;
}

/* 人のアイコン */
#top-about .about-human01 img {
  width: 4vw;
  max-width: 100px;
  min-width: 65px;
  top: 20vh;
  left: 14vh;
  position: absolute;
  z-index: -1;
}
#top-about .about-human02 img {
  width: 7vw;
  max-width: 150px;
  min-width: 112px;
  top: 24vh;
  right: 9vh;
  position: absolute;
  z-index: -1;
}
#top-about .about-human03 img {
  width: 8vw;
  max-width: 154px;
  min-width: 130px;
  top: 34vh;
  left: 4vh;
  position: absolute;
  z-index: -1;
}
#top-about .about-human04 img {
  width: 4vw;
  max-width: 80px;
  min-width: 65px;
  top: 38vh;
  right: 3vh;
  position: absolute;
  z-index: -1;
}
#top-about .about-human05 img {
  width: 5vw;
  max-width: 100px;
  min-width: 80px;
  top: 48vh;
  right: 18vh;
  position: absolute;
  z-index: -1;
}
#top-about .about-human06 img {
  width: 6vw;
  max-width: 120px;
  min-width: 96px;
  top: 53vh;
  left: 13vh;
  position: absolute;
  z-index: -1;
}

/* 蛍光ペンでのマーカー */
.marker-green {
  background: linear-gradient(transparent 70%, rgba(102, 255, 204, 0.6) 70%);
}

/* トップ - 選ばれる理由 ------------------------ */
#top-reason {
  width: 100%;
  height: 900px;
  position: relative;
}
.top-reason-wrapper {
  /* 2021.12.9 **********/
  /*	width: 80%;*/
  padding: 1rem;
  /********** 2021.12.9 */
  height: 100%;
  max-width: 1000px;
  margin: 4rem auto 0;
  position: relative;
}
/* 見出し */
.reason-copy {
  color: #14923f;
  font-size: 1.8rem;
  line-height: 1.2em;
  letter-spacing: 0.2rem;
}
.reason-copy span.what-smartcompany {
  color: #0bc151;
  font-size: 1rem;
  font-weight: normal;
}
/* 理由の文章 */
.reason-txt {
  font-size: 0.9rem;
  margin: 2rem 0 4rem;
}
/* アラートランプ */
.box .box-alert {
  bottom: 4rem;
  left: -7px;
  position: absolute;
}
.box .box-alert .indicater {
  width: 12px;
  height: 12px;
  background: #6dda97;
  position: relative;
  display: inline-block;
  margin-right: 10px;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
}
.box .box-alert .indicater .ring {
  height: 22px;
  width: 22px;
  top: -5px; /*A.中心*/
  left: -5px; /*A.中心*/
  background: rgba(109, 218, 151, 0.3);
  position: absolute;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  z-index: -1;
}
.box:hover .ring {
  animation: pulsate-1 1s ease-out;
  animation-iteration-count: infinite;
  -webkit-animation: pulsate-1 1s ease-out;
  -webkit-animation-iteration-count: infinite;
  -moz-animation: pulsate-1 1s ease-out;
  -moz-animation-iteration-count: infinite;
}
@keyframes pulsate-1 {
  0% {
    transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(2, 2);
    opacity: 0;
  }
}
@-webkit-keyframes pulsate-1 {
  0% {
    -webkit-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2, 2);
    opacity: 0;
  }
}
@-moz-keyframes pulsate-1 {
  0% {
    -moz-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -moz-transform: scale(2, 2);
    opacity: 0;
  }
}
/* 1人画像01 */
#top-reason .single-human01 {
  right: 0;
  position: absolute;
  z-index: 10;
}
#top-reason .single-human01 img {
  height: 10rem;
}

/* 理由 - 共通 */
#top-reason .box {
  width: 30vw;
  max-width: 360px;
  height: 100%;
  border: 2px solid rgba(221, 221, 221, 0.6);
  padding: 16% 1rem 2rem 2rem;
  right: 0;
  position: absolute;
  z-index: 0;
}
#top-reason .box .box-heading {
  color: #0bc151;
  font-size: 1.3rem;
  line-height: 1.2;
  margin: 3% 0 10% 3rem;
}
#top-reason .box .box-txt {
  font-size: 1rem;
  line-height: 1.9em;
}
#top-reason .box-number {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-style: italic;
  color: #ddd;
  font-size: 680%;
  font-weight: bold;
  line-height: 1;
  left: 0;
  top: 20px;
  position: absolute;
  z-index: -1;
}
#top-reason [class^="reason-0"] {
  width: 36vw;
  max-width: 435px;
  height: 240px;
  position: relative;
}

/* 理由 1 */
#top-reason .reason-01 {
  float: left;
}
/* 理由 2 */
#top-reason .reason-02 {
  top: 10%;
  right: 5%;
  float: right;
}
/* 理由 3 */
#top-reason .reason-03 {
  top: 7%;
  left: 5%;
  float: left;
}
/* 理由 4 */
#top-reason .reason-04 {
  top: 17%;
  float: right;
}

/* 導入実績エリア */
#top-example {
  width: 100%;
  margin-bottom: 10rem;
  position: relative;
}
.top-example-wrapper {
  /* 2021.12.9 **********/
  /*	width: 80%;*/
  padding: 1rem;
  /********** 2021.12.9 */
  max-width: 1000px;
  margin: 4rem auto 0;
  position: relative;
}
/* 見出し */
.example-copy {
  width: 49%;
  color: #14923f;
  font-size: 1.8rem;
  line-height: 1.2em;
  text-align: right;
  letter-spacing: 0.2rem;
  display: inline-block;
  /*	position: absolute;
	right: 0;
	bottom: 70px;*/
}
.example-copy span.from-to {
  color: #0bc151;
  font-size: 1rem;
  font-weight: normal;
}
/* 理由の文章 */
.example-txt {
  font-size: 0.9rem;
  text-align: right;
  margin: 2rem 0 4rem;
}
/* 3人画像01 */
.three-human01 {
  width: 50%;
  top: 50px;
  position: relative;
  display: inline-block;
}
.three-human01 img {
  height: 12rem;
}

/* お知らせ */
#top-info {
  width: 100%;
  position: relative;
}
.top-info-wrapper {
  width: 70%;
  max-width: 1000px;
  margin: 4rem auto 3rem;
  position: relative;
  display: flex;
}
/* 見出し */
.info-copy {
  width: 70%;
  color: #14923f;
  font-size: 1.8rem;
  line-height: 1.2em;
  letter-spacing: 0.2rem;
}
/* ナビゲーションボタン */
.swiper-nav-button {
  width: 30%;
  position: relative;
}

/* お知らせエリア */
#top-info .info-back-text {
  width: 100%;
  height: 680px;
  margin-bottom: 2rem;
}
/* お知らせの箱 */
.info-box {
  width: calc(19vw * 1.5);
  max-width: 270px;
  height: calc(33vw / 0.65);
  max-height: 400px;
  margin: 2rem auto;
  background-color: #fff;
  box-shadow: 0px 0px 15px 6px rgba(146, 146, 146, 0.2);
}
/* お知らせのボタン */
#top-example .swiper-slide {
  text-align: center;
  vertical-align: middle;
  margin: 0 1em 1em;
}
#top-example .swiper-wrapper,
#top-info .swiper-wrapper {
  transition-timing-function: linear !important;
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
}
#top-example .swiper-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#top-info .swiper-button-prev,
#top-info .swiper-button-next {
  width: 48px;
  height: 40px;
}
#top-info .swiper-button-prev {
  background-image: url(/wp/wp-content/themes/premium/img/swiper-button-prev.png);
  background-size: contain;
  /*	left: calc(70vw * 0.9);
	top: 1rem;*/
}
#top-info .swiper-button-next {
  background-image: url(/wp/wp-content/themes/premium/img/swiper-button-next.png);
  background-size: contain;
  /*	right: calc(28vw * 0.9);
	top: 1rem;*/
}
.info-box img {
  max-width: 100%;
}
.info-box .info-news {
  font-size: 0.8rem;
  padding: 1.5rem;
}
.info-box .news-date {
  font-size: 0.75rem;
  color: #0bc151;
  margin-bottom: 0.5vw;
}
/* 背景文字画像(NEWS) */
.news-back-img {
  top: 26rem;
  right: 0;
  position: absolute;
  display: inline-block;
  z-index: -1;
}
.news-back-img img {
  width: 55vw;
  max-width: 810px;
}

/* トップページ以外のヘッダー ----------------------------------- */
#content-header {
  width: 100%;
  text-align: center;
}
.content-header-wrapper {
  width: 80%;
  margin: 0 auto;
  position: relative;
}
h1.content-title {
  padding-left: 9.6px;
  letter-spacing: 9.6px;
}
.content-sub-title {
  color: #0bc151;
  padding-left: 4px;
  letter-spacing: 4px;
  margin-bottom: 45px;
}
.content-border {
  height: 88px;
  margin-bottom: -3rem;
  position: relative;
  z-index: 400;
}
.content-message {
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 4px;
  width: 100%;
  max-width: 1110px;
  margin: 0 auto 6rem;
  padding: 5rem 1rem 4rem;
  background-color: #f5fdf8;
  position: relative;
}
.content-message-txt {
  position: relative;
  z-index: 100;
}
.content-message-catch {
  font-size: 1.25em;
  letter-spacing: 6px;
  color: #0bc151;
  margin-bottom: 1rem;
}
/* 1人画像01 */
#content-header .single-human01 {
  top: 40px;
  right: 6vw;
  position: absolute;
  z-index: 10;
}
#content-header .single-human01 img {
  height: 13rem;
}
/* 1人画像02 */
#content-header .single-human02 {
  top: 40px;
  right: 6vw;
  position: absolute;
  z-index: 10;
}
#content-header .single-human02 img {
  height: 13rem;
}

@media (max-width: 767px) {
  h1.content-title {
    margin-top: 0;
    margin-bottom: 0;
  }
  .content-sub-title {
    margin-bottom: 30px;
  }
}
/* // END トップページ以外のヘッダー --------------------------- */

/* 特長・強み ------------------------------------------------- */
#feature-01,
#feature-02,
#feature-03,
#feature-04,
#feature-05 {
  width: 100%;
  height: 860px;
  overflow: hidden;
}
.feature-wrapper {
  width: 70%;
  margin: 0 auto;
  position: relative;
}
.feature-title-container {
  width: 80%;
  height: 320px;
  padding-left: calc(5vw / 1.2);
  color: #fff;
  background-color: #14923f;
  display: table;
}
#feature-02 .feature-title-container,
#feature-04 .feature-title-container {
  position: absolute;
  right: 0;
}

.feature-number {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-style: italic;
  color: #0bc151;
  font-size: 6rem;
  font-weight: bold;
  vertical-align: top;
  width: 7vw;
  padding-top: 1rem;
  display: table-cell;
}
.feature-title {
  font-size: 1.8rem;
  font-weight: normal;
  /*	vertical-align: middle;*/
  padding-left: 2rem;
  display: table-cell;
  position: relative;
  z-index: 1;
}
#feature-01 .feature-title,
#feature-05 .feature-title {
  padding-top: 2.5rem;
}
#feature-02 .feature-title,
#feature-03 .feature-title,
#feature-04 .feature-title {
  padding-top: 4rem;
}

.line-box {
  position: absolute;
  z-index: 0;
}
#feature-01 .line-box,
#feature-03 .line-box,
#feature-05 .line-box {
  width: 37vw;
  height: auto;
  top: 100px;
  right: 0;
}
#feature-02 .line-box,
#feature-04 .line-box {
  width: 37vw;
  height: auto;
  top: 114px;
  left: 0;
}

.line-box img {
  width: 100%;
  max-width: 640px;
}
.feature-content-wrapper {
  width: 84%;
  height: auto;
  text-align: center;
  padding: 0 2rem 3rem;
  background-color: #fff;
  top: 180px;
  left: 100px;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  justify-content: space-between;
  -ms-flex-pack: justify;
  position: absolute;
  box-shadow: 0px 0px 15px 6px rgba(146, 146, 146, 0.2);
  z-index: 1;
}
#feature-01 .feature-content-box {
  width: calc(98% / 3);
}
#feature-02 .feature-content-box {
  width: 100%;
}
#feature-03 .feature-content-box {
  width: calc(98% / 2);
}

.feature-content-txt {
  text-align: left;
  line-height: 2em;
  letter-spacing: 4px;
  padding: 0 1vw;
}
.feature-content-title {
  color: #14923f;
  font-weight: bold;
}
.feature-content-title br {
  display: none;
}
.feature-content-img {
  width: 62%;
  margin: 1rem auto 0;
}
#feature-01 .feature-content-img {
  width: 70%;
  margin: 1rem auto 0;
}
#feature-05 .feature-content-img {
  width: 20%;
  margin: 9vw auto 4vw;
}

/* 2021.11.11 **********/
/*.feature-content-img img {
	width: 100%;
	max-width: 420px;
}*/
/********** 2021.11.11 */

.feature-content-img-txt {
  width: 100%;
  font-weight: bold;
  text-align: center;
}
.feature-content-img-txt span {
  color: #0bc151;
}
/* アラートランプ */
.feature-content-box .box-alert {
  position: relative;
}
.feature-content-box .box-alert .indicater {
  width: 12px;
  height: 12px;
  background: #6dda97;
  position: relative;
  display: inline-block;
  margin: 4rem auto 0;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
}
.feature-content-box .box-alert .indicater .ring {
  height: 22px;
  width: 22px;
  top: -5px; /*A.中心*/
  left: -5px; /*A.中心*/
  background: rgba(109, 218, 151, 0.3);
  position: absolute;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  z-index: 0;
}
.feature-content-box:hover .ring {
  animation: pulsate-3 1s ease-out;
  animation-iteration-count: infinite;
  -webkit-animation: pulsate-3 1s ease-out;
  -webkit-animation-iteration-count: infinite;
  -moz-animation: pulsate-3 1s ease-out;
  -moz-animation-iteration-count: infinite;
}
@keyframes pulsate-3 {
  0% {
    transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(2, 2);
    opacity: 0;
  }
}
@-webkit-keyframes pulsate-3 {
  0% {
    -webkit-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2, 2);
    opacity: 0;
  }
}
@-moz-keyframes pulsate-3 {
  0% {
    -moz-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -moz-transform: scale(2, 2);
    opacity: 0;
  }
}
.box-alert-txt {
  font-size: 0.5rem;
  font-weight: bold;
  color: #0bc151;
  letter-spacing: 0.1rem;
  margin-bottom: 1rem;
}
.feature-content-icons {
  width: 100%;
}
/* 人のアイコン */
#feature-05 .about-human01 img {
  width: 3vw;
  max-width: 75px;
  min-width: 65px;
  bottom: 11vw;
  left: 17vw;
  position: absolute;
  z-index: -1;
}
#feature-05 .about-human02 img {
  width: 5vw;
  max-width: 105px;
  min-width: 95px;
  bottom: 10vw;
  right: 10vw;
  position: absolute;
  z-index: -1;
}
#feature-05 .about-human03 img {
  width: 4vw;
  max-width: 80px;
  min-width: 70px;
  bottom: 2vw;
  left: 13vw;
  position: absolute;
  z-index: -1;
}
#feature-05 .about-human04 img {
  width: 3vw;
  max-width: 70px;
  min-width: 60px;
  bottom: 4vw;
  right: 15vw;
  position: absolute;
  z-index: -1;
}
#feature-05 .about-human05 img {
  width: 4vw;
  max-width: 80px;
  min-width: 70px;
  bottom: 5vw;
  right: 7vw;
  position: absolute;
  z-index: -1;
}
#feature-05 .about-human06 img {
  width: 4vw;
  max-width: 75px;
  min-width: 65px;
  bottom: 9vw;
  left: 8vw;
  position: absolute;
  z-index: -1;
}
/* // END 特長・強み ------------------------------------------ */

/* 活用シーン ------------------------------------------------- */
#scene-01,
#scene-02,
#scene-03,
#scene-04,
#scene-05,
#scene-06 {
  width: 100%;
  height: calc(50vw * 1.2);
  max-height: 900px;
  position: relative;
  overflow: hidden;
}
.scene-wrapper {
  width: 80%;
  max-width: 1400px;
  height: calc(35vw * 0.99);
  max-height: 620px;
  margin: 0 auto;
  position: relative;
}
.scene-wrapper h2 {
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1.45;
  letter-spacing: 7.2px;
  color: #fff;
}
#scene-02 .scene-wrapper h2,
#scene-04 .scene-wrapper h2,
#scene-06 .scene-wrapper h2 {
  text-align: right;
}

h2 span.scene-title {
  padding: 0 0.2em;
  background-color: #14923f;
}
.scene-photo {
  top: 1.2rem;
  position: absolute;
  z-index: -1;
}
#scene-01 .scene-photo,
#scene-03 .scene-photo,
#scene-05 .scene-photo {
  width: 38vw;
  left: 2.4vw;
  height: 100%;
  overflow: hidden;
}
#scene-02 .scene-photo,
#scene-04 .scene-photo,
#scene-06 .scene-photo {
  width: 38vw;
  left: calc(27vw * 1.3);
  overflow: hidden;
}

.scene-photo img {
  /*	width: 36vw;*/
  width: 38vw;
  height: auto;
}
.scene-content-wrapper {
  width: 40vw;
  padding: 0 0 2rem calc(5vw * 0.7);
  background-color: #fff;
  position: absolute;
  z-index: 2;
}
#scene-01 .scene-content-wrapper,
#scene-03 .scene-content-wrapper,
#scene-05 .scene-content-wrapper {
  right: 5vw;
  bottom: 5.5vw;
}
#scene-02 .scene-content-wrapper,
#scene-04 .scene-content-wrapper,
#scene-06 .scene-content-wrapper {
  left: 0;
  bottom: 5.5vw;
}

.scene-line-box {
  width: 75vw;
  height: calc(30vw * 1.2);
  position: absolute;
  z-index: -2;
}
#scene-01 .scene-line-box,
#scene-03 .scene-line-box,
#scene-05 .scene-line-box {
  top: calc(5vw * 1.4);
  right: 0;
}
#scene-02 .scene-line-box,
#scene-04 .scene-line-box,
#scene-06 .scene-line-box {
  top: 80px;
  left: 0;
}

.scene-line-box img {
  width: 100%;
  height: 100%;
}

.scene-content-enter a {
  font-size: 0.9rem;
  letter-spacing: 0.3vw;
  color: #0bc151;
  margin: auto 1rem;
  padding: 0.8rem 2vw;
  background-color: #fff;
  border: 1px solid #0bc151;
  border-radius: 10vw;
  -webkit-border-radius: 10vw;
  -moz-border-radius: 10vw;
}
.scene-content-enter {
  width: 100%;
  text-align: center;
  position: absolute;
  /*	bottom: 0;*/
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.scene-content-enter br {
  display: none;
}
.scene-content-enter a:hover {
  color: #fff;
  background-color: #0bc151;
}
/* アラートランプ */
.scene-content-list .box-alert {
  position: relative;
}
.scene-content-list .box-alert .indicater {
  width: 12px;
  height: 12px;
  background: #6dda97;
  position: relative;
  display: inline-block;
  margin: 2rem 1.5rem 0 0;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
}
.scene-content-list .box-alert .indicater .ring {
  height: 22px;
  width: 22px;
  top: -5px; /*A.中心*/
  left: -5px; /*A.中心*/
  background: rgba(109, 218, 151, 0.3);
  position: absolute;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  z-index: 0;
}
.scene-content-list:hover .ring {
  animation: pulsate-4 1s ease-out;
  animation-iteration-count: infinite;
  -webkit-animation: pulsate-4 1s ease-out;
  -webkit-animation-iteration-count: infinite;
  -moz-animation: pulsate-4 1s ease-out;
  -moz-animation-iteration-count: infinite;
}
@keyframes pulsate-4 {
  0% {
    transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(2, 2);
    opacity: 0;
  }
}
@-webkit-keyframes pulsate-4 {
  0% {
    -webkit-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2, 2);
    opacity: 0;
  }
}
@-moz-keyframes pulsate-4 {
  0% {
    -moz-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -moz-transform: scale(2, 2);
    opacity: 0;
  }
}

/* 活用シーン（サブページ） */
#scene-sub-01,
#scene-sub-02,
#scene-sub-03,
#scene-sub-04,
#scene-sub-05,
#scene-sub-06 {
  width: 100%;
  height: calc(42vw * 1.2);
  max-height: 740px;
  position: relative;
  overflow: hidden;
}
.scene-sub .scene-wrapper {
  width: 90%;
  margin: 0 auto;
  position: relative;
}
.scene-sub .scene-wrapper span {
  display: inline-block;
}
.scene-sub .scene-sub-title {
  font-size: 1rem;
  line-height: 1.8;
  padding: 1rem;
  background-color: #fff;
  /*	position: absolute;*/
}
#scene-sub-01 .scene-sub-title,
#scene-sub-03 .scene-sub-title,
#scene-sub-05 .scene-sub-title {
  width: calc(40vw * 1.2);
  float: left;
}
#scene-sub-02 .scene-sub-title,
#scene-sub-04 .scene-sub-title,
#scene-sub-06 .scene-sub-title {
  width: calc(40vw * 1.2);
  float: right;
}
.scene-sub h2 {
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 6.4px;
  color: #14923f;
  margin-bottom: 1rem;
}
#scene-sub-02 .scene-sub-title li:before {
  content: "・";
  color: #0bc151;
}
.scene-sub .scene-photo {
  width: 46vw;
  max-width: 640px;
  position: absolute;
  z-index: -1;
  overflow: hidden;
}
#scene-sub-01 .scene-photo,
#scene-sub-03 .scene-photo,
#scene-sub-05 .scene-photo {
  top: 2rem;
  right: 2rem;
}
#scene-sub-02 .scene-photo,
#scene-sub-04 .scene-photo,
#scene-sub-06 .scene-photo {
  top: 3rem;
  left: 2rem;
}
.scene-sub .scene-photo img {
  width: 100%;
  height: auto;
}
.scene-sub .scene-line-box {
  width: 45vw;
  position: absolute;
  top: 4rem;
  z-index: -2;
}
.scene-sub .scene-line-box img {
  width: 100%;
  max-width: 640px;
  height: 100%;
  min-height: 340px;
  opacity: 0.5;
}
#scene-sub-01 .scene-line-box,
#scene-sub-03 .scene-line-box,
#scene-sub-05 .scene-line-box {
  top: 3rem;
  right: 0;
}
/* パネルメニュー */
#scene-sub-panel {
  width: 100%;
  margin: 0 auto;
  padding: 7rem 0;
  position: relative;
}
#scene-sub-panel .single-human01 {
  width: 6vw;
  position: absolute;
  top: -3vw;
  right: 5vw;
}
#scene-sub-panel .single-human01 img {
  width: 100%;
}
.scene-panel-wrapper {
  width: 75%;
  margin: 0 auto;
  position: relative;
}
#scene-sub-panel h2 {
  text-align: center;
  letter-spacing: 8px;
  color: #14923f;
  margin: 2rem auto;
}
.sub-panel-menu {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  justify-content: space-between;
  -ms-flex-pack: justify;
}
.sub-panel {
  width: calc(90% / 3);
  font-weight: bold;
  text-align: center;
  letter-spacing: 1.44px;
  background-color: #fff;
  margin: 1.5rem 0 2rem;
  box-shadow: 0px 0px 15px 6px rgba(146, 146, 146, 0.2);
}
.sub-panel:hover {
  overflow: hidden;
  background-color: #0bc151;
}
.sub-panel img {
  width: 100%;
}
.sub-panel:hover img {
  transform: scale(1.1);
  transition-duration: 0.3s;
}
.sub-panel a {
  color: #0bc151;
}
.sub-panel a:hover {
  color: #fff;
}
.sub-panel .sub-panel-title {
  padding: 1rem 0 1.5rem;
}
#scene-sub-panel .scene-line-box {
  width: 100%;
  position: absolute;
  overflow: hidden;
  bottom: 15rem;
  z-index: -2;
}
#scene-sub-panel .scene-line-box img {
  width: 3840px;
  opacity: 0.5;
}

/* 中間メッセージ1 */
#scene-sub-message-01 {
  width: 80%;
  margin: 6rem auto;
  text-align: center;
}
#scene-sub-message-01 h2 {
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: 8px;
  color: #14923f;
  margin-bottom: 1.5rem;
}
#scene-sub-message-01 .sub-message-txt {
  line-height: 1.8;
  letter-spacing: 4px;
}

/* 中間メッセージ2 */
#scene-sub-message-02 {
  width: 80%;
  margin: 6rem auto;
  text-align: left;
}
#scene-sub-message-02 .scene-sub-message-wrapper {
  position: relative;
}
#scene-sub-message-02 .scene-sub-message-box {
  letter-spacing: 1.44px;
  width: 70%;
  border: 2px solid #f2f2f2;
  margin: 3rem 0;
  padding: 1rem 3rem 3rem;
}
#scene-sub-message-02 .scene-sub-message-box h2 {
  font-size: 1.5rem;
  letter-spacing: 2.08px;
  color: #0bc151;
  margin-bottom: 1rem;
}
#scene-sub-message-02 .scene-sub-message-wrapper .box-right {
  margin-left: auto;
}
#scene-sub-message-02 .scene-sub-message-wrapper .box-left {
  margin-right: auto;
}
/* ビジュアルパーツ */
#visual-parts {
  width: 68vw;
  margin: 14rem auto 0;
  position: relative;
}
#visual-parts h2 {
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: 8px;
  text-align: center;
  color: #14923f;
  margin-bottom: 3rem;
}
#visual-parts .graph-image {
  position: relative;
}
#visual-parts .graph-image img {
  width: 100%;
}
#visual-parts .scene-line-box {
  width: 80%;
  position: absolute;
  right: -2rem;
  bottom: -2rem;
}
#visual-parts .scene-line-box img {
  width: 100%;
  opacity: 0.5;
}
/* ポータル・ショット */
#sub-portal-shots {
  width: 100%;
  margin: 7rem 0px;
}
#sub-portal-shots .portal-screen-shots {
  width: 75%;
  margin: 0 auto;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  justify-content: space-between;
  -ms-flex-pack: justify;
  position: relative;
}
#sub-portal-shots .portal-screen-shots img {
  width: calc(90% / 3);
  margin: 1.5rem 0px;
}
/* アラートランプ */
.scene-sub-message-box .box-alert {
  position: relative;
  top: 2rem;
  left: -3.4rem;
}
.scene-sub-message-box .box-alert .indicater {
  width: 12px;
  height: 12px;
  background: #6dda97;
  position: relative;
  display: inline-block;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
}
.scene-sub-message-box .box-alert .indicater .ring {
  height: 22px;
  width: 22px;
  top: -5px; /*A.中心*/
  left: -5px; /*A.中心*/
  background: rgba(109, 218, 151, 0.3);
  position: absolute;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  z-index: 0;
}
.scene-sub-message-box:hover .ring {
  animation: pulsate-5 1s ease-out;
  animation-iteration-count: infinite;
  -webkit-animation: pulsate-5 1s ease-out;
  -webkit-animation-iteration-count: infinite;
  -moz-animation: pulsate-5 1s ease-out;
  -moz-animation-iteration-count: infinite;
}
@keyframes pulsate-5 {
  0% {
    transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(2, 2);
    opacity: 0;
  }
}
@-webkit-keyframes pulsate-5 {
  0% {
    -webkit-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2, 2);
    opacity: 0;
  }
}
@-moz-keyframes pulsate-5 {
  0% {
    -moz-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -moz-transform: scale(2, 2);
    opacity: 0;
  }
}
/* // END 活用シーン ---------------------------------------- */

/* 機能一覧 ------------------------------------------------- */
/* ページ内メニュー */
#system-menu {
  width: 100%;
}
#system-menu .system-menu-wrapper {
  width: 80%;
  max-width: 1110px;
  margin: 0 auto;
  padding: 2rem 0 0;
  border-bottom: 2px solid #f2f2f2;
  position: relative;
}
#system-menu .system-menu-box {
  width: 92%;
  margin: 0 auto;
}
#system-menu ul {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
#system-menu ul li {
  width: 18vw;
  max-width: 255px;
  min-width: 220px;
  margin-bottom: 2rem;
}
#system-menu ul li::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 0 4px 10px;
  border-right: 1px solid #0bc151;
  border-bottom: 1px solid #0bc151;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#system-menu a {
  color: #000;
}
#system-menu a:hover {
  color: #0bc151;
}
/* 機能紹介 */
#system-01,
#system-02,
#system-03,
#system-04,
#system-05,
#system-06,
#system-07,
#system-08,
#system-09,
#system-10 {
  width: 100%;
  margin: 10rem 0 5rem;
  position: relative;
  overflow: hidden;
}
#system-01,
#system-03,
#system-04,
#system-08,
#system-09 {
  height: 460px;
}
#system-10 {
  height: 460px;
  margin-bottom: 10rem;
}
#system-06,
#system-07 {
  height: 500px;
}
#system-05 {
  height: 580px;
}
#system-02 {
  height: 690px;
}

.system-wrapper {
  width: 80%;
  margin: 0 auto;
  position: relative;
}
.system-content-wrapper {
  width: 40vw;
  background-color: #fff;
  padding: 1.5rem 1rem 1rem 2rem;
  position: absolute;
  top: 7.2rem;
}
.box-left .system-content-wrapper {
  left: 0;
}
.box-right .system-content-wrapper {
  right: 0;
}
.system-content-wrapper h2 {
  color: #14923f;
  letter-spacing: 6.4px;
  margin-bottom: 1.5rem;
}
.system-content-wrapper .scene-content-enter {
  text-align: left;
  margin: 2rem 0 0;
  padding-bottom: 2rem;
  position: relative;
  bottom: 0;
  display: block;
}
.system-content-list ul {
  padding-left: 0;
}
.system-content-list li {
  margin: 0.3rem 0;
}
.system-content-list li:before {
  content: "・";
  color: #0bc151;
  margin: 1rem 0 3rem;
}
.system-content-list .option-label {
  color: #fff;
  letter-spacing: 3.2px;
  background-color: #14923f;
  margin: 1.4rem 0 1rem;
  padding: 0.2rem 0.5rem;
  display: inline-block;
}
.system-image {
  /*	width: 36vw;
	height: 27vw;*/
  width: 47vw;
  height: 33vw;
  max-width: 560px;
  max-height: 420px;
  background-color: #1bc224;
  position: absolute;
  z-index: -1;
}
.box-right .system-image {
  left: 0;
}
.box-left .system-image {
  right: 0;
}

.system-image img {
  width: 38%;
  margin: auto;
  position: absolute;
  top: 1rem;
  bottom: 0;
  left: 0;
  right: 0;
}
#system-03 .system-image img {
  width: 68%;
}
#system-04 .system-image img {
  width: 53%;
  right: 3vw;
}
#system-07 .system-image img {
  width: 58%;
}

.system-line-box {
  width: 78vw;
  height: 400px;
  position: absolute;
  top: 4rem;
  z-index: -2;
}
.box-right .system-line-box {
  right: 0;
}
.box-left .system-line-box {
  left: 0;
}

.system-line-box img {
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
/* NET*ASK */
.net-ask-txt {
  font-size: 0.8em;
  color: #777;
  letter-spacing: 4.2px;
  margin: 1.4rem 0 1rem;
}
/* // END 機能一覧 --------------------------------------------- */

/* 導入事例 ---------------------------------------------------- */
.case-container .swiper-container {
  overflow: visible;
}
.case-container .swiper-slide {
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}
.case-container {
  width: 95%;
  margin: 0 auto 2rem;
  /*	display: flex;*/
}
.case-container section {
  width: calc(100% / 3);
  max-width: 520px;
  height: calc(78vw * 0.55);
  max-height: 720px;
  min-height: 440px;
  margin: 0 1.3rem;
  /*	padding: 0 0 2rem;*/
  background-color: #fff;
  position: relative;
}

/*new css style begin*/
.row_flex {
  display: flex;
  justify-content: space-evenly;
}

.case-wrapper .case-no {
  font-family: 游明朝, YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", HG明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-style: italic;
  color: #0bc151;
  font-size: 4rem;
  font-weight: bold;
  top: -3rem;
  left: 1rem;
  position: absolute;
  z-index: 1;
}
.case-content-wrapper {
  padding: 1rem 1.5rem 0 0.5rem;
  display: flex;
}
.case-logo {
  width: 120px;
  text-align: center;
}
.case-photo img {
  width: 100%;
  height: auto;
}
.case-logo img {
  width: auto;
  max-width: 95px;
  height: auto;
  max-height: 84px;
}
.case-content {
  height: 5rem;
  margin-left: 1rem;
}
.case-content h2 {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.case-content-txt {
  font-size: 1rem;
  padding: 0 1rem;
}
.case-content-enter {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 2.4rem;
}
.case-content-enter a {
  font-size: 1vw;
  letter-spacing: 3.2px;
  color: #0bc151;
  padding: 0.6rem 4vw;
  background-color: #fff;
  border: 1px solid #0bc151;
  border-radius: 10vw;
  -webkit-border-radius: 10vw;
  -moz-border-radius: 10vw;
}
.case-content-enter a:hover {
  color: #fff;
  background-color: #0bc151;
}
.case-line-box {
  width: 100%;
  position: absolute;
  bottom: -2rem;
  left: 1.3rem;
  z-index: -1;
}
.case-line-box img {
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
/* 導入企業様ロゴ */
#example-logo {
  width: 100%;
  margin: 0 auto 3rem;
  position: relative;
}
#example-logo .three-human {
  width: 15%;
  position: relative;
  left: 10vw;
  top: 3rem;
}
#example-logo .three-human img {
  width: 100%;
  height: auto;
}
.example-logo-wrapper {
  text-align: center;
  width: 70%;
  margin: 0 auto;
  position: relative;
}
#example-logo .example-copy {
  text-align: center;
  letter-spacing: 0.2rem;
  position: relative;
  bottom: auto;
  right: auto;
}
#example-logo .example-txt {
  text-align: center;
  margin: 2rem 0 4rem;
}
.example-logo-img-wrapper {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  justify-content: space-between;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.example-logo-img {
  width: calc(100% / 4);
  text-align: center;
  margin: 0 auto 4rem;
}
.example-logo-img img {
  width: auto;
  max-width: 140px;
  height: auto;
  max-height: 84px;
}
/* 事例詳細 */
.content-case {
  width: 60%;
  margin: 0 auto 6rem;
  padding: 5rem 0 4rem;
  display: table;
}
.case-logo-img {
  width: 20%;
  text-align: right;
  vertical-align: middle;
  display: table-cell;
}
.case-logo-img img {
  width: auto;
  max-width: 200px;
  height: auto;
  max-height: 120px;
}
.case-name {
  width: 80%;
  font-size: 1.5rem;
  letter-spacing: 4.8px;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
  padding-left: 2rem;
  display: table-cell;
}
#case-info {
  width: 100%;
  height: 52rem;
  overflow: hidden;
}
.case-info-wrapper {
  width: 70%;
  margin: 0 auto;
  position: relative;
}
.case-info-title {
  width: 41vw;
  display: inline-block;
  position: absolute;
  top: 1rem;
  z-index: 1;
}
.case-title {
  color: #14923f;
  letter-spacing: 6.4px;
  line-height: 1.9;
  /*	white-space: nowrap;*/
  padding: 0.5rem 1rem 0.5rem 0;
  background-color: rgba(255,255,255,.8);
}
.case-title span {
  display: inline-block;
}
.case-list {
  width: 100%;
  font-size: 0.8rem;
  margin-top: 2rem;
}
.case-info-wrapper .case-list dt {
  width: 16%;
  margin-bottom: 1rem;
}
.case-info-wrapper .case-list dd {
  width: 82%;
  margin-bottom: 1rem;
}
.case-info-photo {
  width: 50%;
  position: absolute;
  right: 0;
}
.case-info-photo img {
  width: auto;
  max-width: 540px;
  height: auto;
  max-height: 390px;
}
.case-info-wrapper dt {
  width: 27%;
  color: #0bc151;
  float: left;
  clear: left;
}
.case-basic-info dt,
.case-basic-info dd {
  padding: 1rem 0;
}
.case-basic-info dd {
  border-bottom: 1px solid #ddd;
}
.case-basic-info {
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 4rem 3rem;
  border: 1px solid #0bc151;
  font-size: 0.8rem;
  background-color: #fff;
  box-shadow: 0px 0px 15px 6px rgba(11, 193, 81, 0.078);
  position: absolute;
  top: 22rem;
  left: 0;
  right: 0;
  z-index: 2;
}
.case-basic-info a {
  color: #0bc151;
}
.company-back-img {
  width: 27vw;
  position: absolute;
  top: 18.5rem;
  left: 2.5rem;
  z-index: -1;
}
.company-back-img img {
  width: 100%;
}
/* 事例本文 */
#case-details {
  width: 100%;
  overflow: hidden;
}
.case-txt-wrapper {
  width: 80%;
  max-width: 1200px;
  /*	height: 35rem;*/
  margin: 0 auto 6vw;
  position: relative;
}
.case-txt-wrapper p {
  margin: 2rem 0;
}
.case-txt-container {
  padding: 0 2rem 0 0;
  background-color: #fff;
}
.case-txt-container-60 {
  width: 57%;
  background-color: #fff;
}
.box-right .case-txt-container-60 {
  padding: 0 2rem 2rem 0;
}
.box-right .case-txt-container-60b {
  width: 57%;
  padding: 0 2rem 0 0;
  background-color: #fff;
}
.box-left .case-txt-container-60 {
  padding: 0 0 2rem 2rem;
  position: absolute;
  right: 0;
}
.case-txt-container-95 {
  width: 95%;
  padding: 0 2rem 2rem 0;
  background-color: #fff;
}
.box-left .case-txt-container-95 {
  width: 95%;
  padding: 0 0 2rem 2rem;
  position: absolute;
  right: 0;
  top: 29.5rem;
  background-color: #fff;
}
#case-details h3 {
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.45;
  letter-spacing: 5.6px;
  color: #fff;
}
#case-details .box-right h3 {
  text-align: right;
}
h3 span.case-txt-title {
  padding: 0 0.2em;
  background-color: #14923f;
}
.case-txt-subtitle {
  color: #0bc151;
  letter-spacing: 4.8px;
  margin: 2rem 0 1.5rem;
}
.case-txt-subtitle:before {
  content: "─ ";
  color: #0bc151;
}
.case-txt {
  line-height: 2;
}
.case-txt-photo {
  width: 50%;
  z-index: -1;
}
.box-left .case-txt-photo {
  position: absolute;
  top: 6.5rem;
  right: 0;
}
.box-right .case-txt-photo {
  position: absolute;
  top: 6.5rem;
  left: 0;
}
.case-01 .wrapper-04.box-right .case-txt-photo {
  position: relative;
  top: 0;
}
.case-txt-photo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
/*.case-02 .wrapper-02 .case-txt-container {
	padding-top: calc(2vw / 120 * 11);
}*/
.case-01 .case-txt-wrapper .case-txt-container-left,
.case-03 .case-txt-wrapper .case-txt-container-left {
  width: 54%;
  padding: 0 1rem 0 0;
  background-color: #fff;
}
.case-01 .case-txt-wrapper .case-txt-container-right,
.case-03 .case-txt-wrapper .case-txt-container-right {
  width: 54%;
  margin: 0 0 0 auto;
  padding: 0 0 0 1rem;
  background-color: #fff;
}
.case-01 .case-txt-wrapper.wrapper-04 .case-txt-container-right {
  width: 54%;
  padding: 0 0 1rem 2rem;
  background-color: #fff;
  position: absolute;
  right: 0;
}
.case-01 .case-txt-wrapper .case-txt-container-center,
.case-03 .case-txt-wrapper .case-txt-container-center {
  width: 100%;
  background-color: #fff;
}
.case-01 .case-txt-wrapper:last-child {
  margin-bottom: calc(5vw * 3);
}
/* // END 導入事例 --------------------------------------------- */

/* 導入フロー -------------------------------------------------- */
#flow {
  width: 70%;
  margin: 0 auto;
  border-left: 3px dotted rgba(11, 193, 81, 0.4);
  position: relative;
}
.flow-wrapper:nth-child(even) {
  padding-left: 4rem;
}
#flow .flow-06 {
  padding-left: 0;
}
.flow-container {
  margin-bottom: 12rem;
  display: flex;
}
#flow .flow-06 .flow-container {
  height: 3rem;
}
#flow .flow-06 .flow-content {
  margin-top: 1.5rem;
}
.flow-number {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-style: italic;
  color: #0bc151;
  font-size: 6rem;
  font-weight: bold;
  line-height: 1;
  margin-left: 2rem;
}
.flow-content {
  width: 100%;
  margin-left: 5rem;
  background-color: rgba(255, 255, 255, 0.5);
}
h3.flow-title {
  color: #0bc151;
  letter-spacing: 6.4px;
}
.flow-txt {
  width: 70%;
  margin: 1.5rem 0;
}
/* 縦書きラベル */
.flow-vertical-label {
  width: 2rem;
  height: 9rem;
  color: #fff;
  font-size: 1rem;
  text-indent: 0.5rem;
  line-height: 2;
  letter-spacing: 3.2px;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  background-color: #14923f;
  position: relative;
  left: -82px;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
}
.flow-02 .flow-vertical-label {
  height: 7rem;
}
.flow-06 .flow-vertical-label {
  height: 8.5rem;
  left: -30px;
  top: -190px;
}

/* アラートランプ */
.flow-wrapper .box-alert {
  position: relative;
  top: -9px;
  left: -7px;
}
.flow-wrapper .box-alert .indicater {
  width: 12px;
  height: 12px;
  background: #6dda97;
  position: relative;
  display: inline-block;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
}
.flow-wrapper .box-alert .indicater .ring {
  height: 22px;
  width: 22px;
  top: -5px; /*A.中心*/
  left: -5px; /*A.中心*/
  background: rgba(109, 218, 151, 0.3);
  position: absolute;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  z-index: 0;
}
.flow-wrapper:hover .ring {
  animation: pulsate-6 1s ease-out;
  animation-iteration-count: infinite;
  -webkit-animation: pulsate-6 1s ease-out;
  -webkit-animation-iteration-count: infinite;
  -moz-animation: pulsate-6 1s ease-out;
  -moz-animation-iteration-count: infinite;
}
@keyframes pulsate-6 {
  0% {
    transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(2, 2);
    opacity: 0;
  }
}
@-webkit-keyframes pulsate-6 {
  0% {
    -webkit-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2, 2);
    opacity: 0;
  }
}
@-moz-keyframes pulsate-6 {
  0% {
    -moz-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -moz-transform: scale(2, 2);
    opacity: 0;
  }
}
.flow-03 .box-alert,
.flow-05 .box-alert,
.flow-06 .box-alert {
  top: 30px;
}
/* 背景画像 */
#flow .flow-bg {
  position: absolute;
}
#flow .flow-bg img {
  width: 100%;
  height: auto;
}
#flow .front_top {
  width: 20vw;
  top: 5rem;
  right: 0;
  z-index: -1;
}
#flow .rear_top {
  width: 47%;
  top: 0;
  right: 5vw;
  opacity: 0.2;
  z-index: -2;
}
#flow .front_middle {
  width: 18vw;
  top: 50%;
  right: 0;
  z-index: -1;
}
#flow .rear_middle {
  width: 44%;
  height: 20rem;
  top: 57%;
  left: 37%;
  opacity: 0.2;
  overflow: hidden;
  z-index: -2;
}
#flow .front_bottom {
  width: 20vw;
  right: 0;
  bottom: 0;
  z-index: -1;
}
#flow .rear_bottom {
  width: 44%;
  height: 480px;
  bottom: -6rem;
  right: 5vw;
  opacity: 0.2;
  overflow: hidden;
  z-index: -2;
}
/* // END 導入フロー ------------------------------------------- */

/* ブログ ------------------------------------------------------ */
/* レイアウト */
nav.breadcrumb .crumb-page,
nav.breadcrumb .crumb-current {
  /* 投稿ページ＆固定カレントページのパンくず */
  letter-spacing: 2.5px;
}
.post-contents-wrapper-blog,
.post-contents-wrapper-blog-single {
  width: 100%;
  max-width: 1100px;
  margin: 5em auto;
  display: flex;
}
/* 日付とカテゴリー */
.content-option-wrapper {
  width: 100%;
  margin-bottom: 3em;
}
.category-title {
  /* カテゴリーを右へ */
  float: right;
}
span.cat-name {
  /* カテゴリー表示の枠 */
  /*	color: #fff;
	font-size: .85em;
	background-color: #a9a9a9;
	border-radius: 4px;
	padding: 1.2px 2.2px;
*/
}
span.cat-name a {
  /* カテゴリー表示の枠のリンク */
  color: #fff;
  font-size: 0.85em;
  background-color: #a9a9a9;
  border-radius: 4px;
  padding: 1.2px 2.2px;
}
span.cat-name a:hover {
  /* カテゴリー表示の枠のリンク:ホバー */
  background-color: #0bc151;
  border-radius: 4px;
}
.content-option-wrapper time.sigle-post-date::before {
  /* 日にちにアイコンをつける */
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url(/wp/wp-content/themes/premium/img/icon-calendar.svg);
  background-size: contain;
  vertical-align: middle;
  margin: 0 4px 3px 0;
}
.post-contents-wrapper-blog.blog h1.h1 {
  /* ブログトップページのタイトルを消す */
  display: none;
}
.post-contents-container-left {
  width: 75%;
  padding-right: 2em;
}
.post-contents-container-right {
  width: 24%;
}
.wp-show-posts {
  width: 100%;
}
/*
.wp-show-posts-columns {
	margin-bottom: 3em;
	padding: 0 0 2em;
	border-bottom: 3px solid #e2e2e2;
}
*/

/* 記事一覧 */
.wp-show-posts-image img {
  /* 画像サイズ */
  width: 100%;
  transition: 0.5s all;
}
.wp-show-posts-image.wpsp-image-center {
  overflow: hidden;
}
/*
.wp-show-posts-image.wpsp-image-center:hover img {
	transform: scale(1.1,1.1);
	transition: 0.5s all;
}
*/
.wp-show-posts-inner img:hover {
  transform: scale(1.1, 1.1);
  transition: 0.5s all;
}
/* 見出し */
.post-contents-wrapper > h2 {
  /* 一覧のコーナー（カテゴリー）タイトル */
  /*	color: #14923F;*/
  letter-spacing: 0.2rem;
  font-size: 1.5rem;
  margin-bottom: 0.6em;
  border-bottom: 2px solid #d2d2d2;
}
h2.wp-show-posts-entry-title {
  /* フォントサイズ */
  font-size: calc(0.5rem + 1.4vmin);
  font-weight: normal;
  line-height: 1.2;
}
h2.wp-show-posts-entry-title a {
  /* リンク文字色 */
  color: #0bc151;
}
h2.wp-show-posts-entry-title a:hover {
  /* リンク文字色（ホバー） */
  color: #222;
}
/* 続きを読む */
a.wp-show-posts-read-more {
  padding: 0 !important;
  border: none !important;
}
a.wp-show-posts-read-more:hover {
  color: #0bc151 !important;
  background: none !important;
}
.wp-show-posts-entry-header {
  margin: 0 !important;
}
.blog.wpsp-read-more {
  /* 位置調整（記事一覧） */
  margin: 1em 0 0.5em;
}
.blog.wpsp-read-more {
  /* 位置調整（ブログトップ） */
  margin: 1em 0 0.5em;
}
/* カテゴリ表示 */
span.wp-show-posts-terms.wp-show-posts-meta a {
  color: #fff;
  font-size: 0.85em;
  background-color: #a9a9a9;
  border-radius: 4px;
  padding: 1.2px 2.2px;
}
span.wp-show-posts-terms.wp-show-posts-meta a:hover {
  color: #fff;
  background-color: #0bc151;
}
/* カテゴリ毎の一覧の設定 */
.wp-show-posts-image.wpsp-image-left {
  /* 1カラムの際の画像サイズ */
  width: 31%;
  overflow: hidden;
}
/* 記事一覧 */
.blog .wp-show-posts-entry-summary {
  margin-bottom: 1em !important;
}
.wp-show-posts-entry-summary {
  margin-bottom: 0 !important;
}
.post-contents-container-left article.wp-show-posts-single {
  border-bottom: 1px dotted #c7c7c7;
  padding-bottom: 1.5em;
}

/* アイキャッチ */
.single-eyecatch {
  text-align: center;
}
.single-eyecatch img {
  width: 100%;
  height: auto;
  max-width: 640px;
}
/* 記事本文 */
.post-contents-container-left .single-text-wrapper {
  padding-bottom: 2em;
  border-bottom: 1px dotted #d2d2d2;
}
.post-contents-container-left h1.h1 {
  /* 記事タイトル */
  width: 100%;
  font-size: 2rem;
  /*
	line-height: 1.2;
	margin-bottom: .6em;
	padding-bottom: 7px;
	border-bottom: 2px solid #d2d2d2;
*/
  line-height: 1.2;
  margin: 0 0 0.7em;
  padding: 0.2em 0 0.2em 0.4em;
  border-left: solid 6px #0bc151;
  border-bottom: 2px solid #d2d2d2;
}
.single-text-wrapper h2 {
  /* 章の見出し */
  font-weight: normal;
  line-height: 1.2;
  margin: 1em 0 0.7em;
  padding: 0.1em 0 0.1em 0.3em;
  border-left: 6px solid #0bc151;
}
.single-text-wrapper h3 {
  font-weight: normal;
  line-height: 1.2;
  margin: 1em 0 0.7em;
  padding: 0.2em 0 0.2em 0;
  border-bottom: 2px solid #0bc151;
}

.post-contents-container-left .single-text-wrapper p {
  margin: 0.5em 0 2em;
  line-height: 1.7;
}

/* popular widget */
div#widget-area-top,
div#widget-area-middle {
  overflow: auto;
  margin-bottom: 3em;
}
#popular-widget-2 {
  counter-reset: number;
}
.pop-widget-tabs {
  /* タブを消す */
  display: none;
}
div[class^="pop-inside-"].pop-inside {
  /* borderを消す */
  border: none;
}
div.pop-inside ul li {
  border-bottom: 1px solid #eee !important;
}
/* 記事エリアの見出し */
.post-contents-wrapper-blog-single .post-contents-container-left h3,
.post-contents-wrapper-blog-single .post-contents-container-left h4 {
  font-size: calc(0.5rem + 1vmin);
  font-weight: bold;
}
.post-contents-wrapper-blog-single .post-contents-container-left h3::before {
  content: "●";
}
/* ウィジェットの見出し */
.post-contents-container-right h3 {
  font-size: calc(0.5rem + 1vmin);
  font-weight: normal;
  padding: 2px 0 0 5px;
  background-color: #efefef;
  border-left: 3px solid #0bc151;
}
/* よく読まれている記事 */
div.pop-inside ul li {
  padding: 0.8em 5px !important;
}
div.pop-inside ul li:hover a {
  color: #222;
}
div.pop-inside ul li img {
  /* サムネイル */
  border: 1px solid #0bc151 !important;
  margin: 2px 10px 2px 0;
  padding: 3px !important;
}
div.pop-inside ul li:hover img {
  /* hover */
  border: 3px solid #0bc151 !important;
  padding: 0 !important;
  transition: all 0.2s ease;
}
div.pop-inside ul li .pop-title {
  /* 記事タイトル */
  font-size: calc(0.5rem + 0.6vmin);
  font-weight: normal !important;
  line-height: 1.3;
  display: block;
}
div.pop-inside ul li a::before {
  /* カウントラベル */
  counter-increment: number;
  content: counter(number);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  width: 20px;
  height: 20px;
  padding: 0px;
  background-color: #0bc151;
  border-radius: 15px;
  position: absolute;
  top: 7px;
  left: 0;
  z-index: 30;
}
div.pop-inside ul li:last-child {
  border-bottom: 1px solid #eee;
}
/* なぜかカテゴリ記事のサマリーがマウス・ホバーでズレるので、margin-top:0;を入れる */
.wp-show-posts-inner :last-child {
  margin-top: 0;
}
.wp-show-posts-entry-summary p {
  margin: 0 0 1em;
}
/* オススメの記事 */
.rpwwt-widget li.recommend {
  /* 区切り線 */
  border-bottom: 1px solid #eee;
  margin: 0;
  padding: 0.8em 5px !important;
  list-style-type: none;
}
.rpwwt-widget li.recommend:hover {
  background: #f5f5f5;
}
.rpwwt-widget li.recommend:after {
  clear: both;
}
.rpwwt-widget li.recommend a {
  display: inline;
}
.rpwwt-widget li.recommend span.rpwwt-post-title {
  /* 記事タイトル */
  font-size: calc(0.5rem + 0.6vmin);
  line-height: 1.3;
  display: block;
}
.rpwwt-widget li.recommend img.wp-post-image {
  /* サムネイル */
  border: 1px solid #eee !important;
  margin: 2px 10px 2px 0;
  padding: 3px !important;
}
.rpwwt-widget li.recommend:hover img.wp-post-image {
  /* hover */
  border: 3px solid #0bc151 !important;
  padding: 0 !important;
  transition: all 0.2s ease;
}
.rpwwt-widget li.recommend .rpwe-summary {
  /* 抜粋 */
  font-size: 12px;
}
.rpwwt-post-categories a {
  /* カテゴリ */
  color: #a9a9a9;
  font-size: 6px;
  border: 1px solid #a9a9a9;
  border-radius: 4px;
  padding: 1.2px 2.2px;
}
.rpwwt-post-categories a.recommend {
  /* お勧めカテゴリのラベルを非表示にする */
  display: none !important;
}
.rpwwt-widget li.recommend .rpwwt-post-date {
  /* 投稿日 */
  color: #bbb;
  font-size: 11px;
}
/* 記事一覧へのリンクボタン */
.articles {
  text-align: center;
  margin-bottom: 4em;
  padding: 1.5em 0 2.5em;
  /*	border-bottom: 2px dotted #e2e2e2;*/
}
.articles a {
  font-size: 0.9rem;
  letter-spacing: 0.3vw;
  color: #0bc151;
  margin: auto 0;
  padding: 0.8rem 5vw;
  background-color: #fff;
  border: 1px solid #0bc151;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
}
.articles a:hover {
  color: #fff;
  background-color: #0bc151;
}
/* カテゴリ名クリックでの一覧 */
time.wp-show-posts-entry-date.published {
  /* 公開日 */
  color: rgba(0, 0, 0, 0.5);
}
.wpsp-read-more a {
  /* 記事を読む */
  color: #222;
  font-size: 0.8em;
  text-decoration: none;
}
/* ページャー */
.wpsp-load-more {
  margin: 4em auto 0 !important;
  text-align: center;
}
.wpsp-load-more span.page-numbers.current {
  color: #fff;
  margin: 0 4px;
  padding: 3px 4px;
  background-color: #0bc151;
  border: 1px solid #0bc151;
  border-radius: 4px;
}
.wpsp-load-more a.page-numbers {
  color: #0bc151;
  margin: 0 4px;
  padding: 3px 4px;
  border: 1px solid #0bc151;
  border-radius: 4px;
}
.wpsp-load-more a.page-numbers:hover {
  color: #fff;
  background-color: #0bc151;
}
/* 新しい記事/古い記事 */
.post-contents-container-left .d-flex {
  text-align: center;
  margin: 3em auto 0;
}
.post-contents-container-left .d-flex a {
  color: #0bc151;
  margin: 0 4px;
  padding: 3px 4px;
  border: 1px solid #0bc151;
  border-radius: 4px;
}
.post-contents-container-left .d-flex a:hover {
  color: #fff;
  background-color: #0bc151;
}
/* レスポンシブ対応 */
@media (max-width: 767px) {
  .wp-show-posts-image.wpsp-image-left {
    float: left !important;
    margin-right: 2vw !important;
  }
  .wp-show-posts-image {
    margin-bottom: 0 !important;
  }
}
/* // END ブログ ------------------------------------------------ */

/* FAQ -------------------------------------------------------- */
.faq {
  width: 70%;
  margin: 0 auto 7em;
  position: relative;
}
.faq h2 {
  color: #14923f;
  /*	font-weight: normal;*/
  text-align: center;
  letter-spacing: 6.4px;
}
.faq-container dl {
  font-size: 1.3rem;
  border-bottom: 1px solid #ddd;
}
.faq-container dt:first-of-type {
  border-top: none;
}
.faq-container dt {
  font-weight: bold;
  border-top: 1px solid #ddd;
  margin-left: 2em;
  padding-top: 2.2em;
  position: relative;
}
.faq-container dd {
  margin: 1em 0 2em 2em;
  position: relative;
}
.faq-container dt::before {
  content: "Ｑ．";
  color: #14923f;
  font-weight: 1000;
  position: absolute;
  left: -2em;
}
.faq-container dd::before {
  content: "Ａ．";
  color: #0bc151;
  font-weight: 1000;
  position: absolute;
  left: -2em;
}
/* // END FAQ ------------------------------------------------ */

/* // サポート ------------------------------------------------ */
section[id^="support-0"] {
  width: 80%;
  margin: 0 auto 7em;
  position: relative;
}

section[id^="support-0"] h2 {
  color: #14923f;
  /*	font-weight: normal;*/
  text-align: center;
  letter-spacing: 6.4px;
}
.support-intro {
  margin: 2rem 0 4rem;
  line-height: 2;
}
.support-container {
  width: 100%;
  margin-bottom: 4rem;
  padding: 2rem 1.5rem 1.5rem;
  line-height: 2;
  background-color: #fff;
  position: relative;
  box-shadow: 0px 0px 15px 6px rgba(146, 146, 146, 0.2);
}
.support-container h3 {
  position: absolute;
  top: -1.2rem;
  left: -1rem;
}
.support-container h3 .support-title {
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.45;
  letter-spacing: 2.4px;
  color: #fff;
  padding: 0 0.2em;
  background-color: #14923f;
}
#support-site {
  width: 100%;
  margin: 0 auto 4rem;
}
.support-site-banner {
  width: 24vw;
  margin: 0 auto;
}
.support-site-banner img {
  width: 100%;
  height: 100%;
}
/* // END サポート -------------------------------------------- */
/* 会社概要・セキュリティ方針・プライバシーポリシー -------------- */
#info-header {
  width: 100%;
  text-align: center;
}
.info-header-wrapper {
  width: 80%;
  margin: 0 auto;
  position: relative;
}
h1.info-title {
  letter-spacing: 9.6px;
}
.info-sub-title {
  color: #0bc151;
  letter-spacing: 4px;
  margin-bottom: 45px;
}
.info-wrapper {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}
.info-container {
  width: 100%;
  margin: 0 auto 3rem;
  padding: calc(6vw * 0.8);
  position: relative;
  overflow: hidden;
}
/* 会社概要 */
.info-table {
  width: 100%;
  margin: 0 auto 3rem;
  padding: calc(6vw * 0.8);
}
.info-table table {
  border-collapse: collapse;
}
.info-table tr {
  border-top: 1px solid #dddddd;
}
.info-table table td.company_name br {
  display: none;
}
.info-table tr:nth-last-child(1) {
  border-top: none;
}
.info-table th {
  font-size: 1rem;
  font-weight: normal;
  vertical-align: top;
  line-height: 1.8;
  color: #0bc151;
  width: 12vw;
  text-align: left;
  padding: 1rem 0 1rem 1.5rem;
}
.info-table td {
  font-size: 1rem;
  vertical-align: top;
  line-height: 1.8;
  width: 80%;
  text-align: left;
  padding: 1rem 0;
}
.info-table table dl {
  width: 100%;
}
.info-table table dl.officer dt {
  width: 17vw;
  float: left;
  clear: left;
}
.info-table table dl.officer dd {
  float: left;
}
.info-table table dl.branch dt {
  font-weight: bold;
}
.info-table table dl.branch dd {
  margin-bottom: 1.5rem;
}
.info-table table dl.branch dd:last-child {
  margin-bottom: 0;
}
.info-table table .branch_map:nth-child(odd) {
  width: 45%;
  margin: 0 0 2rem 1.5rem;
  float: left;
}
.info-table table .branch_map:nth-child(even) {
  width: 45%;
  margin: 0 0 2rem 0;
  float: right;
}
.info-table table .branch_map h4 {
  color: #0bc151;
}
/* セキュリティー方針・プライバシーポリシー */
#security_policy,
#privacy_policy {
  font-size: 1rem;
  line-height: 1.8;
}
.security_policy_intro,
.privacy_policy_intro {
  width: 100%;
  margin: 1.5rem 0;
}
.security_policy_sub_txt,
.privacy_policy_sub_txt {
  /* width: 93%; */
  padding: 2rem 0 3rem 1.2rem;
  border-bottom: 1px solid #ddd;
}
.info-container ol {
  list-style-type: decimal;
}
.info-container ol li {
  margin: 1.5rem 0;
}
.info-container .enactment {
  margin: 2rem auto;
  float: right;
}
/* プライバシーポリシー */
#privacy_policy p {
  margin: 0 0 1.5rem !important;
}
#privacy_policy .info-container:first-child {
  margin: 0 auto -2rem;
}
h2.privacy_policy_title {
  font-weight: bold;
  border-bottom: 2px solid #0bc151;
}
#privacy_policy .info-container h3 {
  margin: 2rem 0 0.5rem;
}
#privacy_policy .info-container h2 + h3 {
  margin-top: 1rem;
}
#privacy_policy .privacy_policy_sub_txt dt {
  font-weight: bold;
  display: list-item;
  list-style-type: decimal;
}
#privacy_policy .privacy_policy_sub_txt ul {
  list-style-type: disc;
  margin-bottom: 1.5rem;
  padding-left: 1.2rem;
}
.info-wrapper .info-container:nth-child(2) .privacy_policy_sub_txt {
  border-bottom: none;
}
#privacy_policy .info-table {
  width: 100%;
  margin: 1.5rem auto 0;
  padding: 0;
}
#privacy_policy .info-table table {
  border-collapse: collapse;
}
#privacy_policy .info-table tr {
  border-top: 1px solid #dddddd;
}
#privacy_policy .info-table tr:last-child {
  border-bottom: 1px solid #dddddd;
}
#privacy_policy .info-table th {
  font-size: 1rem;
  font-weight: bold;
  vertical-align: top;
  color: #000;
  text-align: left;
  padding: 1rem 0 1rem 1.5rem;
}
#privacy_policy .info-table td {
  font-size: 1rem;
  vertical-align: top;
  text-align: left;
  padding: 1rem 0 0 1.5rem;
}
#privacy_policy .privacy_policy_intro.left {
  width: 75%;
  display: inline-block;
}
#privacy_policy .privacy_policy_mark {
  width: 15%;
  height: auto;
  text-align: center;
  vertical-align: top;
  margin-top: 4rem;
  padding: 1rem;
  display: inline-block;
}
#privacy_policy .privacy_policy_mark img {
  width: 100%;
  height: 100%;
}
/* // END 会社概要・セキュリティ方針・プライバシーポリシー -------- */

/* 問い合わせフォーム ------------------------------------------ */
.contact-wrapper {
  width: 80%;
  max-width: 1110px;
  margin: 0 auto;
}
.contact-container {
  width: 100%;
  margin: 0 auto 8rem;
  padding: calc(6vw * 0.8);
  background-color: #fff;
  position: relative;
  box-shadow: 0px 0px 15px 6px rgba(146, 146, 146, 0.2);
}
.contact_form > label {
  /* 左の見出しのラベル */
  width: 24%;
  min-width: 160px;
  text-align: left;
  display: inline-block;
}
.form_request,
.form_reply,
.form_consultation {
  width: 50vw;
  max-width: 680px;
  display: inline-block;
}
.contact_form input + label {
  text-align: center;
  margin: 0 0.4rem 0.8rem 0;
  padding: 0.8rem 0;
  background-color: #f5f5f5;
  border-radius: 0.5em;
  -moz-border-radius: 0.5em;
  -webkit-border-radius: 0.5em;
  cursor: pointer;
}
.contact_form .form_request input + label {
  width: 14vw;
  max-width: 210px;
  min-width: 110px;
}
#reply input + label {
  width: 21.5vw;
  max-width: 322px;
  min-width: 140px;
}
.contact_form {
  margin: 0 0 3rem 0;
}
.contact_form input,
.contact_form textarea {
  padding: 0.8rem 1rem;
  background-color: #f5f5f5;
  border-radius: 0.5em;
  -moz-border-radius: 0.5em;
  -webkit-border-radius: 0.5em;
}

#request > label,
#reply > label,
#consultation > label {
  /* 選択肢が改行されても左の見出しラベルは上揃えにする */
  vertical-align: top;
}
input.company,
input.email,
input.phone,
input.address {
  width: 50vw;
  max-width: 680px;
}
input.last_name,
input.first_name {
  width: 20.5vw;
  max-width: 336px;
  padding: 0.8rem 1rem;
  background-color: #f5f5f5;
  border-radius: 0.5em;
  -moz-border-radius: 0.5em;
  -webkit-border-radius: 0.5em;
}
.contact_form textarea {
  width: 50vw;
  max-width: 680px;
  height: 13rem;
}
.contact_form input[type="text"]:focus,
.contact_form input[type="email"]:focus,
.contact_form textarea:focus {
  background: #fff;
  border: 1px solid #0bc151;
  box-sizing: border-box;
}
/*
.agree_check label {
	position: relative;
	display: block;
	width: 100%;
}
*/
.mwform-checkbox-field input {
  margin-right: 10px !important;
}
.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0 !important;
}
.form_request input[type="radio"],
.form_reply input[type="radio"] {
  display: none;
}
.form_request input + span.mwform-radio-field-text {
  width: 14vw;
  max-width: 210px;
  min-width: 110px;
}
.form_request label input[type="radio"] + span,
.form_reply label input[type="radio"] + span {
  display: block;
  text-align: center;
  margin: 0 0.4rem 0.5rem 0;
  padding: 0.8rem 0;
  background-color: #f5f5f5;
  border-radius: 0.5em;
  -moz-border-radius: 0.5em;
  -webkit-border-radius: 0.5em;
  cursor: pointer;
}
.form_request label input[type="radio"]:checked + span,
.form_reply label input[type="radio"]:checked + span {
  color: #ffffff;
  background: #0bc151;
  transition: 0.2s;
}
.form_reply input + span.mwform-radio-field-text {
  width: 21.5vw;
  max-width: 322px;
  min-width: 140px;
}
.form_request span.mwform-radio-field,
.form_reply span.mwform-radio-field {
  display: inline-block;
}
.agree_check input[type="checkbox"] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  left: -7px;
  width: 25px;
  height: 25px;
  border: 1px solid #777;
  background-color: #fff;
  border-radius: 4px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
}
.agree_check input[type="checkbox"]:checked + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
  width: 10px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 2px solid #0bc151;
  border-right: 2px solid #0bc151;
  z-index: 2;
}
.agree_text {
  color: #777;
  font-size: 0.9rem;
  text-align: center;
}
.agree_check {
  /*	text-align: center;*/
  margin: 1rem auto 3rem;
  position: relative;
  display: table;
}
.back_box {
  text-align: center;
  margin: 6rem auto 2rem;
}
.submit_box {
  text-align: center;
}
.back_box button.form_back {
  width: 30vw;
  padding: 0.5rem 0;
  color: #0bc151;
  font-weight: 1000;
  background-color: #fff;
  border: 1px solid #0bc151;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  cursor: pointer;
}
.back_box button.form_back:hover {
  color: #fff;
  background-color: #0bc151;
  transition: 0.2s;
}
.submit_box input[type="submit"] {
  width: 30vw;
  padding: 1rem 0;
  color: #0bc151;
  font-weight: 1000;
  background-color: #fff;
  border: 1px solid #0bc151;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  cursor: pointer;
}
.submit_box input[type="submit"]:hover {
  color: #fff;
  background-color: #0bc151;
  transition: 0.2s;
}
.mw_wp_form_confirm .submit_box input[type="submit"] {
  width: 30vw;
  padding: 1rem 0;
  color: #fff;
  font-weight: 1000;
  background-color: #0bc151;
  border: 1px solid #0bc151;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  cursor: pointer;
}
.mw_wp_form_confirm .submit_box input[type="submit"]:hover {
  color: #0bc151;
  background-color: #fff;
  transition: 0.2s;
}
/* エラーメッセージ */
.mw_wp_form #contact .error {
  font-size: 0.8rem;
}
/* 入力内容の確認で消す */
.mw_wp_form_confirm .agree_text,
.mw_wp_form_confirm .agree_check {
  display: none;
}

/* アラートランプ */
#contact .box-alert {
  position: relative;
  left: 0.5em;
  bottom: 1em;
}
#contact .contact-container .box-alert {
  display: inline-block;
  margin-left: 0.8em;
  left: 0;
  bottom: 0;
}
#contact .box-alert .indicater {
  width: 12px;
  height: 12px;
  background: #f0698d;
  position: relative;
  display: inline-block;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
}
#contact .contact-wrapper .box-alert .indicater {
  margin-right: 10px;
}
#contact .box-alert .indicater .ring {
  height: 22px;
  width: 22px;
  top: -5px; /*A.中心*/
  left: -5px; /*A.中心*/
  background: rgba(240, 105, 141, 0.3);
  position: absolute;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  z-index: 0;
}
.contact-container .contact_form:hover .ring {
  animation: pulsate-7 1s ease-out;
  animation-iteration-count: infinite;
  -webkit-animation: pulsate-7 1s ease-out;
  -webkit-animation-iteration-count: infinite;
  -moz-animation: pulsate-7 1s ease-out;
  -moz-animation-iteration-count: infinite;
}
@keyframes pulsate-7 {
  0% {
    transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(2, 2);
    opacity: 0;
  }
}
@-webkit-keyframes pulsate-7 {
  0% {
    -webkit-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2, 2);
    opacity: 0;
  }
}
@-moz-keyframes pulsate-7 {
  0% {
    -moz-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -moz-transform: scale(2, 2);
    opacity: 0;
  }
}
/* // END 問い合わせフォーム ----------------------------------- */

/* 問い合わせ用CSS
----------------------------------------------------------------------------- */
#contact-form {
  margin: 14em auto 4em;
}
.contact-form-title {
  font-size: calc(0.5rem + 1.5vmin);
  color: #0bc151;
  width: 80%;
  margin: 0 auto 2em;
  display: flex;
  display: -ms-flexbox;
  align-items: baseline;
}
.contact-form-title h2 {
  font-size: calc(0.5rem + 3vmin);
  font-weight: normal;
  margin-right: 0.8em;
}
.contact-form-sub-title {
  text-align: center;
}
.contact-form-sub-title h1 {
  font-size: calc(0.5rem + 2vmin);
  font-weight: normal;
  margin: 0 auto 0.5em;
}
#contact-form .required-txt {
  color: #a72627;
  text-align: center;
  margin: 3em auto 2em;
}
.contact-form-wrapper {
  width: 80%;
  margin: 0 auto;
  padding: 2.5vw 3vw 5vw;
  background-color: #fff;
  /*	box-shadow: 0px 0px 3px 3px rgba(146, 146, 146, 0.3);
	-webkit-box-shadow: 0px 0px 3px 3px rgba(146, 146, 146, 0.3);
*/
}
#contact-form label::after {
  /* ラベルに必須印を付ける */
  content: "*";
  color: #a72627;
}
#contact-form .form_request label::after,
#contact-form .form_reply label::after,
#contact-form .agree_check label::after {
  /* 選択項目のラベルから必須印を外す */
  content: "";
}
#contact-form .contact-container div[id] {
  margin: 0 auto 2em;
  display: flex;
  align-items: center;
}
#contact-form .contact-container div[id="request"],
#contact-form .contact-container div[id="reply"],
#contact-form .contact-container div[id="consultation"] {
  align-items: normal;
}
#contact-form .contact-container div[id] > div.labels {
  font-size: calc(0.5rem + 1vmin);
  width: 20%;
  max-width: 176px;
  min-width: 98px;
}
#contact-form .contact-container span.error {
  font-size: calc(0.5rem + 0.5vmin);
  color: #a72627;
}
#contact-form .contact-container div[id] div.labels + div {
  width: 75%;
}
#contact-form .contact-container input[type="text"],
#contact-form .contact-container input[type="email"],
#contact-form .contact-container input[type="tel"],
#contact-form .contact-container .form_consultation textarea {
  font-size: calc(0.5rem + 1vmin);
  width: 75%;
  max-width: 639px;
  padding: 0.7em 0.6em;
  background-color: #eee;
  border: 1px solid #eee;
}
#contact-form .contact-container input.last_name,
#contact-form .contact-container input.first_name {
  width: 36.1%;
  max-width: 311px;
  margin-right: 1em;
}
#contact-form .contact-container .form_consultation textarea {
  width: 100%;
}
#contact-form .contact-container input[type="text"]:focus,
#contact-form .contact-container input[type="email"]:focus,
#contact-form .contact-container input[type="tel"]:focus,
#contact-form .contact-container .form_consultation textarea:focus {
  background-color: #fff;
  border: 1px solid #0bc151;
}
#contact-form .contact-container .form_request ul,
#contact-form .contact-container .form_reply ul {
  margin-left: 1em;
}
#contact-form .contact-container .form_request li {
  width: calc(100% / 3.1);
  height: 3em;
  margin-bottom: 0.8em;
  display: inline-flex;
  /*	float: left;*/
}
#contact-form .contact-container .form_reply li {
  width: calc(100% / 2.1);
  height: 3em;
  display: inline-flex;
  /*	float: left;*/
}
#contact-form .contact-container .form_request label,
#contact-form .contact-container .form_reply label {
  position: relative;
  width: 100%;
  /*	display: block;*/
}
#contact-form .contact-container label input[type="radio"] {
  margin-right: 10px;
  vertical-align: middle;
}
#contact-form .contact-container label input[type="radio"] + span {
  cursor: pointer;
  vertical-align: middle;
}
/*
#contact-form .contact-container label input[type='radio'] + span::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: -7px;
	width: 25px;
	height: 25px;
	border: 1px solid #777;
	background-color: #fff;
	border-radius: 50%;
}
#contact-form .contact-container label input[type='radio']:checked + span::after {
	content: "";
	width: 13px;
	height: 13px;
	display: block;
	position: absolute;
	top: 6px;
	left: -1px;
	background: #a72627;
	border-radius: 50%;
}
*/
#contact-form .agree_text,
#contact-form .agree_check,
#contact-form .submit_box {
  text-align: center;
}
#contact-form .submit_box input[type="submit"] {
  padding: 0.8em 6em;
  background-color: #eee;
  border: 1px solid #eee;
}
#contact-form .submit_box input[type="submit"]:hover {
  color: #fff;
  cursor: pointer;
  background-color: #0bc151;
  border: 1px solid #0bc151;
}
#contact-form .agree_check {
  /*	margin: 1rem 0 3rem;*/
  position: relative;
  /*	display: table;*/
}
#contact-form .agree_check label {
  position: relative;
  /*	display: block;
	width: 100%;*/
}
#contact-form .agree_check label input[type="checkbox"] {
  margin-right: 10px;
  vertical-align: middle;
}
#contact-form .agree_check label input[type="checkbox"] + span {
  cursor: pointer;
  vertical-align: middle;
}
#contact-form .agree_check label input[type="checkbox"] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: -7px;
  width: 25px;
  height: 25px;
  border: 1px solid #777;
  background-color: #fff;
}
#contact-form .agree_check label input[type="checkbox"]:checked + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  left: 0;
  width: 10px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 2px solid #0bc151;
  border-right: 2px solid #0bc151;
  z-index: 2;
}
/* 確認画面 */
#contact-form.inputted .input_content {
  padding: 0 0 0.4em 0.1em;
  border-bottom: 1px solid #ccc;
}
#contact-form.inputted .split_name,
#contact-form.inputted .form_request,
#contact-form.inputted .form_reply {
  width: 25% !important;
  padding: 0 0 0.4em 0.1em;
  border-bottom: 1px solid #ccc;
}
#contact-form.inputted .split_name:nth-of-type(2) {
  margin-right: 2em;
}
#contact-form.inputted .form_consultation {
  padding: 0 0 0.4em 0.1em;
  border-bottom: 1px solid #ccc;
}
#contact-form.inputted .submit_box .java_back input[type="button"] {
  margin-bottom: 2em;
  padding: 0.4em 3em;
  cursor: pointer;
  background-color: #eee;
  border: 1px solid #eee;
}
#contact-form.inputted .submit_box .java_back input[type="button"]:hover {
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #ccc;
}
#contact-form.inputted .submit_box input[type="submit"] {
  color: #fff;
  padding: 0.8em 6em;
  cursor: pointer;
  background-color: #0bc151;
  border: 1px solid #0bc151;
}
#contact-form.inputted .submit_box input[type="submit"]:hover {
  color: #0bc151;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #0bc151;
}
#contact-form.thanks h1 {
  padding: 0 0 0 0.5em;
  border-bottom: 2px solid #000;
  display: table;
}
#contact-form.thanks .thanks-txt {
  margin-top: 3em;
}
/* ---- END 問い合わせ用CSS -------------------------------------------------- */

/* 問い合わせ完了画面 ------------------------------------------ */
.complete_button {
  margin: 2rem auto 1rem;
  position: relative;
  /*	display: flex;*/
  justify-content: center;
}
.sc_top_link {
  margin: 3vw 2vw 3vw 0;
  display: inline-block;
}
.sci_top_link {
  margin: 3vw 0;
  display: inline-block;
}
/* トップへ戻る・コーポレートサイトトップへ */
.sc_top_link a,
.sci_top_link a {
  padding: 1rem 4vw;
  color: #0bc151;
  font-size: 0.8rem;
  font-weight: 1000;
  background-color: #fff;
  border: 1px solid #0bc151;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
}
.sc_top_link a:hover,
.sci_top_link a:hover {
  color: #fff;
  background-color: #0bc151;
}
/* // END 問い合わせ完了画面 ----------------------------------- */

/* お問い合わせ ------------------------------------------------ */
#top-inquiry {
  width: 100%;
  padding: 7rem 0;
  background-color: #fafafa;
  position: relative;
}
.top-inquiry-wrapper {
  text-align: center;
  margin: 0 auto;
  position: relative;
}
.inquiry-copy {
  color: #14923f;
  font-size: 1.8rem;
  line-height: 1.2em;
  letter-spacing: 0.2rem;
}
.inquiry-text {
  font-size: 0.9rem;
  margin: 2.5rem 0 1.5rem;
}
.inquiry-tel,
.inquiry-form {
  width: 45%;
  max-width: 576px;
  height: 280px;
  margin: 2rem 1rem;
  background-color: #fff;
  box-shadow: 0px 0px 15px 6px rgba(146, 146, 146, 0.2);
  display: inline-block;
  position: relative;
}
.inquiry-title {
  color: #0bc151;
  font-weight: bold;
  letter-spacing: 0.2rem;
  margin: 2.5rem 0 1rem;
}
.inquiry-title br {
  display: none;
}

/* 電話でのお問い合わせ */
/* 問い合わせ先電話番号 */
.inquiry-tel .tel-number a {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  color: #000;
  font-size: 3rem;
  font-weight: bold;
}
/* アラートランプ */
.inquiry-tel .tel-number-alert {
  top: -6px;
  left: -6px;
  position: absolute;
}
.inquiry-tel .tel-number-alert .indicater {
  width: 50px;
  height: 50px;
  background: #6dda97;
  position: relative;
  display: inline-block;
  margin-right: 10px;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
}
.inquiry-tel .tel-number-alert .indicater .ring {
  height: 70px;
  width: 70px;
  top: -10px; /*A.中心*/
  left: -10px; /*A.中心*/
  background: rgba(109, 218, 151, 0.3);
  position: absolute;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  z-index: 0;
}
.inquiry-tel:hover .ring {
  animation: pulsate-2 1s ease-out;
  animation-iteration-count: infinite;
  -webkit-animation: pulsate-2 1s ease-out;
  -webkit-animation-iteration-count: infinite;
  -moz-animation: pulsate-2 1s ease-out;
  -moz-animation-iteration-count: infinite;
}
@keyframes pulsate-2 {
  0% {
    transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(2, 2);
    opacity: 0;
  }
}
@-webkit-keyframes pulsate-2 {
  0% {
    -webkit-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2, 2);
    opacity: 0;
  }
}
@-moz-keyframes pulsate-2 {
  0% {
    -moz-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -moz-transform: scale(2, 2);
    opacity: 0;
  }
}
.inquiry-tel .indicater img {
  width: 38%;
  top: 14px;
  right: 16px;
  position: absolute;
  z-index: 3;
}

/* フォームからのお問い合わせ */
.inquiry-form .inquiry-case {
  margin: 2rem 0;
}
/* 問い合わせボタン */
.inquiry-form div.inquiry-button a {
  color: #fff;
  letter-spacing: 0.2rem;
  padding: 1rem 3.5rem;
  background-color: #0bc151;
  border-radius: 50vw;
  -webkit-border-radius: 50vw;
  -moz-border-radius: 50vw;
  background-image: none;
  margin-right: 0;
}
.inquiry-form div.inquiry-button a:hover {
  color: #fff;
  background-color: #0a7734;
}
.inquiry-form div.inquiry-button a[target=_blank]:after {
  background-image: url(/wp/wp-content/themes/premium/img/thema_icon-outlink--white.png)
}

/* アラートランプ */
.inquiry-form .form-number-alert {
  top: -6px;
  left: -6px;
  position: absolute;
}
.inquiry-form .form-number-alert .indicater {
  width: 50px;
  height: 50px;
  background: #6dda97;
  position: relative;
  display: inline-block;
  margin-right: 10px;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
}
.inquiry-form .form-number-alert .indicater .ring {
  height: 70px;
  width: 70px;
  top: -10px; /*A.中心*/
  left: -10px; /*A.中心*/
  background: rgba(109, 218, 151, 0.3);
  position: absolute;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  z-index: 0;
}
.inquiry-form:hover .ring {
  animation: pulsate-2 1s ease-out;
  animation-iteration-count: infinite;
  -webkit-animation: pulsate-2 1s ease-out;
  -webkit-animation-iteration-count: infinite;
  -moz-animation: pulsate-2 1s ease-out;
  -moz-animation-iteration-count: infinite;
}
@keyframes pulsate-2 {
  0% {
    transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(2, 2);
    opacity: 0;
  }
}
@-webkit-keyframes pulsate-2 {
  0% {
    -webkit-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2, 2);
    opacity: 0;
  }
}
@-moz-keyframes pulsate-2 {
  0% {
    -moz-transform: scale(0.2, 0.2);
  }
  50% {
    opacity: 1;
  }
  100% {
    -moz-transform: scale(2, 2);
    opacity: 0;
  }
}
.inquiry-form .indicater img {
  width: 50%;
  top: 16px;
  right: 12px;
  position: absolute;
  z-index: 3;
}
/* // END お問い合わせ ------------------------------------------ */

/* フッター */
#footer {
  /* 2021.12.9 **********/
  /*	width: 90%;*/
  /********** 2021.12.9 */
  max-height: 1000px;
  margin: 0 auto;
  padding: 6rem 0 4rem;
}
/* グローバルメニュー＆会社メニュー */
.footer-menu-wrapper {
  display: table;
}
.footer-info-menu-wrapper ul {
  margin: 0;
}
.footer-nav-menu-wrapper ul li a,
.footer-info-menu-wrapper ul li a {
  color: #000;
}
.footer-nav-menu-wrapper ul li a:hover,
.footer-info-menu-wrapper ul li a:hover {
  color: #0bc151;
}
/* グローバルメニュー */
.footer-nav-menu-wrapper {
  /*	width: 60vw;*/
  width: 58%;
  display: inline-flex;
}
.footer-nav-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
.footer-nav-menu-wrapper ul li {
  width: 25%;
  /*	width: 12vw;*/
  min-width: 125px;
  font-size: 0.9rem;
  /*	font-weight: bold;*/
  margin-bottom: 2rem;
  /*	display: inline-block;*/
}
.footer-nav-menu-wrapper ul li:before {
  content: "-";
  color: #0bc151;
  margin-right: 0.7rem;
}
.footer-nav-menu-wrapper ul li.x2cell {
  width: 50%;
}

/* 会社メニュー */
.footer-info-menu-wrapper {
  /*	width: 35vw;*/
  width: 40%;
  display: inline-flex;
}
.footer-info-menu-wrapper ul {
  width: 100%;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  white-space: nowrap;
  /*	justify-content: space-between;*/
  justify-content: flex-end;
}
.footer-info-menu-wrapper ul li {
  width: 50%;
  min-width: 180px;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  /*	display: inline-block;*/
}
.footer-info-menu-wrapper ul li:before {
  content: "-";
  margin-right: 0.7rem;
}
.footer-info-menu-wrapper li:last-child,
.footer-info-menu-wrapper li:last-child a {
  color: #0bc151;
}

/* 会社ロゴ＆各種ISOロゴ */
.footer-logo-wrapper {
  margin-top: 5rem;
  position: relative;
}
/* 会社ロゴ */
.footer-logo {
  width: 20vw;
  min-width: 252px;
  font-size: 0.75rem;
  text-align: right;
  vertical-align: text-top;
  display: inline-block;
}
.footer-logo a {
  color: #fd6c26;
  margin-right: 0;
  padding-top: 0;
  padding-right: 0;
  background: none;
  font-size: 1.875rem;
  font-weight: 700;
}
.footer-logo a::after {
  content: none;
}
.footer-logo img {
  width: 100%;
}
/* ISOロゴ */
.iso-logo-wrapper {
  right: 0;
  padding-right: 4rem;
  position: absolute;
  display: inline-block;
}
.footer-p-mark,
.footer-JAB,
.footer-ISMS,
.footer-ANAB {
  vertical-align: top;
  display: inline-block;
}
.footer-p-mark img,
.footer-JAB img,
.footer-ISMS img,
.footer-ANAB img {
  width: 100%;
}
/* Ｐマーク */
.footer-p-mark {
  width: 6vw;
  max-height: 70px;
  min-width: 64px;
  vertical-align: baseline;
}
.footer-p-mark img {
  max-width: 68px;
  min-width: 64px;
}
/* ANAB */
.footer-ANAB {
  width: 17vw;
  max-height: 70px;
  min-width: 245px;
  vertical-align: baseline;
}
.footer-ANAB img {
  max-width: 262px;
  min-width: 245px;
}
/* JAB */
.footer-JAB {
  width: 9vw;
  padding: 0 1.5rem;
}
.footer-JAB img {
  max-width: 124px;
  min-width: 98px;
}
/* ISMS */
.footer-ISMS {
  width: 9vw;
  padding: 0 1.5rem;
}
.footer-ISMS img {
  max-width: 124px;
  min-width: 98px;
}
/* コピーライト */
.footer-copyright {
  font-size: 0.9rem;
  text-align: center;
  margin-top: 5rem;
}
/* レスポンシブ対応 */
@media (max-width: 767px) {
  #footer {
    padding: 2rem 0;
  }
  .footer-copyright {
    margin-top: 2rem;
  }
  .footer-nav-menu-wrapper ul {
    padding: 0;
  }
  .footer-nav-menu-wrapper ul li {
    display: flex;
    width: 100%;
  }
  .footer-info-menu-wrapper ul {
    padding: 0;
    justify-self: unset;
  }
}


/* －－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－装飾
－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－ */
.border-green {
  height: 1px;
  border: none;
  position: relative;
  top: 13rem;
  background-color: #14923f;
}

.onehr-news {
  position: relative;
  top: -40px;
  padding: 20px 40px;
  background-color: #fd6c26;
}
.onehr-news__inner {
  width: calc(50vw * 1.5);
  max-width: 1050px;
  min-width: 640px;
  margin: 0 auto;
}
.onehr-news__inner a {
  color: #fff;
}
.onehr-news__inner a:hover {
  text-decoration: underline;
}
.onehr-news__inner a::after {
  background-image: url(/wp/wp-content/themes/premium/img/thema_icon-outlink--white.png);
}
@media (max-width: 767px) {
  .onehr-news {
    top: 0;
    padding: 20px 4vw;
  }
  .onehr-news__inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
}

/* －－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－
　レスポンシブ対応
－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－－ */
@media screen and (min-width: 1200px) {
  .case-content-enter a {
    font-size: 1rem;
  }
}

/* 低解像度PC＆タブレット向けの設定 */
@media screen and (max-width: 940px) {
  html {
    /* 画面を縮めた時にスクロールバーを出さなくする */
    overflow: overlay;
  }
  /* トップページ */
  .header-logo {
    /* ロゴ */
    margin-right: 10px;
  }
  /* メニュー */
  .nav-menu ul li {
    /* 項目の間隔 */
    margin: 0 1vw;
  }
  .nav-menu ul li.inquiry-button a {
    /* 問い合わせボタン */
    padding: 0.8rem 1.5rem;
  }
  /* 選ばれる理由 */
  #top-reason .box-number {
    /* 数字 */
    left: -17px;
  }
  #top-reason .box .box-heading {
    /* ４つの見出し */
    margin: 3% 0 10% 1.7rem;
  }

  /* お知らせ */
  /*	.info-box {
		width: calc(20vw * 1.5);
		height: calc(30vw / 0.65);
	}
	.info-box .info-news {
		padding: 1rem 1rem 0;
	}
*/
  /* 導入事例 */
  .example-logo-wrapper {
    width: 90%;
  }
  .case-logo img {
    max-width: 80px;
  }
  .case-content-txt {
    font-size: 0.75rem;
  }

  /* 活用シーン */
  .content-message-txt br {
    /* メインメッセージの改行 */
    display: none;
  }
  .scene-wrapper {
    /* セクションの幅 */
    width: 90%;
  }
  .scene-content-wrapper {
    width: 46vw;
  }
  #scene-01 .scene-content-wrapper,
  #scene-02 .scene-content-wrapper,
  #scene-03 .scene-content-wrapper,
  #scene-04 .scene-content-wrapper,
  #scene-05 .scene-content-wrapper,
  #scene-06 .scene-content-wrapper {
    bottom: 3vw;
  }
  #scene-sub-01 .scene-sub-title br {
    /*	display: none;*/
  }

  /* 機能一覧 */
  .system-wrapper {
    width: 90%;
  }
  .system-content-wrapper {
    width: 50vw;
  }

  /* 会社概要 */
  .info-header-wrapper,
  .info-wrapper {
    width: 90%;
  }
  .info-table td {
    width: 75%;
  }
  .info-table table dl.officer dt {
    width: 30vw;
  }

  /* お問い合わせ */
  .contact-wrapper {
    width: 90%;
    margin-left: 2.2rem;
  }
}

/* スマホ向けの設定 */
@media screen and (max-width: 767px) {
  /* ヘッダー */
  .header-logo {
    /* ロゴ */
    width: 32vw;
    position: fixed;
  }
  .content-header-wrapper {
    width: 90%;
  }
  .header-wrapper,
  body.action .active .header-wrapper {
    /* ヘッダー位置 */
    padding: 2.5rem 2rem 4rem;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%; /* これで隠れる */
    width: 100%;
    height: 100vh;
    transition: all 0.3s;
    z-index: 1000;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }
  body.action .nav-menu {
    /* ハンバーガーメニュークリックで表示 */
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
  }
  .nav-menu {
    width: 100%;
    margin: 0;
    padding: 40px 0 0;
    display: block;
  }
  .nav-menu a {
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 10px;
    padding: 0.5rem 0 0.5rem 3rem;
    display: block;
  }
  .nav-menu ul {
    display: block;
  }
  .nav-menu ul li {
    text-align: left;
    margin: 0;
    border-bottom: none !important;
  }
  .nav-menu ul li:hover,
  .nav-menu li.current {
    border: none;
  }
  .nav-menu ul li:last-child {
    /* 問い合わせボタン */
    margin: 1.5rem 0 0 3rem;
    display: inline-block;
  }
  body.action .active .nav-menu ul li.inquiry-button a {
    padding: 1rem 2rem;
  }

  .navToggle {
    /* ハンバーガーメニューを表示する */
    display: block;
  }
  .navToggle {
    /* 三本線を描く */
    display: block;
    position: fixed;
    right: 3rem;
    width: 52px;
    height: 46px;
    cursor: pointer;
    z-index: 9999;
    text-align: center;
    transform: scale(-1, 1);
  }
  .navToggle span {
    display: block;
    position: absolute;
    border-bottom: solid 2px #0bc151;
    -webkit-transition: 0.35s ease-in-out;
    -moz-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
    left: 6px;
  }
  .navToggle span:nth-child(1) {
    width: 30px;
    top: 9px;
  }
  .navToggle span:nth-child(2) {
    width: 40px;
    top: 22px;
  }
  .navToggle span:nth-child(3) {
    width: 20px;
    top: 36px;
  }
  /* タップ後の「×」にする */
  /* 最初のspanをマイナス45度に */
  .navToggle.action span:nth-child(1) {
    width: 40px;
    top: 18px;
    left: 6px;
    border-bottom: solid 2px #fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  /* 2番目と3番目のspanを45度に */
  .navToggle.action span:nth-child(2) {
    top: 18px;
    border-bottom: solid 2px #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .navToggle.action span:nth-child(3) {
    top: 18px;
    left: 16px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  
  #global-nav #menu-item-57 a::after {
    background-image: url(/wp/wp-content/themes/premium/img/thema_icon-outlink--white.png);
  }

  /* パンくず */
  .breadcrumb {
    /* 非表示にする */
    display: none;
  }

  /* メインイメージエリア */
  #main-image {
    /* 画像等のはみ出し分を隠す */
    overflow: hidden;
  }
  .main-img-wrapper {
    /* エリアの高さを与える */
    height: 125vw;
    max-height: 900px;
  }
  .main-img-wrapper .catchcopy {
    /* メインのキャッチコピー */
    top: -1rem;
    top: calc(98% / 1.9);
    left: 3rem;
  }
  .main-img-wrapper .catchcopy br {
    /* 文中の改行を復活させる */
    display: block;
  }
  .main-img-wrapper .main-img {
    /* メインイメージ */
    width: 80vw;
    right: -8rem;
    top: 12rem;
  }
  .main-subcopy {
    /* 背景の文字 */
    top: 0;
  }

  /* ABOUTエリア */
  #top-about {
    /* 高さを与える */
    height: auto;
    min-height: auto;
  }
  .top-about-wrapper {
    /* エリアのpaddingを再設定 */
    /* 2021.12.9 **********/
    /*		width: 83vw;
		padding: 1.5rem 2.5rem 4rem;*/
    width: 100%;
    padding: 1.5rem 1rem 4rem;
    /********** 2021.12.9 */
    min-width: 554px;
    position: relative;
  }
  .top-about-wrapper .rwd {
    display: inline-block;
  }
  .top-about-wrapper .smartcompany-logo {
    /* ロゴ */
    width: 45vw;
  }
  .top-about-wrapper .about-copy {
    /* 見出し */
    font-size: 1.5rem;
  }
  .top-about-wrapper .about-subcopy {
    /* 注釈文 */
    text-align: left;
    font-size: 1.3rem;
    letter-spacing: 0.5rem;
  }
  .top-about-wrapper .about-subcopy br {
    /* 文中の改行を削除する */
    display: none;
  }
  .top-about-wrapper .about-img {
    /* PC画像 */
    width: 100%;
  }
  .top-about-wrapper .about-txt {
    /* 紹介文 */
    width: 100%;
    font-size: 1.2rem;
    line-height: 2;
  }
  .top-about-wrapper .about-more a {
    /* 詳しくはこちら */
    font-size: 1.2rem;
    /* 2021.12.9 **********/
    /*		padding: 1rem 20vw;*/
    padding: 1rem;
    /********** 2021.12.9 */
  }
  .about-human04,
  .about-human05,
  .about-human06 {
    display: none;
  }
  #top-about .about-human01 img {
    /* 2021.12.9 **********/
    /*		top: 36rem;
		left: 40vh;
		z-index: 2;*/
    top: 4rem;
    left: 4rem;
    z-index: 4;
    /********** 2021.12.9 */
    width: 14vw;
  }
  #top-about .about-human02 img {
    /* 2021.12.9 **********/
    /*		top: 28rem;
		right: 4vh;*/
    top: 6rem;
    right: 0;
    /********** 2021.12.9 */
  }
  #top-about .about-human03 img {
    /* 2021.12.9 **********/
    /*		top: 37rem;*/
    top: 6rem;
    left: 0;
    /********** 2021.12.9 */
    z-index: 2;
  }
  .about-back-img {
    /* 背景の文字（ABOUT） */
    display: none;
  }

  /* 選ばれる理由 */
  #top-reason {
    /* 高さを与える */
    height: auto;
  }
  .reason-copy {
    /* 見出し文字 */
    font-size: 2rem;
  }
  .reason-copy span.what-smartcompany {
    /* キャッチコピー */
    font-size: 1.4rem;
  }
  .reason-txt {
    /* 紹介文 */
    font-size: 1.2rem;
    line-height: 2;
  }
  #top-reason .reason-01,
  #top-reason .reason-02,
  #top-reason .reason-03,
  #top-reason .reason-04 {
    /* エリアを拡げて並ばないようにする */
    width: 100%;
    height: auto;
    max-width: none;
    /*	float: initial;*/
    margin: 1rem 0;
    /* 2021.12.9 **********/
    /*		position: static;*/
  }
  #top-reason .reason-02 {
    top: unset;
    right: unset;
  }
  #top-reason .reason-03 {
    top: unset;
    left: unset;
  }
  #top-reason .reason-04 {
    top: unset;
  }
  /********** 2021.12.9 */
  #top-reason .box {
    /* 理由の箱を左基準で並べる */
    width: 100%;
    text-align: left;
    max-width: none;
    position: relative;
    float: right;
    display: inline-table;
  }
  #top-reason .box .box-heading {
    /* 各理由の見出し */
    font-size: 1.4rem;
    margin: -4rem 0 1.5rem 2rem;
  }
  #top-reason .box .box-txt {
    /* 各理由の文章 */
    font-size: 1.2rem;
  }
  #top-reason .box-number {
    /* 番号 */
    /* 2021.12.9 **********/
    /*		top: -2rem;
		left: -4.3rem;*/
    top: -2rem;
    left: -1.3rem;
    font-size: 400%;
    /********** 2021.12.9 */
  }
  #top-reason .box .box-alert {
    /* アラートランプ */
    bottom: 4.5rem;
  }
  #top-reason .single-human01 {
    /* 人のイラスト */
    top: 43rem;
  }

  /* 導入実績 */
  #top-example {
    /*	margin-top: 3rem;*/
    display: inline-block;
  }
  #top-example .three-human01 {
    /* 人のイラスト */
    /* 2021.12.9 **********/
    /*		top: 3rem;
		left: -6rem;*/
    top: 1rem;
    left: 0;
    /********** 2021.12.9 */
    width: auto;
  }
  .example-copy {
    /* 見出し文字 */
    width: auto;
    font-size: 3.5rem;
    position: relative;
    bottom: 1rem;
    display: block;
  }
  .example-copy span.from-to {
    /* キャッチコピー */
    font-size: 1.4rem;
  }
  .example-txt {
    /* 紹介文章 */
    font-size: 1.2rem;
    text-align: left;
  }
  #top-example img.logos {
    /* 事例ロゴの設定 */
    max-width: 30vw !important;
    max-height: 20vw !important;
  }

  /* お知らせ */
  .top-info-wrapper {
    /* ヘッダーの位置 */
    width: 90%;
  }
  .info-copy {
    /* 見出し */
    width: 60%;
    font-size: 3.5rem;
  }
  .swiper-nav-button {
    /* ボタンの格納箱 */
    width: 40%;
  }
  #top-info .swiper-button-prev,
  #top-info .swiper-button-next {
    /* 送りボタン */
    width: 80px;
    height: 60px;
    top: 1rem;
  }
  .info-box {
    /* お知らせのパネル */
    /*
		width: 38vw;
		max-width: 300px;
		height: calc(40vw / 0.65);
		max-height: 460px;
		*/
    width: 73vw;
    max-width: 73%;
    height: calc(55vw / 0.65);
    max-height: 630px;
  }
  .info-box .news-date {
    /* 日付 */
    font-size: 0.9rem;
  }
  .info-box .info-news {
    /* パネルの文字 */
    font-size: 1rem;
  }
  .news-back-img {
    /* NEWSの背景文字 */
    top: 33rem;
  }

  /* お問い合わせ */
  /* 2021.12.9 **********/
  #top-inquiry {
    padding: 1rem 0 0;
  }
  .top-inquiry-wrapper {
    /* エリアの設定 */
    /*		width: 80%;*/
    padding: 1rem;
  }
  /********** 2021.12.9 */
  .inquiry-copy {
    /* 見出し */
    font-size: 2rem;
  }
  .inquiry-text {
    /* 紹介文 */
    font-size: 1.2rem;
    line-height: 1.9;
    letter-spacing: 1.2px;
    text-align: left;
  }
  .inquiry-tel,
  .inquiry-form {
    /* 問い合わせのパネル */
    width: 100%;
    height: auto;
    max-width: 620px;
    margin: 2.5rem auto;
    padding: 1rem 0 4rem;
    display: block;
  }
  .inquiry-title {
    /* パネルの見出し */
    font-size: 1.6rem;
  }
  .inquiry-title br {
    /* 見出しを改行させる */
    display: block;
  }
  .inquiry-tel .tel-number a {
    /* 電話番号 */
    font-size: 8vw;
  }
  .tel-time,
  .inquiry-case {
    /* 受付時間＆フォーム注釈 */
    font-size: 1.5rem;
  }
  .inquiry-button {
    /* フォームボタン */
    display: inline-flex;
  }
  .inquiry-form div.inquiry-button a {
    /* フォームボタンラベル */
    font-size: 1.5rem;
  }

  /* フッター */
  .footer-nav-menu-wrapper,
  .footer-info-menu-wrapper {
    width: auto;
    display: block;
    margin: 0 auto;
    padding: 0 1rem;
  }
  .footer-nav-menu-wrapper ul li,
  .footer-nav-menu-wrapper ul li.x2cell {
    /* グローバルメニュー */
    width: 100%;
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  .footer-info-menu-wrapper ul li {
    /* インフォメーションメニュー */
    width: 100%;
    font-size: 1rem;
  }
  .iso-logo-wrapper {
    /* ISOロゴ */
    margin: 0 auto 2rem;
    position: relative;
    display: block;
  }
  .footer-logo {
    /* 社名ロゴ */
    width: 40vw;
    margin: 0 auto;
    display: block;
  }
  .iso-logo-wrapper {
    padding-right: 0;
  }
  .footer-logo-wrapper {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 0;
    padding: 0 4vw;
  }

  /* 特長・強み */
  .feature-wrapper {
    width: 100%;
  }
  #feature-01,
  #feature-02,
  #feature-03,
  #feature-04,
  #feature-05 {
    height: 90rem;
    margin-bottom: 5rem;
  }
  .feature-title-container {
    width: 94%;
    height: 600px;
  }
  .feature-number {
    display: block;
  }
  .feature-title {
    font-size: 2.7rem;
  }
  h2.feature-title br {
    display: none;
  }
  #feature-01 .feature-title,
  #feature-05 .feature-title {
    padding: 0 0.5rem;
    display: block;
  }
  #feature-02 .feature-title,
  #feature-03 .feature-title,
  #feature-04 .feature-title {
    padding: 0 0.5rem;
    display: block;
  }
  #feature-01 .line-box,
  #feature-03 .line-box,
  #feature-05 .line-box {
    width: 60%;
    top: 20rem;
    overflow: hidden;
  }
  #feature-02 .line-box,
  #feature-04 .line-box {
    width: 60%;
    top: 20rem;
    left: -16rem;
  }
  .line-box img {
    width: 180%;
  }
  .feature-content-wrapper {
    height: auto;
    padding: 0 1rem;
    display: block;
    top: 25rem;
  }
  #feature-01 .feature-content-box,
  #feature-03 .feature-content-box {
    width: 100%;
  }
  #feature-01 .feature-content-img {
    width: 95%;
    margin: 1rem auto 3rem;
  }
  #feature-02 .feature-content-img {
    width: 90%;
    margin: 1rem auto 3rem;
  }
  #feature-03 .feature-content-img {
    width: 83%;
    margin: 1rem auto 3rem;
  }
  #feature-04 .feature-content-img {
    width: 88%;
  }
  #feature-04 .feature-content-img-txt {
    margin-bottom: 3rem;
  }
  #feature-05 .feature-content-img {
    width: 35%;
    margin: 7rem auto 8rem;
  }
  #feature-05 .about-human01 img {
    bottom: 8vw;
  }
  #feature-05 .about-human02 img {
    bottom: 36vw;
  }
  #feature-05 .about-human03 img {
    bottom: 32.5vw;
    left: 6vw;
  }
  .feature-content-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .feature-content-title br {
    display: block;
  }
  .feature-content-txt {
    font-size: 1.5rem;
  }

  /* 活用シーン */
  #scene-01,
  #scene-02,
  #scene-03,
  #scene-04,
  #scene-05,
  #scene-06 {
    height: 63rem;
    max-height: 1000px;
    overflow: hidden;
  }
  #scene-06 {
    margin-top: 3rem;
  }
  .scene-wrapper h2 {
    letter-spacing: 1vw;
  }
  .scene-sub .scene-wrapper {
    width: 100%;
    height: 55vw;
  }
  .scene-content-wrapper {
    width: 90%;
    height: 18rem;
    padding: 1rem 0 2rem 2rem;
    left: 0;
  }
  #scene-01 .scene-content-wrapper,
  #scene-03 .scene-content-wrapper,
  #scene-05 .scene-content-wrapper {
    /*	top: 24rem;*/
    top: 48vw;
    bottom: 0;
  }
  #scene-02 .scene-content-wrapper {
    top: 47vw;
    bottom: auto;
    right: 0;
    left: auto;
  }
  #scene-04 .scene-content-wrapper,
  #scene-06 .scene-content-wrapper {
    /*	top: 25rem;*/
    top: 49vw;
    bottom: auto;
    right: 0;
    left: auto;
  }
  #scene-06 .scene-content-wrapper {
    height: 14rem;
  }
  #scene-01 .scene-photo,
  #scene-03 .scene-photo,
  #scene-05 .scene-photo {
    width: 80%;
    height: auto;
    left: auto;
    right: 0;
  }
  #scene-02 .scene-photo,
  #scene-04 .scene-photo,
  #scene-06 .scene-photo {
    width: 80%;
    left: 0;
  }
  .scene-photo img {
    width: 100%;
  }
  .scene-content-list {
    font-size: 1.2rem;
    margin: 1rem 0;
  }
  #scene-01 .scene-line-box,
  #scene-03 .scene-line-box {
    width: 200%;
    height: 35rem;
    top: 18rem;
    right: auto;
  }
  #scene-05 .scene-line-box {
    width: 200%;
    height: 39rem;
    top: 19rem;
    right: auto;
  }
  #scene-02 .scene-line-box,
  #scene-04 .scene-line-box {
    width: 200%;
    height: 35rem;
    top: 18rem;
    left: 0;
  }
  #scene-06 .scene-line-box {
    width: 200%;
    height: 32rem;
    top: 15rem;
    left: 0;
  }
  .scene-line-box img {
    height: 100%;
  }
  .scene-content-enter {
    bottom: 13rem;
  }
  #scene-02 .scene-content-enter {
    bottom: 13rem;
  }
  #scene-03 .scene-content-enter {
    bottom: 13rem;
  }
  #scene-04 .scene-content-enter {
    bottom: 12rem;
  }
  #scene-05 .scene-content-enter {
    bottom: 8rem;
  }
  #scene-06 .scene-content-enter {
    bottom: 20rem;
  }
  .scene-content-enter br {
    display: block;
  }
  .scene-content-enter a {
    font-size: 1.2rem;
    padding: 0.8rem 10vw;
  }
  #scene-02 .scene-content-enter a,
  #scene-03 .scene-content-enter a,
  #scene-04 .scene-content-enter a,
  #scene-05 .scene-content-enter a {
    margin-top: 1rem;
  }
  /* サブシーン */
  #scene-sub-01,
  #scene-sub-02,
  #scene-sub-03,
  #scene-sub-04,
  #scene-sub-05,
  #scene-sub-06 {
    width: 100%;
    height: calc(106vw * 1.2);
    max-height: 870px;
    overflow: hidden;
  }
  /* 離職防止 */
  #scene-sub-01 .scene-sub-title,
  #scene-sub-02 .scene-sub-title,
  #scene-sub-03 .scene-sub-title,
  #scene-sub-04 .scene-sub-title,
  #scene-sub-05 .scene-sub-title,
  #scene-sub-06 .scene-sub-title {
    font-size: 1.5rem;
    width: 95%;
  }
  .scene-sub .scene-photo {
    width: 100%;
  }
  #scene-sub-01 .scene-photo {
    top: 18rem;
    right: 0;
  }
  #scene-sub-02 .scene-photo {
    top: 16rem;
    left: 0;
  }
  #scene-sub-03 .scene-photo,
  #scene-sub-05 .scene-photo {
    top: 16rem;
    right: 0;
  }
  #scene-sub-04 .scene-photo,
  #scene-sub-06 .scene-photo {
    top: 16rem;
    left: 0;
  }
  #scene-sub-01 .scene-line-box {
    width: 100%;
    height: 100%;
    top: 25rem;
    right: auto;
    left: 0;
  }
  #scene-sub-02 .scene-line-box {
    width: 100%;
    height: 100%;
    top: 25rem;
    right: -46px;
    left: auto;
  }
  #scene-sub-03 .scene-line-box {
    width: 100%;
    height: 100%;
    top: 23rem;
    right: auto;
    left: 0;
  }
  #scene-sub-04 .scene-line-box {
    width: 100%;
    height: 100%;
    top: 25rem;
    right: -46px;
    left: auto;
  }

  /* 人材適正配置 */
  #scene-sub-message-01 h2 br,
  #scene-sub-message-01 .sub-message-txt br {
    display: none;
  }
  #scene-sub-message-01 .sub-message-txt {
    font-size: 1.5rem;
    text-align: left;
  }
  #visual-parts {
    /* ヴィジュアルパーツ */
    width: 82%;
  }
  #visual-parts .scene-line-box {
    width: 85%;
    height: auto;
  }
  /* 働き方ポータル */
  #sub-portal-shots .portal-screen-shots {
    width: 90%;
    height: 100%;
  }
  #scene-sub-message-02 .scene-sub-message-box {
    width: 100%;
  }

  /* 機能一覧 */
  #system-01,
  #system-03,
  #system-08,
  #system-09 {
    height: 740px;
  }
  #system-02 {
    height: 1020px;
  }
  #system-04 {
    height: 840px;
  }
  #system-05 {
    height: 895px;
  }
  #system-06,
  #system-07 {
    height: 815px;
  }
  #system-10 {
    height: 770px;
  }
  #system-01,
  #system-02,
  #system-03,
  #system-04,
  #system-05,
  #system-06,
  #system-07,
  #system-08,
  #system-09,
  #system-10 {
    overflow: hidden;
  }
  #system-02 .scene-content-enter a {
    padding: 0.8rem 3vw;
  }
  #system-menu ul {
    display: block;
  }
  #system-menu ul li {
    font-size: 1.5rem;
    width: 100%;
    max-width: 100%;
  }
  #system-menu ul li:after {
    content: none;
  }
  #system-menu a {
    margin-left: 15px;
  }
  #system-menu ul li:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 10px 4px 0;
    border-right: 1px solid #0bc151;
    border-bottom: 1px solid #0bc151;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .system-wrapper {
    width: 100%;
  }
  .system-image {
    width: 100vw;
    height: 72vw;
    max-width: 640px;
    max-height: 470px;
  }
  .system-content-wrapper {
    font-size: 1.2rem;
    width: 85%;
    top: 60vw;
  }
  .system-line-box {
    width: 200%;
    height: 87%;
    top: 9rem;
  }
  /* その他の活用 */
  .scene-panel-wrapper {
    width: 90%;
  }
  #scene-sub-panel {
    overflow: hidden;
  }
  #scene-sub-panel .single-human01 {
    width: 11vw;
    top: 11vw;
    right: -1vw;
  }
  .sub-panel {
    width: 100%;
    height: auto;
  }
  .sub-panel a {
    text-align: left;
    display: block;
  }
  .sub-panel .sub-panel-img {
    width: calc(100% / 5);
    height: 100%;
    display: table-cell;
    vertical-align: middle;
  }

  .sub-panel-menu {
    display: block;
  }
  .sub-panel img {
    width: 100%;
    height: auto;
    display: block;
  }
  #scene-sub-panel h2 {
    font-size: 2rem;
  }
  .sub-panel .sub-panel-title {
    width: calc(100% / 2);
    font-size: 4.5vw;
    letter-spacing: 0;
    padding: 0 0 0 1em;
    vertical-align: middle;
    display: table-cell;
  }

  /* 導入事例 */
  .case-wrapper {
    position: relative;
    height: 100%;
  }
  .case-container {
    width: 100%;
    padding: 2rem 0;
    display: block;
    overflow: hidden;
  }
  .case-container .swiper-container {
    overflow: visible;
  }
  .case-container .swiper-slide {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .case-container section {
    width: calc(94% / 3);
    height: auto;
    max-height: 680px;
    /*		min-height: 560px;*/
    /*		min-height:90vw;*/
    margin: 0 0.5rem;
  }
  .case-content h2 {
    font-size: 2.7vw;
  }
  .case-content-txt {
    font-size: 2vw;
  }
  .case-content-enter a {
    font-size: 0.87rem;
  }
  .case-content-enter {
    bottom: 1.5rem;
  }
  .example-logo-wrapper {
    width: 100%;
    /* 2021.12.9 **********/
    padding: 0 1rem;
    /********** 2021.12.9 */
  }
  .example-logo-img {
    width: calc(90% / 4);
  }
  .example-logo-img img {
    max-width: 95px;
    max-height: 70px;
  }
  .example-copy,
  .info-copy {
    font-size: 2rem;
  }
  #example-logo .example-txt {
    width: 90%;
    margin: 2rem auto 4rem;
    font-size: 1.5rem;
    text-align: left;
  }

  /* 事例-個別ページ */
  .content-case {
    width: 100%;
  }
  .case-name {
    white-space: normal;
  }
  #case-info {
    overflow: visible;
  }
  .case-info-wrapper {
    width: 100%;
  }
  #content-header .single-human01 img {
    height: 10rem;
  }
  .case-info-title {
    width: 100%;
    height: 39rem;
    top: -5rem;
  }
  .case-title {
    width: 80%;
    padding: 1.5rem 1rem 1.5rem 2rem;
  }
  .case-list {
    width: 85%;
    font-size: 1.2rem;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 108vw;
  }
  .case-info-wrapper .case-list dt {
    width: 100px;
  }
  .case-info-wrapper .case-list dd {
    width: calc(100% - 100px);
    margin-left: 100px;
  }
  .case-basic-info dt {
    padding: 1rem 0 0;
  }
  .case-basic-info dd {
    padding: 0 0 1rem;
  }
  .case-basic-info dt {
    width: 100%;
    float: none;
  }
  .case-info-photo {
    top: 70px;
    width: auto;
  }
  .case-info-photo img {
    max-width: 100%;
    max-height: none;
  }
  .case-basic-info {
    width: 80%;
    margin: 0 auto;
    padding: 2rem 8vw 3rem;
    font-size: 1.2rem;
    position: relative;
    top: 148vw;
  }
  .company-back-img {
    width: 100%;
    top: 134vw;
    left: auto;
    /*bottom: calc(-11rem * 0.5);*/
  }
  #case-info {
    height: calc(43rem + 140vw);
  }
  .case-txt-wrapper {
    width: 90%;
  }
  #case-details h3 {
    font-size: 2.3rem;
    margin-top: 15vw;
  }
  .case-txt-container,
  .case-txt-container-60,
  .case-txt-container-60b,
  .case-txt-container-95 {
    width: 100% !important;
    padding: 0 0 2rem 0 !important;
    position: relative !important;
    top: auto !important;
  }
  .case-txt-container-right,
  .case-txt-container-left,
  .case-txt-container-center {
    width: 100% !important;
    padding: 0 0 2rem 0 !important;
    position: relative !important;
    top: auto !important;
  }
  h4.case-txt-subtitle {
    font-size: 1.5rem;
  }
  .case-txt {
    font-size: 1.3rem;
  }
  .box-right .case-txt-photo,
  .box-left .case-txt-photo {
    position: relative;
    top: auto;
  }
  .case-txt-photo {
    width: 90%;
    margin: 0 auto 15vw;
  }

  /* 導入フロー */
  #flow {
    width: 90%;
  }
  .flow-container {
    margin-bottom: 8rem;
    display: block;
  }
  .flow-wrapper:nth-child(even) {
    padding-left: 0;
  }
  .flow-number {
    margin-left: 0.5rem;
  }
  .flow-01 .flow-number {
    margin: -3.5rem 0 0 0.5rem;
  }
  .flow-03 .flow-number {
    margin: -1.5rem 0 0 0.5rem;
  }
  .flow-05 .flow-number {
    margin: -1.5rem 0 0 0.5rem;
  }
  .flow-06 .flow-number {
    margin: -10rem 0 0 0.5rem;
  }
  .flow-content {
    width: 98%;
    margin-left: 2rem;
    background-color: rgba(255, 255, 255, 0.5);
  }
  .flow-txt {
    width: 80%;
    font-size: 1.3rem;
    line-height: 2;
  }
  .flow-02 .flow-vertical-label {
    margin-left: 4rem;
  }
  .flow-04 .flow-vertical-label {
    height: 8.5rem;
    left: -18px;
  }
  .flow-06 .flow-vertical-label {
    height: 8.5rem;
    left: -18px;
    top: -190px;
  }
  #flow .front_top {
    width: 34vw;
    top: 24rem;
    right: 20px;
  }
  #flow .front_middle {
    width: 33vw;
    top: 45%;
    right: 0;
  }
  #flow .flow-bg.front_bottom {
    width: 80%;
    text-align: center;
    margin: 0 auto 6rem;
    position: relative;
    display: block;
  }
  #flow .rear_top {
    width: 74%;
    top: 7rem;
    right: 0;
    opacity: 0.3;
  }
  #flow .rear_middle {
    width: 65%;
    top: 41%;
    left: 29%;
    opacity: 0.3;
  }
  #flow .rear_bottom {
    width: 63%;
    right: auto;
    left: 4rem;
    bottom: 51rem;
    opacity: 0.3;
  }

  /* FAQ */
  .faq {
    width: 90%;
    margin-left: 1.5em;
  }

  /* サポート */
  #support {
    width: 90%;
  }
  .support-container {
    width: 95%;
    margin-left: 2vw;
    padding: 5rem 1.5rem 1.5rem;
  }
  .support-intro,
  .support-container {
    font-size: 1.3rem;
  }
  .support-container h3 .support-title {
    font-size: 1.8rem;
  }
  .support-site-banner {
    width: 52%;
  }

  /* ブログ */
  .post-contents-wrapper-blog-single {
    display: block;
  }
  .post-contents-wrapper-blog {
    /*		width: 92%;*/
    display: block;
  }
  .post-contents-container-left {
    width: 92%;
    margin: 0 auto;
    padding: 0;
    display: block;
  }
  .post-contents-container-right {
    width: 92%;
    margin: 6em auto;
  }
  div.pop-inside ul#pop-widget-recent-2 li {
    width: 100%;
    /*
		width: calc(99% / 2);
		height: 72px;
		float: left;
*/
  }
  div.pop-inside ul#pop-widget-recent-2 li a {
    width: 100%;
    height: 100%;
    display: inline-block;
  }
  .wp-show-posts-single.post {
    margin-bottom: 4em !important;
    border-bottom: 1px solid #e2e2e2;
  }
  .articles {
    margin-top: -3em;
  }

  /* 会社概要 */
  .info-table table td.company_name br {
    display: block;
  }
  .info-table table .branch_map {
    width: 100% !important;
    margin: 0 0 2rem 0 !important;
    padding-left: 1.5rem;
    float: none !important;
  }
  /* プライバシーポリシー */
  #privacy_policy .info-wrapper {
    width: 100%;
  }
  #privacy_policy .privacy_policy_mark {
    margin-top: 6rem;
  }

  /* お問い合わせ */
  .contact-wrapper {
    width: 95%;
    margin-left: 0.5rem;
  }
  .contact_form > label {
    width: 30vw;
    max-width: 160px;
    min-width: 115px;
  }
  input.company_name,
  input.mail,
  input.phone_number,
  input.address,
  .form_request,
  .form_reply,
  .contact_form textarea {
    width: 52vw;
  }
  input.last_name,
  input.first_name {
    width: 25.5vw;
  }
  .form_request label input[type="radio"] + span {
    width: 23vw;
    max-width: 110px;
    min-width: 80px;
  }
  #reply input + label {
    width: 24vw;
  }
  .submit_box input[type="submit"] {
    width: 38vw;
  }
}

/* 低解像度スマホ対応 */
@media screen and (max-width: 570px) {
  .row_flex {
    flex-direction: column;
  }
  .top-about-wrapper {
    /* 2021.12.9 **********/
    /*		width: 93%;
		margin-left: 1.8vw
		min-width: 370px;*/
    min-width: unset;
    /********** 2021.12.9 */
  }
  #top-info .swiper-button-prev,
  #top-info .swiper-button-next {
    width: 50px;
    height: 42px;
    top: 1.5rem;
  }
  #top-reason .box-number {
    /* 2021.12.9 **********/
    /*		left: -3rem;*/
    /********** 2021.12.9 */
  }
  .active .header-wrapper {
    padding: 1.25rem 1rem 1rem;
  }
  .navToggle {
    right: 1.5rem;
  }
  #reply input + span {
    width: 50vw;
  }
  .case-basic-info {
    width: 94%;
  }
  .case-info-title {
    height: 40rem;
  }
  .case-title {
    width: 90%;
  }
  .case-list {
    width: 94%;
  }
  /* 会社概要 */
  .info-table table dl.officer dt {
    width: 57%;
  }
  .info-table table dl.officer dd {
    width: 43%;
  }
  /* プライバシーポリシー */
  #privacy_policy .privacy_policy_intro.left {
    width: 100%;
    display: block;
  }
  #privacy_policy .privacy_policy_mark {
    width: 27%;
    height: auto;
    margin: 1rem auto 0;
    display: block;
  }

  .top-about-wrapper .about-more a {
    /* 2021.12.9 **********/
    /*		padding: 1rem 13vw;*/
    padding: 1rem;
    /********** 2021.12.9 */
  }
  #top-reason .single-human01 {
    right: 0;
    width: 48px;
    overflow: hidden;
  }
  #top-reason .single-human01 img {
    max-width: none;
  }
  #top-reason .box {
    padding: 16% 0.5rem 2rem 2rem;
  }
  #top-reason .box .box-heading {
    /* 2021.12.9 **********/
    /*		margin: -4rem 0 1.5rem 1.5rem;*/
    /********** 2021.12.9 */
  }
  #top-example {
    margin-bottom: 2rem;
  }
  #top-example .example-copy {
    letter-spacing: 0;
  }
  .inquiry-title {
    line-height: 1.2;
    letter-spacing: 0;
  }
  .inquiry-form div.inquiry-button a {
    font-size: 1.2rem;
    line-height: 1.2;
    letter-spacing: 0;
    padding: 1rem 3.5rem;
  }
  .tel-time,
  .inquiry-case {
    font-size: 1.2rem;
  }

  #scene-sub-panel h2 {
    font-size: 6vw;
  }

  .feature-title {
    font-size: 1.5rem;
  }
  .feature-content-txt {
    font-size: 1.2rem;
    line-height: 1.6;
  }

  .swiper-wrapper {
    /*
		display: block!important;
		*/
  }
  .info-box {
    height: calc(80vw / 0.65);
  }

  .case-container section {
    width: 92%;
    margin-bottom: 4rem;
  }
  .case-content-txt {
    font-size: 1rem;
  }
  .case-content-enter {
    bottom: 2.5rem;
  }
  .case-content h2 {
    font-size: 1.2rem;
  }
  .example-logo-img {
    width: calc(90% / 3.5);
  }

  #system-menu ul li {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .system-content-wrapper {
    font-size: 1rem;
  }

  #sub-portal-shots .portal-screen-shots img {
    width: 100%;
    height: 100%;
    margin: 1.5rem 0px;
  }

  .scene-content-enter {
    bottom: 15rem;
  }
  #scene-01 .scene-content-enter {
    bottom: 17rem;
  }
  #scene-02 .scene-content-enter {
    bottom: 15rem;
  }
  #scene-03 .scene-content-enter {
    bottom: 15rem;
  }
  #scene-04 .scene-content-enter {
    bottom: 15rem;
  }
  #scene-05 .scene-content-enter {
    bottom: 10rem;
  }
  #scene-06 .scene-content-enter {
    bottom: 23rem;
  }

  #scene-sub-01,
  #scene-sub-02,
  #scene-sub-03,
  #scene-sub-04,
  #scene-sub-05,
  #scene-sub-06 {
    height: calc(126vw * 1.2);
  }

  #scene-sub-01 .scene-photo {
    top: 87vw;
  }
  #scene-sub-01 .scene-line-box {
    top: 72vw;
  }
  #scene-sub-02 .scene-photo {
    top: 87vw;
  }
  #scene-sub-02 .scene-line-box {
    top: 72vw;
  }
  #scene-sub-03 .scene-photo {
    top: calc(43vw * 1.5);
    right: 0;
  }
  #scene-sub-03 .scene-line-box {
    top: 80vw;
  }
  #scene-sub-04 .scene-photo {
    top: 87vw;
    left: 0;
  }
  #scene-sub-04 .scene-line-box {
    top: 73vw;
  }
}

@media screen and (max-width: 540px) {
  .scene-photo {
    width: 90% !important;
  }
  .scene-content-wrapper {
    width: 100% !important;
  }
  .case-container section {
    max-width: 100%;
    height: auto;
    max-height: 680px;
    min-height: 560px;
  }
  .case-content-txt {
    font-size: 4vw;
    margin-bottom: 1.5em;
  }

  .inquiry-copy {
    font-size: 1.8rem;
  }
  .example-copy span.from-to {
    font-size: 1.5rem;
  }
  #example-logo .example-txt {
    width: 98%;
    margin: 2rem auto 4rem;
    font-size: 1.2rem;
    text-align: left;
  }
  .content-message {
    letter-spacing: 2.8px;
  }
  .case-title br {
    display: none;
  }
  #top-about .about-human01 img {
    /* 2021.12.9 **********/
    /*		top: 36rem;
		left: 28vh;*/
    /********** 2021.12.9 */
  }
  #top-about .about-human02 img {
    /* 2021.12.9 **********/
    /*		top: 33rem;
		right: 4vh;*/
    /********** 2021.12.9 */
    width: 22vw;
    min-width: 80px;
  }
  #top-about .about-human03 img {
    /* 2021.12.9 **********/
    /*		top: 35rem;
		left: 3vh;*/
    /********** 2021.12.9 */
    width: 26vw;
    min-width: 96px;
  }

  .scene-content-list {
    font-size: 4vw;
  }
  .scene-content-enter a {
    font-size: 3.5vw;
  }
}

@media screen and (max-width: 500px) {
  .scene-content-enter a {
    font-size: 3vw;
  }
}

@media screen and (max-width: 479px) {
  .company-back-img {
    /*bottom: calc(-3rem * 0.4);*/
  }
  h3 span.case-txt-title br {
    display: none;
  }
  #content-header .single-human01 img {
    height: 9rem;
  }
  .content-case {
    display: block;
  }
  .case-logo-img {
    width: 100%;
    text-align: center;
    display: block;
  }
  .case-name {
    width: 100%;
    letter-spacing: 2.4px;
    text-align: center;
    margin-top: 1.5rem;
    padding-left: 0;
    display: block;
  }
  #page-top-button {
    right: 42%;
    left: auto;
    bottom: 4rem;
  }
  .feature-content-wrapper {
    width: 86%;
    top: 23rem;
    /*	left: 47px;*/
    left: 10vw;
  }
  #feature-02 .feature-content-wrapper {
    top: 21rem;
  }
  #feature-02 .line-box,
  #feature-04 .line-box {
    top: 19rem;
    left: -11rem;
  }
  #feature-03 {
    height: 85rem;
  }
  #feature-03 .feature-content-wrapper {
    top: 19rem;
  }
  #feature-03 .line-box,
  #feature-05 .line-box {
    top: 15rem;
  }
  #feature-05 {
    height: 104rem;
  }
  #feature-05 .feature-content-img {
    width: 40%;
    margin: 7rem auto 6rem;
  }
  #feature-05 .about-human02 img {
    right: 7vw;
    bottom: 38vw;
  }
  #feature-05 .about-human03 img {
    bottom: 36.5vw;
  }
  .inquiry-form div.inquiry-button a {
    /* 2021.12.9 **********/
    /*		padding: .5rem 1rem;*/
    padding: 1rem;
    /********** 2021.12.9 */
    width: 100%;
    margin: 0 auto;
  }
  #scene-01,
  #scene-02,
  #scene-03,
  #scene-04,
  #scene-05,
  #scene-06 {
    height: 58rem;
  }
  .scene-content-enter {
    bottom: 16rem;
  }
  #scene-01 .scene-content-enter {
    bottom: 20rem;
  }
  #scene-02 .scene-content-enter {
    bottom: 18rem;
  }
  #scene-03 .scene-content-enter {
    bottom: 18rem;
  }
  #scene-04 .scene-content-enter {
    bottom: 18rem;
  }
  #scene-05 .scene-content-enter {
    bottom: 15rem;
  }
  #scene-06 .scene-content-enter {
    bottom: 22rem;
  }

  .scene-wrapper h2,
  #scene-sub-message-01 h2 {
    font-size: 1.6rem;
    line-height: 1.6;
    letter-spacing: 0;
  }
  #scene-sub-message-01 .sub-message-txt {
    font-size: 1.3rem;
    line-height: 1.6;
    letter-spacing: 0;
  }

  #scene-sub-01,
  #scene-sub-02,
  #scene-sub-03,
  #scene-sub-04,
  #scene-sub-05,
  #scene-sub-06 {
    height: calc(145vw * 1.2);
  }

  .scene-sub .scene-wrapper span {
    font-size: 1.3rem;
    line-height: 1.6;
  }

  #scene-01 .scene-content-wrapper,
  #scene-03 .scene-content-wrapper,
  #scene-05 .scene-content-wrapper {
    height: 50vw;
  }
  #scene-02 .scene-content-wrapper,
  #scene-04 .scene-content-wrapper {
    height: 50vw;
  }
  .support-container {
    padding: 7rem 1.5rem 1.5rem;
  }

  .scene-content-list {
    margin: 0 0 0 1rem;
  }
  #scene-01 .scene-line-box,
  #scene-02 .scene-line-box,
  #scene-03 .scene-line-box,
  #scene-04 .scene-line-box,
  #scene-05 .scene-line-box,
  #scene-06 .scene-line-box {
    height: 27rem;
  }

  #scene-sub-03 .scene-photo {
    top: 43vw;
  }
  #scene-sub-03 .scene-line-box {
    top: 65vw;
  }
  #scene-sub-04 .scene-photo {
    top: 55vw;
  }

  .system-content-list .option-label {
    letter-spacing: 1px;
  }
  .system-content-wrapper {
    width: 90%;
  }
  .system-content-list li {
    line-height: 1.4;
    margin: 0.7rem 0 0.7rem 1rem;
  }
  .system-content-list li:before {
    margin: 1rem 0 3rem -1rem;
  }

  /* 会社概要 */
  .info-header-wrapper,
  .info-wrapper {
    width: 100%;
  }
}
@media screen and (max-width: 412px) {
  .scene-wrapper h2 br {
    display: none;
  }
}
@media screen and (max-width: 400px) {
  .main-img-wrapper .catchcopy {
    /* メインのキャッチコピー */
    top: -1rem;
    top: calc(100% / 1.8);
    left: 3rem;
  }
}

img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}
:root{--wp--preset--aspect-ratio--square:1;--wp--preset--aspect-ratio--4-3:4/3;--wp--preset--aspect-ratio--3-4:3/4;--wp--preset--aspect-ratio--3-2:3/2;--wp--preset--aspect-ratio--2-3:2/3;--wp--preset--aspect-ratio--16-9:16/9;--wp--preset--aspect-ratio--9-16:9/16;--wp--preset--color--black:#000;--wp--preset--color--cyan-bluish-gray:#abb8c3;--wp--preset--color--white:#fff;--wp--preset--color--pale-pink:#f78da7;--wp--preset--color--vivid-red:#cf2e2e;--wp--preset--color--luminous-vivid-orange:#ff6900;--wp--preset--color--luminous-vivid-amber:#fcb900;--wp--preset--color--light-green-cyan:#7bdcb5;--wp--preset--color--vivid-green-cyan:#00d084;--wp--preset--color--pale-cyan-blue:#8ed1fc;--wp--preset--color--vivid-cyan-blue:#0693e3;--wp--preset--color--vivid-purple:#9b51e0;--wp--preset--color--dark-gray:#28303d;--wp--preset--color--gray:#39414d;--wp--preset--color--green:#d1e4dd;--wp--preset--color--blue:#d1dfe4;--wp--preset--color--purple:#d1d1e4;--wp--preset--color--red:#e4d1d1;--wp--preset--color--orange:#e4dad1;--wp--preset--color--yellow:#eeeadd;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple:linear-gradient(135deg,#0693e3 0%,#9b51e0 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan:linear-gradient(135deg,#7adcb4 0%,#00d082 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange:linear-gradient(135deg,#fcb900 0%,#ff6900 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red:linear-gradient(135deg,#ff6900 0%,#cf2e2e 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray:linear-gradient(135deg,#eee 0%,#a9b8c3 100%);--wp--preset--gradient--cool-to-warm-spectrum:linear-gradient(135deg,#4aeadc 0%,#9778d1 20%,#cf2aba 40%,#ee2c82 60%,#fb6962 80%,#fef84c 100%);--wp--preset--gradient--blush-light-purple:linear-gradient(135deg,#ffceec 0%,#9896f0 100%);--wp--preset--gradient--blush-bordeaux:linear-gradient(135deg,#fecda5 0%,#fe2d2d 50%,#6b003e 100%);--wp--preset--gradient--luminous-dusk:linear-gradient(135deg,#ffcb70 0%,#c751c0 50%,#4158d0 100%);--wp--preset--gradient--pale-ocean:linear-gradient(135deg,#fff5cb 0%,#b6e3d4 50%,#33a7b5 100%);--wp--preset--gradient--electric-grass:linear-gradient(135deg,#caf880 0%,#71ce7e 100%);--wp--preset--gradient--midnight:linear-gradient(135deg,#020381 0%,#2874fc 100%);--wp--preset--gradient--purple-to-yellow:linear-gradient(160deg,#d1d1e4 0%,#eeeadd 100%);--wp--preset--gradient--yellow-to-purple:linear-gradient(160deg,#eeeadd 0%,#d1d1e4 100%);--wp--preset--gradient--green-to-yellow:linear-gradient(160deg,#d1e4dd 0%,#eeeadd 100%);--wp--preset--gradient--yellow-to-green:linear-gradient(160deg,#eeeadd 0%,#d1e4dd 100%);--wp--preset--gradient--red-to-yellow:linear-gradient(160deg,#e4d1d1 0%,#eeeadd 100%);--wp--preset--gradient--yellow-to-red:linear-gradient(160deg,#eeeadd 0%,#e4d1d1 100%);--wp--preset--gradient--purple-to-red:linear-gradient(160deg,#d1d1e4 0%,#e4d1d1 100%);--wp--preset--gradient--red-to-purple:linear-gradient(160deg,#e4d1d1 0%,#d1d1e4 100%);--wp--preset--font-size--small:18px;--wp--preset--font-size--medium:20px;--wp--preset--font-size--large:24px;--wp--preset--font-size--x-large:42px;--wp--preset--font-size--extra-small:16px;--wp--preset--font-size--normal:20px;--wp--preset--font-size--extra-large:40px;--wp--preset--font-size--huge:96px;--wp--preset--font-size--gigantic:144px;--wp--preset--spacing--20:.44rem;--wp--preset--spacing--30:.67rem;--wp--preset--spacing--40:1rem;--wp--preset--spacing--50:1.5rem;--wp--preset--spacing--60:2.25rem;--wp--preset--spacing--70:3.38rem;--wp--preset--spacing--80:5.06rem;--wp--preset--shadow--natural:6px 6px 9px rgba(0,0,0,.2);--wp--preset--shadow--deep:12px 12px 50px rgba(0,0,0,.4);--wp--preset--shadow--sharp:6px 6px 0px rgba(0,0,0,.2);--wp--preset--shadow--outlined:6px 6px 0px -3px #fff,6px 6px #000;--wp--preset--shadow--crisp:6px 6px 0px #000}:where(.is-layout-flex){gap:.5em}:where(.is-layout-grid){gap:.5em}body .is-layout-flex{display:flex}.is-layout-flex{flex-wrap:wrap;align-items:center}.is-layout-flex>:is(*,div){margin:0}body .is-layout-grid{display:grid}.is-layout-grid>:is(*,div){margin:0}:where(.wp-block-columns.is-layout-flex){gap:2em}:where(.wp-block-columns.is-layout-grid){gap:2em}:where(.wp-block-post-template.is-layout-flex){gap:1.25em}:where(.wp-block-post-template.is-layout-grid){gap:1.25em}.has-black-color{color:var(--wp--preset--color--black) !important}.has-cyan-bluish-gray-color{color:var(--wp--preset--color--cyan-bluish-gray) !important}.has-white-color{color:var(--wp--preset--color--white) !important}.has-pale-pink-color{color:var(--wp--preset--color--pale-pink) !important}.has-vivid-red-color{color:var(--wp--preset--color--vivid-red) !important}.has-luminous-vivid-orange-color{color:var(--wp--preset--color--luminous-vivid-orange) !important}.has-luminous-vivid-amber-color{color:var(--wp--preset--color--luminous-vivid-amber) !important}.has-light-green-cyan-color{color:var(--wp--preset--color--light-green-cyan) !important}.has-vivid-green-cyan-color{color:var(--wp--preset--color--vivid-green-cyan) !important}.has-pale-cyan-blue-color{color:var(--wp--preset--color--pale-cyan-blue) !important}.has-vivid-cyan-blue-color{color:var(--wp--preset--color--vivid-cyan-blue) !important}.has-vivid-purple-color{color:var(--wp--preset--color--vivid-purple) !important}.has-black-background-color{background-color:var(--wp--preset--color--black) !important}.has-cyan-bluish-gray-background-color{background-color:var(--wp--preset--color--cyan-bluish-gray) !important}.has-white-background-color{background-color:var(--wp--preset--color--white) !important}.has-pale-pink-background-color{background-color:var(--wp--preset--color--pale-pink) !important}.has-vivid-red-background-color{background-color:var(--wp--preset--color--vivid-red) !important}.has-luminous-vivid-orange-background-color{background-color:var(--wp--preset--color--luminous-vivid-orange) !important}.has-luminous-vivid-amber-background-color{background-color:var(--wp--preset--color--luminous-vivid-amber) !important}.has-light-green-cyan-background-color{background-color:var(--wp--preset--color--light-green-cyan) !important}.has-vivid-green-cyan-background-color{background-color:var(--wp--preset--color--vivid-green-cyan) !important}.has-pale-cyan-blue-background-color{background-color:var(--wp--preset--color--pale-cyan-blue) !important}.has-vivid-cyan-blue-background-color{background-color:var(--wp--preset--color--vivid-cyan-blue) !important}.has-vivid-purple-background-color{background-color:var(--wp--preset--color--vivid-purple) !important}.has-black-border-color{border-color:var(--wp--preset--color--black) !important}.has-cyan-bluish-gray-border-color{border-color:var(--wp--preset--color--cyan-bluish-gray) !important}.has-white-border-color{border-color:var(--wp--preset--color--white) !important}.has-pale-pink-border-color{border-color:var(--wp--preset--color--pale-pink) !important}.has-vivid-red-border-color{border-color:var(--wp--preset--color--vivid-red) !important}.has-luminous-vivid-orange-border-color{border-color:var(--wp--preset--color--luminous-vivid-orange) !important}.has-luminous-vivid-amber-border-color{border-color:var(--wp--preset--color--luminous-vivid-amber) !important}.has-light-green-cyan-border-color{border-color:var(--wp--preset--color--light-green-cyan) !important}.has-vivid-green-cyan-border-color{border-color:var(--wp--preset--color--vivid-green-cyan) !important}.has-pale-cyan-blue-border-color{border-color:var(--wp--preset--color--pale-cyan-blue) !important}.has-vivid-cyan-blue-border-color{border-color:var(--wp--preset--color--vivid-cyan-blue) !important}.has-vivid-purple-border-color{border-color:var(--wp--preset--color--vivid-purple) !important}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background:var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background:var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background:var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background:var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background:var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important}.has-cool-to-warm-spectrum-gradient-background{background:var(--wp--preset--gradient--cool-to-warm-spectrum) !important}.has-blush-light-purple-gradient-background{background:var(--wp--preset--gradient--blush-light-purple) !important}.has-blush-bordeaux-gradient-background{background:var(--wp--preset--gradient--blush-bordeaux) !important}.has-luminous-dusk-gradient-background{background:var(--wp--preset--gradient--luminous-dusk) !important}.has-pale-ocean-gradient-background{background:var(--wp--preset--gradient--pale-ocean) !important}.has-electric-grass-gradient-background{background:var(--wp--preset--gradient--electric-grass) !important}.has-midnight-gradient-background{background:var(--wp--preset--gradient--midnight) !important}.has-small-font-size{font-size:var(--wp--preset--font-size--small) !important}.has-medium-font-size{font-size:var(--wp--preset--font-size--medium) !important}.has-large-font-size{font-size:var(--wp--preset--font-size--large) !important}.has-x-large-font-size{font-size:var(--wp--preset--font-size--x-large) !important}
/**
 * Custom Color Overrides
 *
 * This file is automatically populated if the user chooses custom colors in the Customizer.
 */

@-webkit-keyframes bgslide{from{background-position-x:0}to{background-position-x:-200%}}@keyframes bgslide{from{background-position-x:0}to{background-position-x:-200%}}.wpp-widget-block-placeholder,.wpp-shortcode-placeholder{margin:0 auto;width:60px;height:3px;background:#dd3737;background:linear-gradient(90deg,#dd3737 0%,#571313 10%,#dd3737 100%);background-size:200% auto;border-radius:3px;-webkit-animation:bgslide 1s infinite linear;animation:bgslide 1s infinite linear}