@charset "UTF-8";
/*--------------------------------------------------------------------------
----------------------------------------------------------------------------
----------------------------------------------------------------------------
汎用
----------------------------------------------------------------------------
----------------------------------------------------------------------------
--------------------------------------------------------------------------*/
main {
	position: relative;
	display: block;
}
a {
	transition: all 0.5s ease;
}
a:hover {
	opacity: 0.6;
	transition: all 0.5s ease;
}

/*画像 .img img*/
.img {
	position: relative;
}
.img > img {
	width: 100%;
	height: 100%;
	position: absolute;
	object-fit: cover;
	object-position: 50% 50%;
	transform-origin: center;
	transition: 0.5s ease;
}

/*汎用flex*/
.flex {
	display: flex;
}

.bg-gray {
	background: rgba(232, 235, 237);
}

/*--------------------------------------------------------------------------
部品
--------------------------------------------------------------------------*/
/*コンテナ*/
.container {
	margin: 0 auto;
}

/*汎用見出し*/
.sec-title {
	color: #123052;
	text-align: center;
	font-size: 48px;
	margin-bottom: 100px;
}

/*TOPに戻る*/
#page_top {
	position: absolute;
}
#page_top a {
	width: 100%;
	height: 100%;
}

/*MORE*/
.more-wrap {
	text-align: center;
	margin: 90px 0 0;
}
.more-wrap .more {
	color: #fff;
	background: #123052;
	padding: 1em 0;
	font-size: 18px;
	padding: 10px 30px;
	border-radius: 25px;
}
/*--------------------------------------------------------------------------
アニメーション
--------------------------------------------------------------------------*/
/*------------------------------------
ディレイ
------------------------------------*/
.delay01 {
	animation-delay: 0.25s !important;
}
.delay02 {
	animation-delay: 0.5s !important;
}
.delay03 {
	animation-delay: 0.75s !important;
}
.delay04 {
	animation-delay: 1s !important;
}
.delay05 {
	animation-delay: 1.25s !important;
}
.delay06 {
	animation-delay: 1.5s !important;
}
.delay07 {
	animation-delay: 1.75s !important;
}
.delay08 {
	animation-delay: 2s !important;
}
.delay09 {
	animation-delay: 2.25s !important;
}
.delay10 {
	animation-delay: 2.5s !important;
}

