/*
Theme Name: ReachoutPlanning Theme
Theme URI:
Author: ReachoutPlanning
Author URI: 
Description: Original Theme of ReachoutPlanning
Version: 1.0
License: Esolab
License URI:
Tags:
Text Domain:
*/

/*!
	Modaal - accessible modals - v0.4.4
	by Humaan, for all humans.
	http://humaan.com
 */

.modaal-noscroll {
	overflow: hidden;
}

.modaal-accessible-hide {
	clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	overflow: hidden;
	border: 0 !important;
}

.modaal-overlay {
	z-index: 999;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.modaal-wrapper {
	-webkit-overflow-scrolling: touch;
	box-sizing: border-box;
	display: block;
	z-index: 9999;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	opacity: 1;
	transition: all 0.3s ease-in-out;
}

.modaal-wrapper * {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-backface-visibility: hidden;
	box-sizing: border-box;
}

.modaal-wrapper .modaal-close {
	-webkit-appearance: none;
	padding: 0;
	border: none;
	background: transparent;
}

.modaal-wrapper.modaal-start_none {
	display: none;
	opacity: 1;
}

.modaal-wrapper.modaal-start_fade {
	opacity: 0;
}

.modaal-wrapper *[tabindex="0"] {
	outline: none !important;
}

.modaal-wrapper.modaal-fullscreen {
	overflow: hidden;
}

.modaal-outer-wrapper {
	display: table;
	position: relative;
	width: 100%;
	height: 100%;
}

.modaal-fullscreen .modaal-outer-wrapper {
	display: block;
}

.modaal-inner-wrapper {
	display: table-cell;
	position: relative;
	width: 100%;
	height: 100%;
	padding: 80px 25px;
	text-align: center;
	vertical-align: middle;
}

.modaal-fullscreen .modaal-inner-wrapper {
	display: block;
	padding: 0;
	vertical-align: top;
}

.modaal-container {
	display: inline-block;
	position: relative;
	width: 100%;
	max-width: 1000px;
	margin: auto;
	border-radius: 0px;
	background: #fff;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	color: #000;
	text-align: left;
	cursor: auto;
}

.modaal-container.is_loading {
	width: 100px;
	height: 100px;
	overflow: hidden;
}

.modaal-fullscreen .modaal-container {
	max-width: none;
	height: 100%;
	overflow: auto;
}

.modaal-close {
	position: fixed;
	top: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	border-radius: 100%;
	background: rgba(0, 0, 0, 0);
	color: #fff;
	cursor: pointer;
	opacity: 1;
	transition: all 0.2s ease-in-out;
}

.modaal-close:focus,
.modaal-close:hover {
	outline: none;
	background: #fff;
}

.modaal-close:focus:before,
.modaal-close:focus:after,
.modaal-close:hover:before,
.modaal-close:hover:after {
	background: #b93d0c;
}

.modaal-close span {
	clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	overflow: hidden;
	border: 0 !important;
}

.modaal-close:before,
.modaal-close:after {
	display: block;
	position: absolute;
	top: 14px;
	left: 23px;
	width: 4px;
	height: 22px;
	border-radius: 4px;
	background: #fff;
	content: " ";
	transition: background 0.2s ease-in-out;
}

.modaal-close:before {
	transform: rotate(-45deg);
}

.modaal-close:after {
	transform: rotate(45deg);
}

.modaal-fullscreen .modaal-close {
	top: 10px;
	right: 10px;
	background: #afb7bc;
}

.modaal-content-container {
	padding: 30px;
}

.modaal-confirm-wrap {
	padding: 30px 0 0;
	font-size: 0;
	text-align: center;
}

.modaal-confirm-btn {
	display: inline-block;
	margin: 0 10px;
	border: none;
	background: transparent;
	font-size: 14px;
	vertical-align: middle;
	cursor: pointer;
}

.modaal-confirm-btn.modaal-ok {
	padding: 10px 15px;
	border-radius: 3px;
	background: #555;
	color: #fff;
	transition: background 0.2s ease-in-out;
}

.modaal-confirm-btn.modaal-ok:hover {
	background: rgb(46.75, 46.75, 46.75);
}

.modaal-confirm-btn.modaal-cancel {
	text-decoration: underline;
}

.modaal-confirm-btn.modaal-cancel:hover {
	color: rgb(46.75, 46.75, 46.75);
	text-decoration: none;
}

.modaal-instagram .modaal-container {
	width: auto;
	background: transparent;
	box-shadow: none !important;
}

.modaal-instagram .modaal-content-container {
	padding: 0;
	background: transparent;
}

.modaal-instagram .modaal-content-container > blockquote {
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
}

.modaal-instagram iframe {
	width: 1000px !important;
	max-width: 800px !important;
	margin: -6px !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	animation: instaReveal 1s linear forwards;
	opacity: 0;
}

.modaal-image .modaal-inner-wrapper {
	padding-right: 140px;
	padding-left: 140px;
}

.modaal-image .modaal-container {
	width: auto;
	max-width: 100%;
}

.modaal-gallery-wrap {
	position: relative;
	color: #fff;
}

.modaal-gallery-item {
	display: none;
}

.modaal-gallery-item img {
	display: block;
}

.modaal-gallery-item.is_active {
	display: block;
}

.modaal-gallery-label {
	position: absolute;
	left: 0;
	width: 100%;
	margin: 20px 0 0;
	color: #fff;
	font-size: 18px;
	text-align: center;
}

.modaal-gallery-label:focus {
	outline: none;
}

.modaal-gallery-control {
	position: absolute;
	top: 50%;
	width: 50px;
	height: 50px;
	transform: translateY(-50%);
	border: none;
	border-radius: 100%;
	background: rgba(0, 0, 0, 0);
	color: #fff;
	cursor: pointer;
	opacity: 1;
	transition: all 0.2s ease-in-out;
}

.modaal-gallery-control.is_hidden {
	cursor: default;
	opacity: 0;
}

.modaal-gallery-control:focus,
.modaal-gallery-control:hover {
	outline: none;
	background: #fff;
}

.modaal-gallery-control:focus:before,
.modaal-gallery-control:focus:after,
.modaal-gallery-control:hover:before,
.modaal-gallery-control:hover:after {
	background: #afb7bc;
}

.modaal-gallery-control span {
	clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	overflow: hidden;
	border: 0 !important;
}

.modaal-gallery-control:before,
.modaal-gallery-control:after {
	display: block;
	position: absolute;
	top: 16px;
	left: 25px;
	width: 4px;
	height: 18px;
	border-radius: 4px;
	background: #fff;
	content: " ";
	transition: background 0.2s ease-in-out;
}

.modaal-gallery-control:before {
	margin: -5px 0 0;
	transform: rotate(-45deg);
}

.modaal-gallery-control:after {
	margin: 5px 0 0;
	transform: rotate(45deg);
}

.modaal-gallery-next-inner {
	left: 100%;
	margin-left: 40px;
}

.modaal-gallery-next-outer {
	right: 45px;
}

.modaal-gallery-prev:before,
.modaal-gallery-prev:after {
	left: 22px;
}

.modaal-gallery-prev:before {
	margin: 5px 0 0;
	transform: rotate(-45deg);
}

.modaal-gallery-prev:after {
	margin: -5px 0 0;
	transform: rotate(45deg);
}

.modaal-gallery-prev-inner {
	right: 100%;
	margin-right: 40px;
}

.modaal-gallery-prev-outer {
	left: 45px;
}

.modaal-video-wrap {
	position: relative;
	margin: auto 50px;
}

.modaal-video-container {
	position: relative;
	max-width: 100%;
	max-width: 1300px;
	height: 0;
	margin-right: auto;
	margin-left: auto;
	padding-bottom: 56.25%;
	overflow: hidden;
	background: #000;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.modaal-video-container iframe,
.modaal-video-container object,
.modaal-video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.modaal-iframe .modaal-content {
	width: 100%;
	height: 100%;
}

.modaal-iframe-elem {
	display: block;
	width: 100%;
	height: 100%;
}

.modaal-loading-spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 200px;
	height: 200px;
	margin: -100px 0 0 -100px;
	transform: scale(0.25);
	background: none;
}

.modaal-loading-spinner > div {
	position: absolute;
	width: 24px;
	height: 24px;
	margin-top: 4px;
	margin-left: 4px;
}

.modaal-loading-spinner > div > div {
	width: 100%;
	height: 100%;
	border-radius: 15px;
	background: #fff;
}

.modaal-loading-spinner > div:nth-of-type(1) > div {
	animation: modaal-loading-spinner 1s linear infinite;
	animation-delay: 0s;
}

.modaal-loading-spinner > div:nth-of-type(2) > div,
.modaal-loading-spinner > div:nth-of-type(3) > div {
	-ms-animation: modaal-loading-spinner 1s linear infinite;
	-moz-animation: modaal-loading-spinner 1s linear infinite;
	-webkit-animation: modaal-loading-spinner 1s linear infinite;
	-o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(1) {
	transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(2) > div {
	animation: modaal-loading-spinner 1s linear infinite;
	animation-delay: 0.12s;
}

.modaal-loading-spinner > div:nth-of-type(2) {
	transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(3) > div {
	animation: modaal-loading-spinner 1s linear infinite;
	animation-delay: 0.25s;
}

.modaal-loading-spinner > div:nth-of-type(4) > div,
.modaal-loading-spinner > div:nth-of-type(5) > div {
	-ms-animation: modaal-loading-spinner 1s linear infinite;
	-moz-animation: modaal-loading-spinner 1s linear infinite;
	-webkit-animation: modaal-loading-spinner 1s linear infinite;
	-o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(3) {
	transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(4) > div {
	animation: modaal-loading-spinner 1s linear infinite;
	animation-delay: 0.37s;
}

.modaal-loading-spinner > div:nth-of-type(4) {
	transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(5) > div {
	animation: modaal-loading-spinner 1s linear infinite;
	animation-delay: 0.5s;
}

.modaal-loading-spinner > div:nth-of-type(6) > div,
.modaal-loading-spinner > div:nth-of-type(7) > div {
	-ms-animation: modaal-loading-spinner 1s linear infinite;
	-moz-animation: modaal-loading-spinner 1s linear infinite;
	-webkit-animation: modaal-loading-spinner 1s linear infinite;
	-o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(5) {
	transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(6) > div {
	animation: modaal-loading-spinner 1s linear infinite;
	animation-delay: 0.62s;
}

.modaal-loading-spinner > div:nth-of-type(6) {
	transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(7) > div {
	animation: modaal-loading-spinner 1s linear infinite;
	animation-delay: 0.75s;
}

.modaal-loading-spinner > div:nth-of-type(7) {
	transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(8) > div {
	animation: modaal-loading-spinner 1s linear infinite;
	animation-delay: 0.87s;
}

.modaal-loading-spinner > div:nth-of-type(8) {
	transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	font-size: 62.5%;
}

body {
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%;
	font-feature-settings: "palt";
	color: #000;
	font-weight: 400;
	font-family: "Noto Sans JP", sans-serif;
	letter-spacing: 0.05em;
}

img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

/* -----------------------------------
  basic
----------------------------------- */

html {
	overflow-x: clip;
	scroll-behavior: smooth;
	scroll-padding-top: 10rem;
}

body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	background: #ffffff;
	font-size: 1.8rem;
}

body .l-container {
	max-width: 1700px;
	margin: 0 auto;
	padding: 0 4rem;
}

body .s-container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 4rem;
}

body .sp {
	display: none;
}

body .pc {
	display: block;
}

/* -----------------------------------
  header
----------------------------------- */

.top-header {
	position: block;
	width: 100%;
	background: #ffffff;
}

.top-header.scroll-nav {
	z-index: 1000;
	position: fixed;
}

.top-header.scroll-nav .last {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.top-header.scroll-nav .last .mail {
	padding: 1em;
	border-radius: 50%;
}

.top-header.scroll-nav .last .mail i {
	margin-right: 0;
}

.top-header.scroll-nav .last .mail span {
	display: none;
}

.top-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.top-header__inner .logo {
	width: 10%;
	padding: 1em 0;
}

.top-header__inner .link {
	display: flex;
	margin-top: 0;
	line-height: 3em;
}

.top-header__inner .link li {
	margin: 0 1em;
}

.top-header__inner .link li a {
	display: flex;
	align-items: center;
	color: #333333;
	font-weight: 500;
	font-size: 1em;
	text-decoration: none;
	transition: 0.3s;
}

.top-header__inner .link li a:hover {
	color: #00ab9f;
}

.top-header__inner .link li a.mail {
	padding: 0 1em;
	border-radius: 0.5em;
	background: #333333;
	color: #ffffff;
}

.top-header__inner .link li a.mail i {
	margin-right: 1em;
	font-size: 1.3em;
}

.top-header__inner .link li a.mail:hover {
	background: #00ab9f;
}

.headersp,
.navigation {
	display: none;
}

/* -----------------------------------
  footer
----------------------------------- */

.footer {
	padding: 6em 0 1em;
	background: #333333;
}

.footer__inner .content {
	display: flex;
	justify-content: space-between;
	margin-bottom: 5em;
}

.footer__inner .content__left {
	width: 30%;
}

.footer__inner .content__left .logo img {
	width: 75%;
}

.footer__inner .content__left .address {
	margin: 1.5em 0;
	color: #ffffff;
	font-size: 0.9em;
	line-height: 1.6em;
}

.footer__inner .content__left .map {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 50%;
}

.footer__inner .content__left .map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.footer__inner .content__center {
	width: 30%;
	margin-top: 2em;
}

.footer__inner .content__center .parent {
	line-height: 2em;
}

.footer__inner .content__center .parent a {
	color: #ffffff;
	text-decoration: none;
	transition: 0.3s;
}

.footer__inner .content__center .parent a:hover {
	color: #00ab9f;
}

.footer__inner .content__center .parent .child {
	margin-left: 1em;
}

.footer__inner .content__right {
	width: 30%;
	margin-top: 2em;
}

.footer__inner .content__right .parent {
	line-height: 2em;
}

.footer__inner .content__right .parent a {
	color: #ffffff;
	text-decoration: none;
	transition: 0.3s;
}

.footer__inner .content__right .parent a:hover {
	color: #00ab9f;
}

.footer__inner .content__right .parent .child {
	margin-left: 1em;
}

.footer__inner .content__right .btn {
	margin-top: 1.5em;
}

.footer__inner .content__right .btn a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1em 0;
	border-radius: 0.5em;
	background: #ffffff;
	color: #333333;
	font-weight: bold;
	font-size: 1em;
	text-decoration: none;
	transition: 0.3s;
}

.footer__inner .content__right .btn a:hover {
	background: #00ab9f;
	color: #ffffff;
}

.footer__inner .content__right .btn a i {
	margin-right: 1em;
	font-size: 1.3em;
}

.footer__inner .cc {
	color: #ffffff;
	font-size: 0.8em;
	text-align: center;
}

/* -----------------------------------
  basic
----------------------------------- */

.error {
	margin: 8em 0;
}

.error__inner .main {
	margin-bottom: 1.5em;
	font-weight: bold;
	font-size: 3em;
	text-align: center;
}

.error__inner .sub {
	font-weight: bold;
	font-size: 1.5em;
	text-align: center;
}

.error__inner .btn {
	margin-top: 6em;
	text-align: center;
}

.error__inner .btn a {
	position: relative;
	padding: 1em 5em;
	border-radius: 2em;
	background: #00ab9f;
	color: #ffffff;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	transition: 0.3s;
}

.error__inner .btn a:hover {
	background: #5f6063;
}

.error__inner .btn a i {
	position: absolute;
	top: 50%;
	right: 1.5em;
	transform: translate(50%, -50%);
}

.bread-crumb {
	margin-bottom: 5em;
	padding: 0.7em 0;
	background: #ffffff;
}

.bread-crumb__inner__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	line-height: 1.4em;
}

.bread-crumb__inner__list__item {
	color: #333333;
	font-weight: bold;
}

.bread-crumb__inner__list__item::after {
	display: inline-block;
	margin: 0 1em;
	content: "＞";
	color: #333333;
}

.bread-crumb__inner__list__item:last-child::after {
	content: none;
}

.bread-crumb__inner__list__item a {
	color: #333333;
	text-decoration: none;
	transition: 0.3s;
}

.bread-crumb__inner__list__item a:hover {
	color: #00ab9f;
}

.bread-crumb__inner__list__item a:hover {
	opacity: 0.5;
}

.layer-mv {
	padding: 5em 0;
	background: #00ab9f;
	background-image: linear-gradient(-45deg, #f7b52c 2em, transparent 0), linear-gradient(135deg, #f7b52c 2em, transparent 0);
}

.layer-mv__inner__txt {
	color: #ffffff;
	font-weight: bold;
	font-size: 2em;
	text-align: center;
}

/* -----------------------------------
  top
----------------------------------- */

.top-mv {
	position: relative;
}

.top-mv__inner__slide {
	position: relative;
}

.top-mv__inner__slide .slick-dots {
	display: flex;
	position: absolute;
	right: 2em;
	bottom: 1em;
}

.top-mv__inner__slide .slick-dots li {
	display: inline-block;
	margin: 0 0.5em;
}

.top-mv__inner__slide .slick-dots li button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	position: relative;
	margin: 0;
	padding: 0;
	border: none;
	border-radius: 0;
	outline: none;
	background: none;
	text-indent: -9999px;
}

.top-mv__inner__slide .slick-dots li button:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 0.5em;
	height: 0.5em;
	border-radius: 50%;
	background: #ffffff;
	content: "";
	font-size: 20px;
	text-indent: 0px;
}

.top-mv__inner__slide .slick-dots li.slick-active button:before {
	background: #00ab9f;
}

.top-mv__inner__slide__txt {
	z-index: 1;
	position: absolute;
	top: 30%;
	left: 8%;
}

.top-mv__inner__slide__txt .ja {
	font-weight: bold;
	font-weight: bold;
	font-size: 2.5em;
}

.top-mv__inner__slide__txt .en {
	margin-top: 1em;
	font-weight: 500;
	font-size: 1.3em;
}

.top-mv__inner__news {
	z-index: 1;
	position: absolute;
	bottom: 5%;
	left: 8%;
	width: 30%;
}

.top-mv__inner__news .row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.5em;
	background: #ffffff;
}

.top-mv__inner__news .row__left {
	width: 40%;
}

.top-mv__inner__news .row__right {
	width: 58%;
}

.top-mv__inner__news .row__right .top {
	display: flex;
	align-items: center;
	margin-bottom: 1em;
}

.top-mv__inner__news .row__right .top__date {
	margin-right: 1em;
	color: #5f6063;
	font-weight: 500;
}

.top-mv__inner__news .row__right .top__cat a {
	padding: 0em 0.5em;
	border-radius: 5px;
	background: #5f6063;
	color: #ffffff;
	font-weight: 500;
	letter-spacing: 0.2em;
	text-decoration: none;
	transition: 0.3s;
}

.top-mv__inner__news .row__right .top__cat a:hover {
	background: #00ab9f;
}

.top-mv__inner__news .row__right .title a {
	color: #5f6063;
	font-weight: 500;
	line-height: 1.4em;
	letter-spacing: 0.1em;
	text-decoration: none;
}

.top-mission {
	position: relative;
	padding: 8em 0;
}

.top-mission__bg {
	z-index: 1;
	position: absolute;
	top: 10%;
	left: 0%;
	width: 30%;
}

.top-mission__inner {
	display: flex;
	z-index: 2;
	position: relative;
	justify-content: space-between;
}

.top-mission__inner__left {
	width: 45%;
}

.top-mission__inner__right {
	width: 50%;
	margin-top: 1em;
	color: #333333;
	font-weight: 500;
	line-height: 1.8em;
	letter-spacing: 0.1em;
}

.top-news {
	padding: 5em 0;
	background-image: linear-gradient(185deg, rgb(254, 255, 255) 10%, rgb(246, 251, 248) 40%, rgb(238, 250, 226) 68%, rgb(232, 243, 212) 90%);
}

.top-news__inner {
	display: flex;
	justify-content: space-between;
}

.top-news__inner__title {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 30%;
}

.top-news__inner__title .txt {
	margin-top: 3em;
}

.top-news__inner__title .txt .main {
	color: #5f6063;
	font-weight: bold;
	font-size: 4em;
}

.top-news__inner__title .txt .sub {
	display: flex;
	align-items: center;
	margin-top: 1em;
	font-weight: 500;
}

.top-news__inner__title .txt .sub::before {
	display: inline-block;
	width: 1em;
	height: 1em;
	margin-right: 0.5em;
	border-radius: 50%;
	background-color: #00ab9f;
	content: "";
	vertical-align: top;
}

.top-news__inner__title .btn {
	margin-top: 2em;
}

.top-news__inner__title .btn a {
	display: block;
	padding: 1em 0;
	border-radius: 0.5em;
	background: #f7b52c;
	color: #ffffff;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	transition: 0.3s;
}

.top-news__inner__title .btn a:hover {
	background: #00ab9f;
}

.top-news__inner__content {
	width: 65%;
}

.top-news__inner__content .row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1em 0;
	border-top: solid 1px #5f6063;
}

.top-news__inner__content .row:last-child {
	border-bottom: solid 1px #5f6063;
}

.top-news__inner__content .row__left {
	width: 30%;
}

.top-news__inner__content .row__right {
	width: 65%;
}

.top-news__inner__content .row__right .top {
	display: flex;
	align-items: center;
	margin-bottom: 1em;
}

.top-news__inner__content .row__right .top__date {
	margin-right: 1em;
	color: #5f6063;
	font-weight: 500;
}

.top-news__inner__content .row__right .top__cat a {
	padding: 0em 0.5em;
	border-radius: 5px;
	background: #5f6063;
	color: #ffffff;
	font-weight: 500;
	font-size: 0.8em;
	letter-spacing: 0.2em;
	text-decoration: none;
	transition: 0.3s;
}

.top-news__inner__content .row__right .top__cat a:hover {
	background: #00ab9f;
}

.top-news__inner__content .row__right .title a {
	color: #5f6063;
	font-weight: 500;
	line-height: 1.4em;
	letter-spacing: 0.1em;
	text-decoration: none;
	transition: 0.3s;
}

.top-news__inner__content .row__right .title a:hover {
	color: #00ab9f;
}

.top-service {
	padding: 5em 0;
}

.top-service__inner__title .main {
	color: #5f6063;
	font-weight: bold;
	font-size: 4em;
}

.top-service__inner__title .sub {
	display: flex;
	align-items: center;
	margin-top: 1em;
	font-weight: 500;
}

.top-service__inner__title .sub::before {
	display: inline-block;
	width: 1em;
	height: 1em;
	margin-right: 0.5em;
	border-radius: 50%;
	background-color: #00ab9f;
	content: "";
	vertical-align: top;
}

.top-service__inner__content .row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 2em;
}

.top-service__inner__content .row:last-child {
	margin-top: 5em;
}

.top-service__inner__content .row__left {
	width: 58%;
}

.top-service__inner__content .row__left .en {
	color: #00ab9f;
	font-weight: 500;
}

.top-service__inner__content .row__left .ja {
	margin: 0.5em 0 1em;
	font-weight: bold;
	font-size: 1.5em;
}

.top-service__inner__content .row__left .desc {
	font-weight: 500;
	line-height: 1.4em;
}

.top-service__inner__content .row__left .btn {
	margin-top: 2em;
	text-align: right;
}

.top-service__inner__content .row__left .btn a {
	padding: 0.5em 3em;
	border-radius: 0.5em;
	background: #f7b52c;
	color: #ffffff;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	transition: 0.3s;
}

.top-service__inner__content .row__left .btn a:hover {
	background: #00ab9f;
}

.top-service__inner__content .row__right {
	width: 37%;
}

.top-contact {
	margin: 0 3em 5em;
	padding: 5em 0;
	border-radius: 2em;
	background: #f19eaa;
}

.top-contact__inner {
	display: flex;
	justify-content: space-between;
}

.top-contact__inner__title {
	width: 30%;
}

.top-contact__inner__title .main {
	color: #ffffff;
	font-weight: bold;
	font-size: 4em;
}

.top-contact__inner__title .sub {
	display: flex;
	align-items: center;
	margin-top: 1em;
	color: #ffffff;
	font-weight: 500;
}

.top-contact__inner__title .sub::before {
	display: inline-block;
	width: 1em;
	height: 1em;
	margin-right: 0.5em;
	border-radius: 50%;
	background-color: #00ab9f;
	content: "";
	vertical-align: top;
}

.top-contact__inner__content {
	width: 60%;
	margin-top: 1em;
}

.top-contact__inner__content .main {
	color: #ffffff;
	font-weight: bold;
	font-size: 1.5em;
}

.top-contact__inner__content .sub {
	margin-top: 2em;
	color: #ffffff;
	font-weight: 500;
	line-height: 1.6em;
}

.top-contact__inner__content .two-btn {
	display: flex;
	margin-top: 2em;
}

.top-contact__inner__content .two-btn .btn {
	width: 45%;
	margin: 0 1em;
}

.top-contact__inner__content .two-btn .btn a {
	display: flex;
	justify-content: space-around;
	padding: 1em 0.5em;
	border-radius: 1em;
	background: #ffffff;
	color: #f19eaa;
	font-weight: 500;
	font-size: 1.1em;
	text-align: center;
	text-decoration: none;
	transition: 0.3s;
}

.top-contact__inner__content .two-btn .btn a:hover {
	background: #5f6063;
	color: #ffffff;
}

/* -----------------------------------
  お問い合わせ
----------------------------------- */

.contact__inner .top-txt .title {
	font-weight: bold;
	font-size: 1.5em;
	text-align: center;
}

.contact__inner .top-txt .desc {
	margin-top: 3em;
	font-weight: 500;
	font-size: 1em;
	line-height: 1.6em;
	text-align: center;
}

.contact__inner .top-txt .means {
	margin-top: 3em;
	font-weight: 500;
	font-size: 1em;
	line-height: 2em;
	text-align: center;
}

.contact__inner .top-txt .means a {
	color: #333333;
	text-decoration: none;
	transition: 0.3s;
}

.contact__inner .top-txt .means a:hover {
	color: #00ab9f;
}

.contact__inner .form {
	margin-top: 8em;
}

.contact__inner .form-title .title {
	font-weight: bold;
	font-size: 1.5em;
	text-align: center;
}

.contact__inner .form-title .desc {
	margin-top: 3em;
	font-weight: 500;
	font-size: 1em;
	line-height: 1.6em;
	text-align: center;
}

.contact__inner .form-content {
	margin-top: 3em;
}

.contact__inner .form-content .row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 1em 0;
}

.contact__inner .form-content .row__name {
	width: 15%;
	font-weight: bold;
}

.contact__inner .form-content .row__input {
	width: 80%;
}

.contact__inner .form-content .row__input.normal input {
	width: 100%;
	height: 2.5em;
}

.contact__inner .form-content .row__input.radio label {
	display: flex;
	align-items: center;
}

.contact__inner .form-content .row__input.radio label input {
	height: 2.5em;
}

.contact__inner .form-content .row__input textarea {
	width: 100%;
}

.contact__inner .form-content .accept {
	margin: 2em 0;
	text-align: center;
}

.contact__inner .form-content .accept .txt {
	margin-left: 0.5em;
	font-weight: bold;
}

.contact__inner .form-content .btn {
	text-align: center;
}

.contact__inner .form-content .btn .wpcf7-spinner {
	display: none;
}

.contact__inner .form-content .btn [type=submit],
.contact__inner .form-content .btn [type=button] {
	-webkit-appearance: none;
	box-sizing: inherit;
	position: relative;
	margin: 1em 0 1em;
	padding: 0.8em 5em;
	border: none;
	border-radius: 2em;
	background: #00ab9f;
	color: #333333;
	color: #ffffff;
	font-weight: bold;
	font-size: 1em;
	transition: 0.3s;
}

.contact__inner .form-content .btn [type=submit]:hover,
.contact__inner .form-content .btn [type=button]:hover {
	background: #5f6063;
	color: #ffffff;
}

.contact__inner .form-content .btn [type=submit] i,
.contact__inner .form-content .btn [type=button] i {
	position: absolute;
	top: 50%;
	right: 1.5em;
	transform: translate(50%, -50%);
}

.contact__inner .form-content .pp-txt {
	margin-top: 3em;
	font-weight: 500;
	font-size: 1em;
	line-height: 1.6em;
	text-align: center;
}

.contact__inner .form-content .pp-txt a {
	color: #333333;
	transition: 0.3s;
}

.contact__inner .form-content .pp-txt a:hover {
	color: #00ab9f;
}

/* -----------------------------------
  プライバシーポリシー
----------------------------------- */

.pp {
	margin-bottom: 5em;
}

.pp__inner .txt {
	line-height: 1.6em;
}

.pp__inner .txt h2 {
	margin: 1em 0;
	padding: 0.5em 0em 0.5em 1em;
	border-top: solid 2px #f7b52c;
	border-bottom: solid 2px #f7b52c;
	background: #00ab9f;
	color: #ffffff;
	font-weight: bold;
	font-size: 1.2em;
}

.pp__inner .txt .last {
	margin: 2em 0 0 0;
	text-align: right;
}

.pp__inner .txt ol {
	margin: 1em 0 1.5em 1em;
}

.pp__inner .txt ol li {
	position: relative;
	padding: 0 0 0 0.5em;
	list-style: outside decimal;
}

.pp__inner .txt ol li::marker {
	color: #00ab9f;
	font-weight: 700;
	font-size: 1.3em;
}

.pp__inner .txt ol li ol {
	padding: 1em 0 0 1em;
}

/* -----------------------------------
  会社情報
----------------------------------- */

.comp-msg__inner .title {
	display: flex;
	align-items: flex-end;
	text-align: center;
}

.comp-msg__inner .title .en {
	margin-right: 0.2em;
	font-weight: bold;
	font-size: 4em;
}

.comp-msg__inner .title .ja {
	display: inline-block;
	padding: 0.4em;
	background: linear-gradient(90deg, #00ab9f 0%, #00ab9f 100%);
	color: #ffffff;
	font-weight: bold;
	font-size: 1.3em;
}

.comp-msg__inner .desc {
	margin-top: 4em;
}

.comp-msg__inner .desc__img {
	text-align: center;
}

.comp-msg__inner .desc__img img {
	width: 100%;
	max-width: 800px;
	height: auto;
}

.comp-msg__inner .desc__txt {
	margin-top: 3em;
	font-weight: 500;
	line-height: 1.6em;
}

.comp-msg__inner .desc__txt span {
	font-weight: bold;
}

.comp-msg__inner .desc__txt .name {
	margin-top: 2em;
	font-weight: bold;
	text-align: right;
}

.comp-philosophy {
	margin-top: 5em;
}

.comp-philosophy__inner .title {
	display: flex;
	align-items: flex-end;
	text-align: center;
}

.comp-philosophy__inner .title .en {
	margin-right: 0.2em;
	font-weight: bold;
	font-size: 4em;
}

.comp-philosophy__inner .title .ja {
	display: inline-block;
	padding: 0.4em;
	background: linear-gradient(90deg, #00ab9f 0%, #00ab9f 100%);
	color: #ffffff;
	font-weight: bold;
	font-size: 1.3em;
}

.comp-philosophy__inner .content {
	margin-top: 3em;
	text-align: center;
}

.comp-philosophy__inner .content .catch {
	color: #00ab9f;
	font-weight: bold;
	font-size: 1.6em;
	line-height: 1.8em;
}

.comp-philosophy__inner .content .txt {
	margin-top: 2em;
	font-weight: 500;
	line-height: 2em;
}

.comp-policy,
.comp-guideline {
	margin-top: 5em;
}

.comp-policy__inner .title,
.comp-guideline__inner .title {
	display: flex;
	align-items: flex-end;
	text-align: center;
}

.comp-policy__inner .title .en,
.comp-guideline__inner .title .en {
	margin-right: 0.2em;
	font-weight: bold;
	font-size: 4em;
}

.comp-policy__inner .title .ja,
.comp-guideline__inner .title .ja {
	display: inline-block;
	padding: 0.4em;
	background: linear-gradient(90deg, #00ab9f 0%, #00ab9f 100%);
	color: #ffffff;
	font-weight: bold;
	font-size: 1.3em;
}

.comp-policy__inner .list,
.comp-guideline__inner .list {
	margin-top: 3em;
	padding: 0;
	list-style: none;
}

.comp-policy__inner .list__item,
.comp-guideline__inner .list__item {
	display: flex;
	align-items: flex-start;
	padding: 1.5em 1em;
	border-bottom: 1px solid #CBCBCB;
}

.comp-policy__inner .list__item:first-child,
.comp-guideline__inner .list__item:first-child {
	border-top: 1px solid #CBCBCB;
}

.comp-policy__inner .list__item .num,
.comp-guideline__inner .list__item .num {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 2em;
	height: 2em;
	margin-right: 1.2em;
	border-radius: 50%;
	background: #00ab9f;
	color: #ffffff;
	font-weight: bold;
}

.comp-policy__inner .list__item .txt,
.comp-guideline__inner .list__item .txt {
	line-height: 1.6em;
}

.comp-policy__inner .list__item .txt .head,
.comp-guideline__inner .list__item .txt .head {
	font-weight: bold;
}

.comp-policy__inner .list__item .txt .body,
.comp-guideline__inner .list__item .txt .body {
	margin-top: 0.4em;
	color: #5f6063;
}

.comp-profile {
	margin-top: 5em;
	margin-bottom: 3em;
}

.comp-profile__inner .title {
	display: flex;
	align-items: flex-end;
	margin-bottom: 2em;
	text-align: center;
}

.comp-profile__inner .title .en {
	margin-right: 0.2em;
	font-weight: bold;
	font-size: 4em;
}

.comp-profile__inner .title .ja {
	display: inline-block;
	padding: 0.4em;
	background: linear-gradient(90deg, #00ab9f 0%, #00ab9f 100%);
	color: #ffffff;
	font-weight: bold;
	font-size: 1.3em;
}

.comp-profile__inner .container .row {
	display: flex;
	border-top: 1px solid #CBCBCB;
}

.comp-profile__inner .container .row.last {
	border-bottom: 1px solid #CBCBCB;
}

.comp-profile__inner .container .row__left {
	width: 20%;
	padding: 1em;
	line-height: 1.4em;
}

.comp-profile__inner .container .row__left.even {
	background: #EFEFEF;
}

.comp-profile__inner .container .row__left.odd {
	background: #F4F4F4;
}

.comp-profile__inner .container .row__right {
	width: 80%;
	padding: 1em;
	line-height: 1.4em;
}

.comp-profile__inner .container .row__right ul li {
	display: flex;
}

.comp-profile__inner .container .row__right ul li .left {
	width: 25%;
}

.comp-profile__inner .container .row__right .box {
	display: flex;
	align-items: flex-end;
	margin-bottom: 2em;
}

.comp-profile__inner .container .row__right .box__left {
	width: 50%;
}

.comp-profile__inner .container .row__right .box__right {
	width: 50%;
	margin-left: 2em;
}

.comp-profile__inner .container .row__right .box__right .btn a {
	position: relative;
	padding: 0.6em 4em;
	border: solid 1px #00ab9f;
	color: #00ab9f;
	text-decoration: none;
	transition: 0.3s;
}

.comp-profile__inner .container .row__right .box__right .btn a:hover {
	background: #00ab9f;
	color: #ffffff;
}

.comp-profile__inner .container .row__right .box__right .btn a::after {
	position: absolute;
	top: 50%;
	right: -25%;
	width: 3em;
	height: 1px;
	transform: translate(-50%, 25%);
	background: #00ab9f;
	content: "";
}

.comp-profile__inner .container .row__right .box__right .btn a:hover {
	background: #00ab9f;
	color: #ffffff;
}

.comp-profile__inner .container .row__right .box__right .btn a:hover::after {
	right: 0%;
	width: 1em;
	transform: translate(-50%, 0%);
	background: #ffffff;
}

/* -----------------------------------
  お知らせ
----------------------------------- */

.news__inner {
	margin-top: 2em;
}

.news__inner .row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1em 0;
	border-top: solid 1px #5f6063;
}

.news__inner .row:last-child {
	border-bottom: solid 1px #5f6063;
}

.news__inner .row__left {
	width: 15%;
}

.news__inner .row__right {
	width: 80%;
}

.news__inner .row__right .top {
	display: flex;
	align-items: center;
	margin-bottom: 1em;
}

.news__inner .row__right .top__date {
	margin-right: 1em;
	color: #5f6063;
	font-weight: 500;
}

.news__inner .row__right .top__cat a {
	padding: 0em 0.5em;
	border-radius: 5px;
	background: #5f6063;
	color: #ffffff;
	font-weight: 500;
	font-size: 0.8em;
	letter-spacing: 0.2em;
	text-decoration: none;
	transition: 0.3s;
}

.news__inner .row__right .top__cat a:hover {
	background: #00ab9f;
}

.news__inner .row__right .title a {
	color: #5f6063;
	font-weight: 500;
	line-height: 1.4em;
	letter-spacing: 0.1em;
	text-decoration: none;
	transition: 0.3s;
}

.news__inner .row__right .title a:hover {
	color: #00ab9f;
}

.news__inner .pagenavi {
	width: 100%;
	margin: 5em 0 7em;
}

.news__inner .pagenavi .wp-pagenavi {
	text-align: center;
}

.news__inner .pagenavi .wp-pagenavi a {
	color: #333333;
	text-decoration: none;
	transition: 0.3s;
}

.news__inner .pagenavi .wp-pagenavi a:hover {
	color: #00ab9f;
}

.news__inner .pagenavi .wp-pagenavi .current {
	margin: 0 0.5em;
	padding: 0.5em;
	border: none;
	background: #8dc21f;
	color: #ffffff;
	font-weight: bold;
}

.news__inner .pagenavi .wp-pagenavi .page {
	margin: 0 0.5em;
	padding: 0.5em;
	border: none;
	background: #ffffff;
	color: #333333;
	font-weight: bold;
}

.news__inner .single .top {
	display: flex;
	align-items: center;
	margin-bottom: 1em;
}

.news__inner .single .top__date {
	margin-right: 1em;
	color: #5f6063;
	font-weight: 500;
}

.news__inner .single .top__cat a {
	padding: 0em 0.5em;
	border-radius: 5px;
	background: #5f6063;
	color: #ffffff;
	font-weight: 500;
	font-size: 1em;
	letter-spacing: 0.2em;
	text-decoration: none;
	transition: 0.3s;
}

.news__inner .single .top__cat a:hover {
	background: #00ab9f;
}

.news__inner .single .title {
	margin: 1em 0 2em;
	color: #5f6063;
	font-weight: 500;
	font-size: 1.5em;
	line-height: 1.4em;
	letter-spacing: 0.1em;
}

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

.service {
	margin-bottom: 10em;
}

.service__inner .row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 2em;
}

.service__inner .row.matching,
.service__inner .row.insurance {
	flex-wrap: wrap;
}

.service__inner .row:last-child {
	margin-top: 8em;
}

.service__inner .row__left {
	width: 58%;
}

.service__inner .row__left .en {
	color: #00ab9f;
	font-weight: 500;
}

.service__inner .row__left .ja {
	margin: 0.5em 0 1em;
	font-weight: bold;
	font-size: 1.5em;
}

.service__inner .row__left .desc {
	font-weight: 500;
	line-height: 1.4em;
}

.service__inner .row__right {
	width: 37%;
}

.service__inner .row .tab {
	width: 100%;
	margin-top: 2em;
}

.service__inner .row .tabnav {
	display: flex;
}

.service__inner .row .tabnav li {
	width: 50%;
}

.service__inner .row .tabnav li a {
	display: block;
	padding: 1em 0;
	border: solid 1px #00ab9f;
	color: #00ab9f;
	text-align: center;
	text-decoration: none;
}

.service__inner .row .tabnav li a.active {
	background: #00ab9f;
	color: #ffffff;
}

.service__inner .row .tabcontent {
	margin-bottom: 4em;
}

.service__inner .row .tabcontent .title {
	margin: 1em 0;
	padding: 0.5em 0em 0.5em 1em;
	border-left: solid 10px #8dc21f;
	color: #333333;
	font-weight: bold;
	font-size: 1.2em;
}

.service__inner .row .tabcontent .content {
	display: flex;
	justify-content: space-between;
}

.service__inner .row .tabcontent .content__box {
	width: 48%;
	padding: 1em;
	background: #206B66;
}

.service__inner .row .tabcontent .content__box .box-title {
	color: #ffffff;
	font-weight: bold;
	font-size: 1.2em;
	text-align: center;
}

.service__inner .row .tabcontent .content__box ul {
	display: flex;
	flex-wrap: wrap;
	margin-top: 2em;
}

.service__inner .row .tabcontent .content__box ul li {
	width: 50%;
	color: #ffffff;
	line-height: 1.6em;
}

.service__inner .row .tab .tel {
	margin-top: 1em;
}

.service__inner .row .tab .tel a {
	color: #ffffff;
	text-decoration: none;
}

.service__inner .row .tab .tel a .btm {
	display: flex;
	align-items: center;
	background: #f19eaa;
}

.service__inner .row .tab .tel a .btm .tel-title {
	width: 50%;
	padding: 0.5em 0;
	font-weight: bold;
	font-size: 1.3em;
	text-align: center;
}

.service__inner .row .tab .tel a .btm .right {
	width: 50%;
	padding: 0.5em 0;
	border: solid 1px #f19eaa;
	background: #ffffff;
	color: #f19eaa;
	text-align: center;
}

.service__inner .row .tab .tel a .btm .right .company {
	margin-bottom: 0.5em;
	font-weight: bold;
	font-size: 1.2em;
	font-size: 1.1em;
}

.service__inner .row .tab .tel a .btm .right .number i {
	margin-right: 0.2em;
}

.service__inner .row .img-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	margin-top: 1em;
}

.service__inner .row .img-content .title {
	width: 100%;
	padding: 1em 0;
	background: #00ab9f;
	color: #ffffff;
	font-weight: bold;
	text-align: center;
}

.service__inner .row .img-content__row {
	width: 20%;
	margin-top: 1em;
}

.service__inner .row .img-content__row p {
	margin-bottom: 0.3em;
	font-weight: bold;
	text-align: center;
}

.service__inner .row .img-content__row a img {
	cursor: pointer;
	transition: 0.3s;
}

.service__inner .row .img-content__row a img:hover {
	filter: brightness(0.5);
}

#post-style p {
	margin-bottom: 1em;
	padding: 0.5em 0;
	color: #333333;
	line-height: 1.6em;
}

#post-style .p-center {
	margin-bottom: 1em;
	padding: 0.5em 0;
	color: #333333;
	line-height: 1.6em;
	text-align: center;
}

#post-style .p-right {
	margin-bottom: 1em;
	padding: 0.5em 0;
	color: #333333;
	line-height: 1.6em;
	text-align: right;
}

#post-style h2 {
	margin: 1em 0;
	padding: 0.5em 0em 0.5em 1em;
	border-top: solid 2px #f7b52c;
	border-bottom: solid 2px #f7b52c;
	background: #00ab9f;
	color: #ffffff;
	font-weight: bold;
	font-size: 1.2em;
}

