@charset "UTF-8";
/* ===========================================
 * 共通css
 * ======================================== */
/***
	The new CSS reset - version 1.11.2 (last updated 15.11.2023)
	GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
	Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
	- The "symbol *" part is to solve Firefox SVG sprite bug
	- The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
	all: unset;
	display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
	-moz-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	-ms-text-size-adjust: none;
	    text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
	cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu, summary {
	list-style: none;
}

/* For images to not be able to exceed their container */
img {
	max-inline-size: 100%;
	max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
	border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
	-webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
	white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
	-webkit-appearance: revert;
	-moz-appearance: revert;
	     appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
	all: revert;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::-webkit-input-placeholder {
	color: unset;
}
::-moz-placeholder {
	color: unset;
}
:-ms-input-placeholder {
	color: unset;
}
::-ms-input-placeholder {
	color: unset;
}
::placeholder {
	color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
	display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
	-moz-user-modify: read-write;
	-webkit-user-modify: read-write;
	overflow-wrap: break-word;
	-webkit-line-break: after-white-space;
	-webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
	-webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
	all: revert;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
	display: none;
}

/* ---------------------------------------------
*    color
--------------------------------------------- */
/* ---------------------------------------------
*    base setting
--------------------------------------------- */
html {
	font-size: 62.5%;
}

body {
	min-width: 120rem;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	color: #000;
	font-size: 1.6rem;
	font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, Arial, Helvetica, sans-serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1.5;
	word-break: break-all;
}
@media (max-width: 768px) {
	body {
		min-width: 100%;
	}
	body.is-fixed {
		position: fixed;
		left: 0;
		right: 0;
		margin: auto;
	}
}

a {
	color: inherit;
	outline: none;
	cursor: pointer;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}

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

input,
textarea,
button,
select {
	outline: none;
	font-size: inherit;
	cursor: pointer;
	font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, Arial, Helvetica, sans-serif;
}

.is-sp {
	display: none;
}
@media (max-width: 768px) {
	.is-sp {
		display: inline-block;
	}
}

.is-pc {
	display: inline-block;
}
@media (max-width: 768px) {
	.is-pc {
		display: none;
	}
}

/* ---------------------------------------------
*    animation
--------------------------------------------- */
/* ---------------------------------------------
*    header/footer
--------------------------------------------- */
/* header */
.hearder {
	width: 120rem;
	margin: 0 auto;
	padding: 5rem 0 8rem;
}
.hearder .header-pcitem {
	display: block;
}
.hearder .header-spitem {
	display: none;
}
@media (max-width: 768px) {
	.hearder {
		width: 100%;
		height: 7.5rem;
		padding: 0;
	}
	.hearder .header-pcitem {
		display: none;
	}
	.hearder .header-spitem {
		display: block;
	}
}

/* globalnav_pc */
.globalnav_pc .globalnav_pc-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	gap: 0 4rem;
}
.globalnav_pc .globalnav_pc-item {
	position: relative;
	font-size: 1.6rem;
	font-weight: bold;
	letter-spacing: 0.06em;
}
.globalnav_pc .globalnav_pc-item::after {
	position: absolute;
	bottom: -0.5rem;
	left: 0;
	content: "";
	display: inline-block;
	width: 0;
	height: 0.2rem;
	background-color: #2cb5a9;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}
.globalnav_pc .globalnav_pc-item:hover::after {
	width: 100%;
}

/* globalnav_sp */
.globalnav_sp {
	text-align: right;
}
.globalnav_sp .globalnav_sp-openbtn {
	position: fixed;
	top: 1.5rem;
	right: 1.3rem;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: 4.5rem;
	height: 4.5rem;
	background-color: #2cb5a9;
	border-radius: 50%;
	z-index: 5;
}
.globalnav_sp .globalnav_sp-togglemenu {
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	width: 100%;
	height: 100%;
	padding: 1.5rem 1.3rem;
	background-color: #fff;
	z-index: 10;
}
.globalnav_sp .globalnav_sp-closebtn {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: 4.5rem;
	height: 4.5rem;
	background-color: #2cb5a9;
	border-radius: 50%;
}
.globalnav_sp .globalnav_sp-list {
	margin-top: 1.5rem;
}
.globalnav_sp .globalnav_sp-list > li {
	margin-top: 3rem;
	text-align: center;
}
.globalnav_sp .globalnav_sp-list > li:first-child {
	margin-top: 0;
}
.globalnav_sp .globalnav_sp-item {
	font-size: 1.6rem;
	font-weight: bold;
	letter-spacing: 0.06em;
}

/* footer */
.footer {
	padding: 1rem 0;
	text-align: center;
	font-size: 1.2rem;
}

/* ---------------------------------------------
*    container / section
--------------------------------------------- */
/* section */
.section {
	width: 120rem;
	margin: 7rem auto 0;
}
.section .section-header {
	position: relative;
	text-align: center;
}
.section .section-header::before {
	position: absolute;
	top: 50%;
	left: 0;
	content: "";
	display: inline-block;
	width: 100%;
	height: 0.1rem;
	border-top: 0.1rem dotted #707070;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	z-index: -1;
}
.section .section-header > span {
	padding: 0 1.2rem;
	background-color: #fff;
	font-size: 2.6rem;
	font-weight: bold;
}
.section .section-body {
	margin-top: 3rem;
}
@media (max-width: 768px) {
	.section {
		width: 100%;
		margin-top: 6rem;
		padding: 0 1.3rem;
	}
	.section .section-header > span {
		padding: 0 1.7rem;
		font-size: 1.6rem;
	}
}

/* ---------------------------------------------
*    module
--------------------------------------------- */
/* hiddenlayer */
.hiddenlayer {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: #fff;
	top: 0;
	left: 0;
	z-index: 20;
}

/* hero */
.hero {
	width: 120rem;
	margin: 0 auto;
}
.hero .hero-mv {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
	gap: 4.5rem 4.8rem;
}
.hero .hero-mv::after {
	content: "";
	display: block;
	width: 100%;
	height: 14.2rem;
	background-image: url("/kansaiseminar/assets/img/img-mv-03.webp");
	background-repeat: no-repeat;
	background-size: contain;
}
.hero .hero-mvitem:first-child {
	width: 59.4rem;
}
.hero .hero-mvitem:last-child {
	width: 55.3rem;
}
.hero .hero-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	gap: 0 7.2rem;
	margin-top: 5.5rem;
}
@media (max-width: 768px) {
	.hero {
		width: 100%;
		padding: 0 1.3rem;
	}
	.hero .hero-mv {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		gap: 3.6rem 0;
	}
	.hero .hero-mv::after {
		content: "";
		width: 100%;
		height: auto;
		aspect-ratio: 35/4;
		background-position: top center;
	}
	.hero .hero-mvitem:first-child {
		width: 100%;
	}
	.hero .hero-mvitem:last-child {
		width: 100%;
	}
	.hero .hero-info {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		gap: 3.8rem 0;
		padding: 0 2rem;
	}
}