/*下から上に upflow*/
.upflow {
	visibility: hidden;
}
.fadeInUp {
	animation-fill-mode: both;
	animation-duration: 1s;
	animation-name: fadeInUp;
	visibility: visible !important;
}
@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(50px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/*左から右に leftflow*/
.leftflow {
	visibility: hidden;
}
.fadeInLeft {
	animation-fill-mode: both;
	animation-duration: 1s;
	animation-name: fadeInLeft;
	visibility: visible !important;
}
@keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translateX(-50px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

/*右から左に rightflow*/
.rightflow {
	visibility: hidden;
}
.fadeInRight {
	animation-fill-mode: both;
	animation-duration: 1s;
	animation-name: fadeInRight;
	visibility: visible !important;
}
@keyframes fadeInRight {
	0% {
		opacity: 0;
		transform: translateX(50px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

/*フェード*/
.fade {
	opacity: 0;
	transform: translateY(10%);
	will-change: transform;
}
.fade.active {
	animation: fadein 0.5s ease-in-out forwards;
	opacity: 1;
}
@keyframes fadein {
	0% {
		opacity: 0;
		transform: translateY(10%);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/*カバー*/
.cover {
	position: relative;
	display: block;
	overflow: hidden;
}
.cover:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1;
	background: #fff;
	transition: transform ease-out 1s;
	will-change: transform;
}
.cover.active:before {
	transform: translate3d(100%, 0, 0);
}
.fade.cover:before {
	transition-delay: 0.25s;
}

/*=========================================================
===========================================================
===========================================================
ヘッダー&フッター
===========================================================
===========================================================
==========================================================*/
/*ヘッダー*/
header {
	width: 100%;
	transition: all 0.3s ease;
	background-color: transparent;
	position: relative;
	z-index: 1000;
}
.page.home header .inner {
	width: inherit;
	height: inherit;
}
.page:not(.home) header .inner {
	width: inherit;
	height: inherit;
	z-index: 1;
}
header .g-nav {
	display: none;
}
.page.home header .g-nav a {
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #123052;
	font-size: 15px;
}
.page:not(.home) header .g-nav a {
	color: #fff;
}
header .g-nav a span {
	color: #123052;
}
header .g-nav a img {
	margin-top: 5px;
	transition: all 0.3s ease;
}
header .g-nav a img[src$=".svg"] {
	width: auto;
}
header .g-nav a.classroom img {
	height: 9px;
}
header .g-nav a.profile img {
	height: 13px;
}
header .g-nav a.lesson img {
	height: 8px;
}
header .g-nav a.fee img {
	height: 7px;
}
header .g-nav a.gallery img {
	height: 13px;
}
header .g-nav a.contact img {
	height: 8px;
}
.thin header .g-nav a img {
	height: 0;
	margin-top: 0;
}
header .inner {
	align-items: center;
}
header .site-title {
	position: relative;
}
header .site-title a,
header .site-title {
	display: inline-flex;
	align-items: center;
	height: 110px;
	background-color: transparent;
}
.page.home header .site-title .logo {
	height: 65px;
	width: auto;
	display: block;
	opacity: 1;
	transform: scale(1);
	transition: none;
}
.thin.page.home header .site-title .logo {
	opacity: 0;
	transform: scale(0);
}
.page:not(.home) header .site-title .logo-white {
	width: auto;
	height: 65px;
}

/*#global-nav*/
#global-nav {
	position: fixed;
	display: flex;
	flex-direction: column;
	justify-content: center;
	vertical-align: middle;
	color: #fff;
	top: 0;
	right: 0;
	height: 100%;
	width: 350px;
	text-align: center;
	font-size: 16px;
	transform: translateX(350px);
	transition: 0.5s ease-in-out;
	z-index: 1000;
}
#global-nav.open {
	z-index: 1000;
	background-color: rgba(18, 48, 82);
	transform: translateX(0);
}
#global-nav .h-logo {
	position: absolute;
	bottom: 5vh;
	left: 50%;
	transform: translateX(-50%);
}
#global-nav img {
	width: auto;
	height: 65px;
}
@media screen and (max-height: 559px) {
	#global-nav img {
		display: none;
	}
}
#global-nav ul {
	padding: 0 40px;
}
#global-nav a {
	color: #fff;
	text-decoration: none;
	display: block;
	padding: 15px 0;
	font-size: 16px;
}
#global-nav .contact-btn {
	font-size: 19px;
	background: #fff;
	border-radius: 50px;
	width: 216px;
	margin: 58px auto 0;
	color: #123052;
}

/*nav-list*/
#global-nav ul li {
	border-bottom: 1px solid #fff;
}

/*#humberger*/
#humberger {
	width: 27px;
	height: 27px;
	padding: 15px;
	background-color: #ffee00;
	border-radius: 50%;
	position: fixed;
	right: 5%;
	top: 28px;
	cursor: pointer;
	z-index: 1001;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	text-align: center;
	transition: all 0.5s ease;
}
#humberger:hover {
	opacity: 0.8;
}
#humberger .dot-wrapper {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
#humberger .dot-wrapper .dotline-1 .dot:nth-of-type(2),
#humberger .dot-wrapper .dotline-1 .dot:nth-of-type(3),
#humberger .dot-wrapper .dotline-2 .dot:nth-of-type(3) {
	visibility: hidden;
}
.open#humberger .dot-wrapper .dotline-1 .dot:nth-of-type(3),
.open#humberger .dot-wrapper .dotline-2 .dot:nth-of-type(3) {
	visibility: visible;
}
.open#humberger .dot-wrapper .dotline-2 .dot:nth-of-type(1),
.open#humberger .dot-wrapper .dotline-2 .dot:nth-of-type(3),
.open#humberger .dot-wrapper .dotline-3 .dot:nth-of-type(2) {
	visibility: hidden;
}
#humberger .dot {
	width: 5px;
	height: 5px;
	background-color: #123052;
	border-radius: 50%;
	margin: 1px;
}
#humberger .fa-times {
	display: none;
}
.open #humberger .fa-times {
	display: inline;
	font-size: 20px;
	vertical-align: middle;
}

