body{
	overflow-x: hidden;
}
/*---top---*/
.top_wrap {
	width: 1200px;
	margin: 0 auto;
	margin-top: 100px;
}
.top_wrap h2 {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #111;
	font-size: 26px;
	line-height: 30px;
	margin-bottom: 20px;
	padding-bottom: 10px;
}
.top_wrap h2 img {
	margin-right: 10px;
}
.t_main {
	margin-bottom: 50px;
}
.t_menu_wrap {}
.t_menu_ttl {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px;
}
.t_menu_ttl h3 {
	display: flex;
	align-items: center;
	font-size: 20px;
	line-height: 30px;
}
.t_menu_ttl h3 img {
	margin-right: 10px;
	margin-top: 3px;
}
.t_menu_link {
	width: 360px;
}
.t_menu_link a {
	border: 2px solid #008dd0;
	border-radius: 3px;
	background: #e6f4fb;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 7px 20px;
	color: #008dd0;
	font-size: 15px;
	line-height: 23px;
}
.t_menu_link a:hover {
	background: #008dd0;
	color: #fff;
}
.t_menu_link i {}
.t_menu_box {
	background: #f9f7f1;
	padding: 40px;
	padding-bottom: 20px;
	margin-bottom: 60px;
}
.t_menu_box ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.t_menu_box li {
	width: 360px;
	margin-bottom: 20px;
	margin-right: 20px;
}
.t_menu_box li:nth-child(3n) {
	margin-right: 0;
}
.t_menu_box a {
	border: 1px solid #111;
	border-radius: 5px;
	background: #fff;
	color: #111;
	padding: 17px 25px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 16px;
	line-height: 25px;
}
.t_menu_box a:hover {
	border: 1px solid #008dd0;
	background: #e6f4fb;
	color: #008dd0;
}
.t_menu_box a i {}
.t_search_box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 20px;
}
.t_search_box p {
	font-size: 15px;
	line-height: 24px;
}
.t_search_box_form {}
.cms_keysearch_form input {
	width: 600px;
}
/*---/top---*/
.f_media_logo {
	position: absolute;
	right: 5px;
	bottom: 3px;
	display: flex;
	align-items: center;
}
.f_media_logo a {
	display: block;
	font-size: 9px;
	line-height: 15px;
	color: #fff;
}
.f_media_logo a:hover {
	opacity: 0.7;
}
.f_media_logo img {
	width: 90px;
}
/* TOP */
.t_container {
	color: #222;
	font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}