/* info */
.info {
	width: 33.8rem;
}
.info .info-header {
	padding: 0.4rem;
	background-color: #de6708;
	border-radius: 0.7rem;
	color: #fff;
	font-size: 1.7rem;
	font-weight: bold;
	letter-spacing: 0.8em;
	text-align: center;
	line-height: 1;
}
.info .info-header .info-body {
	text-align: center;
}
.info .info-body {
	margin-top: 1.5rem;
	text-align: center;
}
@media (max-width: 768px) {
	.info {
		width: 100%;
	}
	.info .info-header {
		font-size: 1.5rem;
	}
}

/* label */
.label {
	width: 33.6rem;
	padding: 1.8rem 0 2.6rem;
	background-color: #005b71;
	border-radius: 0.8rem;
	color: #fff;
	text-align: center;
}
.label .label-text {
	font-size: 4.8rem;
	font-weight: bold;
	letter-spacing: 0.15em;
}
.label .label-note {
	font-size: 1.5rem;
	letter-spacing: -0.1em;
}
@media (max-width: 768px) {
	.label {
		width: 100%;
	}
	.label .label-text {
		font-size: 4.3rem;
	}
	.label .label-note {
		font-size: 1.3rem;
	}
}

/* cta */
.cta {
	width: 120rem;
	margin: 5rem auto 0;
	text-align: center;
}
@media (max-width: 768px) {
	.cta {
		width: 100%;
		margin-top: 3rem;
		padding: 0 1.3rem;
	}
}

