/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */

* {
	box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
	border: 0;
	font: inherit;
	font-size: 100%;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

html {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

li,
dd {
	list-style-type: none;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
	display: block;
}

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

a {
	color: inherit;
	cursor: pointer;
	text-decoration: none;
}

body {
	background: #F9F9F9;
	color: #333333;
	font-family: "Noto Sans CJK JP", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
}

body h1 {
	font-size: 48px;
}

body h2 {
	font-size: 36px;
}

body h3 {
	font-size: 24px;
}

.l-inner {
	padding: 0 80px;
}

.l-utility-content {
	margin: auto;
	max-width: 1280px;
}

.c-utility-title {
	color: #333333;
	font-size: 2.5rem;
	font-size: 700;
	line-height: 0.7;
}

.c-utility-title span {
	color: #3d3d3d;
	font-size: 0.8125rem;
}

.btn .btn-link {
	background: #000;
	border: 1px solid #000;
	border-radius: 30px;
	display: inline-block;
	outline: none;
	overflow: hidden;
	padding: 13px 70px;
	position: relative; /*アニメーションの指定*/
	transition: ease 0.2s;
}

/*ボタン内spanの形状*/

.btn-link span {
	color: #fff;
	font-size: 0.9rem;
	position: relative;
	z-index: 3;
}

.btn-link:hover span {
	color: #000;
}

.btn-link:active span {
	color: #000;
}

/*== 背景が流れる（左から右） */

.btn-link:before {
	background: #fff;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transform: scale(0, 1);
	transform-origin: left top; /*アニメーション*/
	transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1);
	width: 100%;
	z-index: 2;
}

/*hoverした際の形状*/

.btn-link:hover:before {
	transform: scale(1, 1);
	transform-origin: left top;
}

.btn-link:active:before {
	transform: scale(1, 1);
	transform-origin: left top;
}

.btn .btn-link_b {
	background: #333;
	border: 1px solid #000;
	display: inline-block;
	outline: none;
	overflow: hidden;
	padding: 13px 70px;
	position: relative; /*アニメーションの指定*/
	transition: ease 0.2s;
}

/*ボタン内spanの形状*/

.btn-link_b span {
	color: #333;
	font-size: 0.9rem;
	position: relative;
	z-index: 3;
}

.btn-link_b:hover span {
	color: #fff;
}

/*== 背景が流れる（左から右） */

.btn-link_b:before {
	background: #333;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transform: scale(0, 1);
	transform-origin: left top; /*アニメーション*/
	transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1);
	width: 100%;
	z-index: 2;
}

/*hoverした際の形状*/

.btn-link_b:hover:before {
	transform: scale(1, 1);
	transform-origin: left top;
}

.btn-r {
	text-align: right;
}

.btn-c {
	text-align: center;
}

.btn-l {
	text-align: left;
}

.btn-c-b {
	background: #333;
	color: #fff;
	padding: 15px 80px 15px 40px;
}

.pages {
	display: none;
}

#loading {
	background-color: #fff;
	height: 100vh;
	left: 0;
	position: fixed;
	top: 0;
	transition: all 1s;
	transition-delay: 1.3s;
	width: 100vw;
	z-index: 100000;
}

.loaded {
	opacity: 0;
	visibility: hidden;
}

.spinner {
	color: #333;
	font-family: "Lato", sans-serif;
	font-size: 4rem;
	font-weight: 500;
	left: 50%;
	letter-spacing: 3px;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}

.spinner img {
	width: 200px;
}

header .header__inner {
	display: flex;
	justify-content: space-between;
	left: 80px;
	margin: auto;
	max-width: 1950px;
	padding: 40px 15px;
	position: fixed;
	right: 80px;
	top: 0;
	z-index: 1004;
}

header .header__inner .p-header__logo {
	z-index: 1000;
}

header .header__inner .p-header__logo a img {
	display: block;
	width: 130px;
}

header .header__inner .header__nav .header__link {
	font-weight: 700;
	letter-spacing: 0.48px;
	position: relative;
}

header .header__inner .header__nav .header__link::after { /*アニメーションの速度設定*/
	-webkit-transition: all 0.5s;
	background-color: #000;
	bottom: -5px;
	content: "";
	display: block;
	height: 2px;
	left: 0;
	position: absolute; /*幅を0に設定*/
	width: 0;
}

header .header__inner .header__nav .header__link:hover::after {
	width: 100%;
}

header .header__inner .header__nav .header__link:active::after {
	width: 100%;
}

header .header__inner .header__nav .header__button {
	background: #000;
	border-radius: 60px;
	color: #fff;
	display: inline-block;
	display: inline-block;
	font-weight: 700;
	letter-spacing: 0.48px;
	overflow: hidden;
	padding: 7px 30px;
	position: relative;
	transition: ease 0.2s;
}

header .header__inner .drawer-icon {
	background: transparent;
	height: 21px;
	position: relative;
	width: 36px;
	z-index: 1003;
}

header .header__inner .drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
	background: #fff;
	top: 10px;
	transform: rotate(40deg);
}

header .header__inner .drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
	background: #fff;
	top: 10px;
	transform: rotate(-40deg);
}

header .header__inner .drawer-icon .drawer-icon__bar {
	background: #333;
	border-radius: 6px;
	height: 2px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(50%);
	transition: transform 0.3s linear, top 0.3s linear;
	width: 40px;
	z-index: 1002;
}

header .header__inner .drawer-icon .drawer-icon__bar:nth-of-type(2) {
	top: 27px;
}

.drawer-content {
	background: #000;
	height: 100%;
	position: fixed;
	right: 0;
	top: 0;
	transform: translateX(100%);
	transition: transform 0.3s linear;
	z-index: 50;
	z-index: 1001;
}

.drawer-content.is-checked {
	transform: translateX(0);
}

.drawer-content .drawer-content__menu {
	color: #fff;
}

.drawer-content .drawer-content__menu .drawer-content__link {
	border-bottom: 1px solid #292929;
	display: block;
	font-weight: 700;
	letter-spacing: 0.48px;
	padding: 20px 0 14px 10px;
	text-align: left;
}

.drawer-content .drawer-content__menu .drawer-content__link:first-child {
	border-top: 1px solid #292929;
}

.drawer-content .drawer-content__menu .drawer-content__button {
	margin-top: 14px;
	text-align: left;
}

.drawer-content .drawer-content__menu .p-drawer__content-sns ul {
	display: flex;
	gap: 10px;
	margin-top: 50px;
}

.drawer-content .drawer-content__menu .p-drawer__content-sns ul li img {
	height: 30px;
	width: 30px;
}

.footer {
	background: #F0EFEF;
	margin-top: 200px;
}

.footer .p-footer__content {
	margin: auto;
	max-width: 1280px;
	padding: 50px 0 100px;
}

.footer .p-footer__content .p-footer__content-logo img {
	height: auto;
	width: 100px;
}

.footer .p-footer__content .p-footer__content-nav {
	margin-top: 50px;
}

.footer .p-footer__content .p-footer__content-nav ul {
	grid-gap: 15px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	width: 25%;
}

.footer .p-footer__content .p-footer__content-nav ul li {
	color: #333;
	font-size: 1.2rem;
	white-space: nowrap;
}

.footer .p-footer__content .p-footer__content-nav ul li a {
	position: relative;
}

.footer .p-footer__content .p-footer__content-nav ul li a::after { /*アニメーションの速度設定*/
	-webkit-transition: all 0.5s;
	background-color: #000;
	bottom: -5px;
	content: "";
	display: block;
	height: 2px;
	left: 0;
	position: absolute; /*幅を0に設定*/
	width: 0;
}

.footer .p-footer__content .p-footer__content-nav ul li a:hover::after {
	width: 100%;
}

.footer .p-footer__content .p-footer__content-nav ul li a:active::after {
	width: 100%;
}

.footer .p-footer__content .p-footer__content-sns {
	margin-top: 50px;
}

.footer .p-footer__content .p-footer__content-sns ul {
	display: flex;
	gap: 20px;
}

.footer .p-footer__content .p-footer__content-sns ul li img {
	height: 60px;
	width: 60px;
}

.footer .p-footer__content .p-footer__content-sns ul li img:hover {
	opacity: 0.7;
}

.footer .p-footer__content .p-footer__content-sns ul li img:active {
	opacity: 0.7;
}

.footer .footer-copy-right {
	color: #000;
	font-size: 0.9rem;
	padding-bottom: 12px;
	text-align: center;
}

.p-fv {
	height: 100vh;
	position: relative;
}

.p-fv .p-fv__content .p-fv__content-text {
	left: 7%;
	position: absolute;
	top: 30%;
	z-index: 1;
}

.p-fv .p-fv__content .p-fv__content-text h1 {
	font-size: 4.375rem;
	font-weight: 700;
	letter-spacing: 5px;
	line-height: 1.7;
}

.p-fv .p-fv__content .p-fv__content-text h1 span {
	letter-spacing: -25px;
}

.p-fv .p-fv__content .p-fv__content-img {
	position: absolute;
	right: 5%;
	top: 14%;
	width: 45%;
	z-index: 0;
}

.p-fv .p-fv__content .p-fv__content-img img {
	filter: drop-shadow(0px 0px 0px #393939);
}

.news {
	margin-top: 110px;
	padding: 70px 100px;
}

.news .p-news-content {
	margin-bottom: 60px;
	margin-top: 100px;
}

.news .p-news-content .p-news-content__item {
	display: flex;
	margin-top: 40px;
	position: relative;
}

.news .p-news-content .p-news-content__item:hover {
	opacity: 0.7;
}

.news .p-news-content .p-news-content__item::before {
	background: url(../img/a_r.png) no-repeat center center/contain;
	content: "";
	height: 24px;
	position: absolute;
	right: 20px;
	top: -10px;
	width: 24px;
}

.news .p-news-content .p-news-content__item .p-news-content__item-date {
	color: #3d3d3d;
	font-size: 0.8125rem;
	margin-right: 40px;
	padding-top: 5px;
}

.news .p-news-content .p-news-content__item .p-news-content__item-tc {
	width: 100%;
}

.news .p-news-content .p-news-content__item .p-news-content__item-tc .p-news-content__item-tc-title {
	border-bottom: 1px solid #E1E1E1;
	color: #333333;
	font-size: 1.125rem;
	padding-bottom: 8px;
}

.news .p-news-content .p-news-content__item .p-news-content__item-tc .p-news-content__item-tc-text {
	margin-top: 8px;
}

.news .p-news-content .p-news-content__item .p-news-content__item-tc .p-news-content__item-tc-text a {
	background: #ECECEC;
	border-radius: 3px;
	font-size: 0.75rem;
	font-weight: 400;
	margin-right: 10px;
	padding: 0 9px 1px;
	pointer-events: none;
}

.news .p-news-content-archive {
	margin-bottom: 60px;
	margin-top: 100px;
}

.news .p-news-content-archive .p-news-content__item-archive {
	display: flex;
	margin-top: 40px;
	position: relative;
}

.news .p-news-content-archive .p-news-content__item-archive::before {
	background: url(../img/a_r.png) no-repeat center center/contain;
	content: "";
	height: 24px;
	position: absolute;
	right: 20px;
	top: -10px;
	width: 24px;
}

.news .p-news-content-archive .p-news-content__item-archive .p-news-content__item-date-archive {
	color: #cccccc;
	font-size: 0.8125rem;
	margin-right: 40px;
	padding-top: 5px;
}

.news .p-news-content-archive .p-news-content__item-archive .p-news-content__item-tc-archive {
	width: 100%;
}

.news .p-news-content-archive .p-news-content__item-archive .p-news-content__item-tc-archive .p-news-content__item-tc-title-archive {
	border-bottom: 1px solid #E1E1E1;
	color: #333333;
	font-size: 1.125rem;
	padding-bottom: 8px;
}

.news .p-news-content-archive .p-news-content__item-archive .p-news-content__item-tc-archive .p-news-content__item-tc-text-archive {
	margin-top: 8px;
}

.news .p-news-content-archive .p-news-content__item-archive .p-news-content__item-tc-archive .p-news-content__item-tc-text-archive a {
	background: #ECECEC;
	border-radius: 3px;
	font-size: 0.75rem;
	font-weight: 400;
	margin-right: 10px;
	padding: 0 9px 1px;
	pointer-events: none;
}

.p-single-news-content .p--single-news-content__item {
	display: flex;
	margin-top: 100px;
}

.p-single-news-content .p--single-news-content__item .p-single-news-content__item-date {
	color: #cccccc;
	font-size: 1rem;
	margin-right: 20px;
}

.p-single-news-content .p--single-news-content__item .p-news-single-content__item-tc-text a {
	background: #ECECEC;
	border-radius: 3px;
	font-size: 0.75rem;
	font-weight: 400;
	margin-right: 10px;
	padding: 0 9px 1px;
	pointer-events: none;
}

.p-single-news-content .p-single-news-content__item-tc-title {
	border-bottom: 1px solid #E1E1E1;
	color: #333333;
	font-size: 1.8125rem;
	margin-top: 30px;
	padding-bottom: 8px;
}

.p-single-news-content .p-single-news-content__item-tc-img {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}

.p-single-news-content .p-single-news-content__item-tc-img img {
	width: 100%;
}

.p-single-news-content .p-single-news-content__item-ex {
	word-wrap: break-word;
	margin-bottom: 100px;
	margin-top: 80px;
}

.navigation {
	margin-top: 100px;
	text-align: center;
}

.navigation .page {
	border: 1px solid #333333;
	color: #808080;
}

.navigation .wp-pagenavi a {
	margin: 10px;
	padding: 3px 9px;
	text-decoration: none;
}

.navigation .current {
	background: #D9D9D9;
	border: none;
	color: #fff;
	padding: 4px 10px;
}

.navigation .previouspostslink {
	border: none;
}

.navigation .nextpostslink {
	border: none;
}

.contents {
	background: #f0efef;
	margin-top: 100px;
	padding: 10px 0 150px;
}

.contents .p-contents-content {
	margin-top: 100px;
}

.contents .p-contents-content .p-contents-content__item {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	margin-top: 80px;
	width: 100%;
}

.contents .p-contents-content .p-contents-content__item .p-contents-content__item-box {
	background: #fff;
	color: #333333;
	height: 160px;
	line-height: 1.1;
	overflow: hidden;
	padding: 40px 0 40px 45px;
	position: relative;
	transition: ease 0.2s;
	width: 26%; /*hoverした際の形状*/
}

.contents .p-contents-content .p-contents-content__item .p-contents-content__item-box:hover {
	background: #000;
	color: #fff;
	position: relative;
	z-index: 100;
}

.contents .p-contents-content .p-contents-content__item .p-contents-content__item-box:hover span {
	color: #fff;
	position: relative;
	z-index: 3;
}

.contents .p-contents-content .p-contents-content__item .p-contents-content__item-box::before {
	background: #000;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transform: scale(0, 1);
	transform-origin: left top; /*アニメーション*/
	transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1);
	width: 100%;
	z-index: 2;
}