.t_container h3 {
	font-size: 42px;
	font-weight: bold;
	line-height: 1.5;
}
.t_main {
	margin: 0;
	position: relative;
	height: 85vh;
	overflow: hidden;
	padding-top: 6vw;
}
.album {
	height: 100%;
	overflow: hidden;
}
.album img {
	height: 100% !important;
	object-fit: cover;
}
.t_main_inner {
	margin-left: 100px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	position: absolute;
	bottom: 8vh;
}
/* 共通のアニメーション用コンテナ */
.is-reveal {
	position: relative;
	overflow: hidden;
	display: inline-block;
	opacity: 0;
	transition: opacity 0.1s;
}
.is-active .is-reveal {
	opacity: 1;
}
.t_main_inner h2 {
	font-size: clamp(20px, 5vw, 70px);
	font-weight: bold;
	color: #fff;
	background: #46934b;
	line-height: 1.2;
	display: inline-block;
	padding: 5px 20px 10px 20px;
	box-sizing: border-box;
	margin: 0;
}
.t_main_inner h2:not(:last-of-type) {
	margin-bottom: 10px;
}
.t_main_txt {
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	margin-top: 20px;
	padding-left: 20px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.is-reveal::before,
.is-reveal::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	transform: translateX(-101%);
}
.is-reveal::before {
	background-color: #53AC59;
}
.is-reveal::after {
	background-color: #fff;
	/* 参考のアクセントカラー */
}
/* テキストの中身 */
.is-reveal .inner-text {
	display: inline-block;
	transform: translateX(-110%) skewX(10deg);
	transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
	z-index: 1;
}
/* アクティブ時の動き */
.is-active .is-reveal::before {
	animation: revealCover 0.8s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
}
.is-active .is-reveal::after {
	animation: revealCover 0.8s cubic-bezier(0.39, 0.575, 0.565, 1) 0.1s forwards;
}
.is-active .is-reveal .inner-text {
	transform: translateX(0) skewX(0);
	transition-delay: 0.4s;
}
/* 遅延の設定 */
.delay-1 {
	animation-delay: 0.1s;
}
.is-active .delay-1::before {
	animation-delay: 0.1s;
}
.is-active .delay-1::after {
	animation-delay: 0.2s;
}
.is-active .delay-1 .inner-text {
	transition-delay: 0.5s;
}
.delay-2 {
	animation-delay: 0.3s;
}
.is-active .delay-2::before {
	animation-delay: 0.3s;
}
.is-active .delay-2::after {
	animation-delay: 0.4s;
}
.is-active .delay-2 .inner-text {
	transition-delay: 0.7s;
}
@keyframes revealCover {
	0% {
		transform: translateX(-101%);
	}
	100% {
		transform: translateX(101%);
	}
}
/* レスポンシブ対応 */
@media (max-width: 768px) {
	.t_main_inner {
		margin-left: 20px;
	}
	.t_main_inner h2 {
		font-size: 40px;
	}
	.t_main_txt {
		font-size: 16px;
	}
}
/* about */
.t_about {
	background: url(/img/top/about_bg.webp);
	background-position: top left;
	background-repeat: no-repeat;
	position: relative;
	padding: 115px 0 170px;
}
.t_about::after {
	content: "";
	width: 40%;
	height: 100%;
	background: url(/img/top/about_img.webp);
	background-repeat: no-repeat;
	background-position: top right;
	display: block;
	position: absolute;
	right: 0;
	top: 0;
}
.t_about_inner {
	width: 1100px;
	margin: 0 auto;
}
.t_tit_sub {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: #46934b;
	display: inline-flex;
}
.t_tit_sub::before {
	content: url(/img/top/tit_before.webp);
	display: block;
	padding-right: 5px;
}
.t_txt16 {
	padding-top: 50px;
	font-size: 16px;
	font-weight: bold;
	line-height: 2.3;
}
.t_btn01 {
	width: 256px;
	padding: 20px 0 20px 40px;
	box-sizing: border-box;
	background: #fff;
	border: 1px solid #dfdfdf;
	font-size: 16px;
	font-weight: bold;
	position: relative;
	display: block;
	color: #222;
	text-decoration: none;
	overflow: hidden;
}
.t_btn01:hover {
	color: #fff;
}
.t_btn01 .inner-text {
	position: relative;
	z-index: 2;
	display: block;
}
.t_btn01::after {
	font-family: "Font Awesome 5 Free";
	content: "\f061";
	font-weight: 900;
	width: 40px;
	height: 40px;
	display: grid;
	place-content: center;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	background: #46934b;
	color: #fff;
	z-index: 3;
	transition: all .3s ease-in-out;
}
.t_btn01:hover::after {
	background: #fff;
	color: #46934b;
}
.t_btn01::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #46934b;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .7s cubic-bezier(.19, 1, .22, 1);
	z-index: 1;
}
.t_btn01:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}
.t_about_inner .t_btn01 {
	margin-top: 65px;
}
/* message */
.t_message {
	background: url(/img/top/message_bg.webp);
	background-position: top left;
	background-repeat: no-repeat;
	background-size: 80% 100%;
	padding-top: 70px;
	position: relative;
}
.t_message_inner {
	display: flex;
	gap: 80px;
	align-items: flex-end;
	width: 1240px;
	margin: 0 auto;
}
.t_message_bg {
	background: #fff;
	padding: 40px 0 0 50px;
	width: 100%;
	box-sizing: border-box;
	margin-bottom: -30px;
}
.t_message_bg .t_btn01 {
	margin-top: 45px;
}
/*--staff--*/
.t_staff {
	padding: 180px 0 110px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.t_staff_top {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	width: 1100px;
	margin: 0 auto 40px;
}
.t_staff_swiper_outer {
	position: relative;
	width: 100%;
	max-width: 100vw;
}
.t_staff_swiper_wrap {
    position: relative;
    padding-top: 50px;
}
.t_staff_img {
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}
.t_staff_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .3s ease-in-out;
}
.t_staff_year {
	font-size: 12px;
	color: #aba9a9;
	padding-top: 15px;
}
.t_staff_name {
	font-size: 16px;
	font-weight: bold;
	color: #46934b;
	padding-top: 10px;
}
#t_staff_swiper .tag p::before{
	content: "#";
	display: inline-block;
	font-size: 12px;
	color: #aba9a9;
}
#t_staff_swiper .cms_topic_tag{
	font-size: 12px;
	color: #aba9a9;
}
#t_staff_swiper .cms_topic_tag:not(:last-of-type)::after{
	content: "/";
	display: inline-block;
}
.swiper-button-prev-custom,
.swiper-button-next-custom {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    z-index: 10;
    cursor: pointer;
    background-color: #46934b;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
    pointer-events: auto !important;
}
.swiper-button-prev-custom::after,
.swiper-button-next-custom::after {
    display: none;
}

.swiper-button-prev-custom {
    left: max(8px, calc(50vw - 680px));
    background-image: url(/img/top/arrow_left.webp);
    background-repeat: no-repeat;
    background-position: center;
}
.swiper-button-next-custom {
    right: max(8px, calc(50vw - 680px));
    background-image: url(/img/top/arrow_right.webp);
    background-repeat: no-repeat;
    background-position: center;
}

.t-staff-container {
    width: 100%;
    overflow: visible;
}
#t_staff_swiper .swiper-wrapper {
    align-items: flex-start;
}
#t_staff_swiper .swiper-slide {
    height: auto;
    flex-shrink: 0;
    border-radius: 5px;
    overflow: hidden;
    display: block;
    box-sizing: border-box;
    transition: opacity 0.3s;
}
/* レスポンシブ */
@media (max-width: 768px) {
    .swiper-button-prev-custom,
    .swiper-button-next-custom {
        top: 110px;
    }
    .t_staff_img {
        height: 220px;
    }
}
.swiper-slide a {
    width: 100%;
    display: block;
}