/* btn_apply */
.btn_apply {
	position: relative;
	display: inline-block;
	margin-top: 2.4rem;
}
.btn_apply::before {
	position: absolute;
	top: -2.4rem;
	left: 50%;
	content: "";
	display: inline-block;
	width: 2.7rem;
	height: 2.4rem;
	background-color: #de6708;
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
	-webkit-transform: translateX(-50%);
	        transform: translateX(-50%);
}
.btn_apply .btn_apply-inner {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	gap: 0 2rem;
	padding: 1.6rem 6.6rem;
	background-color: #de6708;
	border-radius: 2rem;
	-webkit-box-shadow: 0 0.7rem 0 #c4c4c4;
	        box-shadow: 0 0.7rem 0 #c4c4c4;
	overflow: hidden;
}
.btn_apply .btn_apply-inner::before {
	position: absolute;
	content: "";
	top: 0;
	left: -120%;
	width: 100%;
	height: 100%;
	-webkit-transform: skewX(-60deg);
	        transform: skewX(-60deg);
	background: -webkit-gradient(linear, left top, right top, color-stop(20%, rgba(255, 189, 36, 0)), color-stop(50%, rgba(255, 189, 36, 0.3)), to(rgba(255, 189, 36, 0)));
	background: linear-gradient(to right, rgba(255, 189, 36, 0) 20%, rgba(255, 189, 36, 0.3) 50%, rgba(255, 189, 36, 0) 100%);
	-webkit-transition: 0.5s;
	transition: 0.5s;
	z-index: 1;
}
.btn_apply .btn_apply-inner:hover::before {
	left: 100%;
}
.btn_apply .btn_apply-inner > span {
	position: relative;
	color: #fff;
	font-size: 4rem;
	font-weight: bold;
	letter-spacing: 0.06em;
	z-index: 2;
}
.btn_apply .btn_apply-inner > img {
	width: 3rem;
	height: 3rem;
}
@media (max-width: 768px) {
	.btn_apply {
		display: block;
	}
	.btn_apply::before {
		top: -1.5rem;
		width: 1.7rem;
		height: 1.5rem;
	}
	.btn_apply .btn_apply-inner {
		width: 100%;
		gap: 0 1.2rem;
		padding: 1rem;
		border-radius: 1rem;
		-webkit-box-shadow: 0 0.5rem 0 #c4c4c4;
		        box-shadow: 0 0.5rem 0 #c4c4c4;
	}
	.btn_apply .btn_apply-inner > span {
		font-size: 2.4rem;
	}
	.btn_apply .btn_apply-inner > img {
		width: 1.8rem;
		height: 1.8rem;
	}
}

