.header_main {
	position: fixed;
	z-index: 100;
	width: 100%;
	justify-content: space-between;
	padding-left: 20px;
}
.header_main.header_scroll {
	background: rgb(255 255 255 / 80%);
}
.header_main .header_logo img:last-child {
	display: none;
}
.header_main.header_scroll .header_logo img:first-child {
	display: none;
}
.header_main.header_scroll .header_logo img:last-child {
	display: block;
}
.header_menu {
	font-size: 14px;
}
.header_menu ul {
	display: flex;
	align-items: center;
}
nav#menu ul li {
	padding: 0 1em;
	border-left: solid 1px #fff;
	line-height: 1.3;
	position: relative;
}
nav#menu ul li:first-child {
	border-left: unset;
}
nav#menu ul li:last-child {
	border-left: unset;
	padding: 0 0;
}
nav#menu ul li a {
	color: #fff;
	display: block;
}
nav#menu ul li:last-child a {
	background: #fff;
	color: #001437;
	padding: 2em 1em;
}
.header_main.header_scroll nav#menu ul li a {
	color: #001437;
}
.header_main.header_scroll nav#menu ul li.menu__contact a {
	background: #001437;
	color: #fff;
}
.header_main.header_scroll nav#menu ul li {
    border-left: solid 1px #001437;
    position: relative;
}
.header_main.header_scroll nav#menu ul li:first-child {
	border-left: unset;
}
.header_menu ul.submenu_list {
    display: none;
    position: absolute;
    left: 0;
    padding-top: 1em;
}
.header_menu ul li:hover ul.submenu_list {
    display: block;
}
.header_menu ul li:hover ul.submenu_list li {
    border: none!important;
    background: #001437;
    width: 15em;
    padding: 1.3em!important;
    border-bottom: solid 1px #fff!important;
    font-size: 13px;
}
.header_menu ul li:hover ul.submenu_list li:last-child {
    border-bottom: none!important;
}
.header_menu ul li:hover ul.submenu_list li a {
    border: none!important;
    background: #001437;
    color: #fff!important;
}
.header_menu ul li:hover ul.submenu_list li:last-child a {
    background: #001437!important;
    padding: 0!important;
	color: #fff!important;
}
.header_menu ul li:hover ul.submenu_list li:hover {
    opacity: 0.8;
}

.mv {
	position: relative;
	overflow: hidden;
	height: 100vh;
	color: #fff;
	background: #001437;
}
.mv__slider .swiper-slide {
	background-image: url("/wp-content/themes/proosel-v2/assets/images/mv_bk.gif")!important;
	background-size: cover;
	background-position: left;
	background-repeat: no-repeat;
	height: 100vh;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.mv__slider .swiper-slide:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgb(30 44 91 / 80%);
	background: rgb(1 15 61 / 80%);
	left: 0;
}
.mv__image {
	width: 100%;
	position: relative;
	z-index: 1;
}
.mv__image img {
	width: 80%;
	height: calc(100vh - 148.4px);
	margin-left: 20%;
	object-fit: cover;
}
.mv__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 60%;
	height: 100%;
	background: linear-gradient(to right, rgba(0, 39, 89, 0.9), transparent);
	z-index: 1;
}
.mv__inner {
    display: flex;
    align-items: flex-end;
}
.mv__text {
    position: absolute;
    left: 5%;
    z-index: 2;
    text-shadow: 0 0 10px BLACK;
    margin-bottom: 5%;
}
/* MV TEXT ANIMATION */
.mv__headline--subttl {
    position: relative;
    height: fit-content;
    display: flex;
    align-items: center;
    font-size: 1.7rem;
    font-weight: bold;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-style: italic;
}
.mv__headline--subttl span {
	position: absolute;
	opacity: 0;
	transform: scale(0.1);
	white-space: nowrap;
	animation: textSequence 16s infinite;
}
.mv__headline--subttl span:nth-child(1) {
	animation-delay: 2s;
}
.mv__headline--subttl span:nth-child(2) {
	animation-delay: 6s;
}
.mv__headline--subttl span:nth-child(3) {
	animation-delay: 10s;
}
.mv__headline--subttl span:nth-child(4) {
	animation-delay: 14s;
}
@keyframes textSequence {
	0% {
		opacity: 0;
		transform: scale(0.1);
	}
	12.5% {
		opacity: 1;
		transform: scale(1);
	}
	18.75% {
		opacity: 1;
		transform: scale(1);
	}
	25% {
		opacity: 0;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(1);
	}
}

.mv__news {
	position: absolute;
	right: 37.1px;
	bottom: 37.1px;
	z-index: 2;
	width: 350px;
	background: #fff;
	color: #000;
	display: flex;
	align-items: center;
	padding: 10px;
}
.mv__news-thumb {
	width: 30%;
	position: relative;
	overflow: hidden;
	height: fit-content;
}
.mv__news-thumb:before {
	content: "";
	display: block;
	padding-top: 100%;
}
.mv__news-thumb img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
	max-width: none;
	min-height: 100%;
	object-fit: cover;
}
a:hover .mv__news-thumb img {
	transform: translate(-50%, -50%) scale(1.1);
}
.mv__news-content {
	width: 70%;
	font-size: 14px;
}
.mv__news a {
	display: flex;
	align-items: center;
	width: 100%;
}
.mv__news-content {
	width: 70%;
	font-size: 14px;
	padding-left: 1em;
}
.mv__news-meta {
	font-size: 12px;
	display: flex;
	align-items: center;
}
.column_category__content {
	color: #001741;
	margin-right: 1em;
}
.mv__news-date {
	color: #B1B1B1;
	font-weight: 400;
}
.mv__news-title {
	font-size: 13px;
	margin-top: 0.3em;
}
.mv__headline {
	font-family: 'Open Sans';
	font-size: 56px;
	font-weight: bold;
	letter-spacing: 2px;
}
.mv__sub {
	font-size: 23px;
	font-weight: bold;
}
.mv__headline--ttl {
    font-size: 50px;
    text-shadow: 0 0 10px BLACK;
    margin-bottom: 1em;
    font-style: italic;
}
.mv__headline--ttl span.mv__headline--fontbig {
    font-size: 3em;
    margin-right: 0.3em;
}
.mv__headline--logo {
    margin-bottom: -1em;
}
.mv__headline--logo img {
    height: 4em;
}
.mv__desc {
	font-size: 18px;
	margin-top: 50px;
	line-height: 2;
}
.mv__nav {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 100px;
    gap: 10px;
}
.mv__nav .swiper-button-prev {
	color: rgb(255 255 255 / 0%);
	position: relative;
	left: unset;
	right: unset;
	display: block;
	width: 50px;
	height: 50px;
	top: unset;
	margin-top: unset;
	opacity: 0;
}
.mv__nav .swiper-button-prev:after {
	display: none;
}
.mv__nav .swiper-button-prev img {
	width: 100%;
	height: 100%;
}
.mv__nav .swiper-button-next {
	color: rgb(255 255 255 / 0%);
	position: relative;
	left: unset;
	right: unset;
	display: block;
	width: 50px;
	height: 50px;
	top: unset;
	margin-top: unset;
	opacity: 0;
}
.mv__nav .swiper-button-next:after {
	display: none;
}
.mv__nav .swiper-button-next img {
	width: 100%;
	height: 100%;
}
.swiper-pagination.swiper-pagination-fraction.swiper-pagination-horizontal {
	position: relative;
	left: unset;
	right: unset;
	top: 0em;
	width: fit-content;
	margin: 0 1.5em;
	font-size: 18px;
}
.v2-mv__inner--bk {
    width: 100%;
    position: relative;
    overflow: hidden;
	height: 100vh;
}
.v2-mv__inner--bk img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
	max-width: none;
	min-height: 100%;
    object-fit: cover;
}
.v2-mv__inner {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(0deg 0% 0% / 20%);
}
.v2-mv__inner .mv__text {
    color: #fff;
    margin-bottom: 0;
    margin-top: 5em;
}