#post-style h3 {
	margin: 1em 0;
	padding: 0.5em 0em 0.5em 1em;
	border-top: solid 2px #8dc21f;
	border-bottom: solid 2px #8dc21f;
	color: #333333;
	font-weight: bold;
	font-size: 1.2em;
}

#post-style h4 {
	margin: 1em 0;
	padding: 0.5em 0em 0.5em 1em;
	border-left: solid 10px #8dc21f;
	color: #333333;
	font-weight: bold;
	font-size: 1.2em;
}

#post-style h5 {
	margin: 1em 0;
	padding: 0.5em 0em 0.5em 1em;
	border-bottom: solid 2px #8dc21f;
	color: #333333;
	font-weight: bold;
	font-size: 1.2em;
}

#post-style a {
	color: #f7b52c;
}

#post-style ul {
	margin-bottom: 1em;
	padding: 0.5em 0;
	color: #333333;
}

#post-style ul li {
	display: flex;
	align-items: center;
	line-height: 1.6em;
}

#post-style ul li i {
	margin-right: 0.5em;
	color: #8dc21f;
	font-size: 0.8em;
}

#post-style ol {
	margin-bottom: 1em;
	padding: 0.5em 0;
	color: #333333;
	counter-reset: ol_li;
}

#post-style ol li {
	line-height: 1.6em;
}