/* summary */
.summary {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 3.8rem 4.6rem;
}
.summary .summary-item {
	width: calc((100% - 4.6rem) / 2);
}
.summary .summary-title {
	padding: 1rem;
	background-color: #edeef4;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1;
	text-align: center;
}
.summary .summary-desc {
	margin-top: 2.3rem;
}
.summary .summary-text {
	font-size: 1.6rem;
	line-height: 1.5;
}
.summary .summary-list > li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: first baseline;
	    -ms-flex-align: first baseline;
	        align-items: first baseline;
	font-size: 1.6rem;
	line-height: 1.5;
}
.summary .summary-list > li::before {
	content: "・";
	display: inline-block;
}
.summary .summary-list.summary-list--bisday > li::before {
	content: "●";
}
.summary .summary-map > img {
	width: 100%;
	margin-top: 3rem;
}
.summary .summary-dataitem {
	margin-top: 2.4rem;
}
.summary .summary-dataitem:first-child {
	margin-top: 0;
}
.summary .summary-datatitle {
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 1.5;
}
.summary .summary-datatext {
	font-size: 1.6rem;
	line-height: 1.5;
}
@media (max-width: 768px) {
	.summary {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.summary .summary-item {
		width: 100%;
		gap: 2rem 0;
	}
	.summary .summary-title {
		padding: 0.8rem;
		font-size: 1.6rem;
	}
	.summary .summary-desc {
		margin-top: 1rem;
	}
	.summary .summary-text {
		font-size: 1.2rem;
	}
	.summary .summary-list > li {
		font-size: 1.2rem;
	}
	.summary .summary-map > img {
		margin-top: 1rem;
	}
	.summary .summary-dataitem {
		margin-top: 1.8rem;
	}
	.summary .summary-datatitle {
		font-size: 1.2rem;
	}
	.summary .summary-datatext {
		font-size: 1.2rem;
	}
}

/* timetable */
.timetable .timetable-inner {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}
.timetable .timetable-inner th {
	padding: 1.8rem 2.4rem;
	background-color: #fafafa;
	font-size: 1.6rem;
	border: 0.1rem solid #ccc;
	line-height: 1.5;
	text-align: center;
}
.timetable .timetable-inner td {
	padding: 1rem 2.4rem;
	border: 0.1rem solid #ccc;
	font-size: 1.6rem;
	line-height: 1.5;
}
.timetable .timetable-inner td:nth-child(2) {
	font-weight: bold;
	vertical-align: middle;
}
.timetable .timetable-inner thead th {
	padding: 1.6rem 2.4rem;
	background-color: #edeef4;
	font-size: 1.8rem;
	font-weight: bold;
	border: 0.1rem solid #ccc;
}
.timetable .timetable-inner tbody th:nth-child(1) {
	vertical-align: middle;
}
.timetable .timetable-col.timetable-col--type01 {
	width: 17.7rem;
}
.timetable .timetable-col.timetable-col--type02 {
	width: 29.9rem;
}
.timetable .timetable-col.timetable-col--type03 {
	min-width: 72.3rem;
}
.timetable .timetable-text {
	margin-top: 2rem;
	font-size: 1.6rem;
	line-height: 1.5;
}
.timetable .timetable-text > strong {
	font-weight: bold;
}
.timetable .timetable-text:first-child {
	margin-top: 0;
}
.timetable .timetable-twocolumn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 0 2rem;
	margin-top: 2rem;
	font-size: 1.6rem;
	line-height: 1.5;
}
.timetable .timetable-twocolumn:first-child {
	margin-top: 0;
}
.timetable .timetable-parts {
	width: 9.4rem;
	font-weight: bold;
}
.timetable .timetable-contents {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}
.timetable .timetable-desc > dt {
	font-weight: bold;
}
.timetable .timetable-desc > dd {
	margin-top: 2rem;
}
.timetable .timetable-desc > dd > strong {
	font-weight: bold;
}
@media (max-width: 768px) {
	.timetable {
		overflow-x: auto;
	}
	.timetable .scroll-hint-icon {
		top: 10rem;
	}
	.timetable .timetable-inner {
		width: 55.2rem;
	}
	.timetable .timetable-inner th {
		padding: 0.8rem 1.8rem;
		font-size: 1.2rem;
	}
	.timetable .timetable-inner td {
		padding: 0.8rem 1.8rem;
		font-size: 1.2rem;
	}
	.timetable .timetable-inner thead th {
		padding: 0.8rem 1.8rem;
		font-size: 1.2rem;
	}
	.timetable .timetable-col.timetable-col--type01 {
		width: 12.1rem;
	}
	.timetable .timetable-col.timetable-col--type02 {
		width: 13.5rem;
	}
	.timetable .timetable-col.timetable-col--type03 {
		min-width: 29.8rem;
	}
	.timetable .timetable-text {
		margin-top: 1rem;
		font-size: 1.2rem;
	}
	.timetable .timetable-twocolumn {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		gap: 1rem 0;
		font-size: 1.2rem;
	}
	.timetable .timetable-parts {
		width: auto;
	}
	.timetable .timetable-contents {
		-webkit-box-flex: 1;
		    -ms-flex: 1;
		        flex: 1;
	}
	.timetable .timetable-desc > dd {
		margin-top: 1rem;
	}
}