.mainh2 {
	font-size: 25px;
	font-weight: 600;
	letter-spacing: 3px;
}
.mainh2_en {
	font-size: 12px;
	display: block;
	margin-top: 0.5em;
	letter-spacing: 1px;
	font-family: 'Open Sans';
}
.lead {
	font-size: 14px;
	line-height: 2;
}
.button {
	background: #fff;
	width: fit-content;
	padding: 1em 1.5em 1em 2.5em;
	font-size: 14px;
	min-width: 17em;
	border-radius: 3em;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #1e2c5b;
}
.button__textarrow {
	background: url(/wp-content/themes/proosel-v2/assets/images/btn_icon.svg);
	background-size: 100%;
	background-position: top;
	background-repeat: no-repeat;
	width: 2em;
	height: 1em;
	display: block;
}

.tp_about {
	background: #001741;
	padding: 130px 0 100px;
	color: #fff;
}
.tp_about__inner {
	align-items: center;
}
.tp_about__content {
	width: 50%;
}
.tp_about__content--lead span {
    font-size: 20px;
    font-style: italic;
}
.tp_about__content h2 {
	margin-bottom: 1.5em;
}
.tp_about__content--lead {
	width: 80%;
	margin-bottom: 4em;
}
.tp_about__images {
	display: flex;
	width: 50%;
}
.tp_about__images--img {
	width: 47.5%;
	position: relative;
	overflow: hidden;
	height: fit-content;
	margin-top: 30px;
	box-shadow: 0 0 10px hsl(0deg 0% 0% / 0%);
}
.tp_about__images--img:last-child {
	margin-left: 5%;
	margin-top: -30px;
}
.tp_about__images--img:before {
	content: "";
	display: block;
	padding-top: 200%;
}
.tp_about__images--img img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
	max-width: none;
	min-height: 100%;
	object-fit: cover;
}
.tp_about__content--btn {
    gap: 15px;
}

.tp_features {
	padding: 100px 0 60px;
	position: relative;
}
.tp_features:after {
	content: "";
	background: #1E2C5B;
	background: #fff;
	position: absolute;
	width: 100%;
	height: 400px;
	bottom: 0;
	z-index: -1;
}
.tp_features__title {
	margin-bottom: 25px;
}
.tp_features__title strong {
	font-weight: bold;
	-webkit-background-clip: text;
	color: transparent;
	background-image: linear-gradient(to right,
		#003973,
		#0074D9,
		#00AEEF
	);
	display: inline-block;
}
.tp_features__title span {
	color: #16408D;
}
.tp_features__cards {
	margin-top: 60px;
}
.tp_features__card {
	background: #F1F5FE;
	padding: 30px;
	border-radius: 10px;
}
.tp_features__icon {
	text-align: center;
	margin-bottom: 15px;
}
.tp_features__card-title {
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	position: relative;
	margin-bottom: 1em;
	padding-bottom: 1em;
}
.tp_features__card-title:after {
	content: "";
	width: 2em;
	height: 2px;
	background: #1375BA;
	position: absolute;
	bottom: 0;
	left: calc(50% - 1em);
}
.tp_features__card-text {
	font-size: 13px;
	line-height: 2;
	margin-bottom: 2em;
	min-height: 10em;
}
.tp_features__button {
    margin: 0 auto;
    font-size: 13px;
    color: #001437;
}
.tp_features__tp_btn.tp_staff__button {
    margin-top: 2.5em;
}
.tp_service_body .tp_service__title {
    text-align: center;
    color: #fff;
}

.tp_service__block {
    background: url(/wp-content/themes/proosel-v2/assets/images/bk02.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    padding-bottom: 100px;
}
.tp_service__block:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: rgb(30 44 91 / 85%);
	background: rgb(1 15 61 / 85%);
}
.tp_service {
	position: relative;
	padding: 120px 20px 50px;
}
.tp_service__inner {
	align-items: center;
}
.tp_service__image {
	width: 45%;
	position: relative;
	overflow: hidden;
	height: fit-content;
	border-radius: 10px;
}
.tp_service__image:before {
	content: "";
	display: block;
	padding-top: 150%;
}
.tp_service__image img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
	max-width: none;
	min-height: 100%;
	object-fit: cover;
}
.tp_service__content {
	width: 50%;
	margin-left: 5%;
	color: #fff;
}
.tp_service__title {
	margin-bottom: 30px;
}
.tp_service__lead {
	margin-bottom: 1em;
}
.tp_service__item-text {
	font-size: 12px;
	line-height: 2;
}
.tp_service__item {
	margin-bottom: 10px;
}
.tp_service__item-title {
	position: relative;
	font-family: 'Open Sans';
	font-size: 20px;
	font-weight: bold;
	display: flex;
	align-items: center;
	line-height: 1;
	padding: 40px 0;
}
.tp_service__item-title .service__item_number {
	position: absolute;
	font-size: 110px;
	left: -0.3em;
	font-family: "Noto Sans JP", serif;
	color: rgb(51 51 51 / 50%);
}
.tp_service__item-title span:last-child {
	position: relative;
	margin-top: 0.5em;
	display: flex;
	align-items: baseline;
	gap: 0.3em;
}
.tp_service__item-title span:last-child span.bg_text {
	display: inline-block;
	font-size: 1.4em;
	text-decoration: unset;
	text-underline-offset: 6px;
	text-decoration-thickness: 1px;
}
.tp_service__item .tp_service__button {
	margin-top: 40px;
}
.tp_service_body {
    position: relative;
    padding: 60px 20px 80px;
}
.tp_service_body .service_body__list--content {
    box-shadow: unset;
    background: #fff;
}
.tp_service_body .service_body__list--description {
    background: #fff;
}
.service_body__list {
    justify-content: center;
}