/* footer */
footer {
	margin-top: 125px;
	position: relative;
}
.footer-wrapper {
	align-items: flex-end;
}
.l-footer {
	width: 380px;
	height: 200px;
	text-align: center;
	background: #ffee00;
}
.l-footer a {
	width: 295px;
	padding-top: 55px;
	margin: auto;
	display: block;
}
.l-footer a img {
	height: 65px;
	width: auto;
	margin: 0 auto;
}
.l-footer p {
	color: #123052;
	margin: 40px auto 60px;
	font-family: "小塚ゴシック Pro", "Kozuka Gothic Pro", sans-serif;
	font-weight: normal;
	font-size: 14px;
}
.r-footer {
	width: calc(100% - 380px);
	height: 170px;
	background-color: #123052;
}
.r-footer .box {
	width: 100%;
	padding-bottom: 18px;
}
.r-footer .box .logo {
	display: none;
}
.r-footer .box p {
	color: #fff;
	padding-top: 20px;
	position: relative;
	margin-left: 55px;
}
.r-footer .box p::after {
	content: "";
	position: absolute;
	width: 65px;
	height: 1px;
	top: 60px;
	left: 0;
	background: #fff;
	z-index: 1;
}
.r-footer nav {
	background-color: #123052;
	padding: 15px 0 0;
	margin-left: 55px;
}
.r-footer nav ul li {
	margin: 15px 30px 0 0;
}
.r-footer nav ul li a {
	color: #fff;
	box-sizing: border-box;
	border-radius: 5px;
	box-shadow: 1px 1px 1px transparent;
	transition: all 0.3s ease;
}
footer .copyright {
	font-weight: 400;
}
@media screen and (max-width: 1280px) {
	.r-footer nav {
		flex-direction: column;
	}
}

/*=========================================================
===========================================================
===========================================================
Top Page
===========================================================
===========================================================
==========================================================*/

/*HERO HERDER .page-heading*/
#front .page-heading,
#front .page-heading .inner {
	height: calc(100vh - 110px);
	min-height: 640px;
}
#front .page-heading .deco {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
#front .page-heading #top-slider {
	width: 100%;
	height: 100%;
	overflow: hidden;
}
#front .page-heading .img:before {
	background: transparent;
}
#front .page-heading #top-slider .slick-list .img img {
	transform: scale(1, 1);
	transition: 0s;
}
#front .page-heading #top-slider .slick-list .slick-active .img img {
	transform: scale(1.2, 1.2);
	transition: ease 16s;
}
#front .page-heading #top-slider .slick-list .slick-continue .img img {
	transform: scale(1.4, 1.4);
	transition: ease 16s;
}

#front .page-heading #top-slider .slick-list .img:before {
	content: "";
	width: 0;
	height: 10px;
	display: block;
	position: absolute;
	left: 0;
	top: calc(100% - 10px);
	background: #ffee00;
	transition: all 0.3s ease;
}
#front .page-heading #top-slider .slick-list .slick-active .img:before {
	animation: progress 8.8s;
	animation-fill-mode: forwards;
}
@keyframes progress {
	0% {
		width: 0;
	}
	100% {
		width: 100%;
	}
}
#front .page-heading #top-slider .img .message-box.flex {
	flex-direction: column;
	position: absolute;
	top: 25%;
}
#front .page-heading #top-slider .img .message-box.flex::after {
	content: "";
	width: 190px;
	height: 4px;
	background-color: #fff;
	position: absolute;
	top: 220px;
}
#front .page-heading #top-slider .img .text-wrapper {
	width: 1080px;
	margin: 0 auto;
}
#front .page-heading #top-slider .img .message-box h2 {
	margin-bottom: 10px;
	padding: 10px 0;
	font-size: 63.9px;
	color: #fff;
	text-shadow: 4px 3px 7px rgba(0, 0, 0, 1);
	line-height: 1.2;
	letter-spacing: 0.1em;
}
#front .page-heading #top-slider .img .contact-box .label {
	background: #fff;
	border-radius: 30px 0 0 30px;
	box-sizing: border-box;
	font-weight: bold;
}
#front .page-heading #top-slider .img .contact-box a {
	background: #123052;
	box-sizing: border-box;
	color: #ffee00;
	width: 290px;
	position: relative;
	padding: 20px;
	font-size: 20px;
	margin-top: 100px;
}
#front .page-heading #top-slider .img .contact-box a:hover {
	opacity: 0.9;
}
#front .page-heading #top-slider .img .contact-box a::after {
	font-family: "Font Awesome 5 Free";
	content: "\f054";
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	position: absolute;
	top: calc(50% - 10px);
	right: 20px;
	transition: all 0.5s ease;
}
#front .page-heading #top-slider .img .contact-box a:hover::after {
	transform: translateX(5px);
}