#post-style ol li::before {
	content: counter(ol_li) ". ";
	color: #8dc21f;
	counter-increment: ol_li;
}

@media (prefers-reduced-motion: reduce) {

html {
	scroll-behavior: auto;
}

}

@media only screen and (min-width: 1400px) {

.modaal-video-container {
	height: 731px;
	padding-bottom: 0;
}

}

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

/* -----------------------------------
    basic
  ----------------------------------- */

body {
	font-size: 1.6rem;
}

body .s-container {
	padding: 0 3rem;
}

body .l-container {
	padding: 0 3rem;
}

/* -----------------------------------
    header
  ----------------------------------- */

/* -----------------------------------
    footer
  ----------------------------------- */

/* -----------------------------------
    basic
  ----------------------------------- */

/* -----------------------------------
    top
  ----------------------------------- */

.top-contact__inner {
	flex-direction: column;
}

.top-contact__inner__title {
	width: 100%;
	margin-bottom: 3em;
}

.top-contact__inner__content {
	width: 100%;
}

/* -----------------------------------
    お問い合わせ
  ----------------------------------- */

/* -----------------------------------
    プライバシーポリシー
  ----------------------------------- */

/* -----------------------------------
    会社情報
  ----------------------------------- */

/* -----------------------------------
    お知らせ
  ----------------------------------- */

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

}

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