.tp_staff {
	position: relative;
	max-width: 1440px;
	padding: 60px 20px;
}
.tp_staff__list {
	margin-bottom: 40px;
	margin-top: 20px;
}
.tp_staff__item:nth-child(2n) {
	margin-top: 4em;
}
.tp_staff:before {
	content: "";
	position: absolute;
	background: #EDF1FA;
	width: 100%;
	height: 100%;
	max-width: 1220px;
	margin: 0 auto;
	left: 0;
	right: 0;
	top: 0;
}
.tp_staff__inner {
	position: relative;
}
.tp_staff__title {
	margin-bottom: 25px;
}
.tp_staff__title span {
	color: #16408D;
}
.tp_staff__number {
	font-family: 'Montserrat';
	font-size: 60px;
	font-weight: bold;
	color: #002668;
	margin-right: 0.3em;
}
.tp_staff__name-en {
	font-family: 'Open Sans';
	font-size: 28px;
	font-weight: bold;
	line-height: 1.2;
	letter-spacing: 3px;
}
.tp_staff__name {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 1;
}
.tp_staff__photo {
	width: 100%;
	position: relative;
	overflow: hidden;
	height: fit-content;
	margin-top: -3em;
	margin-left: -5%;
}
.tp_staff__photo:before {
	content: "";
	display: block;
	padding-top: 130%;
}
.tp_staff__photo img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
	max-width: none;
	min-height: 100%;
	object-fit: cover;
}
.tp_staff__detail {
	background: #fff;
	margin-top: -3em;
	z-index: 1;
	position: relative;
	left: 3%;
	padding: 20px;
}
.tp_staff__meta {
	display: flex;
	align-items: center;
}
.tp_staff__tag {
	font-size: 12px;
	color: #120E69;
	border: solid 1px #120E69;
	width: fit-content;
	padding: 0em 1em;
}
.tp_staff__year {
	font-size: 12px;
	margin-left: 1em;
	letter-spacing: 0;
}
.tp_staff__name-ja {
	font-size: 20px;
	font-weight: bold;
	margin: 0.5em 0 0.3em;
}
.tp_staff__desc {
	font-size: 13px;
}
.tp_staff__button {
    margin: 0 auto;
    background: linear-gradient(to right, #001437, #003973, #2c5298);
    color: #fff;
}
.tp_staff__button .button__textarrow {
	background: url(/wp-content/themes/proosel-v2/assets/images/btn_icon_wh.svg);
	background-size: 100%;
	background-position: top;
	background-repeat: no-repeat;
}

.tp_recruit__title {
	margin-bottom: 25px;
}
.tp_recruit {
	background: #333333;
	color: #fff;
	padding: 80px 0;
}
.tp_recruit__slider {
	margin: 30px 0 0;
}
.tp_recruit__slider .swiper-slide {
	width: 70%;
	border-radius: 10px;
}
.tp_recruit__slide {
	background: #fff;
	color: #000;
	padding: 30px;
}
.tp_recruit__nav {
	width: 70%;
	margin: 35px auto 0;
	display: flex;
	align-items: center;
}
.tp_recruit__button-prev.swiper-button-prev {
	color: rgb(255 255 255 / 0%);
	position: relative;
	left: unset;
	right: unset;
	display: block;
	width: fit-content;
	height: fit-content;
	top: unset;
	margin-top: unset;
}
.tp_recruit__button-prev.swiper-button-prev:after {
	display: none;
}
.tp_recruit__button-next.swiper-button-next {
	color: rgb(255 255 255 / 0%);
	position: relative;
	left: unset;
	right: unset;
	display: block;
	width: fit-content;
	height: fit-content;
	top: unset;
	margin-top: unset;
}
.tp_recruit__button-next.swiper-button-next:after {
	display: none;
}
.tp_recruit__pagination.swiper-pagination.swiper-pagination-custom.swiper-pagination-horizontal {
	position: relative;
	left: unset;
	right: unset;
	top: 0;
	width: fit-content;
	margin: 0 1.5em;
	font-size: 15px;
}
.tp_recruit__badge-group {
	display: flex;
	margin-bottom: 1em;
	font-size: 12px;
}
.tp_recruit__badge {
	background: #120E69;
	color: #fff;
	border: solid 1px #120E69;
	padding: 0.1em 1em;
	margin-right: 0.8em;
}
.tp_recruit__badge:last-child {
	background: #fff;
	color: #120E69;
}
.tp_recruit__slide-title {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 0.7em;
}
.tp_recruit__slide-text {
	font-size: 14px;
	margin-bottom: 20px;
}
.tp_recruit__info {
	background: #ECF1FA;
	padding: 20px 0;
	border-radius: 10px;
	font-size: 13px;
	display: flex;
	flex-wrap: wrap;
}
.tp_recruit__info-block {
	width: 50%;
	border-right: solid 1px #120E69;
	padding: 0 30px;
}
.tp_recruit__info-block strong {
	color: #120E69;
	font-weight: bold;
	font-size: 14px;
}
.tp_recruit__info-block:last-child {
	border: none;
}
.tp_recruit__button__maxwidth {
	width: 70%;
	text-align: right;
	margin: -45px auto 0;
}
.tp_recruit__button__maxwidth .tp_recruit__button {
	margin: 0 0 0 auto;
	position: relative;
	z-index: 1;
}

.tp_voice {
    background: url(/wp-content/themes/proosel-v2/assets/images/mv2.jpg);
	background: url(/wp-content/themes/proosel-v2/assets/images/silver_bk.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 1;
}
.tp_voice:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(158 158 158 / 70%);
}
/*
.tp_voice:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: rgb(22 64 141 / 85%);
}
.tp_voice__title {
	color: #fff;
	margin-bottom: 40px;
}
.tp_voice__list .voice__item {
	box-shadow: unset;
}
*/
.tp_voice__title {
    margin-bottom: 40px;
    color: #001437;
    text-shadow: 0px 0px 10px #fff;
}
.tp_voice__inner {
    position: relative;
    padding: 80px 0;
    z-index: 1;
}
.voice__item--description {
	background: #fff;
	padding: 20px;
}
.voice__item--meta {
	font-size: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.voice__item--company {
	color: #16408D;
	margin-right: 1em;
}
.voice__item--ttl {
	font-size: 17px;
	margin-bottom: 2em;
	min-height: 5.2em;
}
.voice__item--ttl br {
	display: none;
}
.voice__item--date {
	color: #B1B1B1;
	font-weight: 400;
}
.voice__item {
	display: block;
	margin-bottom: 4%;
}
.tp_voice__button--wrap a {
	margin: 0 auto;
}
.tp_voice__button {
    margin: 0 auto;
    background: linear-gradient(to right, #003973, #2c5298, #35589b);
    color: #fff;
}
.tp_voice__button .button__textarrow {
    background: url(/wp-content/themes/proosel-v2/assets/images/btn_icon_wh.svg);
    background-size: 100%;
    background-position: top;
    background-repeat: no-repeat;
}

.tp_seminar {
    background: url(/wp-content/themes/proosel-v2/assets/images/bk02.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
.tp_seminar__inner {
    position: relative;
    padding: 80px 0;
}
.tp_seminar:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgb(30 44 91 / 85%);
    background: rgb(1 15 61 / 85%);
}
.tp_seminar__title {
	color: #fff;
	margin-bottom: 40px;
}
.tp_seminar__list .seminar__list {
	box-shadow: unset;
}
.tp_seminar__button {
    margin: 0 auto;
}
.tp_seminar .seminar__list--content {
    background: #fff;
}
.tp_seminar .seminar__list--content .seminar__list--description {
    padding: 0.5em 1em;
}

.cta {
    background: #333333;
    background: url(/wp-content/themes/proosel-v2/assets/images/silver_bk.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    padding: 80px 0;
}
.cta:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(48 48 48 / 70%);
}
.cta__boxes {
    position: relative;
    z-index: 1;
}
.cta__box {
    background: #fff;
    border-radius: 10px;
    padding: 40px 30px 30px;
    box-shadow: 5px 5px 10px #555555;
}
.cta__label {
	font-size: 12px;
	display: block;
	margin-bottom: 0.5em;
	letter-spacing: 1px;
	font-family: 'Open Sans';
	color: #16408D;
}
.cta__title {
	margin-bottom: 0.7em;
	font-size: 22px;
	font-weight: bold;
	letter-spacing: 3px;
}
.cta__highlight {
	color: #16408D;
	font-weight: 600;
	margin-bottom: 0.5em;
}
.cta__button {
	margin: 2em 0 0;
	background: linear-gradient(to right, #003973, #2c5298, #35589b);
	color: #fff;
	font-size: 13px;
}
.cta__button .button__textarrow {
	background: url(/wp-content/themes/proosel-v2/assets/images/btn_icon_wh.svg);
	background-size: 100%;
	background-position: top;
	background-repeat: no-repeat;
}

footer {
    background: #001741;
    padding: 80px 0 20px;
    color: #fff;
}
footer a {
	color: #fff;
}
.footer__branding {
	font-size: 14px;
	line-height: 2;
	margin-bottom: 2em;
}
.footer__company--name {
	font-size: 16px;
	margin-bottom: 1em;
}
.footer__branding img {
	margin-bottom: 1em;
}
.footer__copy {
	font-size: 12px;
	margin-top: 40px;
}
.footer__nav {
	flex-wrap: wrap;
	justify-content: center;
	font-size: 14px;
}
.footer__nav a {
	padding: 0 1em;
	border-right: solid 1px #fff;
	line-height: 1.2;
}
.footer__nav a:last-child {
	border-right: none;
}
.footer__cta {
	font-size: 14px;
	justify-content: center;
	margin: 2em 0 4em;
}
.footer__cta a {
	background: #fff;
	display: block;
	color: #032650;
	padding: 0.7em;
	border-radius: 5px;
	border: solid 1px #fff;
	margin: 0 1em;
	width: 200px;
	text-align: center;
}
.footer__cta a.footer__btn.footer__btn--download {
	background: #032650;
	color: #fff;
}
.floating_cta {
	position: fixed;
	right: 0;
	top: calc(50% - 155px);
	top: 100px;
	z-index: 10000;
	writing-mode: vertical-rl;
	display: flex;
}
.floating_cta__btn {
	background: #F44336;
	color: #fff;
	padding: 1em;
	letter-spacing: 3px;
	font-size: 15px;
	border: solid 1px #fff;
	border-bottom: none;
	border-right: none;
}
.floating_cta__btn span {
    writing-mode: initial;
    line-height: 1.4;
    padding-left: 0.15em;
}
.floating_cta__btn--contact {
    background: #009688;
    border-bottom: solid 1px #fff;
}

#page-top {
	position: fixed;
	bottom: 0em;
	right: 0em;
	font-size: 80%;
	z-index: 100000;
	width: 56.5px;
	height: 56.5px;
}
#page-top a {
	position: absolute;
	background: #001741;
	display: flex!important;
	width: 100%;
	height: 100%;
	border: solid 1px #fff;
	justify-content: center;
	align-items: center;
	border-radius: 0px;
	cursor: pointer;
	transform: rotate(270deg);
}
p#page-top a:before {
	content: "";
	opacity: 1;
	width: 15px;
	height: 15px;
	content: "";
	display: inline-block;
	vertical-align: middle;
	background: no-repeat center/contain;
	background-image: url(data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210px%22%20height%3D%2213px%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20fill%3D%22%23fff%22%20d%3D%22M9.488%2C6.130%20C9.925%2C6.440%2010.31%2C7.51%209.725%2C7.494%20C9.660%2C7.587%209.580%2C7.668%209.488%2C7.734%20L2.481%2C12.709%20C2.44%2C13.19%201.442%2C12.911%201.137%2C12.468%20C1.23%2C12.303%200.962%2C12.106%200.963%2C11.905%20L0.963%2C1.958%20C0.962%2C1.418%201.394%2C0.979%201.927%2C0.978%20C2.125%2C0.978%202.319%2C1.39%202.481%2C1.154%20L9.488%2C6.130%20Z%22%2F%3E%3C%2Fsvg%3E);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

/* ANIMATION */
.focus-in-contract--center {
	-webkit-animation: focus-in-contract--center 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: focus-in-contract--center 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@-webkit-keyframes focus-in-contract--center {
	0% {
		letter-spacing: 1em;
		-webkit-filter: blur(12px);
		filter: blur(12px);
		opacity: 0;
	}
	100% {
		-webkit-filter: blur(0px);
		filter: blur(0px);
		opacity: 1;
	}
}
@keyframes focus-in-contract--center {
	0% {
		letter-spacing: 1em;
		-webkit-filter: blur(12px);
		filter: blur(12px);
		opacity: 0;
	}
	100% {
		-webkit-filter: blur(0px);
		filter: blur(0px);
		opacity: 1;
	}
}
.focus-in-contract--1 {
	-webkit-animation: focus-in-contract 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: focus-in-contract 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.focus-in-contract--2 {
	-webkit-animation: focus-in-contract 1.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: focus-in-contract 1.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
.focus-in-contract--3 {
	-webkit-animation: focus-in-contract 2.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	animation: focus-in-contract 2.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@-webkit-keyframes focus-in-contract {
	0% {
		letter-spacing: 1em;
		-webkit-filter: blur(12px);
		filter: blur(12px);
		opacity: 0;
	}
	100% {
		-webkit-filter: blur(0px);
		filter: blur(0px);
		opacity: 1;
	}
}
@keyframes focus-in-contract {
	0% {
		letter-spacing: 1em;
		-webkit-filter: blur(12px);
		filter: blur(12px);
		opacity: 0;
	}
	100% {
		-webkit-filter: blur(0px);
		filter: blur(0px);
		opacity: 1;
	}
}
.text-focus-in--1 {
	-webkit-animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) 0s both;
	animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) 0s both;
}
.text-focus-in--2{
	-webkit-animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) 0.5s both;
	animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) 0.5s both;
}
.text-focus-in--3{
	-webkit-animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) 1s both;
	animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) 1s both;
}
.text-focus-in--4{
	-webkit-animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) 1.5s both;
	animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) 1.5s both;
}
.text-focus-in--5{
	-webkit-animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) 2s both;
	animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) 2s both;
}
.text-focus-in--6{
	-webkit-animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) 2.5s both;
	animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) 2.5s both;
}
@-webkit-keyframes text-focus-in {
	0% {
		-webkit-filter: blur(12px);
		filter: blur(12px);
		opacity: 0;
	}
	100% {
		-webkit-filter: blur(0px);
		filter: blur(0px);
		opacity: 1;
	}
}
@keyframes text-focus-in {
	0% {
		-webkit-filter: blur(12px);
		filter: blur(12px);
		opacity: 0;
	}
	100% {
		-webkit-filter: blur(0px);
		filter: blur(0px);
		opacity: 1;
	}
}