.page-heading {
	position: relative;
	width: 100%;
}
.page-heading .inner {
	position: relative;
	width: 100%;
	height: 100%;
}
.page-heading .img {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
}
.page-heading .img:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: rgb(138 127 83 / 25%);
	z-index: 2;
}
.page-heading .img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.page-heading .txt {
	position: absolute;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
	text-align: center;
	z-index: 2;
}
.page-heading .txt .page-title {
	flex-direction: column;
	align-items: center;
}
.page-heading .txt .page-title span {
	color: #fff;
}

/* #sec-news */
#front #sec-news {
	padding: 100px 0;
}
#front #sec-news .news-list {
	/* justify-content: space-between; */
	/* width: 100%; */
	gap: 30px 40px;
}
#front #sec-news .news-list .entry .img {
	width: 100%;
	padding-top: 63%;
	overflow: hidden;
}
#front #sec-news .news-list .entry .img img {
	top: 0;
	left: 0;
}
#front #sec-news .news-list .entry .post-data {
	margin: 10px 0 8px;
	justify-content: space-between;
	align-items: center;
}
#front #sec-news .news-list .entry .post-data time {
	color: #123052;
}
#front #sec-news .news-list .entry .post-data .news-cat {
	padding: 2px 15px;
	border-radius: 30px;
	box-sizing: border-box;
	margin: 5px 0;
	color: #fff;
	background-color: #123052;
	font-size: 14px;
}

/* #sec-about */
#front #sec-about {
	padding: 100px 0;
}
#front #sec-about .inner {
	flex-wrap: wrap;
}
#front #sec-about .work-scene {
	width: 100%;
	height: 50vh;
	object-fit: cover;
}
#front #sec-about .column-wrapper {
	flex-direction: column;
	position: relative;
	width: 100%;
	margin-top: 30px;
}
#front #sec-about .column-wrapper .description {
	line-height: 2;
	margin-bottom: 25px;
}
#front #sec-about .column-wrapper h3 {
	margin: 80px 0 30px;
	font-size: 25px;
	font-weight: bold;
	color: #123052;
	line-height: 0.8;
	position: relative;
}
#front #sec-about .column-wrapper h3::before {
	content: "";
	width: 150px;
	height: 2px;
	background-color: #123052;
	position: absolute;
	top: -30px;
}
#front #sec-about .column-wrapper span {
	display: block;
	color: #123052;
	margin-top: 10px;
}
#front #sec-about .column-wrapper .flex-wrapper .type-wrapper:nth-child(2) {
	margin-left: 20px;
}
#front #sec-about .type-wrapper .type {
	text-align: center;
	position: relative;
	width: 100px;
	height: 100px;
	font-size: 18px;
}
#front #sec-about .type-wrapper .type:not(.type:first-child) {
	margin-left: 20px;
}
#front #sec-about .type-wrapper .type img {
	width: 100%;
	height: 100%;
}
#front #sec-about .type-wrapper .type:nth-child(1)::after {
	position: absolute;
	content: "精神";
	color: #fff;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#front #sec-about .type-wrapper .type:nth-child(2)::after {
	position: absolute;
	content: "発達";
	color: #fff;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#front #sec-about .type-wrapper .type:nth-child(3)::after {
	position: absolute;
	content: "身体";
	color: #fff;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#front #sec-about .type-wrapper .type:nth-child(4)::after {
	position: absolute;
	content: "知的";
	color: #fff;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#front #sec-about .age {
	margin-top: 22px;
	font-size: 18px;
}