.modaal-image .modaal-inner-wrapper {
	padding-right: 25px;
	padding-left: 25px;
}

.modaal-gallery-control {
	top: auto;
	bottom: 20px;
	transform: none;
	background: rgba(0, 0, 0, 0.7);
}

.modaal-gallery-control:before,
.modaal-gallery-control:after {
	background: #fff;
}

.modaal-gallery-next {
	right: 20px;
	left: auto;
}

.modaal-gallery-prev {
	right: auto;
	left: 20px;
}

}

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

.modaal-instagram iframe {
	width: 500px !important;
}

}

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

/* -----------------------------------
    basic
  ----------------------------------- */

html {
	scroll-padding-top: 7rem;
}

body {
	font-size: 1.5rem;
}

body .s-container {
	padding: 0 2rem;
}

body .l-container {
	padding: 0 2rem;
}

body .sp {
	display: block;
}

body .pc {
	display: none;
}

/* -----------------------------------
    header
  ----------------------------------- */

.top-header {
	display: none;
}

.headersp {
	display: flex;
	position: block;
	top: 0;
	left: 0;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 6rem;
	border-bottom: solid 1px #f3f3f3;
	background: #ffffff;
	text-align: center;
}

.headersp.scroll-nav {
	z-index: 9999;
	position: fixed;
}