.scroll_animation__bottom {
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s ease;
}
.scroll_animation__bottom.is-show {
	opacity: 1;
	transform: translateY(0);
}
.scroll_animation__fade {
	opacity: 0;
	transition: opacity 1s ease;
}
.scroll_animation__fade.is-show {
	opacity: 1;
}
.scroll_animation__left {
	opacity: 0;
	transform: translateX(-50px);
	transition: all 0.8s ease;
}
.scroll_animation__left.is-show {
	opacity: 1;
	transform: translateX(0);
}
.scroll_animation__right {
	opacity: 0;
	transform: translateX(50px);
	transition: all 0.8s ease;
}
.scroll_animation__right.is-show {
	opacity: 1;
	transform: translateX(0);
}
.scroll_animation__zoom {
	opacity: 0;
	transform: scale(0.9);
	transition: all 0.8s ease;
}
.scroll_animation__zoom.is-show {
	opacity: 1;
	transform: scale(1);
}
.delay01 { transition-delay: 0.2s; }
.delay02 { transition-delay: 0.4s; }
.delay03 { transition-delay: 0.6s; }
.delay04 { transition-delay: 0.8s; }
.delay05 { transition-delay: 1s; }
.delay06 { transition-delay: 1.2s; }

/* Accordion */
.accordion-003 {
	margin-bottom: 30px;
	/* border-bottom: 2px solid #d0d0d0; */
}
.accordion-003 summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding: 1em 20px;
	color: #fff;
	font-weight: 600;
	cursor: pointer;
	background: #1e2c5b;
}
.accordion-003 summary::-webkit-details-marker {
	display: none;
}
.accordion-003 summary::before, .accordion-003 summary::after {
	width: 2px;
	height: .9em;
	border-radius: 0px;
	background-color: #ffffff;
	content: '';
}
.accordion-003 summary::before {
	position: absolute;
	right: 1.25em;
	rotate: 90deg;
}
.accordion-003 summary::after {
	transition: rotate .3s;
}
.accordion-003[open] summary::after {
	rotate: 90deg;
}
.accordion-003 .startup__list--text {
	transform: translateY(-10px);
	opacity: 0;
	margin: 0;
	padding: 40px 20px;
	transition: transform .5s, opacity .5s;
	border: solid 1px #1e2c5b;
	font-size: 15px;
}
.accordion-003[open] .startup__list--text {
	transform: none;
	opacity: 1;
}