.contents .p-contents-content .p-contents-content__item .p-contents-content__item-box:hover:before {
	transform: scale(1, 1);
	transform-origin: left top;
}

.contents .p-contents-content .p-contents-content__item .p-contents-content__item-box .content__text {
	font-size: 1.625rem;
}

.contents .p-contents-content .p-contents-content__item .p-contents-content__item-box span {
	color: #3d3d3d;
	font-size: 0.75rem;
	position: relative;
	z-index: 3;
}

.company {
	margin-top: 100px;
}

.company .p-company-content {
	margin-top: 50px;
}

.company .p-company-content table {
	border-collapse: collapse;
	width: 100%;
}

.company .p-company-content table tr {
	border-bottom: 1px solid #cccccc;
	white-space: nowrap;
}

.company .p-company-content table tr td {
	padding: 37px 70px 15px 0;
	white-space: nowrap;
}

.company .p-company-content table tr td:nth-child(2) {
	padding-right: 0;
}

.company .p-company-content table tr .t-t {
	font-size: 1.1rem;
	font-weight: 700;
}

#border_none {
	border-bottom: none;
}

.mission {
	margin: auto;
	margin-top: 200px;
	max-width: 1360px;
}

.mission .p-mission-content .p-mission-content__item-descr {
	display: flex;
}

.mission .p-mission-content .p-mission-content__item-descr .c-utility-title {
	margin-right: 100px;
}

.mission .p-mission-content .p-mission-content__item-descr .p-mission-content__item-text {
	border-left: 1px solid #E1E1E1;
	letter-spacing: 1px;
	padding-left: 100px;
}

.mission .p-mission-content .p-mission-content__item-descr .p-mission-content__item-text .p-mission-title {
	font-size: 1.75rem;
	font-weight: 700;
}

.mission .p-mission-content .p-mission-content__item-descr .p-mission-content__item-text .p-mission-text {
	font-size: 1rem;
	letter-spacing: 3%;
	line-height: 1.3;
	margin-top: 40px;
}

.mission .p-mission-content .p-mission-content__item-descr .p-mission-content__item-text .p-mission-text p {
	line-height: 1.7;
	margin-top: 70px;
}

.mission .p-mission-content .p-mission-content__item-descr .p-mission-content__item-text .p-mission-text p span {
	font-size: 1.25rem;
	font-weight: 700;
}

.mission .p-mission-content .p-mission-content__item-descr .p-mission-content__item-text .p-mission-text .toc {
	background: #fff;
	display: inline-flex;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.5;
	margin-top: 20px;
	padding: 20px;
}

.mission .p-mission-content .p-mission-content__item-descr .p-mission-content__item-text .p-mission-text .p-mission-text-title {
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 0.7;
	margin-top: 100px;
}

.mission .p-mission-content .p-mission-content__item-descr .p-mission-content__item-text .p-mission-text .p-mission-text-title span {
	font-size: 1.125rem;
	font-weight: normal;
}

.mission .p-mission-content .p-mission-content__item-intro {
	align-items: center;
	border: 1px solid #E1E1E1;
	display: flex;
	gap: 115px;
	justify-content: center;
	margin-top: 100px;
	padding: 120px 30px;
}

.mission .p-mission-content .p-mission-content__item-intro .p-mission-content__item-intro-img img {
	height: auto;
	width: 255px;
}

.mission .p-mission-content .p-mission-content__item-intro .p-mission-content__item-intro-img .p-mission-content__item-intro-text-sns ul {
	display: flex;
	gap: 10px;
	justify-content: right;
	margin-top: 10px;
}

.mission .p-mission-content .p-mission-content__item-intro .p-mission-content__item-intro-img .p-mission-content__item-intro-text-sns ul li a img {
	height: 30px;
	width: 30px;
}

.mission .p-mission-content .p-mission-content__item-intro .p-mission-content__item-intro-text .p-mission-content__item-intro-text-title {
	font-size: 1.75rem;
	letter-spacing: 3%;
}

.mission .p-mission-content .p-mission-content__item-intro .p-mission-content__item-intro-text .p-mission-content__item-intro-text-title span {
	font-size: 0.9rem;
	letter-spacing: 1.2px;
	padding-left: 50px;
}

.mission .p-mission-content .p-mission-content__item-intro .p-mission-content__item-intro-text .p-mission-content__item-intro-text-text {
	letter-spacing: 3%;
	line-height: 1.5;
	margin-bottom: 40px;
	margin-top: 35px;
}

.mission .p-mission-content .p-mission-content__item-intro .p-mission-content__item-intro-text .btn {
	text-align: center;
}

.blog {
	margin-top: 180px;
}

.blog .p-blog-content {
	display: flex;
	justify-content: space-between;
	margin: auto;
	max-width: 1120px;
}

.blog .p-blog-content .p-blog-content__left {
	width: 800px;
}

.blog .p-blog-content .p-blog-content__left ul {
	-moz-column-gap: 20px;
	column-gap: 20px;
	display: flex;
	flex-wrap: wrap;
	row-gap: 50px;
}

.blog .p-blog-content .p-blog-content__left ul li {
	width: 45%;
}

.blog .p-blog-content .p-blog-content__left ul li:hover {
	opacity: 0.7;
}

.blog .p-blog-content .p-blog-content__left ul li:active {
	opacity: 0.7;
}

.outline .outline__date {
	color: #808080;
	font-size: 0.75rem;
	margin-top: 5px;
}

.outline .outline__category {
	margin-top: 5px;
}

.outline .outline__category a {
	background: #ECECEC;
	border-radius: 3px;
	font-size: 0.75rem;
	font-weight: 400;
	margin-right: 10px;
	padding: 2px 10px;
	pointer-events: none;
}

.outline .outline__category a:first-child {
	display: none;
}

.outline .outline__title {
	font-size: 1.125rem;
	margin-top: 2px;
}

.p-single-blog-content .p-single-blog-content__item {
	display: flex;
	margin-top: 100px;
}

.p-single-blog-content .p-single-blog-content__item .p-single-blog-content__item-date {
	color: #cccccc;
	font-size: 1rem;
	margin-right: 20px;
}

.p-single-blog-content .p-single-blog-content__item .p-single-blog-content__item-tc-text a {
	background: #ECECEC;
	border-radius: 3px;
	font-size: 0.75rem;
	font-weight: 400;
	margin-right: 10px;
	padding: 2px 10px;
	pointer-events: none;
}

.p-single-blog-content .p-single-blog-content__item-tc-title {
	border-bottom: 1px solid #E1E1E1;
	color: #333333;
	font-size: 1.8125rem;
	margin-top: 30px;
	padding-bottom: 8px;
}

.p-single-blog-content .p-single-blog-content__item-tc-img {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}

.p-single-blog-content .p-single-blog-content__item-tc-img img {
	width: 100%;
}

.p-single-blog-content .p-single-blog-content__item-ex {
	word-wrap: break-word;
	margin-bottom: 100px;
	margin-top: 80px;
}

.p-single-blog-content .p-single-blog-content__item-ex h2 {
	border-bottom: 2px solid #000;
	font-weight: 700;
	margin-top: 100px;
	margin-top: 70px;
	padding-bottom: 5px;
}

.p-single-blog-content .p-single-blog-content__item-ex h3 {
	border-bottom: 2px solid #000;
	font-weight: 700;
	margin-top: 100px;
	padding-bottom: 5px;
}

.p-single-blog-content .p-single-blog-content__item-ex p {
	font-size: 1.1rem;
	letter-spacing: 2px;
	margin-top: 30px;
}

.p-single-blog-content .p-single-blog-content__item-ex #toc_container {
	border: 1px solid #000;
	margin-top: 54px;
	padding: 0 30px 20px;
	width: 100% !important;
}

.p-single-blog-content .p-single-blog-content__item-ex #toc_container .toc_title {
	font-size: 1.4rem;
	font-weight: 700;
}

.p-single-blog-content .p-single-blog-content__item-ex #toc_container ul li {
	margin-top: 20px;
}

.p-single-blog-content .p-single-blog-content__item-ex #toc_container ul li a {
	font-size: 1.1rem;
	line-height: 1.5;
}

.p-blog-content__right {
	width: 270px;
}

.p-blog-content__right .widget form {
	position: relative;
}

.p-blog-content__right .widget form .search-field {
	border: 1px solid #D9D9D9;
	border-radius: 3px;
	font-size: 1.125rem;
	padding: 13px 20px 10px;
	width: 100%;
}

.p-blog-content__right .widget form::before {
	background: url(../img/ic_form.png) no-repeat center center/contain;
	content: "";
	height: 22px;
	position: absolute;
	right: 40px;
	top: 50%;
	transform: translateY(-50%);
	width: 22px;
}

.p-blog-content__right .category {
	margin-top: 30px;
}

.p-blog-content__right .category .p-blog-category__title {
	border-bottom: 1px solid #000;
	font-size: 1.125rem;
	padding-bottom: 5px;
}

.p-blog-content__right .category .p-blog-category__content {
	padding: 15px 0 0 5px;
}

.p-blog-content__right .category .p-blog-category__content .category__name {
	background: #fff;
	border: 1px solid #D9D9D9;
	border-radius: 3px;
	display: inline-flex;
	font-size: 0.75rem;
	font-weight: 400;
	margin-right: 10px;
	padding: 0 9px 1px;
}

.p-blog-content__right .recom {
	margin-top: 30px;
}

.p-blog-content__right .recom .p-blog-recom__title {
	border-bottom: 1px solid #000;
	font-size: 1.125rem;
	padding-bottom: 5px;
}

.p-blog-content__right .recom .p-blog-recom__content {
	margin-top: 20px;
}

.p-blog-content__right .recom .p-blog-recom__content ul li {
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
}

.p-blog-content__right .recom .p-blog-recom__content ul li .post-thumbnail img {
	-o-object-fit: cover;
	height: auto;
	object-fit: cover;
	width: 100%; /* 画像を均等に表示 */
}

.p-blog-content__right .recom .p-blog-recom__content ul li .post-details .post-date {
	color: #808080;
	font-size: 0.75rem;
	margin-top: 10px;
}

.p-blog-content__right .recom .p-blog-recom__content ul li .post-details .post-title {
	color: #000;
	font-size: 1rem;
}

.business {
	margin: auto;
	margin-top: 200px;
	max-width: 1360px;
}

.business .p-business-content .p-business-content__item-descr {
	display: flex;
}

.business .p-business-content .p-business-content__item-descr .c-utility-title {
	margin-right: 100px;
}

.business .p-business-content .p-business-content__item-descr .p-business-content__item-text {
	border-left: 1px solid #E1E1E1;
	padding-left: 100px;
}

.business .p-business-content .p-business-content__item-descr .p-business-content__item-text .p-business-title {
	font-size: 1.75rem;
}