.headersp__logo {
	display: inline-block;
	width: 25%;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
	margin-left: 1em;
}

.headersp__logo a {
	display: flex;
	align-items: center;
	height: 100%;
}

.headersp__logo a img {
	width: 100%;
}

.headersp__container {
	display: flex;
	position: absolute;
	top: 0;
	right: 0;
	align-items: center;
	width: 6rem;
	height: 6rem;
	cursor: pointer;
}

.headersp__container-span {
	position: relative;
	width: 80%;
	height: 15px;
	margin: 0 auto 0.2em;
}

.headersp__container-span span {
	transition: 0.4s;
}

.headersp__container.active .headersp__container-span span:nth-child(1) {
	top: 0;
	transform: translateY(2px) rotate(-45deg);
}

.headersp__container.active .headersp__container-span span:nth-child(2) {
	top: 50%;
	margin-top: -1px;
	opacity: 0;
}

.headersp__container.active .headersp__container-span span:nth-child(3) {
	bottom: 0;
	transform: translateY(-12px) rotate(45deg);
}

.headersp__container-span .headersp__container-span span:nth-of-type(1):hover {
	width: 70%;
}

.headersp__container-span .headersp__container.active:hover span:nth-of-type(3) {
	width: 35%;
}

.headersp__container-span span {
	display: inline-block;
	position: absolute;
	right: 0;
	width: 100%;
	height: 2px;
	background: #333333;
}