/* #sec-member */
#front #sec-member {
	padding: 100px 0;
}
#front #sec-member ul {
	justify-content: space-between;
	flex-wrap: wrap;
}
#front #sec-member ul li {
	text-align: center;
	width: 50%;
	padding-top: 50px;
}
#front #sec-member ul li img {
	display: inline-block;
	width: 230px;
	height: 230px;
	border-radius: 50%;
	object-fit: cover;
}
#front #sec-member .position {
	margin-top: 20px;
	font-size: 18px;
}
#front #sec-member .name {
	margin-top: 10px;
	font-size: 24px;
}
#front #sec-member .desc {
	text-align: left;
	margin-top: 10px;
}
@media screen and (max-width: 1119px) {
	#front #sec-member .desc {
		text-align: center;
	}
}
@media screen and (min-width: 640px) {
	#front #sec-member .member-slider {
		display: none;
	}
}

/* #sec-company */
#front #sec-company .bg {
	width: 100%;
	height: auto;
	background: url("../img/front/company_bg.jpg") no-repeat 20% 20% / cover;
	background-attachment: fixed;
}
#front #sec-company .transparent {
	width: 0%;
	height: auto;
}
#front #sec-company .wrapper {
	background-color: rgba(18, 48, 82, 0.6);
	width: 100%;
	height: auto;
}
#front #sec-company .wrapper .summary {
	width: 90%;
	margin: auto;
}
#front #sec-company .wrapper h2 {
	color: #fff;
	font-size: 48px;
	text-align: left;
	margin: 100px 0 0;
}
#front #sec-company .wrapper table {
	margin: 40px auto 100px;
}
#front #sec-company .wrapper table th,
#front #sec-company .wrapper table td {
	color: #fff;
	font-size: 24px;
	text-align: left;
	padding-left: 30px;
}
#front #sec-company .wrapper table tr th {
	width: 160px;
	height: 45px;
}
#front #sec-company .wrapper table tr:nth-of-type(2) th {
	height: 80px;
}
#front #sec-company .wrapper table td a {
	color: #fff;
	text-decoration: none;
}

/* #sec-access */
#front #sec-access {
	padding-top: 100px;
}
#front #sec-access h2 {
	font-size: 48px;
	color: #123052;
}
#front #sec-access p {
	font-size: 15px;
}
#front #sec-access .gmap {
	height: 0;
	overflow: hidden;
	padding-bottom: 43.52%;
	position: relative;
}
#front #sec-access .gmap iframe {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}
#front #sec-access .access-wrapper {
	margin-top: 50px;
}
#front #sec-access .address-info {
	position: relative;
	padding-left: 25px;
}
#front #sec-access .address-info::before {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	width: 1px;
	height: 75px;
	background-color: #123052;
}
#front #sec-access .access-wrapper .wrapper {
	flex-direction: column;
	margin-left: 205px;
}
#front #sec-access .tel-info {
	position: relative;
	margin-top: 40px;
}
#front #sec-access .tel-info::before {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	width: 1px;
	height: 75px;
	background-color: #123052;
}
#front #sec-access .access-info h3 {
	font-size: 22px;
	color: #123052;
}
#front #sec-access .tel-info h3,
#front #sec-access .hour-info h3 {
	font-size: 22px;
	color: #123052;
	padding-left: 25px;
}
#front #sec-access .tel-info p,
#front #sec-access .hour-info p {
	padding-left: 25px;
}
#front #sec-access .access-description {
	margin-top: 45px;
	display: block;
}
#front #sec-access .access-description li {
	padding-left: 20px;
	position: relative;
}
#front #sec-access .access-description li::before {
	font-family: "Font Awesome 5 Free";
	content: "\f0da";
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	position: absolute;
	left: 0;
	font-size: 25px;
}
#front #sec-access .access-description li:nth-child(2) {
	margin-top: 25px;
}
#front #sec-access .hour-info {
	position: relative;
}
#front #sec-access .hour-info::before {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	width: 1px;
	height: 75px;
	background-color: #123052;
}