/* contents */
.t_contents {
	padding: 40px 0 0;
	position: relative;
}
.t_contents::after{
	content: "";
	display: block;
	background: url(/img/top/staff_bg.webp);
	background-repeat: no-repeat;
	width: 1200px;
	height: 900px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
}
.t_contents_inner {
	width: 1100px;
	margin: 0 auto;
	position: relative;
	z-index: 5;
}
.t_contents_list {
	padding-top: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.t_contents_list li {
	border-top: 1px solid #dfdfdf;
}
.t_contents_list li:nth-child(3),
.t_contents_list li:nth-child(4) {
	border-bottom: 1px solid #dfdfdf;
}
.t_contents_list a {
	width: 540px;
	display: flex;
	gap: 10px;
	align-items: flex-end;
	padding: 20px 0;
}
.t_contents_list_img {
	width: 170px;
	height: 96px;
	overflow: hidden;
}
.t_contents_list_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .3s ease-in-out;
}
.t_contents_list a:hover .t_contents_list_img img {
	transform: scale(1.1);
}
.t_con_name {
	font-size: 18px;
	font-weight: bold;
	width: 300px;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 1.4;
	color: #222;
}
.t_contents_list .tag{
	padding-top: 15px;
}
.t_contents_list .cms_topic_tag {
	font-size: 15px;
	font-weight: bold;
	color: #46934b;
	display: inline-flex;
	line-height: 1;
}
.t_contents_list .cms_topic_tag::before {
	content: "#";
	display: block;
}
.t_contents_inner .t_btn01 {
	margin: 50px auto 0;
}
/* 採用情報 */
.t_info {
	position: relative;
	padding: 0 0 200px;
	/* padding: 300px 0 200px;　採用コンテンツ復活したらこっち */
}
.t_info {
	position: relative;
}
.t_info::before {
	content: "";
	display: block;
	width: 42vw;
	height: 655px;
	background-position: left;
	position: absolute;
	/* top: 300px;　採用コンテンツ復活したらこっち */
	left: 0;
	background: url(/img/top/info_img.webp);
	background-repeat: no-repeat;
	background-size: cover;
}
.t_info_inner {
	width: 1100px;
	margin: 0 auto;
}
.t_info_r {
	width: 600px;
	margin: 0 0 0 auto;
	line-height: 1;
	padding: 60px 0;
}
.t_info_r ul {
	padding-top: 60px;
}
.t_info_r li {
	border-top: 1px solid #d8d8d9;
}
.t_info_r li:last-child {
	border-bottom: 1px solid #d8d8d9;
}
.t_info_r li a {
	padding: 40px 0;
	position: relative;
	display: block;
	color: #222;
}
.t_info_r li a:hover {
	color: #fff;
}
.t_info_r li a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #46934b;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .7s cubic-bezier(.19, 1, .22, 1);
	z-index: 1;
}
.t_info_r li a:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}
.t_info_r li a::after {
	font-family: "Font Awesome 5 Free";
	content: "\f061";
	font-weight: 900;
	width: 40px;
	height: 40px;
	display: grid;
	place-content: center;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	background: #46934b;
	color: #fff;
	z-index: 3;
	transition: all .3s ease-in-out;
}
.t_info_r li a:hover::after {
	background: #fff;
	color: #46934b;
}
.t_info_r li a .inner-text {
	position: relative;
	z-index: 2;
	display: block;
}
.t_info_name {
	font-size: 18px;
	font-weight: bold;
	padding-left: 10px;
}
.t_info_about {
	font-size: 12px;
	padding-top: 10px;
	padding-left: 10px;
}
/* エントリー */
.t_entry {
	padding: 70px 0 90px;
	background: url(/img/top/entry_bg.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.t_entry h3, .t_entry .t_tit_sub {
	color: #fff;
}
.t_entry .t_tit_sub::before {
	content: url(/img/top/tit_before_w.webp);
}
.t_ent_inner {
	width: 1100px;
	margin: 0 auto;
}
.t_ent_top {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.t_ent_top_txt {
	font-size: 16px;
	font-weight: bold;
	color: #fff;
}
.t_ent_list {
	display: flex;
	justify-content: space-between;
	padding-top: 65px;
}
.t_ent_list li a {
	width: 340px;
	background: #f5f5f5;
	padding: 40px 0;
	display: block;
}
.t_ent_name {
	text-align: center;
	font-size: 23px;
	font-weight: bold;
	color: #222;
	height: 50px;
	place-content: center;
}
.t_ent_name span {
	font-size: 18px;
	display: block;
	line-height: 1.8;
}
.t_ent_name_sub {
	text-align: center;
	font-size: 14px;
	padding-top: 20px;
	color: #222;
	line-height: 1;
}
.t_ent_list li a .t_btn01 {
	margin: 30px auto 0;
}