.headersp__container-span span:nth-child(1) {
	top: 0;
}

.headersp__container-span span:nth-child(2) {
	top: 50%;
	margin-top: -1px;
}

.headersp__container-span span:nth-child(3) {
	bottom: 0;
}

.headersp__container-txt {
	color: #333333;
	font-weight: bold;
	font-size: 0.6em;
}

.navigation {
	display: none;
}

.navigation.active {
	display: block;
	z-index: 9999;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin-top: 60px;
	background: #5f6063;
}

.navigation.active .parent {
	margin: 3em 0;
}

.navigation.active .parent .list {
	display: flex;
	align-items: center;
	padding: 1.5em 0;
	border-bottom: solid 1px #ffffff;
}

.navigation.active .parent .list.last {
	border-bottom: none;
}

.navigation.active .parent .list a {
	margin: 0 1em;
	color: #ffffff;
	font-weight: 500;
	font-size: 1.2em;
	line-height: 2em;
	letter-spacing: 0.1em;
	text-decoration: none;
	transition: 0.2s;
}

.navigation.active .parent .list a:hover {
	color: #5f6063;
}

.navigation.active .parent .child {
	margin-top: 2em;
}

.navigation.active .parent .child a {
	display: block;
	padding: 2em 0;
	background: #333333;
	color: #ffffff;
	font-weight: 500;
	font-size: 1.2em;
	text-align: center;
	text-decoration: none;
	transition: 0.2s;
}