/*=========================================================
===========================================================
===========================================================
archive-news
===========================================================
===========================================================
==========================================================*/
/* #archive-news .wrapper.type01 {
	margin-bottom: -50px;
} */
#archive-news .bg-gray {
	margin-bottom: -50px;
	padding: 80px 0;
}
#archive-news .container {
	padding: 40px 0;
}
#archive-news .box {
	width: 100%;
	flex-wrap: wrap;
	gap: 30px 40px;
}
#archive-news .archive-news-area {
	padding: 2em;
	background: #fff;
	/* border: 1px solid #123052; */
	/* box-shadow: 0 0 2px #123052; */
	box-sizing: border-box;
}
#archive-news .archive-news-area .news-list .entry {
	margin-bottom: 1em;
	line-height: 1.7;
	width: calc(50% - 8px);
}
#archive-news .archive-news-area .pagination.flex {
	justify-content: center;
	padding-top: 30px;
}
#archive-news .archive-news-area .pagination.flex .page-numbers {
	padding: 10px;
}
.archive footer {
	margin-top: 50px;
	background: rgba(232, 235, 237);
}
#archive-news .news-list .entry .img {
	width: 100%;
	padding-top: 63%;
	overflow: hidden;
}
#archive-news .news-list .entry .img img {
	top: 0;
	left: 0;
}
#archive-news .news-list .entry .post-data {
	margin: 10px 0 8px;
	justify-content: space-between;
	align-items: center;
}
#archive-news .news-list .entry .post-data time {
	color: #123052;
}
#archive-news .news-list .entry .post-data .news-cat {
	padding: 2px 15px;
	border-radius: 30px;
	box-sizing: border-box;
	margin: 5px 0;
	color: #fff;
	background-color: #123052;
	font-size: 14px;
}

/*アーカイブ*/
.archive .archive-title {
	margin-bottom: 30px;
	padding-bottom: 10px;
	border-bottom: 1px dotted #123052;
	box-sizing: border-box;
	color: #123052;
}
.archive .anual-archive-list li a {
	display: block;
	padding: 5px 20px;
	background: #fff;
	border: 1px solid #123052;
	border-radius: 30px;
	box-sizing: border-box;
	color: #123052;
}

/*=========================================================
===========================================================
===========================================================
single-news
===========================================================
===========================================================
==========================================================*/
/* #single-news .wrapper.type01 {
	margin-bottom: -50px;
} */
#single-news .bg-gray {
	margin-bottom: -50px;
}
#single-news .container {
	padding: 40px 0;
}
#single-news .news-area {
	margin: 40px auto;
	padding: 5% 3%;
	background-color: #fff;
	/* border: 1px solid #123052; */
	/* box-shadow: 0 0 2px #123052; */
	box-sizing: border-box;
	max-width: 1000px;
}
#single-news .article-title {
	text-align: center;
	margin-bottom: 30px;
	font-size: 24px;
}
#single {
	word-wrap: break-word;
}
#single p {
	line-height: 1.75;
	margin: 0 0 30px 0;
}
#single p:first-child {
	text-align: center;
}
#single img {
	display: inline;
	width: 100%;
	object-fit: cover;
}
.postlink {
	width: 240px;
	max-width: 100%;
	margin: 100px auto 0;
	justify-content: space-between;
}
.postlink * {
	color: #123052;
}
.single footer {
	margin-top: 50px;
	background: rgba(232, 235, 237);
}