.business .p-business-content .p-business-content__item-descr .p-business-content__item-text .p-business-text {
	font-size: 1rem;
	letter-spacing: 3%;
	line-height: 32px;
	margin-top: 40px;
}

.business .p-business-content .p-business-content__items {
	margin: auto;
	margin-top: 90px;
	max-width: 880px;
}

.business .p-business-content .p-business-content__items .p-business-content__item {
	background: #fff;
	letter-spacing: 2px;
	margin-top: 40px;
	padding: 35px 40px;
	position: relative;
}

.business .p-business-content .p-business-content__items .p-business-content__item::before {
	background: url(../img/a_r_bu.png) no-repeat center center/contain;
	border-radius: 50%;
	content: "";
	height: 60px;
	position: absolute;
	right: 55px;
	top: 50%;
	transform: translateY(-50%);
	width: 60px;
}

.business .p-business-content .p-business-content__items .p-business-content__item:hover::before {
	opacity: 0.7;
}

.business .p-business-content .p-business-content__items .p-business-content__item .p-business-content__item-title {
	border-bottom: 1px solid #CCCCCC;
	font-size: 1.5rem;
	font-weight: 700;
	padding-bottom: 13px;
	width: 80%;
}

.business .p-business-content .p-business-content__items .p-business-content__item .p-business-content__item-text {
	padding-top: 17px;
}

.business .p-business-content .p-business-content__items .p-business-content__item .p-business-content__item-text ul {
	color: #6D6D6D;
	display: flex;
	gap: 25px;
}

.resk {
	margin-top: 155px;
}

.resk .p-resk-content {
	background: #fff;
	margin: auto;
	max-width: 1120px;
	padding: 70px 40px;
}

.resk .p-resk-content .p-resk-content__maintext .p-resk-content__title {
	border-bottom: 1px solid #cccccc;
	font-size: 1.875rem;
	font-weight: 700;
	padding-bottom: 12px;
}

.resk .p-resk-content .p-resk-content__maintext .p-resk-content__item-text {
	color: #6D6D6D;
	font-size: 0.875rem;
	padding-top: 13px;
}

.resk .p-resk-content .p-resk-content__items .p-resk-content__items-item {
	margin-top: 70px;
}

.resk .p-resk-content .p-resk-content__items .p-resk-content__items-item .p-resk-content__items-item-descr {
	margin-top: 30px;
}

.resk .p-resk-content .p-resk-content__items .p-resk-content__items-item .p-resk-content__items-item-descr .p-resk-content__items-item-title {
	border-left: 2px solid #D9D9D9;
	font-size: 1.875rem;
	font-weight: 700;
	padding-left: 18px;
}

.resk .p-resk-content .p-resk-content__items .p-resk-content__items-item .p-resk-content__items-item-descr .p-resk-content__items-item-text {
	font-size: 0.8rem;
}

.resk .p-resk-content .p-resk-content__items .p-resk-content__items-item .p-resk-content__items-item-descr .p-resk-content__items-item-reasons {
	display: flex;
	gap: 35px;
	justify-content: center;
	margin-top: 50px;
}

.resk .p-resk-content .p-resk-content__items .p-resk-content__items-item .p-resk-content__items-item-descr .p-resk-content__items-item-benefits {
	margin-top: 50px;
	padding: 0 50px;
}

.resk .p-resk-content .p-resk-content__items .p-resk-content__items-item .p-resk-content__items-item-descr .p-resk-content__items-item-benefits .p-resk-content__items-item-benefits-1 {
	align-items: center;
	display: flex;
	gap: 30px;
	margin-bottom: 40px;
}

.resk .p-resk-content .p-resk-content__items .p-resk-content__items-item .p-resk-content__items-item-descr .p-resk-content__items-item-benefits .p-resk-content__items-item-benefits-1 .p-resk-content__items-item-benefits-number {
	border-right: 1px solid #cccccc;
	color: #808080;
	font-size: 3.125rem;
	padding-right: 30px;
	white-space: nowrap;
}

.resk .p-resk-content .p-resk-content__items .p-resk-content__items-item .p-resk-content__items-item-descr .p-resk-content__items-item-benefits .p-resk-content__items-item-benefits-1 .p-resk-content__items-item-benefits-title {
	font-size: 1.375rem;
	white-space: nowrap;
}

.resk .p-resk-content .p-resk-content__items .p-resk-content__items-item .p-resk-content__items-item-descr .p-resk-content__items-item-benefits .p-resk-content__items-item-benefits-1 .resk-title-1 {
	padding-right: 25px;
}

.resk .p-resk-content .p-resk-content__items .p-resk-content__items-item .p-resk-content__items-item-descr .p-resk-content__items-item-benefits .p-resk-content__items-item-benefits-1 .p-resk-content__items-item-benefits-text {
	font-size: 0.875rem;
}

.resk .p-resk-content__service {
	margin-top: 80px;
}

.resk .p-resk-content__service .p-resk-content__service-title {
	border-left: 2px solid #D9D9D9;
	font-size: 1.875rem;
	font-weight: 700;
	padding-left: 18px;
}

.resk .p-resk-content__service .p-resk-content__service-img {
	margin-top: 70px;
	text-align: center;
}

.resk .p-resk-content__service .p-resk-content__service-img img {
	width: 90%;
}

.resk .resk-qa {
	margin: auto;
	max-width: 800px;
	text-align: center;
}

.resk .resk-qa .resk-qa__title {
	color: #808080;
	font-size: 1.375rem;
	margin-top: 65px;
}

.resk .resk-qa .resk-qa__descr {
	background: #fff;
	font-size: 1.125rem;
	font-weight: 700;
	margin: auto;
	margin-top: 35px;
	max-width: 880px;
	padding: 10px 20px;
	text-align: left;
}

.resk .resk-qa .resk-qa__text {
	color: #808080;
	margin-top: 15px;
	padding: 0 20px;
	text-align: left;
}

.work {
	margin: auto;
	margin-top: 200px;
	max-width: 1360px;
}

.work .p-work-content .p-work-content__items {
	display: grid; /* 二列で並べる場合 */
	gap: 20px;
	grid-template-columns: repeat(2, 1fr);
	margin: 60px auto 0;
	max-width: 900px;
}

.work .p-work-content .p-work-content__items .p-work-content__item {
	align-items: center;
	background: #fff;
	display: flex;
	height: 175px;
	margin-bottom: 20px;
	padding: 20px;
	width: 410px;
}

.work .p-work-content .p-work-content__items .p-work-content__item .p-work-content__item-img {
	align-items: center;
	display: flex;
	height: 135px;
	padding-right: 25px;
	width: 135px;
}

.work .p-work-content .p-work-content__items .p-work-content__item .p-work-content__item-text .p-work-content__item-text-title {
	font-size: 1rem;
}

.work .p-work-content .p-work-content__items .p-work-content__item .p-work-content__item-text .p-work-content__item-text-category {
	display: flex;
	gap: 20px;
	margin-top: 5px;
}

.work .p-work-content .p-work-content__items .p-work-content__item .p-work-content__item-text .p-work-content__item-text-category .p-work-content__item-text-category-c,
.work .p-work-content .p-work-content__items .p-work-content__item .p-work-content__item-text .p-work-content__item-text-category .p-work-content__item-text-category-s {
	border: 1px solid #000;
	padding: 0 10px;
}

.recruit {
	margin-top: 180px;
}

.recruit .p-recruit-content {
	margin: 0 auto 30px;
	max-width: 1120px;
	padding: 0 80px;
}

.recruit .p-recruit-items .p-recruit-items__fv {
	position: relative;
}

.recruit .p-recruit-items .p-recruit-items__fv .p-recruit-items__fv-img img {
	width: 100vw;
}

.recruit .p-recruit-items .p-recruit-items__fv .p-recruit-items__fv-descr {
	bottom: -30px;
	left: 0;
	position: absolute;
}

.recruit .p-recruit-items .p-recruit-items__fv .p-recruit-items__fv-descr .p-recruit-items__fv-descr-title {
	font-size: 3.4375rem;
	font-weight: 700;
	overflow: hidden;
}

.recruit .p-recruit-items .p-recruit-items__fv .p-recruit-items__fv-descr .p-recruit-items__fv-descr-title .recruit-title-1 {
	background: #fff;
	padding: 30px 60px 30px 90px;
	white-space: nowrap;
}

.recruit .p-recruit-items .p-recruit-items__fv .p-recruit-items__fv-descr .p-recruit-items__fv-descr-title .recruit-title-2 {
	background: #fff;
	padding: 20px 60px 60px 90px;
	white-space: nowrap;
}

.recruit .p-recruit-items .p-recruit-items__fv-sub {
	letter-spacing: 1px;
	margin-top: 160px;
	text-align: center;
}

.recruit .p-recruit-items .p-recruit-items__fv-sub p .r-t-1 {
	font-size: 1.3125rem;
}

.recruit .p-recruit-items .p-recruit-items__fv-sub p .r-t-2 {
	font-size: 1.5rem;
	font-weight: 700;
}

.recruit .p-recruit-items .p-recruit-items__day {
	margin-top: 100px;
	text-align: center;
}

.recruit .p-recruit-items .p-recruit-items__day img {
	height: auto;
}

.recruit .p-recruit-items .btn {
	margin-top: 120px;
}

.p-gallery {
	padding: 60px 0;
}