/* CONTACT FORM */
.contact-form__desc {
    text-align: center;
    margin: 0 0 60px;
}
.contact-form__form {
	font-size: 16px;
	line-height: 1.6;
}
.p-form dl {
	width: 100%;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	border-top: solid 1px #b9b9b9;
	padding: 2em 0;
}
.p-form dt {
    width: 30%;
    height: fit-content;
    font-size: 15px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1em;
    font-weight: 500;
    padding-right: 2em;
}
.p-form dd {
    width: 70%;
    margin-left: 0;
}
.c-formRequired {
    background: #F44336;
    color: #fff;
    display: inline-block;
    padding: 0.1em 1em;
    font-size: 11px;
    border-radius: 2px;
    text-align: center;
    width: fit-content;
}
.c-formInput input[type="text"],
.c-formInput input[type="email"],
.c-formTextarea textarea {
	width: 100%;
	border: 1px solid #ccc;
	padding: 10px;
	border-radius: 4px;
	font-size: 15px;
	box-sizing: border-box;
}
.c-formTextarea textarea {
	resize: vertical;
	min-height: 120px;
}
/*
.c-formRadioAccordion {
    padding: 0 10px;
    border: 1px solid #d5d5d5;
    border-radius: 5px;
}
.c-formRadioAccordion .u-accordion--trigger {
    color: #2f2f2f;
    font-size: 1.4rem;
    font-weight: 300;
    padding: 1.7rem 0;
    position: relative;
}
.c-formRadioAccordion .u-accordion--trigger::after {
    content: '';
    width: 1rem;
    height: 1rem;
    border-top: 3px solid #2f2f2f;
    border-left: 3px solid #2f2f2f;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transform: translateY(-10%) rotate(45deg);
    transform: translateY(-10%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(-135deg);
    transform: translateY(-50%) rotate(-135deg);
}
.c-formRadioAccordion .u-accordion--target {
    display: none;
}
.c-formRadioAccordion .u-accordion--target .vertical-item {
    display: block;
}
.c-formRadioAccordion .mwform-radio-field {
    border-top: 1px solid #F4F2F2;
}
.c-formRadioAccordion .mwform-radio-field label {
    display: block;
    padding: 2rem 1rem;
}
.mwform-checkbox-field input, .mwform-radio-field input {
    margin-right: 5px;
}
.c-formRadioAccordion .mwform-radio-field-text {
    color: #2f2f2f;
    font-size: 1.4rem;
    font-weight: 300;
}
*/
.u-accordion--trigger {
    display: none;
}
.u-accordion--target {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.mw_wp_form .u-accordion--target .vertical-item + .vertical-item {
    margin-top: 0;
}
.p-form__acceptTerms {
    padding: 0 15px;
    margin-bottom: 40px;
    font-size: 14px;
    line-height: 3;
}
.btn.c-formSubmit {
    text-align: center;
}
.p-form__submit .c-btn__inner {
    background: #1e2c5b;
    color: #fff;
    padding: 12px 5em;
    font-size: 15px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.3s ease;
}
.p-form__submit .c-btn__inner:hover {
	background: #1976d2;
}


/* SERVICE FLOW */
.service_flow__step-tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin-bottom: 50px;
	max-width: 1000px;
	margin: 0 auto 50px;
}
.step-tab {
	background: #fff;
	border: solid 1px #1E2C5B;
	padding: 0.4em 1em;
	cursor: pointer;
	font-size: 14px;
	letter-spacing: 0;
	color: #333;
	transition: 0.3s;
	position: relative;
}
.step-tab.is-active {
	background-color: #1E2C5B;
	color: #fff;
	border-color: #1E2C5B;
}
.service_flow__step--swiper {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 0px 60px;
}
.flow-swiper-pagination {
	bottom: 15px!important;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #1e2c5b;
}
.swiper-pagination-bullet {
	background: #c0c6d7;
	opacity: 1;
}
.swiper-pagination-bullet {
	height: 14px!important;
	width: 14px!important;
}
.service_flow__step--content {
	text-align: center;
	padding: 40px 40px 30px;
	background: #fff;
	height: fit-content!important;
	border: solid 1px #776E59;
}
.service_flow__step--content h2 {
	font-size: 24px;
	font-family: "Noto Serif JP", serif;
	font-weight: 500;
	margin-bottom: 1em;
}
.service_flow__step--img {
	width: 100%;
	position: relative;
	overflow: hidden;
	height: fit-content;
	margin-bottom: 20px;
}
.service_flow__step--img:before {
	content: "";
	display: block;
	padding-top: 65%;
}
.service_flow__step--img img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
	max-width: none;
	min-height: 100%;
	object-fit: cover;
}

/* PAGE */
.breadcrumbs {
	padding-left: 20px;
	position: absolute;
	top: 75px;
	color: #fff;
	font-size: 12px;
	font-weight: 400;
}
.breadcrumbs a {
	color: #fff;
}
.low_hd__mainpage {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.low_hd__mainpage--bk {
	width: 100%;
	position: relative;
	overflow: hidden;
	height: fit-content;
}
.low_hd__mainpage--bk:before {
	content: "";
	display: block;
	padding-top: 25%;
}
.low_hd__mainpage--bk:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(4 24 91 / 50%);
    background: rgb(1 15 61 / 70%);
}
.low_hd__mainpage--bk img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
	max-width: none;
	min-height: 100%;
	object-fit: cover;
}
.low_hd__mainpage--content {
	position: absolute;
}
.low_hd__mainpage--content h1 {
	color: #fff;
	display: flex;
	flex-wrap: wrap;
	text-align: center;
	justify-content: center;
	line-height: 2;
	margin-top: 30px;
	font-size: 30px;
}
.low_hd__mainpage--content h1 span {
	display: block;
	order: 1;
	font-size: 0.5em;
	width: 100%;
}
.low_hd__mainpage--content h1 br {
	display: none;
}
.main_page {
	padding: 80px 0;
}
.main_page.maxwidth {
	padding: 80px 20px;
}
.low_voice.maxwidth1000 {
    padding: 80px 20px;
}
.catch {
	font-family: "Noto Serif JP", serif;
	font-size: 32px;
	line-height: 1.8;
	text-align: center;
	color: #1e2c5b;
}
.c-pagination {
	margin-top: 40px;
}
.c-pagination_list {
	display: flex;
	justify-content: center;
	align-items: center;
}
.c-pagination_list li {
	margin: 0 6px;
	height: 40px;
}
.c-pagination_list li a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	width: 40px;
	font-size: 14px;
	border: 1px solid #120e6a;
	text-decoration: none;
	color: #333;
}
.c-pagination_list li a.current {
	background-color: #120e6a;
	color: #fff;
}
.c-pagination_list li a.prev, .c-pagination_list li a.next {
	position: relative;
}
.c-pagination_list li a.prev::before, .c-pagination_list li a.next::before {
	display: block;
	content: "";
	height: 6px;
	width: 6px;
	border-top: 1px solid #120e6a;
	border-right: 1px solid #120e6a;
	position: absolute;
	top: 50%;
	left: 50%;
}
.c-pagination_list li a.next::before {
	transform: translate(-50%, -50%) translateX(-1px) rotate(45deg);
}
.c-pagination_list li a.prev::before {
	transform: translate(-50%, -50%) translateX(1px) rotate(-135deg);
}

/* ABOUT PAGE */
.about__catch {
    margin-bottom: 0.3em;
}
.about__sub_catch {
    font-family: "Noto Serif JP", serif;
    font-size: 22px;
    position: relative;
    padding-bottom: 1em;
    text-align: center;
    margin-bottom: 2em;
}
.about__sub_catch:after {
    content: "";
    width: 3em;
    height: 1px;
    background: #000;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.about__list--content {
	margin-bottom: 80px;
}
.about__list--img {
	width: 75%;
	position: relative;
	overflow: hidden;
	height: fit-content;
}
.about__list--content:nth-child(2n) .about__list--img {
	margin-left: 25%;
}
.about__list--img:before {
	content: "";
	display: block;
	padding-top: 45%;
}
.about__list--img img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: auto;
	max-width: none;
	min-height: 100%;
	object-fit: cover;
}
.about__list--description {
    width: 60%;
    max-width: 700px;
    margin-left: 40%;
    margin-top: -10%;
    background: #fff;
    position: relative;
    padding: 3em;
    font-size: 14px;
    box-shadow: 5px 5px 10px #d4d4d4;
    line-height: 2;
}
.about__list--ttl {
    font-size: 30px;
    margin-bottom: 0.5em;
    line-height: 1.5;
    display: flex;
    gap: 10px;
    border-bottom: solid 1px #000;
    padding-bottom: 0.5em;
}
.about__list--ttl_ttl {
    font-size: 25px;
}
.about__list--ttl span:first-child {
    color: #1e2c5b;
    font-weight: bold;
    display: inline-block;
    margin-right: 0.3em;
    line-height: 1.2;
}
.about__list--content:nth-child(2n) .about__list--description {
	margin-left: 5%;
}