/*=========================================================
===========================================================
===========================================================
page-works
===========================================================
===========================================================
==========================================================*/
.top-visual {
	width: 100%;
	height: 385px;
	background: url(../img/common/header_img.jpg) no-repeat center 65% / cover;
	margin-top: -120px;
	position: relative;
	z-index: -1;
}
.top-visual h2 {
	font-size: 48px;
	color: #fff;
	text-align: center;
	padding-top: 210px;
	text-shadow: 4px 3px 7px rgb(0 0 0);
}
.works-description {
	padding-top: 125px;
}
.works-description .flex {
	flex-wrap: wrap;
}
.works-description .work {
	width: calc(100% / 2 - 2vw / 2);
	height: 200px;
	box-sizing: border-box;
	margin-right: 2vw;
}
.works-description .work:nth-child(2n) {
	margin-right: 0;
}
.works-description .work:nth-child(3),
.works-description .work:nth-child(4),
.works-description .work:nth-child(5),
.works-description .work:nth-child(6) {
	margin-top: 2vw;
}
.works-description .work img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.works-description .work1,
.works-description .work2,
.works-description .work3,
.works-description .work4,
.works-description .work5,
.works-description .work6 {
	position: relative;
}
.works-description .work .mask {
	width: 100%;
	height: 100%;
	background-color: rgba(13, 47, 78, 0.45);
	position: absolute;
	top: 0;
	left: 0;
}
.works-description .work:hover .mask {
	opacity: 0;
}
.works-description .work .mask::before {
	content: "";
	width: 1px;
	height: 80%;
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.works-description .work .box {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	justify-content: space-between;
	align-items: center;
}
.works-description .work .box .work-icon {
	width: 50%;
	text-align: center;
}
.works-description .work:hover .box .work-icon {
	opacity: 0;
}
.works-description .work .box .work-icon img {
	width: 50%;
	height: auto;
	margin: auto;
}
.works-description .work .box h3 {
	width: 50%;
	font-size: 21px;
	color: #fff;
	text-align: center;
	line-height: 0.8;
}
.works-description .work:hover .box h3 {
	opacity: 0;
}
.works-description .work .box h3 span {
	display: block;
	color: #fff;
	font-size: 10px;
	font-weight: normal;
}
.works-description .work .mask2 {
	width: 100%;
	height: 100%;
	background-color: rgba(13, 47, 78, 0.95);
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: 0.5s ease;
}
.works-description .work:hover .mask2 {
	opacity: 1;
}
.works-description .work .mask2::before {
	content: "";
	width: 1px;
	height: 80%;
	background-color: #fff;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.works-description .work1 .mask2::before {
	left: 34%;
}
.works-description .work2 .mask2::before {
	left: 49.5%;
}
.works-description .work3 .mask2::before {
	left: 50.2%;
}
.works-description .work4 .mask2::before {
	left: 38.4%;
}
.works-description .work5 .mask2::before {
	left: 37.5%;
}
.works-description .work6 .mask2::before {
	left: 48%;
}
.works-description .work .work-description {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
.works-description .work:hover .work-description {
	opacity: 1;
	align-items: center;
}
.works-description .work .work-description h3 {
	font-size: 21px;
	color: #fff;
	text-align: center;
	line-height: 0.8;
}
.works-description .work1 .work-description h3 {
	width: 34%;
}
.works-description .work2 .work-description h3 {
	width: 49.5%;
}
.works-description .work3 .work-description h3 {
	width: 50.2%;
}
.works-description .work4 .work-description h3 {
	width: 38.4%;
}
.works-description .work5 .work-description h3 {
	width: 37.5%;
}
.works-description .work6 .work-description h3 {
	width: 48%;
}
.works-description .work:hover .work-description h3 {
	font-size: 21px;
	color: #fff;
	text-align: center;
	line-height: 0.8;
}
.works-description .work .work-description h3 span {
	display: block;
	color: #fff;
	font-size: 10px;
	font-weight: normal;
}
.works-description .work:hover .work-description h3 span {
	display: block;
	color: #fff;
	font-size: 10px;
	font-weight: normal;
}
.works-description .work .work-description ul {
	text-align: center;
}
.works-description .work:hover .work-description ul {
	text-align: center;
}
.works-description .work1 .work-description ul {
	width: 66%;
}
.works-description .work2 .work-description ul {
	width: 50.5%;
}
.works-description .work3 .work-description ul {
	width: 49.8%;
}
.works-description .work4 .work-description ul {
	width: 61.6%;
}
.works-description .work5 .work-description ul {
	width: 62.5%;
}
.works-description .work6 .work-description ul {
	width: 52%;
}
.works-description .work .work-description ul li {
	color: #fff;
	padding: 10px 0;
}

/*=========================================================
===========================================================
===========================================================
Page-flow
===========================================================
===========================================================
==========================================================*/
.flows .container ul {
	margin-top: 126px;
}
.flows .container ul li {
	background-color: #e8ebed;
	padding: 40px;
	align-items: center;
	position: relative;
}
.flows .container ul li:not(li:first-child) {
	margin-top: 140px;
}
.flows .container ul li:not(li:last-child)::after {
	content: "";
	width: 0;
	height: 0;
	border-left: 33px solid transparent;
	border-right: 33px solid transparent;
	border-top: 33px solid #123052;
	position: absolute;
	left: 50%;
	bottom: -90px;
	transform: translate(-50%, 0);
}
.flows .container ul li .flow-icon {
	width: 27.8%;
	text-align: center;
}
.flows .container ul li .flow-icon p {
	width: 122px;
	height: 37px;
	background-color: #ffee00;
	border-radius: 50px;
	margin: auto;
	line-height: 37px;
	font-size: 24px;
}
.flows .container ul li .flow-icon img {
	display: inline;
	margin-top: 14px;
}
.flows .container ul li .flow-icon .step1-icon {
	width: 95px;
}
.flows .container ul li .flow-icon .step2-icon {
	width: 130px;
}
.flows .container ul li .flow-icon .step3-icon {
	width: 130px;
}
.flows .container ul li .flow-icon .step4-icon {
	width: 130px;
	margin-left: 30px;
}
.flows .container ul li .flow-icon .step5-icon {
	width: 80px;
}
.flows .container ul li .flow-text {
	width: 72.2%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.flows .container ul li .flow-text h2 {
	font-size: 36px;
	color: #123052;
	line-height: 1;
}
.flows .container ul li .flow-text p:first-of-type {
	font-size: 21px;
	color: #123052;
	line-height: 1;
	margin-top: 25px;
}
.flows .container ul li .flow-text p:nth-of-type(2) {
	margin-top: 20px;
	font-size: 18px;
	line-height: 1.75;
}

/*=========================================================
===========================================================
===========================================================
contact お問い合わせページ
===========================================================
===========================================================
==========================================================*/
#contact .form {
	margin-top: 0;
	margin-bottom: -125px;
}
#contact .form .container {
	max-width: 705px;
}
#contact .form dl {
	padding-top: 100px;
}
#contact .form dl .group:not(.group:last-of-type) {
	display: flex;
}
#contact .form dl .group:not(.group:first-of-type) {
	margin-top: 80px;
}
#contact .form dl .group dt .required {
	font-family: "小塚ゴシック Pro", "Kozuka Gothic Pro", sans-serif;
	font-size: 15px;
	font-weight: normal;
	color: #123052;
}
#contact .form dl .group dt {
	width: 120px;
}
#contact .form dl .group dt .title {
	font-size: 21px;
}
.wpcf7-list-item {
	margin-left: 70px;
}
.wpcf7-list-item:first-of-type {
	margin-left: 0;
	margin-top: 24px;
}
#contact .form dl .group dd .wpcf7-list-item-label {
	font-size: 17px;
	margin-top: 25px;
}
#contact .form dl .group dd {
	flex: 1;
}
#contact .form dl .group:not(.group:first-of-type) dd {
	background: #fff;
	width: 100%;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
	width: 100%;
	height: 54px;
	padding: 20px;
	box-sizing: border-box;
}
#contact .form dl .group.t-area {
	width: 100%;
}
#contact .form dl .group.t-area dd {
	margin-top: 28px;
	height: 298px;
}
#contact .form .group.t-area textarea {
	width: 100%;
	height: 298px;
	padding: 20px;
	box-sizing: border-box;
	resize: none;
}
#contact .submit-btn-area {
	padding: 100px 0 130px;
	display: flex;
	justify-content: center;
}
#contact .submit-btn-area .submit-label {
	width: 177px;
	height: 54px;
}
#contact .submit-btn-area input {
	color: #fff;
	background-color: #123052;
	font-size: 23px;
	padding: 10px 65px;
	border-radius: 30px;
}
.page-id-8 .footer-wrapper {
	background: rgba(232, 235, 237);
}
.wpcf7-spinner {
	display: none !important;
}
/*=========================================================
===========================================================
===========================================================
404 Page
===========================================================
===========================================================
==========================================================*/
.error404 .top-visual {
	height: 100vh;
}
.error404 .container {
	text-align: center;
}
.error404 h2 {
	font-size: 100px;
}
.error404 h3 {
	color: #fff;
	margin-top: 70px;
	font-size: 32px;
}
.error404 .notice {
	color: #fff;
	font-size: 25px;
	padding: 30px 0 60px;
}
.error404 .link-to-top-page {
	color: #fff;
	background: #123052;
	padding: 20px;
	border-radius: 50px;
}
.error404 footer {
	margin-top: -30px;
}