/* profile */
.profile .profile-note {
	font-size: 1.6rem;
	line-height: 1.5;
	text-align: center;
}
.profile .profile-list {
	margin-top: 3.8rem;
}
.profile .profile-list > li {
	margin-top: 3.8rem;
}
.profile .profile-list > li:first-child {
	margin-top: 0;
}
.profile .profile-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 0 3rem;
}
.profile .profile-obj {
	width: 34.5rem;
}
.profile .profile-body {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}
.profile .profile-text {
	margin-top: 2rem;
	font-size: 1.6rem;
	line-height: 1.5;
}
.profile .profile-text > strong {
	font-weight: bold;
}
.profile .profile-text:first-child {
	margin-top: 0;
}
@media (max-width: 768px) {
	.profile .profile-note {
		font-size: 1.2rem;
	}
	.profile .profile-list {
		margin-top: 2rem;
	}
	.profile .profile-list > li {
		margin-top: 2rem;
	}
	.profile .profile-item {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		gap: 2rem 0;
	}
	.profile .profile-obj {
		width: 100%;
	}
	.profile .profile-text {
		margin-top: 1rem;
		font-size: 1.2rem;
	}
}

/* contact */
.contact {
	width: 120rem;
	margin: 7rem auto 10rem;
}
.contact .contact-inner {
	padding: 2.6rem 2rem 2rem;
	background-color: #edeef4;
}
.contact .contact-header {
	text-align: center;
	font-size: 1.8rem;
	font-weight: bold;
}
.contact .contact-body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 0 2rem;
	margin-top: 2.8rem;
}
.contact .contact-body > li {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}
.contact .contact-item {
	width: 100%;
	height: 100%;
	padding: 3rem;
	background-color: #fff;
	text-align: center;
}
.contact .contact-title {
	font-size: 1.8rem;
	font-weight: bold;
}
.contact .contact-contents {
	margin-top: 4rem;
}
.contact .contact-text {
	margin-top: 2.4rem;
	font-size: 1.6rem;
	line-height: 1.5;
}
.contact .contact-text:first-child {
	margin-top: 0;
}
.contact .contact-emphasis {
	font-size: 3rem;
	font-weight: bold;
}
.contact .contact-list {
	margin-top: 2.4rem;
}
.contact .contact-list > li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: first baseline;
	    -ms-flex-align: first baseline;
	        align-items: first baseline;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	font-size: 1.6rem;
	line-height: 1.5;
}
.contact .contact-list > li::before {
	content: "●";
	display: inline-block;
}
@media (max-width: 768px) {
	.contact {
		width: 100%;
		margin-top: 6.5rem;
		padding: 0 1.3rem;
	}
	.contact .contact-header {
		font-size: 1.6rem;
	}
	.contact .contact-body {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		gap: 1.5rem 0;
		margin-top: 2rem;
	}
	.contact .contact-body > li {
		-webkit-box-flex: 1;
		    -ms-flex: 1;
		        flex: 1;
	}
	.contact .contact-item {
		padding: 3rem 1.5rem;
	}
	.contact .contact-title {
		font-size: 1.6rem;
	}
	.contact .contact-contents {
		margin-top: 2rem;
	}
	.contact .contact-text {
		margin-top: 1.8rem;
		font-size: 1.2rem;
	}
	.contact .contact-emphasis {
		font-size: 2.4rem;
	}
	.contact .contact-list {
		margin-top: 1.8rem;
	}
	.contact .contact-list > li {
		font-size: 1.2rem;
	}
}