/* SERVICE PAGE */
.service__intro {
	text-align: center;
	padding: 80px 20px;
}
.service__catch {
	margin-bottom: 1em;
}
.service__catch span {
	font-size: 0.7em;
	margin-top: 1em;
	display: block;
}
.service__intro--text {
	font-size: 15px;
	line-height: 2;
}
.service_body__list--content {
	width: 32%;
	margin-right: 2%;
	margin-bottom: 4%;
	box-shadow: 5px 5px 10px #d4d4d4;
}
.service_body__list--content:nth-child(3n) {
	margin-right: 0;
}
.service_body__list--img {
    width: 100%;
    position: relative;
    overflow: hidden;
	height: fit-content;
}
.service_body__list--img:before {
	content: "";
    display: block;
    padding-top: 65%;
}
.service_body__list--img img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
	max-width: none;
	min-height: 100%;
    object-fit: cover;
}
a:hover .service_body__list--img img {
    transform: translate(-50%, -50%) scale(1.1);
}
.service_body__list--description {
	padding: 1.5em;
}
.service_body__list--text {
	font-size: 14px;
	letter-spacing: 0;
}
.service_body__list--ttl {
	font-size: 15px;
	margin-bottom: 0.3em;
}
.service_body__list--ttl {
    font-size: 18px;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.service_body__list--ttl span.service_body__list--ttl_count {
    color: #fff;
    background: #1e2c5b;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.3em;
    width: 2em;
    height: 2em;
    border-radius: 100%;
    padding-bottom: 0.1em;
}
.service_body__list--ttl_ttl {
	font-size: 20px;
}
.service_list {
	background: rgb(239 239 239 / 50%);
	margin: 60px 0 80px;
	padding: 80px 0;
}
.service__list--content {
	background: #F9F9F9;
	box-shadow: 0 0 10px #dcdcdc;
	margin-right: 2%;
	width: 23.5%;
}
.service__list--ttl {
	font-family: "Noto Serif JP", serif;
	text-align: center;
	height: 5em;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
}
.service__list--text {
	font-size: 14px;
	padding: 1em 1.5em;
}
.service_flow__body .service__catch span {
	margin-top: 0.5em;
	color: #000;
}
.service_design {
	background: rgb(239 239 239 / 50%);
	margin: 60px 0 0;
	padding: 80px 0;
}
.service_design__body .service__catch span {
	margin-top: 0.5em;
	color: #000;
}
.service_design__list {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
}
.service_design__list--img {
	width: 48%;
}
.service_design__list--ttl {
	font-size: 20px;
	margin-bottom: 0.5em;
	color: #1e2c5b;
}
.service_design__list--text {
	font-size: 15px;
}
.service_design__list--content {
	width: 100%;
}
.low_themes__flow--content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 6px;
}
.low_themes__flow--list {
    position: relative;
}
.low_themes__flow--content ul {
    padding: 0;
}
.low_themes__flow--list::before {
    content: "";
    width: 11px;
    height: 100%;
    background: #eee;
    margin-left: -129px;
    display: block;
    position: absolute;
    top: 0;
    left: 123px;
    border-radius: 20px;
}
.low_themes__flow--content li {
    list-style-type: none;
}
.low_themes__flow--list > li {
    position: relative;
}
.low_themes__flow--list > li:not(:last-child) {
    margin-bottom: 30px;
}
.low_themes__flow--list > li dl {
    padding-left: 45px;
    position: relative;
}
.low_themes__flow--list > li dl::before, .low_themes__flow--list > li dl::after {
    content: "";
    display: block;
    position: absolute;
    top: 15px;
}
.low_themes__flow--list > li dl::before {
    width: 7px;
    height: 7px;
    margin-top: -3px;
    background: #032650;
    border-radius: 50%;
    left: -4px;
}
.low_themes__flow--text {
    width: 100%;
    padding-left: 1em;
}
.low_themes__flow--list > li dl dt {
    font-size: 16px;
    font-weight: 600;
    color: #032650;
    margin-bottom: 0.5em;
    display: flex;
    align-items: center;
}
.low_themes__flow--list > li .low_themes__flow--icon {
    font-size: 0.8em;
    width: 2em;
    height: 2em;
    line-height: 2;
    text-align: center;
    font-weight: bold;
    border-radius: 100vh;
    color: #fff;
    background: #032650;
    display: inline-block;
    margin-right: 0.5em;
}
.low_themes__flow--list > li dl::after {
    width: 30px;
    border-bottom: 1px dashed #999;
    position: absolute;
    left: 5px;
}
.low_themes__flow--content dd {
    margin-left: 0;
    font-size: 13px;
    letter-spacing: 0;
}
.service__feature {
    margin: 80px auto;
}
.service__intro--text span {
    font-family: "Noto Serif JP", serif;
    color: #1e2c5b;
    font-size: 20px;
}
.service__banner--img {
    width: 48%;
}
.service__endcatch {
    margin: 40px auto;
    border-bottom: double 6px;
    width: fit-content;
    padding: 0.3em 1em;
}
.table_service {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(30, 44, 91, 0.1);
    margin: 30px 0;
    font-size: 14px;
}
.table_service th {
    background: #7d7d7d;
    color: white;
    padding: 10px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    border: none;
}
.table_service td {
    padding: 10px 16px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
    border-left: none;
    border-right: none;
}
.table_service tr:last-child td {
    border-bottom: none;
}
.table_service tr:nth-child(even) {
    background-color: #f8f9fa;
}
.table_service tr:hover {
    background-color: #f0f4f8;
    transition: background-color 0.3s ease;
}
.table_service td:first-child {
    font-weight: 600;
    width: 25%;
}
.table_service td:last-child {
    color: #555;
    line-height: 1.6;
}
.service__logo {
    margin: 20px 0;
}
.service__logo--img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 23.5%;
    margin-right: 2%;
    height: 80px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0 20px;
    transition: transform 0.3s ease;
}
.service__logo--img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}
/* レスポンシブ対応 */
@media (max-width: 767px) {
	.table_service th, .table_service td {
		padding: 10px 8px;
		font-size: 11px;
	}
    .table_service td:first-child {
        width: 30%;
    }
}
.service__feature--sales {
    margin: 0 auto 100px;
}
.service__feature--sales .startup__list--text {
    font-size: 15px;
}
.service__feature--sales {
    margin: 0 auto 100px;
    max-width: 940px;
}
/* START UP */
.startup__list--last_content {
	margin: 60px 0 0px;
}
.startup__list--last_text {
	line-height: 2;
	margin-top: 0.5em;
}
.startup__list--text h3 {
	font-size: 18px;
	padding: 0.5em 0;
	margin-bottom: 0.5em;
	position: relative;
	margin-top: 1em;
}
.startup__list--text h3:first-child {
	margin-top: 0;
	padding-top: 0;
}
.startup__list--text h3:after {
	content: "";
	width: 2.5em;
	height: 1px;
	background: #000;
	bottom: 0;
	position: absolute;
	left: 0;
}

/* SEMINAR */
.seminar__list--content {
	margin-bottom: 4%;
}
.seminar__list--img {
	margin-bottom: 0.7em;
}
.seminar__list--img img {
	width: 100%;
	height: auto;
}
.seminar__list--tag {
	display: flex;
	flex-wrap: wrap;
	font-size: 12px;
	gap: 1em;
}
.seminar__list--tag li {
	background: #1e2c5b;
	color: #fff;
	padding: 0 0.5em;
}
.seminar__list--ttl {
	margin: 0.5em 0;
}
.seminar__list--text {
	font-size: 13px;
	line-height: 1.6;
	margin-top: 8px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	font-weight: 400;
}
.seminar__category--list {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 50px;
	gap: 15px;
}
.seminar__category--list a {
	color: #1e2c5b;
	display: block;
	border: solid 1px #1e2c5b;
	padding: 0.4em 2em;
	font-size: 14px;
	min-width: 13em;
	text-align: center;
}
.seminar__category--list a.active {
	background: #1e2c5b;
	color: #fff;
}

/* COMPANY */
.company__intro {
    margin: 60px auto;
    font-weight: 400;
    text-align: center;
}
.company__intro--content {
    margin-bottom: 3em;
}
.company__intro--content h2 {
    font-weight: bold;
    margin: 0 0 2em;
    font-size: 25px;
    position: relative;
}
.company__intro--content h2:after {
    content: "";
    position: absolute;
    width: 3em;
    height: 1px;
    display: block;
    background: #000;
    left: 50%;
    transform: translateX(-50%);
    bottom: -1em;
}
.company__intro--content p {
    margin: 0;
    font-size: 19px;
}
.company__intro--content p span {
    display: block;
    font-size: 16px;
    padding-left: 0.8em;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 2.5em;
    position: relative;
}
.company__message--content {
    width: 50%;
    text-align: left;
    padding-right: 3em;
    font-size: 15px;
}
.company__message--content h2 {
    font-size: 20px;
    font-weight: 600;
}
.company__message--img {
    width: 50%;
    position: relative;
    overflow: hidden;
	height: fit-content;
}
.company__message--img:before {
	content: "";
    display: block;
    padding-top: 140%;
}
.company__message--img img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
	max-width: none;
	min-height: 100%;
    object-fit: cover;
}
.low_page__ttl {
    margin-bottom: 4em;
}
.low_page__title {
    font-weight: bold;
    margin: 0;
    font-size: 30px;
    position: relative;
    color: #1e2c5b;
}
.low_page__subtitle {
    position: relative;
    font-size: 14px;
}
.low_page__subtitle:after {
    content: "";
    position: absolute;
    width: 3em;
    height: 1px;
    display: block;
    background: #000;
    left: 50%;
    transform: translateX(-50%);
    bottom: -1.8em;
}
.company__message {
    margin: 80px 0;
}
.company__intro--content_sogyobk {
    text-align: left;
    line-height: 2;
}
.company__main {
    margin-bottom: 100px;
    margin-top: 80px;
}
.company__main table {
    width: 100%;
    border-collapse: collapse;
}
.company__main tr {
    display: flex;
    border-bottom: solid 1px #e4e4e4;
    font-size: 15px;
    font-weight: 400;
}
.company__main tr:first-child {
    border-top: solid 1px #e4e4e4;
}
.company__main td {
    width: 250px;
    text-align: center;
    padding: 42px 0;
    border: unset;
}
.company__main td:nth-child(2) {
    width: calc(100% - 250px);
    padding: 42px 2em;
    border-left: solid 1px #e4e4e4;
    text-align: left;
}
.company__map {
    background: #F6F6F6;
    padding: 100px 0;
}
.company__map--iframe iframe {
    width: 100%;
    height: 30em;
    border: none;
}