.navigation.active .parent .child a:hover {
	background: #5f6063;
}

.navigation.active .parent .child a i {
	margin-right: 1em;
}

.navigation.active .parent .child .gold a {
	background: #8dc21f;
}

.navigation.active .parent .child .gold a:hover {
	background: #5f6063;
}

/* -----------------------------------
    footer
  ----------------------------------- */

.footer__inner .content {
	flex-direction: column;
}

.footer__inner .content__left {
	width: 100%;
}

.footer__inner .content__left .logo {
	text-align: center;
}

.footer__inner .content__left .logo img {
	width: 50%;
}

.footer__inner .content__left .address {
	font-size: 1.1em;
	text-align: center;
}

.footer__inner .content__center {
	width: 100%;
}

.footer__inner .content__right {
	width: 100%;
}

/* -----------------------------------
  basic
  ----------------------------------- */

/* -----------------------------------
    top
  ----------------------------------- */

.top-mv__inner__slide .slick-slide img {
	-o-object-fit: cover;
	-o-object-position: 60% 0%;
	height: 600px;
	object-fit: cover;
	object-position: 60% 0%;
}

.top-mv__inner__slide__txt {
	top: inherit;
	bottom: 0%;
	left: 1%;
	width: 100%;
	padding-bottom: 1em;
}