.p-gallery .p-gallery__inner .p-gallery__slider {
	margin-top: 30px;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper {
	background: #ECECEC;
	padding: 110px 0 70px 48px;
	position: relative;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .p-gallery__title {
	font-size: 1.8125rem;
	font-weight: 700;
	left: 7%;
	position: absolute;
	top: 27px;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .p-gallery__title::after {
	background: #333;
	color: #333;
	content: "";
	height: 2px;
	left: -100%;
	position: absolute;
	top: 25px;
	width: 115px;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .swiper-wrapper .swiper-slide a .p-gallery-card {
	margin-bottom: 100px;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .swiper-wrapper .swiper-slide a .p-gallery-card .p-gallery-card__image {
	display: flex;
	position: relative;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .swiper-wrapper .swiper-slide a .p-gallery-card .p-gallery-card__image::before {
	background: #fff;
	content: "";
	height: 400px;
	left: -48px;
	position: absolute;
	top: 70px;
	width: 970px;
	z-index: 997;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .swiper-wrapper .swiper-slide a .p-gallery-card .p-gallery-card__image img {
	height: 420px;
	width: 280px;
	z-index: 998;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .swiper-wrapper .swiper-slide a .p-gallery-card .p-gallery-card__image .p-gallery-card__descr {
	margin-left: 45px;
	z-index: 1100;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .swiper-wrapper .swiper-slide a .p-gallery-card .p-gallery-card__image .p-gallery-card__descr .p-gallery-card__descr-title {
	font-size: 1.125rem;
	margin-top: 10px;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .swiper-wrapper .swiper-slide a .p-gallery-card .p-gallery-card__image .p-gallery-card__descr .p-gallery-card__descr-title span {
	font-size: 1.9375rem;
	font-weight: 700;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .swiper-wrapper .swiper-slide a .p-gallery-card .p-gallery-card__image .p-gallery-card__descr .p-gallery-card__descr-text {
	font-size: 0.8125rem;
	margin-top: 20px;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .swiper-wrapper .swiper-slide a .p-gallery-card .p-gallery-card__image .p-gallery-card__descr .p-gallery-card__descr-text p {
	line-height: 2;
	max-width: 530px;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .swiper-wrapper .swiper-slide a .p-gallery-card .p-gallery-card__image .p-gallery-card__descr .p-gallery-card__descr-text span {
	border-bottom: 1px solid #333;
	font-size: 1.4rem;
	font-weight: 700;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .swiper-button-prev,
.p-gallery .p-gallery__inner .p-gallery__slider .swiper .swiper-button-next {
	background: #9c9b9b;
	border-radius: 30px;
	color: #ffffff;
	height: 50px;
	margin-top: 0;
	top: 45%;
	width: 50px;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .swiper-button-prev {
	left: 6%;
	rotate: 360deg;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .swiper-button-next {
	right: 6%;
}

.gallery__swiper {
	padding-bottom: 30px;
	padding-left: 48px;
}

.gallery__pagination {
	bottom: 0 !important;
	display: flex;
	gap: 9px;
	justify-content: center;
	padding-bottom: 40px;
}

.gallery__pagination .swiper-pagination-bullet {
	background: #bcbcbc;
	height: 10px;
	margin-left: 0 !important;
	margin-right: 0 !important;
	opacity: 1;
	width: 10px;
}

.gallery__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #333;
}

.gallery__prev::after,
.gallery__next::after {
	font-size: 1.4rem;
}

.gallery__prev {
	rotate: 180deg;
}

.p-recruit-items__day {
	background: #fff;
	padding: 110px 0 70px 48px;
	position: relative;
}

.p-recruit-items__day .p-recruit-items__day-title {
	font-size: 1.8125rem;
	font-weight: 700;
	left: 7%;
	position: absolute;
	top: 100px;
}

.p-recruit-items__day .p-recruit-items__day-title::after {
	background: #333;
	color: #333;
	content: "";
	height: 2px;
	left: -65%;
	position: absolute;
	top: 25px;
	width: 115px;
}

.p-recruit-items__day .p-recruit-items__day-img {
	margin: auto;
	margin-top: 150px;
	max-width: 750px;
}

.recruit-single .recruit-single__items {
	margin: 180px auto 0;
	max-width: 980px;
}

.recruit-single .recruit-single__items .recruit-single__items-item-1 {
	align-items: center;
	display: flex;
	justify-content: space-around;
}

.recruit-single .recruit-single__items .recruit-single__items-item-1 .recruit-single__items-item-img img {
	height: 420px;
	width: 280px;
}

.recruit-single .recruit-single__items .recruit-single__items-item-1 .recruit-single__items-item-descr {
	letter-spacing: 2px;
	text-align: center;
}

.recruit-single .recruit-single__items .recruit-single__items-item-1 .recruit-single__items-item-descr img {
	width: 100px;
}

.recruit-single .recruit-single__items .recruit-single__items-item-1 .recruit-single__items-item-descr h3 {
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.4;
	margin-top: 25px;
}

.recruit-single .recruit-single__items .recruit-single__items-item-1 .recruit-single__items-item-descr h3 span {
	color: #464646;
	font-size: 1rem;
	font-weight: normal;
}

.recruit-single .recruit-single__items .recruit-single__items-item-1 .recruit-single__items-item-descr p {
	color: #464646;
	font-size: 0.9rem;
	margin-top: 25px;
}

.recruit-single .recruit-single__items .recruit-single__items-item-2 {
	display: flex;
	justify-content: space-between;
	margin-top: 110px;
	width: 100%;
}

.recruit-single .recruit-single__items .recruit-single__items-item-2 .recruit-single__items-item-descr {
	width: 500px;
}

.recruit-single .recruit-single__items .recruit-single__items-item-2 .recruit-single__items-item-descr .recruit-single__items-item-descr-1 {
	letter-spacing: 2px;
}

.recruit-single .recruit-single__items .recruit-single__items-item-2 .recruit-single__items-item-descr .recruit-single__items-item-descr-1 .recruit-single__items-item-title {
	color: #515151;
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 20px;
}

.recruit-single .recruit-single__items .recruit-single__items-item-2 .recruit-single__items-item-descr .recruit-single__items-item-descr-1 .recruit-single__items-item-text {
	color: #464646;
	font-size: 0.9rem;
	margin-bottom: 30px;
}

.recruit-single .recruit-single__items .recruit-single__items-item-2 .recruit-single__items-item-img img {
	-o-object-fit: cover;
	height: 420px;
	object-fit: cover;
	width: 280px;
}

.recruit-single .recruit-single__items .recruit-single__items-item-3 {
	display: flex;
	justify-content: space-between;
	margin-top: 110px;
	width: 100%;
}

.recruit-single .recruit-single__items .recruit-single__items-item-3 .recruit-single__items-item-img img {
	-o-object-fit: cover;
	height: 420px;
	object-fit: cover;
	width: 280px;
}

.recruit-single .recruit-single__items .recruit-single__items-item-3 .recruit-single__items-item-descr {
	max-width: 500px;
}

.recruit-single .recruit-single__items .recruit-single__items-item-3 .recruit-single__items-item-descr .recruit-single__items-item-descr-1 {
	letter-spacing: 2px;
}

.recruit-single .recruit-single__items .recruit-single__items-item-3 .recruit-single__items-item-descr .recruit-single__items-item-descr-1 .recruit-single__items-item-title {
	color: #515151;
	font-size: 1.6rem;
	margin-bottom: 20px;
}

.recruit-single .recruit-single__items .recruit-single__items-item-3 .recruit-single__items-item-descr .recruit-single__items-item-descr-1 .recruit-single__items-item-text {
	color: #464646;
	font-size: 0.9rem;
	margin-bottom: 30px;
}

.recruit-single .btn {
	margin-top: 70px;
}

.text-container {
	display: none;
}

.careers {
	margin-top: 220px;
}

.careers .careers-fv {
	margin: auto;
	max-width: 1280px;
}

.careers .careers-fv .careers-content__title {
	font-size: 3.5rem;
	line-height: 0.7;
}

.careers .careers-fv .careers-content__title span {
	font-size: 1.3rem;
}

.careers .careers-fv .careers-content__text {
	font-size: 2.5rem;
	line-height: 1.5;
	margin-top: 100px;
}

.careers .careers-nav {
	margin-top: 150px;
	text-align: center;
}

.careers .careers-nav button {
	background: #fff;
	border: 1px solid #808080;
	color: #808080;
	font-size: 1.1rem;
	padding: 9px 29px;
}

.careers .careers-nav button:not(:last-child) {
	margin-right: 40px;
}

.careers .careers-content {
	margin: 80px auto 0;
	max-width: 800px;
}

.careers .careers-content .careers-items-content-all table {
	width: 100%;
}

.careers .careers-content .careers-items-content-all table tbody {
	border-bottom: 1px solid #000;
}

.careers .careers-content .careers-items-content-all table tbody tr td {
	border-bottom: 1px solid #000;
	color: #000;
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: 5px;
	line-height: 1.5;
	padding: 60px 50px 60px 0;
	white-space: nowrap;
}

.careers .careers-content .careers-items-content-all table tbody tr td span {
	font-size: 1.1rem;
	font-weight: normal;
	white-space: normal;
}

.careers .careers-content .careers-items-content-all table tbody tr td .footer-sns {
	margin-top: 50px;
}

.careers .careers-content .careers-items-content-all table tbody tr td .footer-sns a .ig {
	display: flex;
}

.careers .careers-content .careers-items-content-all table tbody tr td .footer-sns a .ig img {
	height: 30px;
	width: 30px;
}

.careers .careers-content .careers-items-content-all table tbody tr td .footer-sns a .ig p {
	color: #000;
	font-size: 1.3rem;
	padding-left: 20px;
}

/* 全幅指定 */

.full-width {
	margin: 200px auto 0;
	max-width: 880px;
}

/* 背景色（お好きな色に） */

/*  フォームの幅（自由に変えてOK） */

.contactForm {
	margin: auto;
	max-width: 660px;
}

/* 各項目の下部余白 */

.contact_item {
	margin-bottom: 30px;
}

/* 項目名 */

.label {
	display: block;
	font-size: 0.875rem;
	font-weight: bold;
	letter-spacing: 0.05em;
	line-height: 1.6;
}

.wpcf7-list-item-label {
	font-size: 0.8125rem;
}

input[type=checkbox i] {
	display: none;
}

input[type=checkbox i] + span {
	display: inline-block;
	padding-left: 28px;
	position: relative;
}

input[type=checkbox i] + span::after,
input[type=checkbox i] + span::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
}

input[type=checkbox i] + span::before {
	background-color: #fff;
	border: 1px solid #D9D9D9;
	border-radius: 50%;
	height: 16px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
}

input[type=checkbox i] + span::after {
	background-color: #808080;
	border: none;
	border-radius: 50%;
	display: none;
	height: 10px;
	left: 4px;
	top: 50%;
	transform: translateY(-50%);
	width: 10px;
}

input[type=checkbox i]:checked + span::after {
	display: block;
}

/* 必須タグと任意タグ共通のスタイル */

.label_tag {
	font-size: 13px;
	padding: 0 5px;
}

/* 必須タグ */

.label_must {
	color: #C84772;
}

/* 任意タグ */

/* 名前やメールアドレスなどユーザーが入力する箇所 */

.inputs {
	box-sizing: border-box;
	width: 100%;
}

input[type=text],
input[type=email],
input[type=tel] {
	border: solid 1px #D9D9D9;
	font-size: 0.8125rem;
	margin-top: -100px;
	padding: 0.5rem;
	width: 100%;
}

/* お問い合わせ内容を入力する箇所 */

textarea {
	border: solid 1px #D9D9D9;
	margin-top: -15px;
	padding: 0.5rem;
	resize: none;
	width: 100%;
}

textarea.form-control {
	font-size: 0.8125rem;
	height: 207px;
}

/* ボタン */

.btnArea {
	text-align: center;
}

.submit-btn-wrapper {
	text-align: center;
}

input[type=submit] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #333;
	border: none;
	color: #fff;
	cursor: pointer;
	font-size: 20px;
	font-weight: bold;
	padding: 20px 150px 20px 80px;
}

input[type=submit]:hover {
	background: #fff;
	box-shadow: 8px 8px 20px 0px #E0E0E0;
	color: #000;
}

.submit-btn {
	display: inline-flex; /*インラインブロック要素にする*/
	position: relative;
}

.submit-btn::before {
	background: url(../img/a_r_b.png) no-repeat center center/contain;
	color: #fff;
	content: "";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	height: 20px;
	position: absolute;
	right: 65px;
	top: 36%;
	transform: translateY(-50%);
	width: 20px;
}

.submit-btn:hover::before {
	background: url(../img/b_a.png) no-repeat center center/contain;
	content: "";
	height: 20px;
	position: absolute;
	right: 65px;
	top: 36%;
	transform: translateY(-50%);
	transition: transform 0.3s ease;
	width: 20px;
}

.contact_item-p {
	margin-bottom: 30px;
	text-align: center;
}

.contact_item-p a {
	border-bottom: 1px solid #0029FF;
	color: #0029FF;
	margin-right: 6px;
}

/* ローダー */

.wpcf7 .ajax-loader {
	display: block;
	margin: 0 auto;
}

.wpcf7-not-valid-tip {
	display: none;
}

/* デフォルトの値を削除 */

.wpcf7 {
	font-family: inherit;
	line-height: inherit;
}

.wpcf7-form-control {
	box-sizing: border-box;
	width: 100%;
}

.wpcf7-submit {
	cursor: pointer;
}

.wpcf7-response-output {
	margin: 2em 0.5em 1em;
	padding: 0.2em 1em;
}

/* ここまでデフォルトの値を削除 */

/* モバイル版 */

.privacy {
	margin: 200px auto 0;
	max-width: 880px;
}

.privacy .privacy-title {
	font-size: 1.625rem;
	text-align: center;
}

.privacy .privacy-content {
	margin-top: 100px;
}

.privacy .privacy-content p {
	font-size: 1.125rem;
}

.privacy .btn {
	margin-top: 100px;
}

.thanks-content {
	margin: 200px auto 150px;
	max-width: 1000px;
	text-align: center;
}

.thanks-content .thanks-content-items .thanks-content-title {
	color: #333333;
	font: 700 3.5rem/1 "Times New Roman", Times, serif;
	margin-bottom: 70px;
}

.thanks-content .thanks-content-items .thanks-content-text {
	font: 300 1.2rem/1 "Times New Roman", Times, serif;
	line-height: 1.5;
}

.snsmark {
	margin-top: 110px;
}

.snsmark .snsmark-content .snsmark-content__fv {
	position: relative;
}

.snsmark .snsmark-content .snsmark-content__fv img {
	height: auto;
	width: 100vw;
}

.snsmark .snsmark-content .snsmark-content__fv .snsmark-content__fv-explanation {
	color: #fff;
	left: 8%;
	position: absolute;
	top: 20%;
}

.snsmark .snsmark-content .snsmark-content__fv .snsmark-content__fv-explanation .snsmark-content__fv-title {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 0.8;
}

.snsmark .snsmark-content .snsmark-content__fv .snsmark-content__fv-explanation .snsmark-content__fv-title span {
	font-size: 1rem;
}

.snsmark .snsmark-content .snsmark-content__fv .snsmark-content__fv-explanation .snsmark-content__fv-text {
	font-size: 1.9rem;
	margin-top: 90px;
}

.snsmark .snsmark-content .snsmark-content__fv .snsmark-content__fv-explanation .snsmark-content__fv-descr {
	font-size: 0.875rem;
	margin-top: 25px;
}

.snsmark .snsmark-content .snsmark-content__items .snsmark-content__items-item {
	border-bottom: 1px solid #000;
	margin: auto;
	max-width: 980px;
	padding: 80px 0;
}

.snsmark .snsmark-content .snsmark-content__items .snsmark-content__items-item .snsmark-content__items-item-title {
	border-left: 1px solid #000;
	font-size: 0.9375rem;
	padding-left: 25px;
}

.snsmark .snsmark-content .snsmark-content__items .snsmark-content__items-item .snsmark-content__items-item-title span {
	font-size: 1.8rem;
	font-weight: 700;
}

.snsmark .snsmark-content .snsmark-content__items .snsmark-content__items-item .snsmark-content__items-item-text {
	margin-top: 30px;
}

.snsmark .snsmark-content .snsmark-content__items .snsmark-content__items-item-category {
	line-height: 2;
	margin-top: 30px;
}

.snsmark .snsmark-content .snsmark-content__items .snsmark-content__items-item-category span {
	background: #D9D9D9;
	border-radius: 30px;
	display: inline-flex;
	font-weight: 700;
	margin-bottom: 10px;
	margin-right: 10px;
	padding: 0 20px;
}

.snsmark .snsmark-content .snsmark-content__items .snsmark-content__items-item-contents {
	background: #F0EFEF;
	margin-top: 60px;
	padding: 0 80px;
}

.snsmark .snsmark-content .snsmark-content__items .snsmark-content__items-item-contents .snsmark-content__items-item-contents-1 {
	display: flex;
	padding: 50px 0;
}

.snsmark .snsmark-content .snsmark-content__items .snsmark-content__items-item-contents .snsmark-content__items-item-contents-1:not(:last-child) {
	border-bottom: 1px solid #000;
}

.snsmark .snsmark-content .snsmark-content__items .snsmark-content__items-item-contents .snsmark-content__items-item-contents-1 .snsmark-content__items-item-contents-1-title {
	font-size: 5.2rem;
	padding-right: 80px;
}

.snsmark .snsmark-content .snsmark-content__items .snsmark-content__items-item-contents .snsmark-content__items-item-contents-1 .snsmark-content__items-item-contents-1-text {
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.2;
}

.snsmark .snsmark-content .snsmark-content__items .snsmark-content__items-item-contents .snsmark-content__items-item-contents-1 .snsmark-content__items-item-contents-1-text span {
	font-size: 1rem;
}

.snsmark .snsmark-content .snsmark-content__items .snsmark-content__items-item-contents .snsmark-content__items-item-contents-1 .snsmark-content__items-item-contents-1-text .s-btn {
	margin-top: 40px;
}

.snsmark .snsmark-content .snsmark-content__items .snsmark-content__items-item-contents .snsmark-content__items-item-contents-1 .snsmark-content__items-item-contents-1-text .s-btn .btn-link {
	background: #000;
	border: 1px solid #000;
	border-radius: 30px;
	display: inline-block;
	outline: none;
	overflow: hidden;
	padding: 0 60px 12px 60px;
	position: relative; /*アニメーションの指定*/
	transition: ease 0.2s; /*== 背景が流れる（左から右） */ /*hoverした際の形状*/
}

.snsmark .snsmark-content .snsmark-content__items .snsmark-content__items-item-contents .snsmark-content__items-item-contents-1 .snsmark-content__items-item-contents-1-text .s-btn .btn-link .btn-link span {
	color: #fff;
	font-size: 0.9rem;
	position: relative;
	z-index: 3;
}

.snsmark .snsmark-content .snsmark-content__items .snsmark-content__items-item-contents .snsmark-content__items-item-contents-1 .snsmark-content__items-item-contents-1-text .s-btn .btn-link .btn-link:hover span {
	color: #000;
}

.snsmark .snsmark-content .snsmark-content__items .snsmark-content__items-item-contents .snsmark-content__items-item-contents-1 .snsmark-content__items-item-contents-1-text .s-btn .btn-link .btn-link:before {
	background: #fff;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transform: scale(0, 1);
	transform-origin: left top; /*アニメーション*/
	transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1);
	width: 100%;
	z-index: 2;
}

.snsmark .snsmark-content .snsmark-content__items .snsmark-content__items-item-contents .snsmark-content__items-item-contents-1 .snsmark-content__items-item-contents-1-text .s-btn .btn-link .btn-link:hover:before {
	transform: scale(1, 1);
	transform-origin: left top;
}

.snsmark .snsmark-content .snsmark-content__flow {
	margin-top: 80px;
}

.snsmark .snsmark-content .snsmark-content__flow .snsmark-content__flow-title {
	border-left: 1px solid #000;
	font-size: 0.9375rem;
	margin: auto;
	max-width: 980px;
	padding-left: 25px;
}

.snsmark .snsmark-content .snsmark-content__flow .snsmark-content__flow-title span {
	font-size: 1.8rem;
	font-weight: 700;
}

.snsmark .snsmark-content .snsmark-content__flow .snsmark-content__flow-items {
	margin: auto;
	margin-top: 100px;
	max-width: 1124px;
}

.snsmark .snsmark-content .snsmark-content__flow .snsmark-content__flow-items .snsmark-content__floe-items-item {
	border: 1px solid #000;
	display: flex;
	padding: 50px 0;
}

.snsmark .snsmark-content .snsmark-content__flow .snsmark-content__flow-items .snsmark-content__floe-items-item .snsmark-content__flow-items-item-content {
	border-right: 1px solid #000;
	font-size: 3.125rem;
	line-height: 0.9;
	padding: 0 50px;
}

.snsmark .snsmark-content .snsmark-content__flow .snsmark-content__flow-items .snsmark-content__floe-items-item .snsmark-content__flow-items-item-content span {
	font-size: 1.29rem;
}

.snsmark .snsmark-content .snsmark-content__flow .snsmark-content__flow-items .snsmark-content__floe-items-item .snsmark-content__flow-items-item-content-1 {
	font-size: 1.75rem;
	line-height: 1.2;
	padding-left: 50px;
}

.snsmark .snsmark-content .snsmark-content__flow .snsmark-content__flow-items .snsmark-content__floe-items-item .snsmark-content__flow-items-item-content-1 span {
	font-size: 1rem;
}

.snsmark .snsmark-content .snsmark-content__flow .snsmark-content__flow-items .snsmark-content__floe-items-item .snsmark-content__flow-items-item-content-1 .s-btn {
	margin-top: 40px;
}

.snsmark .snsmark-content .snsmark-content__flow .snsmark-content__flow-items .snsmark-content__floe-items-item .snsmark-content__flow-items-item-content-1 .s-btn .btn-link {
	background: #000;
	border: 1px solid #000;
	border-radius: 30px;
	display: inline-block;
	outline: none;
	overflow: hidden;
	padding: 0 60px 12px 60px;
	position: relative; /*アニメーションの指定*/
	transition: ease 0.2s; /*== 背景が流れる（左から右） */ /*hoverした際の形状*/
}

.snsmark .snsmark-content .snsmark-content__flow .snsmark-content__flow-items .snsmark-content__floe-items-item .snsmark-content__flow-items-item-content-1 .s-btn .btn-link .btn-link span {
	color: #fff;
	font-size: 0.9rem;
	position: relative;
	z-index: 3;
}

.snsmark .snsmark-content .snsmark-content__flow .snsmark-content__flow-items .snsmark-content__floe-items-item .snsmark-content__flow-items-item-content-1 .s-btn .btn-link .btn-link:hover span {
	color: #000;
}

.snsmark .snsmark-content .snsmark-content__flow .snsmark-content__flow-items .snsmark-content__floe-items-item .snsmark-content__flow-items-item-content-1 .s-btn .btn-link .btn-link:before {
	background: #fff;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transform: scale(0, 1);
	transform-origin: left top; /*アニメーション*/
	transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1);
	width: 100%;
	z-index: 2;
}

.snsmark .snsmark-content .snsmark-content__flow .snsmark-content__flow-items .snsmark-content__floe-items-item .snsmark-content__flow-items-item-content-1 .s-btn .btn-link .btn-link:hover:before {
	transform: scale(1, 1);
	transform-origin: left top;
}

.snsmark .snsmark-content .snsmark-content__flow .snsmark-content__flow-items .snsmark-content__flow-items-img {
	display: flex;
	justify-content: center;
	margin: 60px;
	rotate: 90deg;
}

.snsmark .snsmark-content .snsmark-contact__another {
	border-top: 1px solid #000;
	margin-top: 150px;
}

.snsmark .snsmark-content .snsmark-contact__another .snsmark-contact__another-items {
	display: flex;
	justify-content: center;
	margin: 80px auto 0;
	max-width: 1280px;
}

.snsmark .snsmark-content .snsmark-contact__another .snsmark-contact__another-items .snsmark-contact__another-items-item {
	padding-left: 50px;
}

.snsmark .snsmark-content .snsmark-contact__another .snsmark-contact__another-items .snsmark-contact__another-items-item:not(:last-child) {
	border-right: 1px solid #000;
	padding-right: 50px;
}

.snsmark .snsmark-content .snsmark-contact__another .snsmark-contact__another-items .snsmark-contact__another-items-item a {
	border-bottom: 1px solid #000;
	font-size: 1.75rem;
	font-weight: 700;
}

.snsmark .snsmark-content .snsmark-contact__another .snsmark-contact__another-items .snsmark-contact__another-items-item:hover {
	opacity: 0.7;
}

.snsmark .snsmark-content .snsmark-contact__another .snsmark-contact__another-items .snsmark-contact__another-items-item:active {
	opacity: 0.7;
}

.snsmark .snsmark-content .snsmark-contact__another .snsmark-contact__another-items .snsmark-contact__another-items-item .snsmark-sns {
	border: none;
	cursor: default;
	pointer-events: none;
}

.snsmark .snsmark-content .snsmark-contact__another .snsmark-contact__another-items .snsmark-contact__another-items-item p {
	margin-top: 27px;
}

.snsmark .snsmark-content .snsmark-contact__another .snsmark-contact__another-items .snsmark-contact__another-items-item .snsmark-sns-img {
	margin-top: 20px;
}

.snsmark .snsmark-content .snsmark-contact__another .snsmark-contact__another-items .snsmark-contact__another-items-item .snsmark-sns-img a {
	border: none;
}

.school {
	margin-top: 110px;
}

.school .school-content .school-content__fv {
	position: relative;
}

.school .school-content .school-content__fv img {
	height: auto;
	width: 100vw;
}

.school .school-content .school-content__fv .school-content__fv-explanation {
	color: #fff;
	left: 8%;
	position: absolute;
	top: 20%;
}

.school .school-content .school-content__fv .school-content__fv-explanation .school-content__fv-title {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 0.8;
}

.school .school-content .school-content__fv .school-content__fv-explanation .school-content__fv-title span {
	font-size: 1rem;
}

.school .school-content .school-content__fv .school-content__fv-explanation .school-content__fv-text {
	font-size: 1.9rem;
	margin-top: 90px;
}

.school .school-content .school-content__fv .school-content__fv-explanation .school-content__fv-descr {
	font-size: 0.875rem;
	margin-top: 25px;
}

.school .school-content .school-content__items .school-content__items-item {
	margin: auto;
	max-width: 980px;
	padding: 80px 0;
}

.school .school-content .school-content__items .school-content__items-item:not(:last-child) {
	border-bottom: 1px solid #000;
}

.school .school-content .school-content__items .school-content__items-item .school-content__items-item-title {
	border-left: 1px solid #000;
	font-size: 0.9375rem;
	padding-left: 25px;
}

.school .school-content .school-content__items .school-content__items-item .school-content__items-item-title span {
	font-size: 1.8rem;
	font-weight: 700;
}

.school .school-content .school-content__items .school-content__items-item .school-content__items-item-text {
	margin-top: 30px;
}

.school .school-content .school-content__items .school-content__items-item-category {
	line-height: 2;
	margin-top: 30px;
}

.school .school-content .school-content__items .school-content__items-item-category span {
	background: #D9D9D9;
	border-radius: 30px;
	display: inline-flex;
	font-weight: 700;
	margin-bottom: 10px;
	margin-right: 10px;
	padding: 0 20px;
}

.school .school-content .school-content__items .school-content__items-item-contents {
	background: #F0EFEF;
	margin-top: 60px;
	padding: 0 80px;
}

.school .school-content .school-content__items .school-content__items-item-contents .school-content__items-item-contents-1 {
	display: flex;
	padding: 50px 0;
}

.school .school-content .school-content__items .school-content__items-item-contents .school-content__items-item-contents-1:not(:last-child) {
	border-bottom: 1px solid #000;
}

.school .school-content .school-content__items .school-content__items-item-contents .school-content__items-item-contents-1 .school-content__items-item-contents-1-title {
	font-size: 5.2rem;
	padding-right: 80px;
}

.school .school-content .school-content__items .school-content__items-item-contents .school-content__items-item-contents-1 .school-content__items-item-contents-1-text {
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.2;
}

.school .school-content .school-content__items .school-content__items-item-contents .school-content__items-item-contents-1 .school-content__items-item-contents-1-text span {
	font-size: 1rem;
}

.school .school-content .school-content__items .school-content__items-item-contents .school-content__items-item-contents-1 .school-content__items-item-contents-1-text .s-btn {
	margin-top: 40px;
}

.school .school-content .school-content__items .school-content__items-item-contents .school-content__items-item-contents-1 .school-content__items-item-contents-1-text .s-btn .btn-link {
	background: #000;
	border: 1px solid #000;
	border-radius: 30px;
	display: inline-block;
	outline: none;
	overflow: hidden;
	padding: 0 60px 12px 60px;
	position: relative; /*アニメーションの指定*/
	transition: ease 0.2s; /*== 背景が流れる（左から右） */ /*hoverした際の形状*/
}

.school .school-content .school-content__items .school-content__items-item-contents .school-content__items-item-contents-1 .school-content__items-item-contents-1-text .s-btn .btn-link .btn-link span {
	color: #fff;
	font-size: 0.9rem;
	position: relative;
	z-index: 3;
}

.school .school-content .school-content__items .school-content__items-item-contents .school-content__items-item-contents-1 .school-content__items-item-contents-1-text .s-btn .btn-link .btn-link:hover span {
	color: #000;
}

.school .school-content .school-content__items .school-content__items-item-contents .school-content__items-item-contents-1 .school-content__items-item-contents-1-text .s-btn .btn-link .btn-link:before {
	background: #fff;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transform: scale(0, 1);
	transform-origin: left top; /*アニメーション*/
	transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1);
	width: 100%;
	z-index: 2;
}

.school .school-content .school-content__items .school-content__items-item-contents .school-content__items-item-contents-1 .school-content__items-item-contents-1-text .s-btn .btn-link .btn-link:hover:before {
	transform: scale(1, 1);
	transform-origin: left top;
}

.school .school-content .school-content__flow {
	margin-top: 80px;
}

.school .school-content .school-content__flow .school-content__flow-title {
	border-left: 1px solid #000;
	font-size: 0.9375rem;
	margin: auto;
	max-width: 980px;
	padding-left: 25px;
}

.school .school-content .school-content__flow .school-content__flow-title span {
	font-size: 1.8rem;
	font-weight: 700;
}

.school .school-content .school-content__flow .school-content__flow-items {
	margin: auto;
	margin-top: 100px;
	max-width: 1124px;
}

.school .school-content .school-content__flow .school-content__flow-items .school-content__floe-items-item {
	border: 1px solid #000;
	display: flex;
	padding: 50px 0;
}

.school .school-content .school-content__flow .school-content__flow-items .school-content__floe-items-item .school-content__flow-items-item-content {
	border-right: 1px solid #000;
	font-size: 3.125rem;
	line-height: 0.9;
	padding: 0 50px;
}

.school .school-content .school-content__flow .school-content__flow-items .school-content__floe-items-item .school-content__flow-items-item-content span {
	font-size: 1.29rem;
}

.school .school-content .school-content__flow .school-content__flow-items .school-content__floe-items-item .school-content__flow-items-item-content-1 {
	font-size: 1.75rem;
	line-height: 1.2;
	padding-left: 50px;
}

.school .school-content .school-content__flow .school-content__flow-items .school-content__floe-items-item .school-content__flow-items-item-content-1 span {
	font-size: 1rem;
}

.school .school-content .school-content__flow .school-content__flow-items .school-content__floe-items-item .school-content__flow-items-item-content-1 .s-btn {
	margin-top: 40px;
}

.school .school-content .school-content__flow .school-content__flow-items .school-content__floe-items-item .school-content__flow-items-item-content-1 .s-btn .btn-link {
	background: #000;
	border: 1px solid #000;
	border-radius: 30px;
	display: inline-block;
	outline: none;
	overflow: hidden;
	padding: 0 60px 12px 60px;
	position: relative; /*アニメーションの指定*/
	transition: ease 0.2s; /*== 背景が流れる（左から右） */ /*hoverした際の形状*/
}

.school .school-content .school-content__flow .school-content__flow-items .school-content__floe-items-item .school-content__flow-items-item-content-1 .s-btn .btn-link .btn-link span {
	color: #fff;
	font-size: 0.9rem;
	position: relative;
	z-index: 3;
}

.school .school-content .school-content__flow .school-content__flow-items .school-content__floe-items-item .school-content__flow-items-item-content-1 .s-btn .btn-link .btn-link:hover span {
	color: #000;
}

.school .school-content .school-content__flow .school-content__flow-items .school-content__floe-items-item .school-content__flow-items-item-content-1 .s-btn .btn-link .btn-link:before {
	background: #fff;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transform: scale(0, 1);
	transform-origin: left top; /*アニメーション*/
	transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1);
	width: 100%;
	z-index: 2;
}

.school .school-content .school-content__flow .school-content__flow-items .school-content__floe-items-item .school-content__flow-items-item-content-1 .s-btn .btn-link .btn-link:hover:before {
	transform: scale(1, 1);
	transform-origin: left top;
}

.school .school-content .school-content__flow .school-content__flow-items .school-content__flow-items-img {
	display: flex;
	justify-content: center;
	margin: 60px;
	rotate: 90deg;
}

.school .school-content .school-contact__another {
	border-top: 1px solid #000;
	margin-top: 100px;
}

.school .school-content .school-contact__another .school-contact__another-items {
	display: flex;
	justify-content: center;
	margin: 80px auto 0;
	max-width: 1280px;
}

.school .school-content .school-contact__another .school-contact__another-items .school-contact__another-items-item {
	padding-left: 50px;
}

.school .school-content .school-contact__another .school-contact__another-items .school-contact__another-items-item:not(:last-child) {
	border-right: 1px solid #000;
	padding-right: 50px;
}

.school .school-content .school-contact__another .school-contact__another-items .school-contact__another-items-item:not(:last-child) {
	border-right: 1px solid #000;
	padding-right: 50px;
}

.school .school-content .school-contact__another .school-contact__another-items .school-contact__another-items-item a {
	border-bottom: 1px solid #000;
	font-size: 1.75rem;
	font-weight: 700;
}

.school .school-content .school-contact__another .school-contact__another-items .school-contact__another-items-item:hover {
	opacity: 0.7;
}

.school .school-content .school-contact__another .school-contact__another-items .school-contact__another-items-item:active {
	opacity: 0.7;
}

.school .school-content .school-contact__another .school-contact__another-items .school-contact__another-items-item .school-sns {
	border: none;
	cursor: default;
	pointer-events: none;
}

.school .school-content .school-contact__another .school-contact__another-items .school-contact__another-items-item p {
	margin-top: 27px;
}

.school .school-content .school-contact__another .school-contact__another-items .school-contact__another-items-item .school-sns-img {
	margin-top: 20px;
}

.school .school-content .school-contact__another .school-contact__another-items .school-contact__another-items-item .school-sns-img a {
	border: none;
}

.fade-in-up {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 1s, transform 1s;
}

.fade-in-up.is-in-view {
	opacity: 1;
	transform: translateY(0);
}

.fade-in-down {
	opacity: 0;
	transform: translateY(-24px);
	transition: opacity 1s, transform 1s;
}

.fade-in-down.is-in-view {
	opacity: 1;
	transform: translateY(0);
}

.scroll-down {
	bottom: 140px;
	left: -5%;
	padding-left: 140px;
	position: absolute;
	transform: rotateZ(-90deg);
	transform-origin: right bottom;
	z-index: 201;
}

.scroll-down__line {
	height: 0px;
	left: 40px;
	margin-top: -1px;
	position: absolute;
	top: -97%;
	width: 170px;
}

.scroll-down__line:after {
	border-bottom: 2px solid #000;
	content: "";
	display: block;
	height: 0;
	opacity: 0;
	transform: scale(0.001, 1);
	transform-origin: right center;
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0s linear 0.5s;
	width: 100%;
}

.scroll-down__text {
	color: #000;
	font-family: "Replica-Bold", sans-serif;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	line-height: 1;
	overflow: hidden;
	text-transform: uppercase;
}

.scroll-down__text span {
	display: block;
	transform: translate3d(0, 100%, 0);
	transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.scroll-down.is-active.is-inview .scroll-down__text {
	animation: bounce 2.5s infinite;
}

.scroll-down.is-active.is-inview .scroll-down__text span {
	transform: none;
}

.scroll-down.is-active.is-inview .scroll-down__line {
	animation: scroll-down-line 2.5s infinite 851ms;
}

.scroll-down.is-active.is-inview .scroll-down__line:after {
	opacity: 1;
	transform: none;
	transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1), opacity 0s linear;
}

.is-body-touch .scroll-down {
	display: none;
}

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

header .header__inner .header__nav {
	align-items: center;
	display: flex;
	gap: 40px;
}

header .header__inner .header__open {
	display: none;
}

.p-gallery .p-gallery__inner {
	margin: auto;
}

.u-is-pc {
	display: none;
}

}

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

header .header__inner .header__nav {
	display: none;
}

.drawer-content {
	padding: 90px 20px 40px;
	width: 100%;
}

.resk .p-resk-content__service .p-resk-content__service-img img {
	width: 60%;
}

.work .p-work-content .p-work-content__items .p-work-content__item {
	height: auto;
	width: 100%;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .swiper-wrapper .swiper-slide a .p-gallery-card .p-gallery-card__image {
	display: block;
	z-index: 998;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .swiper-wrapper .swiper-slide a .p-gallery-card .p-gallery-card__image::before {
	height: 550px;
	z-index: -1;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .swiper-wrapper .swiper-slide a .p-gallery-card .p-gallery-card__image .p-gallery-card__descr {
	margin-left: 0;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .swiper-wrapper .swiper-slide a .p-gallery-card .p-gallery-card__image .p-gallery-card__descr .p-gallery-card__descr-title {
	font-size: 0.8rem;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .swiper-wrapper .swiper-slide a .p-gallery-card .p-gallery-card__image .p-gallery-card__descr .p-gallery-card__descr-title span {
	font-size: 1.3rem;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .swiper-wrapper .swiper-slide a .p-gallery-card .p-gallery-card__image .p-gallery-card__descr .p-gallery-card__descr-text p {
	display: none;
}

.u-is-tab {
	display: none;
}

}

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

.label {
	font-size: 1rem;
	margin-bottom: -12px;
}

input[type=text],
input[type=email] {
	font-size: 0.9rem;
	padding: 0.4rem;
}

textarea {
	font-size: 0.9rem;
	margin-top: 1px;
	padding: 0.4rem;
}

input[type=submit] {
	font-size: 1rem;
}

}

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

.l-inner {
	padding: 0 20px;
}

.c-utility-title {
	font-size: 1.7rem;
}

.btn .btn-link {
	padding: 13px 50px;
}

.btn-r {
	text-align: center;
}

header .header__inner {
	left: 10px;
	padding: 25px 15px;
	right: 15px;
}

header .header__inner .p-header__logo a img {
	height: auto;
	width: 100px;
}

header .header__inner .drawer-icon .drawer-icon__bar:nth-of-type(1) {
	top: 3px;
}

header .header__inner .drawer-icon .drawer-icon__bar:nth-of-type(2) {
	top: 21px;
}

.footer {
	margin-top: 100px;
}

.footer .p-footer__content .p-footer__content-logo img {
	width: 90px;
}

.footer .p-footer__content .p-footer__content-nav {
	margin-top: 40px;
}

.footer .p-footer__content .p-footer__content-nav ul li {
	font-size: 0.85rem;
}

.footer .p-footer__content .p-footer__content-sns {
	margin-top: 20px;
}

.footer .p-footer__content .p-footer__content-sns ul li img {
	height: 30px;
	width: 30px;
}

.footer .footer-copy-right {
	font-size: 0.7rem;
}

.p-fv {
	height: 80vh;
}

.p-fv .p-fv__content .p-fv__content-text {
	left: 20%;
	top: 20%;
}

.p-fv .p-fv__content .p-fv__content-text h1 span {
	letter-spacing: -10px;
}

.p-fv .p-fv__content .p-fv__content-text h1 {
	font-size: 2.2rem;
	text-orientation: downwrad;
	writing-mode: vertical-rl;
}

.p-fv .p-fv__content .p-fv__content-img {
	overflow: hidden;
	right: 0;
	top: 15%;
	width: 140%;
}

.news {
	margin-top: 60px;
	padding: 0 20px;
}

.news .p-news-content {
	margin-top: 40px;
}

.news .p-news-content .p-news-content__item {
	display: block;
}

.news .p-news-content .p-news-content__item::before {
	height: 20px;
	right: 0;
	top: 30px;
	width: 20px;
}

.news .p-news-content .p-news-content__item .p-news-content__item-tc .p-news-content__item-tc-title {
	font-size: 1rem;
}

.news .p-news-content-archive {
	margin-top: 180px;
}

.news .p-news-content-archive .p-news-content__item-archive {
	display: block;
}

.news .p-news-content-archive .p-news-content__item-archive::before {
	height: 20px;
	top: 28px;
	width: 20px;
}

.p-single-news-content .p--single-news-content__item {
	display: block;
}

.p-single-news-content .p-single-news-content__item-tc-title {
	font-size: 1.3rem;
	margin-top: 10px;
}

.p-single-news-content .p-single-news-content__item-ex {
	margin-top: 40px;
}

.navigation {
	margin-top: 50px;
}

.contents {
	margin-top: 80px;
	padding: 10px 0 90px;
}

.contents .p-contents-content {
	margin-top: 40px;
}

.contents .p-contents-content .p-contents-content__item {
	margin-top: 50px;
}

.contents .p-contents-content .p-contents-content__item .p-contents-content__item-box .content__text {
	font-size: 1.3rem;
}

.contents .p-contents-content .p-contents-content__item .p-contents-content__item-box span {
	font-size: 0.6875rem;
}

.contents .p-contents-content .p-contents-content__item .p-contents-content__item-box {
	font-size: 1.375rem;
	height: 110px;
	line-height: 1;
	padding: 25px 0 35px 15px;
	width: 45%;
}

.company {
	margin-top: 80px;
}

.company .p-company-content {
	margin-top: 40px;
}

.company .p-company-content table tr {
	width: 100%;
}

.company .p-company-content table tr td {
	display: block;
	padding: 15px 0 15px 0;
	width: 100%;
}

.company .p-company-content table tr .t-s {
	font-size: 0.875rem;
	padding-left: 50px;
}

.mission .p-mission-content .p-mission-content__item-descr {
	display: block;
}

.mission .p-mission-content .p-mission-content__item-descr .p-mission-content__item-text {
	border-left: none;
	margin-top: 50px;
	padding-left: 0;
}

.mission .p-mission-content .p-mission-content__item-descr .p-mission-content__item-text .p-mission-title {
	font-size: 1.4rem;
}

.mission .p-mission-content .p-mission-content__item-intro {
	display: block;
	padding: 70px 30px;
}

.mission .p-mission-content .p-mission-content__item-intro .p-mission-content__item-intro-img {
	text-align: center;
}

.mission .p-mission-content .p-mission-content__item-intro .p-mission-content__item-intro-img .p-mission-content__item-intro-text-sns ul {
	justify-content: center;
	margin-top: 20px;
}

.mission .p-mission-content .p-mission-content__item-intro .p-mission-content__item-intro-text .p-mission-content__item-intro-text-title {
	line-height: 0.9;
	margin-top: 30px;
	text-align: center;
}

.mission .p-mission-content .p-mission-content__item-intro .p-mission-content__item-intro-text .p-mission-content__item-intro-text-title span {
	padding: 0;
}

.mission .p-mission-content .p-mission-content__item-intro .p-mission-content__item-intro-text .p-mission-content__item-intro-text-text {
	font-size: 0.9rem;
	letter-spacing: 2px;
	line-height: 1.7;
}

.blog .p-blog-content {
	display: block;
}

.blog .p-blog-content .p-blog-content__left {
	width: 100%;
}

.blog .p-blog-content .p-blog-content__left ul {
	-moz-column-gap: 0;
	column-gap: 0;
	display: block;
	row-gap: 0;
}

.blog .p-blog-content .p-blog-content__left ul li {
	margin-top: 40px;
	width: 100%;
}

.blog .p-blog-content .p-blog-content__left ul li a .thumb img {
	width: 100%;
}

.p-single-blog-content .p-single-blog-content__item {
	display: block;
}

.p-single-blog-content .p-single-blog-content__item .p-single-blog-content__item-date {
	font-size: 0.8rem;
}

.p-single-blog-content .p-single-blog-content__item-tc-title {
	font-size: 1.3rem;
	margin-top: 10px;
}

.p-single-blog-content .p-single-blog-content__item-ex {
	margin-top: 40px;
}

.p-single-blog-content .p-single-blog-content__item-ex h2 {
	font-size: 22px;
}

.p-single-blog-content .p-single-blog-content__item-ex h3 {
	font-size: 18px;
	margin-top: 70px;
}

.p-single-blog-content .p-single-blog-content__item-ex p {
	font-size: 0.9rem;
}

.p-single-blog-content .p-single-blog-content__item-ex #toc_container .toc_title {
	font-size: 1.2rem;
}

.p-single-blog-content .p-single-blog-content__item-ex #toc_container ul li a {
	font-size: 0.9rem;
}

.p-blog-content__right {
	margin-top: 100px;
	width: 100%;
}

.business .p-business-content .p-business-content__item-descr {
	display: block;
}

.business .p-business-content .p-business-content__item-descr .p-business-content__item-text {
	border-left: none;
	border-top: 1px solid #333;
	margin-top: 40px;
	padding-left: 0;
}

.business .p-business-content .p-business-content__item-descr .p-business-content__item-text .p-business-title {
	font-size: 1.1rem;
	font-weight: 700;
	margin-top: 30px;
}

.business .p-business-content .p-business-content__item-descr .p-business-content__item-text .p-business-text {
	font-size: 0.8rem;
}

.business .p-business-content .p-business-content__items .p-business-content__item::before {
	height: 40px;
	right: 25px;
	width: 40px;
}

.business .p-business-content .p-business-content__items .p-business-content__item .p-business-content__item-title {
	font-size: 1.1rem;
	width: 85%;
}

.business .p-business-content .p-business-content__items .p-business-content__item .p-business-content__item-text ul {
	display: block;
}

.business .p-business-content .p-business-content__items .p-business-content__item .p-business-content__item-text ul li {
	font-size: 0.9rem;
	width: 85%;
}

.resk {
	margin-top: 100px;
}

.resk .p-resk-content {
	padding: 70px 20px;
}

.resk .p-resk-content .p-resk-content__maintext .p-resk-content__title {
	font-size: 1.3rem;
}

.resk .p-resk-content .p-resk-content__items .p-resk-content__items-item .p-resk-content__items-item-descr .p-resk-content__items-item-title {
	font-size: 1.1rem;
}

.resk .p-resk-content .p-resk-content__items .p-resk-content__items-item .p-resk-content__items-item-descr .p-resk-content__items-item-text {
	margin-top: 15px;
}

.resk .p-resk-content .p-resk-content__items .p-resk-content__items-item .p-resk-content__items-item-descr .p-resk-content__items-item-reasons {
	display: block;
	padding: 0 40px;
}

.resk .p-resk-content .p-resk-content__items .p-resk-content__items-item .p-resk-content__items-item-descr .p-resk-content__items-item-reasons img {
	margin-bottom: 30px;
	width: 100%;
}

.resk .p-resk-content .p-resk-content__items .p-resk-content__items-item .p-resk-content__items-item-descr .p-resk-content__items-item-benefits {
	padding: 0 30px;
}

.resk .p-resk-content .p-resk-content__items .p-resk-content__items-item .p-resk-content__items-item-descr .p-resk-content__items-item-benefits .p-resk-content__items-item-benefits-1 {
	display: block;
	text-align: center;
}

.resk .p-resk-content .p-resk-content__items .p-resk-content__items-item .p-resk-content__items-item-descr .p-resk-content__items-item-benefits .p-resk-content__items-item-benefits-1 .p-resk-content__items-item-benefits-number {
	border-bottom: 1px solid #cccccc;
	border-right: none;
	padding-right: 0;
}

.resk .p-resk-content .p-resk-content__items .p-resk-content__items-item .p-resk-content__items-item-descr .p-resk-content__items-item-benefits .p-resk-content__items-item-benefits-1 .p-resk-content__items-item-benefits-title {
	margin-top: 15px;
}

.resk .p-resk-content .p-resk-content__items .p-resk-content__items-item .p-resk-content__items-item-descr .p-resk-content__items-item-benefits .p-resk-content__items-item-benefits-1 .resk-title-1 {
	padding-right: 0;
}

.resk .p-resk-content .p-resk-content__items .p-resk-content__items-item .p-resk-content__items-item-descr .p-resk-content__items-item-benefits .p-resk-content__items-item-benefits-1 .p-resk-content__items-item-benefits-text {
	margin-top: 10px;
}

.resk .p-resk-content__service .p-resk-content__service-title {
	font-size: 1.1rem;
}

.resk .resk-qa .resk-qa__descr {
	font-size: 1.1rem;
}

.work .p-work-content .p-work-content__items {
	display: block;
}

.work .p-work-content .p-work-content__items .p-work-content__item .p-work-content__item-text .p-work-content__item-text-title {
	font-size: 1rem;
}

.work .p-work-content .p-work-content__items .p-work-content__item .p-work-content__item-text .p-work-content__item-text-category {
	gap: 10px;
}

.work .p-work-content .p-work-content__items .p-work-content__item .p-work-content__item-text .p-work-content__item-text-category .p-work-content__item-text-category-c,
.work .p-work-content .p-work-content__items .p-work-content__item .p-work-content__item-text .p-work-content__item-text-category .p-work-content__item-text-category-s {
	font-size: 0.7rem;
}

.recruit .p-recruit-content {
	padding: 0;
	text-align: center;
}

.recruit .p-recruit-content .btn {
	margin: 30px auto 30px;
	white-space: nowrap;
	width: 60%;
}

.recruit .p-recruit-content .btn .r_b {
	padding: 8px 20px;
	width: 80%;
}

.recruit .p-recruit-items .p-recruit-items__fv .p-recruit-items__fv-descr .p-recruit-items__fv-descr-title {
	font-size: 1.5rem;
}

.recruit .p-recruit-items .p-recruit-items__fv .p-recruit-items__fv-descr .p-recruit-items__fv-descr-title .recruit-title-1 {
	padding: 30px 20px 30px 20px;
}

.recruit .p-recruit-items .p-recruit-items__fv .p-recruit-items__fv-descr .p-recruit-items__fv-descr-title .recruit-title-2 {
	padding: 0 20px 60px 20px;
}

.recruit .p-recruit-items .p-recruit-items__fv-sub {
	margin-top: 100px;
	padding: 0 20px;
}

.recruit .p-recruit-items .p-recruit-items__fv-sub p .r-t-1 {
	font-size: 0.9rem;
}

.recruit .p-recruit-items .p-recruit-items__fv-sub p .r-t-2 {
	font-size: 1.3rem;
}

.recruit .p-recruit-items .p-recruit-items__day {
	margin-top: 0;
}

.p-gallery {
	padding: 60px 0 0;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper {
	padding: 110px 0 0 48px;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .p-gallery__title {
	font-size: 1.5rem;
	left: 11%;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .p-gallery__title::after {
	left: -110%;
	top: 21px;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .swiper-wrapper .swiper-slide a .p-gallery-card .p-gallery-card__image::before {
	height: 400px;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .swiper-wrapper .swiper-slide a .p-gallery-card .p-gallery-card__image img {
	height: auto;
	width: 200px;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .swiper-wrapper .swiper-slide a .p-gallery-card .p-gallery-card__image .p-gallery-card__descr .p-gallery-card__descr-text span {
	display: block;
	font-size: 0.81rem;
}

.p-gallery .p-gallery__inner .p-gallery__slider .swiper .swiper-button-prev,
.p-gallery .p-gallery__inner .p-gallery__slider .swiper .swiper-button-next {
	height: 40px;
	width: 40px;
}

.p-recruit-items__day {
	padding: 110px 20px 70px;
}

.p-recruit-items__day .p-recruit-items__day-title {
	font-size: 1.5rem;
	left: 11%;
}

.p-recruit-items__day .p-recruit-items__day-title::after {
	left: -74%;
	top: 21px;
}

.p-recruit-items__day .p-recruit-items__day-img {
	margin-top: 80px;
}

.recruit-single .recruit-single__items .recruit-single__items-item-1 {
	display: block;
}

.recruit-single .recruit-single__items .recruit-single__items-item-1 .recruit-single__items-item-img img {
	height: auto;
	width: 100%;
}

.recruit-single .recruit-single__items .recruit-single__items-item-1 .recruit-single__items-item-descr {
	margin-top: 50px;
}

.recruit-single .recruit-single__items .recruit-single__items-item-1 .recruit-single__items-item-descr img {
	width: 90px;
}

.recruit-single .recruit-single__items .recruit-single__items-item-1 .recruit-single__items-item-descr h3 {
	font-size: 1.8rem;
}

.recruit-single .recruit-single__items .recruit-single__items-item-1 .recruit-single__items-item-descr h3 span {
	font-size: 0.8rem;
}

.recruit-single .recruit-single__items .recruit-single__items-item-1 .recruit-single__items-item-descr p {
	font-size: 0.7rem;
}

.recruit-single .recruit-single__items .recruit-single__items-item-2 {
	flex-direction: column-reverse;
}

.recruit-single .recruit-single__items .recruit-single__items-item-2 .recruit-single__items-item-descr {
	width: 100%;
}

.recruit-single .recruit-single__items .recruit-single__items-item-2 .recruit-single__items-item-descr .recruit-single__items-item-descr-1 {
	margin-top: 35px;
}

.recruit-single .recruit-single__items .recruit-single__items-item-2 .recruit-single__items-item-descr .recruit-single__items-item-descr-1 .recruit-single__items-item-title {
	font-size: 1.35rem;
}

.recruit-single .recruit-single__items .recruit-single__items-item-2 .recruit-single__items-item-img img {
	height: auto;
	width: 100%;
}

.recruit-single .recruit-single__items .recruit-single__items-item-3 {
	display: block;
	margin-top: 90px;
}

.recruit-single .recruit-single__items .recruit-single__items-item-3 .recruit-single__items-item-img img {
	height: auto;
	width: 100%;
}

.recruit-single .recruit-single__items .recruit-single__items-item-3 .recruit-single__items-item-descr {
	width: 100%;
}

.recruit-single .recruit-single__items .recruit-single__items-item-3 .recruit-single__items-item-descr .recruit-single__items-item-descr-1 {
	margin-top: 35px;
}

.recruit-single .recruit-single__items .recruit-single__items-item-3 .recruit-single__items-item-descr .recruit-single__items-item-descr-1 .recruit-single__items-item-title {
	font-size: 1.35rem;
}

.careers {
	margin-top: 150px;
}

.careers .careers-fv .careers-content__title {
	font-size: 1.7rem;
	line-height: 0.9;
}

.careers .careers-fv .careers-content__title span {
	font-size: 1rem;
}

.careers .careers-fv .careers-content__text {
	font-size: 1.4rem;
	margin-top: 50px;
}

.careers .careers-nav {
	display: flex;
	flex-direction: column;
	margin-top: 70px;
	padding: 0 50px;
}

.careers .careers-nav button {
	margin-bottom: 20px;
}

.careers .careers-nav button:not(:last-child) {
	margin-right: 0;
}

.careers .careers-content {
	margin: 20px auto 0;
	padding: 0 20px;
}

.careers .careers-content .careers-items-content-all {
	margin: 10px auto 0;
}

.careers .careers-content .careers-items-content-all table tbody tr td {
	font-size: 1.1rem;
	padding: 30px 0 20px;
}

.careers .careers-content .careers-items-content-all table tbody tr td span {
	font-size: 0.9rem;
}

.careers .careers-content .careers-items-content-all table tbody tr td {
	display: block;
}

.careers .careers-content .careers-items-content-all table tbody tr td .footer-sns a .ig p {
	font-size: 1rem;
}

section.contact {
	padding: 0 20px;
}

input[type=submit] {
	padding: 20px 70px;
}

.submit-btn::before {
	right: 20px;
}

.privacy .privacy-title {
	font-size: 1.3rem;
}

.privacy .privacy-content {
	margin-top: 60px;
	padding: 0 20px;
}

.privacy .privacy-content p {
	font-size: 0.9rem;
}

.privacy .btn {
	margin-top: 50px;
}

.thanks-content {
	margin: 150px auto 100px;
	padding: 0 20px;
}

.thanks-content .thanks-content-items .thanks-content-title {
	font: 700 2.8rem/1 "Times New Roman", Times, serif;
	margin-bottom: 80px;
}

.thanks-content .thanks-content-items .thanks-content-text {
	font: 300 1rem/1 "Times New Roman", Times, serif;
	line-height: 1.5;
}

.snsmark .snsmark-content .snsmark-content__fv img {
	height: 60vh;
	width: 100%;
}

.snsmark .snsmark-content .snsmark-content__fv .snsmark-content__fv-explanation {
	top: 13%;
}

.snsmark .snsmark-content .snsmark-content__fv .snsmark-content__fv-explanation .snsmark-content__fv-title {
	font-size: 1.75rem;
}

.snsmark .snsmark-content .snsmark-content__fv .snsmark-content__fv-explanation .snsmark-content__fv-title span {
	font-size: 0.8125rem;
}

.snsmark .snsmark-content .snsmark-content__fv .snsmark-content__fv-explanation .snsmark-content__fv-text {
	font-size: 1.25rem;
	margin-top: 60px;
}

.snsmark .snsmark-content .snsmark-content__fv .snsmark-content__fv-explanation .snsmark-content__fv-descr {
	padding-right: 20px;
}

.snsmark .snsmark-content .snsmark-content__items .snsmark-content__items-item {
	padding: 50px 0;
}

.snsmark .snsmark-content .snsmark-content__items .snsmark-content__items-item-category span {
	font-size: 0.8rem;
}

.snsmark .snsmark-content .snsmark-content__items .snsmark-content__items-item-contents {
	padding: 0 20px;
}

.snsmark .snsmark-content .snsmark-content__items .snsmark-content__items-item-contents .snsmark-content__items-item-contents-1 {
	display: block;
}

.snsmark .snsmark-content .snsmark-content__items .snsmark-content__items-item-contents .snsmark-content__items-item-contents-1 .snsmark-content__items-item-contents-1-title {
	font-size: 2rem;
}

.snsmark .snsmark-content .snsmark-content__items .snsmark-content__items-item-contents .snsmark-content__items-item-contents-1 .snsmark-content__items-item-contents-1-text {
	font-size: 1.3125rem;
}

.snsmark .snsmark-content .snsmark-content__items .snsmark-content__items-item-contents .snsmark-content__items-item-contents-1 .snsmark-content__items-item-contents-1-text span {
	font-size: 0.8rem;
}

.snsmark .snsmark-content .snsmark-content__flow .snsmark-content__flow-items {
	margin-top: 50px;
}

.snsmark .snsmark-content .snsmark-content__flow .snsmark-content__flow-items .snsmark-content__floe-items-item {
	display: block;
	padding: 20px;
}

.snsmark .snsmark-content .snsmark-content__flow .snsmark-content__flow-items .snsmark-content__floe-items-item .snsmark-content__flow-items-item-content {
	border-bottom: 1px solid #000;
	border-right: none;
	font-size: 2.7rem;
	margin-bottom: 20px;
	padding: 0 20px 20px 20px;
	text-align: center;
}

.snsmark .snsmark-content .snsmark-content__flow .snsmark-content__flow-items .snsmark-content__floe-items-item .snsmark-content__flow-items-item-content span {
	font-size: 1.1rem;
}

.snsmark .snsmark-content .snsmark-content__flow .snsmark-content__flow-items .snsmark-content__floe-items-item .snsmark-content__flow-items-item-content-1 {
	font-size: 1.25rem;
	padding-left: 0;
	text-align: center;
}

.snsmark .snsmark-content .snsmark-content__flow .snsmark-content__flow-items .snsmark-content__floe-items-item .snsmark-content__flow-items-item-content-1 span {
	font-size: 0.9rem;
}

.snsmark .snsmark-content .snsmark-content__flow .snsmark-content__flow-items .snsmark-content__floe-items-item .snsmark-content__flow-items-item-content-1 .s-btn {
	text-align: center;
}

.snsmark .snsmark-content .snsmark-content__flow .snsmark-content__flow-items .snsmark-content__floe-items-item .snsmark-content__flow-items-item-content-1 .s-btn .btn-link {
	padding: 8px 60px 12px 60px;
}

.snsmark .snsmark-content .snsmark-content__flow .snsmark-content__flow-items .snsmark-content__flow-items-img {
	margin: 30px;
}

.snsmark .snsmark-content .snsmark-contact__another {
	border-top: none;
	margin-top: 100px;
}

.snsmark .snsmark-content .snsmark-contact__another .snsmark-contact__another-items {
	display: block;
}

.snsmark .snsmark-content .snsmark-contact__another .snsmark-contact__another-items .snsmark-contact__another-items-item {
	border-bottom: 1px solid #000;
	padding: 30px 0;
}

.snsmark .snsmark-content .snsmark-contact__another .snsmark-contact__another-items .snsmark-contact__another-items-item:first-child {
	border-top: 1px solid #000;
}

.snsmark .snsmark-content .snsmark-contact__another .snsmark-contact__another-items .snsmark-contact__another-items-item:not(:last-child) {
	border-right: none;
	padding-right: 0;
}

.snsmark .snsmark-content .snsmark-contact__another .snsmark-contact__another-items .snsmark-contact__another-items-item a {
	font-size: 1.25rem;
}

.snsmark .snsmark-content .snsmark-contact__another .snsmark-contact__another-items .snsmark-contact__another-items-item p {
	font-size: 0.9rem;
}

.school .school-content .school-content__fv img {
	height: 60vh;
	width: 100%;
}

.school .school-content .school-content__fv .school-content__fv-explanation {
	top: 13%;
}

.school .school-content .school-content__fv .school-content__fv-explanation .school-content__fv-title {
	font-size: 1.75rem;
	letter-spacing: 2px;
	line-height: 1.1;
}

.school .school-content .school-content__fv .school-content__fv-explanation .school-content__fv-title span {
	font-size: 0.8125rem;
}

.school .school-content .school-content__fv .school-content__fv-explanation .school-content__fv-text {
	font-size: 1.25rem;
	margin-top: 60px;
}

.school .school-content .school-content__fv .school-content__fv-explanation .school-content__fv-descr {
	font-size: 0.8rem;
	padding-right: 20px;
}

.school .school-content .school-content__items .school-content__items-item {
	padding: 50px 0;
}

.school .school-content .school-content__items .school-content__items-item-category span {
	font-size: 0.8rem;
}

.school .school-content .school-content__items .school-content__items-item-contents {
	padding: 0 20px;
}

.school .school-content .school-content__items .school-content__items-item-contents .school-content__items-item-contents-1 {
	display: block;
}

.school .school-content .school-content__items .school-content__items-item-contents .school-content__items-item-contents-1 .school-content__items-item-contents-1-title {
	font-size: 2rem;
}

.school .school-content .school-content__items .school-content__items-item-contents .school-content__items-item-contents-1 .school-content__items-item-contents-1-text {
	font-size: 1.3125rem;
}

.school .school-content .school-content__items .school-content__items-item-contents .school-content__items-item-contents-1 .school-content__items-item-contents-1-text span {
	font-size: 0.8rem;
}

.school .school-content .school-content__flow .school-content__flow-items {
	margin-top: 50px;
}

.school .school-content .school-content__flow .school-content__flow-items .school-content__floe-items-item {
	display: block;
	padding: 20px;
}

.school .school-content .school-content__flow .school-content__flow-items .school-content__floe-items-item .school-content__flow-items-item-content {
	border-bottom: 1px solid #000;
	border-right: none;
	font-size: 2.7rem;
	margin-bottom: 20px;
	padding: 0 20px 20px 20px;
	text-align: center;
}

.school .school-content .school-content__flow .school-content__flow-items .school-content__floe-items-item .school-content__flow-items-item-content span {
	font-size: 1.1rem;
}

.school .school-content .school-content__flow .school-content__flow-items .school-content__floe-items-item .school-content__flow-items-item-content-1 {
	font-size: 1.25rem;
	padding-left: 0;
	text-align: center;
}

.school .school-content .school-content__flow .school-content__flow-items .school-content__floe-items-item .school-content__flow-items-item-content-1 span {
	font-size: 0.9rem;
}

.school .school-content .school-content__flow .school-content__flow-items .school-content__floe-items-item .school-content__flow-items-item-content-1 .s-btn {
	text-align: center;
}

.school .school-content .school-content__flow .school-content__flow-items .school-content__floe-items-item .school-content__flow-items-item-content-1 .s-btn .btn-link {
	padding: 8px 60px 12px 60px;
}

.school .school-content .school-content__flow .school-content__flow-items .school-content__flow-items-img {
	margin: 30px;
}

.school .school-content .school-contact__another {
	border-top: none;
	margin-top: 20px;
}

.school .school-content .school-contact__another .school-contact__another-items {
	display: block;
}

.school .school-content .school-contact__another .school-contact__another-items .school-contact__another-items-item {
	border-bottom: 1px solid #000;
	padding: 30px 0;
}

.school .school-content .school-contact__another .school-contact__another-items .school-contact__another-items-item:first-child {
	border-top: 1px solid #000;
}

.school .school-content .school-contact__another .school-contact__another-items .school-contact__another-items-item:not(:last-child) {
	border-right: none;
	padding-right: 0;
}

.school .school-content .school-contact__another .school-contact__another-items .school-contact__another-items-item a {
	font-size: 1.25rem;
}

.school .school-content .school-contact__another .school-contact__another-items .school-contact__another-items-item p {
	font-size: 0.9rem;
}

.u-is-sp {
	display: none;
}

.scroll-down {
	bottom: 130px;
	display: none;
	left: 45px;
	padding-left: 100px;
}

.scroll-down__line {
	width: 130px;
}

.scroll-down__line:after {
	width: 80%;
}

.scroll-down__text {
	font-size: 0.8rem;
}

}

@media (max-width: 767px) {

.spinner {
	font-size: 1.1rem;
}

}

@keyframes scroll-down-line {

0% {
	transform: scale(1, 1);
	transform-origin: 0% 50%;
}

20% {
	transform: scale(0.001, 1);
	transform-origin: 0% 50%;
}

20.01% {
	transform-origin: 100% 50%;
}

38% {
	transform: scale(1, 1);
	transform-origin: 100% 50%;
}

}

@keyframes bounce {

0%,15%,38%,60%,75% {
	transform: translateX(0);
}

30% {
	transform: translateX(10px);
}

45% {
	transform: translateX(5px);
}

}