/* DOWNLOAD */
.download__intro--text {
    text-align: center;
    margin: 1em 0 60px;
    line-height: 2;
}
.p-whitepaperList {
    display: flex;
    flex-wrap: wrap;
    gap: 4%;
}
.p-whitepaperList__item {
    width: 48%;
    box-shadow: 5px 5px 10px #d4d4d4;
}
.p-whitepaperList__item img {
    width: 100%;
}
.p-whitepaperList__item .title {
    text-align: center;
    font-size: 20px;
    margin: 1em 0 0.8em;
    padding: 0 20px;
}
.p-whitepaperList__item p {
    font-size: 15px;
    margin-bottom: 20px;
    min-height: 5.5em;
    padding: 0 20px;
}
.c-btnImg {
    display: none;
}
.p-downloadBtn {
    background: #1e2c5b;
    display: block;
    color: #fff;
    text-align: center;
    font-weight: 500;
    padding: 0.5em;
}
.p-downloadHead {
    text-align: center;
}
.c-fileName {
    font-size: 22px;
    margin-bottom: 1em;
}
.p-downloadHead .p-downloadBtn {
    width: 15em;
    font-size: 14px;
    padding: 0.7em;
    margin: 0 auto 50px;
}
.p-downloadbody .p-fileImg {
    text-align: center;
    max-width: 400px;
    margin: 0 auto 50px;
}
.p-downloadbody .p-fileImg img {
    width: 100%;
}
.p-downloadbody section {
    text-align: center;
    margin-bottom: 3em;
}
.p-downloadbody section h2 {
    position: relative;
    font-size: 22px;
    margin-bottom: 2em;
}
.p-downloadbody section h2:after {
    content: "";
    position: absolute;
    width: 1.5em;
    height: 1px;
    display: block;
    background: #000;
    left: 50%;
    transform: translateX(-50%);
    bottom: -1em;
}
.c-backBtn {
    background: #4c4c4c;
    display: block;
    color: #fff;
    text-align: center;
    font-weight: 500;
    padding: 0.7em;
    font-size: 14px;
    width: 15em;
    margin: 0 auto 50px;
}
.c-download-form__desc {
    position: relative;
    font-size: 22px;
    margin-bottom: 2em;
    text-align: center;
}
.c-download-form__desc:after {
    content: "";
    position: absolute;
    width: 1.5em;
    height: 1px;
    display: block;
    background: #000;
    left: 50%;
    transform: translateX(-50%);
    bottom: -1em;
}

/* STAFF */
.staff__photo {
    width: 100%;
    position: relative;
    overflow: hidden;
	height: fit-content;
}
.staff__photo:before {
    content: "";
    display: block;
    padding-top: 120%;
}
.staff__photo img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
	max-width: none;
	min-height: 100%;
    object-fit: cover;
}
.staff__item .tp_staff__detail {
    margin-top: 0;
    left: 0;
}
.staff__item {
    box-shadow: 5px 5px 10px #d4d4d4;
    width: 23.5%;
    margin-right: 2%;
}
.staff__item .tp_staff__desc br {
    display: none;
}
.staff__intro.service__intro {
    padding-bottom: 0;
    margin-bottom: -30px;
}
.staff__cta {
    margin-bottom: 80px;
}

/* PRIVACY POLICY */
.policy__list--content {
    margin-bottom: 3em;
}
.policy__list--ttl {
    font-size: 20px;
    margin-bottom: 0.5em;
}
.policy__list--text {
    font-size: 15px;
}

/* VOICE POST */
.p-postVoiceSummary h2 {
    margin-bottom: 3rem;
    padding: 0.8rem 3.7rem 0.8rem 1.2rem;
    background-color: #f8f8f8;
    border-left: 7px solid #120E6A;
    color: #120E6A;
    font-size: 2.4rem;
    line-height: 3rem;
    font-weight: 600;
}
.p-postVoiceSummary h2 {
    margin-bottom: 1.6rem;
    color: #120E6A;
    font-size: 22px;
    line-height: 2rem;
    font-weight: 600;
}
.p-postVoiceSummary h3 {
    margin-bottom: 1px;
    font-size: 18px;
    line-height: 3rem;
    font-weight: 600;
}
.p-postVoiceSummary p {
    margin-bottom: 2.2rem;
    color: #2f2f2f;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: .02em;
}
.p-postVoiceSummary ol {
    counter-reset: item;
    list-style-type: none;
    padding-left: 0;
}
.p-postVoiceSummary ol li {
    margin-bottom: 2.2rem;
    font-size: 18px;
    line-height: 2;
    font-weight: 300;
    letter-spacing: .02em;
}
.p-postVoiceSummary li:before {
    counter-increment: item;
    content: counter(item) ".";
    padding-right: .5em;
    font-weight: bold;
    color: #120E6A;
    text-transform: full-width;
}
.p-postVoiceUpdate {
    margin-top: 5.4rem;
    padding: 1.6rem 0;
    border-top: 2px solid #F8F8F8;
    border-bottom: 2px solid #F8F8F8;
}
.p-postVoiceUpdate dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.p-postVoiceUpdate dl dt {
    margin-right: 1.4rem;
    width: 7.9rem;
    height: 2.1rem;
    background-color: #DBDBDB;
    color: #fff;
    font-size: 14px;
    line-height: 2.1rem;
    font-weight: 300;
    text-align: center;
}
.p-postVoiceUpdate dl dd {
    font-size: 16px;
    line-height: 2.1rem;
}
.p-postVoiceBack {
    margin-top: 6.1rem;
    margin-bottom: 3rem;
}
.p-postVoiceBack .btn {
    display: block;
    margin: 0 auto;
}
.p-postVoiceBack .btn a {
    text-align: center;
    background: #4c4c4c;
    display: block;
    color: #fff;
    text-align: center;
    font-weight: 500;
    padding: 0.7em;
    font-size: 14px;
    width: 15em;
    margin: 0 auto 50px;
}
.low_voice {
    padding-bottom: 0;
}