.top-mv__inner__slide__txt .ja {
	display: inline-block;
	line-height: 1.6em;
}

.top-mv__inner__slide__txt .en {
	line-height: 1.6em;
}

.top-mv__inner__news {
	position: relative;
	left: 0;
	width: 100%;
}

.top-mv__inner__news .row__left {
	width: 25%;
}

.top-mv__inner__news .row__right {
	width: 70%;
}

.top-mission {
	padding: 8em 0 3em;
}

.top-mission__bg {
	top: 4%;
	width: 60%;
}

.top-mission__inner {
	flex-direction: column;
}

.top-mission__inner__left {
	width: 100%;
	text-align: center;
}

.top-mission__inner__left img {
	width: 70%;
}

.top-mission__inner__right {
	width: 100%;
}

.top-news__inner {
	flex-direction: column;
}

.top-news__inner__title {
	width: 100%;
}

.top-news__inner__title .btn {
	display: none;
}

.top-news__inner__content {
	width: 100%;
	margin-top: 2em;
}

.top-news__inner__content .row {
	border: none;
}

.top-news__inner__content .btn {
	margin-top: 2em;
}

.top-news__inner__content .btn a {
	display: block;
	padding: 1em 0;
	border-radius: 0.5em;
	background: #f7b52c;
	color: #ffffff;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
}

.top-service__inner__content .row {
	flex-direction: column-reverse;
}

.top-service__inner__content .row__left {
	width: 100%;
}

.top-service__inner__content .row__left .ja {
	line-height: 1.4em;
}

.top-service__inner__content .row__right {
	width: 100%;
	margin: 2em 0;
}

.top-contact {
	margin: 0;
	border-radius: 0;
}

.top-contact__inner__content .main {
	line-height: 1.6em;
}

.top-contact__inner__content .two-btn {
	flex-direction: column;
}

.top-contact__inner__content .two-btn .btn {
	width: 100%;
	margin: 1em 0;
}

.top-contact__inner__content .two-btn .btn a {
	justify-content: center;
	font-size: 1.3em;
}

.top-contact__inner__content .two-btn .btn a i {
	margin-right: 1em;
}

/* -----------------------------------
  お問い合わせ
  ----------------------------------- */

.contact__inner .form-content .row {
	flex-direction: column;
}

.contact__inner .form-content .row__name {
	width: 100%;
	margin-bottom: 0.5em;
}

.contact__inner .form-content .row__input {
	width: 100%;
}

/* -----------------------------------
  プライバシーポリシー
  ----------------------------------- */

.pp__inner .txt ol {
	margin-left: 2em;
}

.pp__inner .txt ol li ol {
	margin-left: 1em;
}

/* -----------------------------------
  会社情報
  ----------------------------------- */

.comp-msg__inner .title {
	flex-direction: column-reverse;
	align-items: flex-start;
}

.comp-msg__inner .title .en {
	font-size: 3em;
}

.comp-msg__inner .desc {
	margin-top: 2em;
}

.comp-msg__inner .desc__img img {
	width: 100%;
}

.comp-msg__inner .desc__txt {
	margin-top: 2em;
}

.comp-philosophy__inner .title {
	flex-direction: column-reverse;
	align-items: flex-start;
}

.comp-philosophy__inner .title .en {
	font-size: 3em;
}

.comp-philosophy__inner .content {
	text-align: left;
}

.comp-philosophy__inner .content .catch {
	font-size: 1.3em;
	text-align: center;
}

.comp-policy__inner .title,
.comp-guideline__inner .title {
	flex-direction: column-reverse;
	align-items: flex-start;
}

.comp-policy__inner .title .en,
.comp-guideline__inner .title .en {
	font-size: 3em;
}

.comp-policy__inner .list__item,
.comp-guideline__inner .list__item {
	padding: 1.2em 0.5em;
}

.comp-policy__inner .list__item .num,
.comp-guideline__inner .list__item .num {
	margin-right: 0.8em;
}

.comp-profile__inner .title {
	flex-direction: column-reverse;
	align-items: flex-start;
}

.comp-profile__inner .title .en {
	font-size: 3em;
}

.comp-profile__inner .container .row {
	flex-direction: column;
}

.comp-profile__inner .container .row__left {
	width: 100%;
}

.comp-profile__inner .container .row__right {
	width: 100%;
}

.comp-profile__inner .container .row__right .box {
	flex-direction: column;
}

.comp-profile__inner .container .row__right .box__left {
	width: 100%;
}

.comp-profile__inner .container .row__right .box__right {
	width: 100%;
	margin-top: 2em;
}

/* -----------------------------------
  お知らせ
  ----------------------------------- */

.news__inner .row__left {
	width: 30%;
}

.news__inner .row__right {
	width: 65%;
}

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

.service__inner .row.matching,
.service__inner .row.insurance {
	flex-direction: column;
}

.service__inner .row__left {
	width: 100%;
	margin-bottom: 1em;
}

.service__inner .row__left .ja {
	line-height: 1.6em;
}

.service__inner .row__right {
	width: 100%;
}

.service__inner .row .tabcontent .content {
	flex-direction: column;
}

.service__inner .row .tabcontent .content__box {
	width: 100%;
	margin-top: 0.5em;
}

.service__inner .row .tabcontent .content__box .box-title {
	line-height: 1.4em;
}

.service__inner .row .tab .tel a .btm {
	flex-direction: column;
}

.service__inner .row .tab .tel a .btm .tel-title {
	width: 100%;
	font-size: 1.1em;
}

.service__inner .row .tab .tel a .btm .right {
	width: 100%;
}

.service__inner .row .img-content__row {
	width: 45%;
}

.service__inner .row .img-content__row p {
	line-height: 1.4em;
}

}

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

.modaal-instagram iframe {
	width: 280px !important;
}

}

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

/* -----------------------------------
    basic
  ----------------------------------- */

body {
	font-size: 1.5rem;
}

body .s-container {
	padding: 0 1rem;
}

body .l-container {
	padding: 0 1rem;
}

/* -----------------------------------
    header
  ----------------------------------- */

/* -----------------------------------
  footer
  ----------------------------------- */

/* -----------------------------------
  basic
  ----------------------------------- */

.error__inner .main {
	font-size: 2em;
}

.error__inner .sub {
	font-size: 1.2em;
}

/* -----------------------------------
    top
  ----------------------------------- */

/* -----------------------------------
  お問い合わせ
  ----------------------------------- */

/* -----------------------------------
  プライバシーポリシー
  ----------------------------------- */

/* -----------------------------------
  会社情報
  ----------------------------------- */

/* -----------------------------------
  お知らせ
  ----------------------------------- */

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

}

@media screen and (max-height: 1100px) {

.modaal-instagram iframe {
	width: 700px !important;
}

}

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

.modaal-inner-wrapper {
	padding-top: 60px;
	padding-bottom: 60px;
}

.modaal-instagram iframe {
	width: 600px !important;
}

}

@media screen and (max-height: 900px) {

.modaal-instagram iframe {
	width: 500px !important;
}

.modaal-video-container {
	max-width: 900px;
	max-height: 510px;
}

}

@media only screen and (max-height: 820px) {

.modaal-gallery-label {
	display: none;
}

}

@keyframes instaReveal {

0% {
	opacity: 0;
}

100% {
	opacity: 1;
}

}

@keyframes modaal-loading-spinner {

0% {
	transform: scale(1.5);
	opacity: 1;
}

100% {
	transform: scale(1);
	opacity: 0.1;
}

}