/* COLUMN POST */
.l-post_container {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}
.l-post_main {
    width: calc(100% - 400px - 64px);
    font-size: 14px;
}
.l-post_side {
    width: 400px;
}
.p-post-head {
    margin-bottom: 40px;
}
.p-post-head_date {
    color: #aaa;
    font-size: 14px;
    text-align: right;
}
.p-post-head_list {
    display: flex;
    flex-wrap: wrap;
}
.p-post-head_list li {
    background-color: #120e6a;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    margin: 0 10px 0 0px;
    white-space: nowrap;
}
.p-post-head h1 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin: 16px 0 32px;
}
.wp-block-button__link {
    align-content: center;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    height: 100%;
    text-align: center;
    width: 100%;
    word-break: break-word;
}
.wp-element-button {
    cursor: pointer;
}
.wp-block-button__link {
    color: #fff;
    background-color: #32373c;
    border-radius: 9999px;
    box-shadow: none;
    text-decoration: none;
    padding: calc(.667em + 2px) calc(1.333em + 2px);
    font-size: 1.125em;
}
.l-post .wp-block-button__link {
    background-color: #120e6a;
    padding: 0.7em 5em;
}
.wp-block-buttons>.wp-block-button {
    display: inline-block;
    margin: 0;
}
body .is-layout-flex {
    display: flex;
}
.is-layout-flex {
    flex-wrap: wrap;
    align-items: center;
}
.wp-block-buttons.is-content-justification-center {
    justify-content: center;
}
.l-post h2 {
    font-size: 25px;
    font-weight: 700;
    line-height: 2.4;
    border-bottom: 1px solid #120e6a;
    margin: 40px 0 20px;
    padding-bottom: 6px;
    position: relative;
}
.l-post h2::before {
    display: block;
    content: "";
    background-color: #120e6a;
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: 2px;
}
.l-post h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 2.4;
    border-bottom: 1px solid #120e6a;
    margin: 32px 0 20px;
    padding-bottom: 4px;
}
.l-post p {
    margin: 0 0 2rem;
    line-height: 1.875;
    letter-spacing: 1.5px;
}
.p-post_related .p-post_related_headline {
    display: block;
    border-bottom: 1px solid #120e6a;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 5px;
}
.p-post_related_list {
    width: 100%;
}
.p-post_related_list li {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    position: relative;
    padding-left: 24px;
}
.p-post_related_list li:not(:last-child) {
    margin-bottom: 20px;
}
.p-post_related_list li::before {
    display: block;
    content: "";
    position: absolute;
    height: 8px;
    width: 8px;
    background-color: #120e6a;
    border-radius: 50%;
    top: 8px;
    left: 4px;
}
.p-post_related_list li a {
    color: #120e6a;
}
.l-post ul {
    margin: 0 0 2rem;
}
.l-post .p-post-head_list {
    margin: 0;
}
.c-post_side_item_head {
    border-bottom: 1px solid #120e6a;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 5px;
}
.p-post-head_image img {
    width: 100%;
    height: auto;
}
.p-post-category ul {
    width: 100%;
}
.p-post-category ul li {
    font-size: 16px;
    line-height: 1.4;
    position: relative;
    padding-left: 24px;
}
.p-post-category ul li::before {
    display: block;
    content: "";
    position: absolute;
    height: 8px;
    width: 8px;
    background-color: #120e6a;
    border-radius: 50%;
    top: 8px;
    left: 4px;
}
.p-post-category ul li a {
    color: #000;
}

/* STAFF POST */
.low_staff__head .tp_staff__tag {
    font-size: 14px;
}
.low_staff__head .tp_staff__year {
    font-size: 14px;
}
.low_staff__head h1 {
    font-size: 24px;
    letter-spacing: 3px;
    margin: 10px 0 20px;
}
.low_staff__body--img {
    width: 40%;
}
.low_staff__body--img img {
    width: 100%;
    height: auto;
}
.low_staff__body--content {
    width: 60%;
    padding-left: 5%;
}
.low_staff__body--content h2 {
    font-size: 18px;
    border-bottom: solid 1px #000;
    padding-bottom: 0.3em;
    margin-bottom: 0.5em;
}
.low_staff__body--content p {
    font-size: 14px;
    margin-bottom: 2em;
}

/* SEMINAR POST */
.p-seminar-head_image img {
    width: 100%;
    height: auto;
}
.p-seminar-head h1 {
    font-size: 22px;
    font-weight: 700;
    margin: 16px 0 25px;
}
.l-post ul.p-seminar-head_tag {
    margin-bottom: 0;
    display: flex;
    font-size: 13px;
    gap: 10px;
}
.l-post ul.p-seminar-head_tag li {
    background: #1e2c5b;
    color: #fff;
    padding: 0 0.5em;
}
.p-seminar-form_wrap {
    background-color: #ededed;
    padding: 24px;
}
.p-seminar-form_wrap p {
    font-size: 14px;
}
.p-seminar-form {
    margin: 20px 0;
}
.p-seminar-form dl {
    margin-bottom: 15px;
}
.p-seminar-form dt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 9px;
    font-weight: 500;
    font-size: 15px;
}
.p-seminar-form dd {
    margin-left: 0;
}
.p-seminar-form p {
    font-size: 14px;
    line-height: 2;
}
.c-formSelect select {
    width: 100%;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 4px;
    font-size: 15px;
    box-sizing: border-box;
}
.p-seminar-instructor {
    display: flex;
    margin-bottom: 2em;
}
.p-seminar-instructor_image {
    width: 150px;
    margin-right: 40px;
}
.p-seminar-instructor_image img {
    width: 100%;
}
.p-seminar-instructor_content {
    flex: 1;
}
.p-seminar-instructor_name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}
.p-seminar-instructor_description {
    font-size: 14px;
    line-height: 1.875;
}
.l-post_bottom {
    padding: 80px 0 0;
}
.c-wrapper {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto;
    width: 94.6666%;
    max-width: 1200px;
    padding: 0;
    position: static;
}
.p-seminar-apply {
    display: block;
    background: #120e6a;
    color: #fff;
    max-width: 600px;
    width: 80%;
    margin: 0 auto;
    padding: 32px 40px;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
}
.p-seminar-textlink {
    color: #120e6a;
    display: block;
    margin: 24px auto 0;
    text-decoration: underline;
    width: max-content;
}
.contact__intro.service__intro {
    padding-bottom: 0;
}
.c-post_side_item {
    margin-bottom: 50px;
}
.p-post_popular__archive .seminar__list--content {
    display: flex;
    align-items: center;
}
.p-post_popular__archive .seminar__list--description {
    width: 75%;
    padding-left: 1em;
    font-size: 14px;
}
.p-post_popular__archive .seminar__list--content .seminar__list--img {
    width: 25%;
    position: relative;
    overflow: hidden;
	height: fit-content;
}
.p-post_popular__archive .seminar__list--content .seminar__list--img:before {
	content: "";
    display: block;
    padding-top: 100%;
}
.p-post_popular__archive .seminar__list--content .seminar__list--img img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
	max-width: none;
	min-height: 100%;
    object-fit: cover;
}
a:hover .mainimg img {
    transform: translate(-50%, -50%) scale(1.1);
}

/* LOGO SLIDER */
.logo_list {
    width: 100%;
    overflow: hidden;
    padding: 0px 0 50px;
}
.logo__swiper-container {
    width: 100%;
    height: 100px;
    margin-bottom: 20px;
    overflow: hidden;
}
.logo__swiper-container:last-child {
    margin-bottom: 0;
}
.logo__swiper-container .swiper-wrapper {
    transition-timing-function: linear;
}
.logo__swiper-container .swiper-slide {
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 50px;
}
.logo__list--img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 80px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0 20px;
    transition: transform 0.3s ease;
}
.logo__list--img:hover {
    transform: translateY(-5px);
}
.logo__list--img img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}
@media (max-width: 768px) {
    .logo__swiper-container {
        height: 100px;
		margin-bottom: 0;
    }
    .logo__list--img {
        width: 180px;
        height: 60px;
    }
    .logo__swiper-container .swiper-slide {
        margin-right: 30px;
    }
}
@media (max-width: 480px) {
    .logo__swiper-container {
        height: 90px;
		margin-bottom: 0;
    }
    .logo__list--img {
        width: 180px;
        height: 60px;
    }
    .logo__swiper-container .swiper-slide {
        margin-right: 25px;
    }
}

/* DATA */
.data__catch {
    margin-bottom: 40px;
}
.data_body__list {
    max-width: 1000px;
}
.data_body__list--content.service_body__list--content {
    width: 100%;
    margin-right: 0;
}
.v2-data_body__list--content.data_body__list--content.service_body__list--content {
    width: 48%;
    margin-right: 4%;
}
.v2-data_body__list--content.data_body__list--content.service_body__list--content:nth-child(2n) {
    margin-right: 0%;
}
/*
.data_body__list--img img {
    max-height: 15em;
    width: auto;
    margin: 0 auto;
    display: block;
}
.data_body__list--content.service_body__list--content .data_body__list--img img {
    max-height: unset;
    width: 100%;
}
*/
.data_body__list--content.service_body__list--content .data_body__list--img img {
    max-height: unset;
    width: 100%;
}
.data_body__list--content.service_body__list--content:first-child .data_body__list--img {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: fit-content;
    background: #113355;
}
.data_body__list--content.service_body__list--content:first-child .data_body__list--img:before {
	content: "";
    display: block;
    padding-top: 100%;
}
.data_body__list--content.service_body__list--content:first-child .data_body__list--img img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
	max-width: none;
	min-height: 100%;
    object-fit: cover;
}

.main_page.seminar .mainh2 {
    margin-bottom: 30px;
}
.main_page.seminar.maxwidth:nth-child(4) {
    padding: 0 20px 80px;
}
.service_body {
    margin-bottom: 20px;
}