@charset "utf-8";
/* ------------------------------
 見出し・テキスト
------------------------------ */
/* H1 */
.heading {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 240px;
	margin-bottom: 80px;
	background-color: #fff0f3;
}
.heading h1 {
	color: #dc155a;
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 3.4rem;
	line-height: 1.5;
	font-weight: bold;
}
/* H2 */
.contentsHome h2 {
	margin-bottom: 48px;
	color: #dc155a;
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 3.4rem;
	line-height: 1;
	font-weight: 700;
	text-align: center;
	letter-spacing: .05em;
}
.contents h2 {
	margin-bottom: 45px;
	font-size: 2.4rem;
	line-height: 1.4;
	font-weight: bold;
}
.contents .linkBlock h2 {
	margin-bottom: 10px;
	font-size: 2rem;
	line-height: 1.2;
}
/* H3 */
.contentsHome h3 {
	margin-bottom: 25px;
	font-size: 2.2rem;
	line-height: 1;
	font-weight: bold;
	text-align: center;
}
.contents h3 {
	margin-bottom: 15px;
	padding-left: 8px;
	border-left: 4px solid #dc155a;
	font-size: 2rem;
	line-height: 1.2;
	font-weight: bold;
}
/* H4 */
.contentsHome h4,
.contents h4  {
	margin-bottom: 15px;
	font-size: 1.8rem;
	font-weight: bold;
}
/* 小見出し */
.subheading {
	margin-bottom: 15px;
	color: #dc155a;
	font-size: 2.4rem;
	line-height: 1.4;
	font-weight: bold;
}
/* ------------------------------
 見出し・テキスト（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	/* H1 */
	.heading {
		min-height: 180px;
		margin-bottom: 50px;
	}
	.heading h1 {
		font-size: 2.6rem;
		line-height: 1.3;
	}
	/* H2 */
	.contentsHome h2 {
		font-size: 2.2rem;
		margin-bottom: 16px;
	}
	.contents h2 {
		font-size: 2.2rem;
		margin-bottom: 30px;
	}
	/* H3 */
	.contentsHome h3 {
		margin-bottom: 15px;
		font-size: 2rem;
	}
	.contents h3 {
		font-size: 1.8rem;
	}
	/* H4 */
	.contentsHome h4,
	.contents h4 {
		font-size: 1.7rem;
	}
	/* 小見出し */
	.subheading {
		font-size: 2.2rem;
	}
}

/* ------------------------------
 横幅（PC）
------------------------------ */
@media print, screen and (min-width: 768px) {
	/* 1/2 */
	.w1-2 {
		width: 47.895%;
	}
	.w546 {
		width: 538px;
	}
	/* 1/3 */
	.w1-3 {
		width: 30.702%;
	}
	.w350 {
		width: 350px;
	}
	.w1-3.fl + .w1-3.fl {
		margin-left: 3.924%;
	}
	.w350.fl + .w350.fl {
		margin-left: 45px;
	}
	/* 2/3 */
	.w2-3 {
		width: 65.351%;
	}
	.w745 {
		width: 745px;
	}
	/* 1/4 */
	.w1-4 {
		width: 22.632%;
	}
	.w258 {
		width: 258px;
	}
	.w1-4.fl + .w1-4.fl {
		margin-left: 3.158%;
	}
	.w258.fl + .w258.fl {
		margin-left: 36px;
	}
	/* 3/4 */
	.w3-4 {
		width: 74.211%;
	}
	.w846 {
		width: 846px;
	}
	/* その他 */
	.w250 {
		width: 250px;
	}
	.w277 {
		width: 277px;
	}
	.w600 {
		width: 600px;
	}
	.w780 {
		width: 780px;
	}
}
/* ----------------------
 横幅（SP）
---------------------- */
@media screen and (max-width: 767px) {
	.w1-4,
	.w258 {
		width: 47.895%;
	}
	.w1-4.fl,
	.w258.fl {
		float: left;
	}
	.w1-4.sp_fr,
	.w258.sp_fr {
		float: right;
	}
}
/* ------------------------------
 ボックス（PC）
------------------------------ */
/* 角丸ピンク背景 */
.bgrBox {
	padding: 44px 52px 56px;
	border-radius: 25px;
	background-color: #fff0f3;
}
/* 横並び */
.flexBox {
	display: flex;
	flex-wrap: wrap;
}
/* 横並び センター揃え */
.flexBox.jc-c {
	justify-content: center;
}
/* 横並び 端揃え */
.flexBox.jc-sb {
	justify-content: space-between;
}
/* 横並び 縦センター揃え */
.flexBox.ai-c {
	align-items: center;
}
/* 横並び 縦下揃え */
.flexBox.ai-fe {
	align-items: flex-end;
}
/* 横並び4列（SP横並び2列） */
.flexBox.div4 {
	flex-flow: row wrap;
}
/* 表示順 */
.order1 {
	order: 1;
}
.order2 {
	order: 2;
}
@media print, screen and (min-width: 768px) {
	/* 横並び2列 */
	.flexBox.div2 {
		flex-flow: row wrap;
		gap: 40px 4.21%;
	}
	.flexBox.div2 > * {
		width: 47.895%;
		margin-bottom: 0;
	}
	/* 横並び3列 */
	.flexBox.div3 {
		flex-flow: row wrap;
		gap: 40px 3.924%;
	}
	.flexBox.div3 > * {
		width: 30.702%;
		margin-bottom: 0;
	}
	/* 横並び4列（SP横並び2列） */
	.flexBox.div4 {
		gap: 40px 3.158%;
	}
	.flexBox.div4 > * {
		width: 22.632%;
		margin-bottom: 0;
	}
}
/* ------------------------------
 ボックス（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	/* 角丸ピンク背景 */
	.bgrBox {
		padding: 28px 32px 36px;
		border-radius: 15px;
	}
	/* 横並び2列・横並び3列 */
	.flexBox.div2,
	.flexBox.div3 {
		gap: 15px 0;
	}
	.flexBox > *,
	.flexBox.div2 > *,
	.flexBox.div3 > * {
		width: 100%;
	}
	/* 横並び4列（SP横並び2列） */
	.flexBox.div4 {
		gap: 25px 5.5%;
	}
	.flexBox.div4 > * {
		width: 47.25%;
		margin-bottom: 0;
	}
}

/* ------------------------------
 テーブル
------------------------------ */
/* デフォルト */
.contentsHome table,
.contents table {
	width: 100%;
	border-collapse: collapse;
	border-top: 1px solid #dcdcdc;
}
.contentsHome table th,
.contents table th {
	font-weight: bold;
	padding: 17px 17px 17px 0;
	text-align: left;
	vertical-align: top;
	border-bottom: 1px solid #dcdcdc;
}
.contentsHome table td,
.contents table td {
	padding: 17px 17px 17px 0;
	border-bottom: 1px solid #dcdcdc;
}
@media print, screen and (min-width: 768px) {
	.contentsHome table th,
	.contents table th {
		width: 20%;
	}
}
/* ------------------------------
 テーブル（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	/* レスポンシブ */
	.contents table.res th,
	.contents table.res td {
		display: block;
		width: 100%;
	}
	.contents table.res th {
		border-bottom: none;
		padding: 12px 0 0;
	}
	.contents table.res td {
		padding: 0 0 12px;
	}
}
/* ------------------------------
 リスト
------------------------------ */
/* ノーマルリスト●付き */
.contentsHome ul > li,
.contents ul > li  {
	position: relative;
	padding-left: 1em;
}
.contentsHome ul > li:only-child,
.contents ul > li:only-child {
	margin-bottom: 5px;
}
.contentsHome ul > li::before,
.contents ul > li::before {
	content: "";
	position: absolute;
	top: .65em;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #dc155a;
}
/* 数字 */
.contentsHome ol > li,
.contents ol > li {
	counter-increment: count 1;
	position: relative;
	padding-left: 30px;
}
.contentsHome ol > li:before,
.contents ol > li:before {
	content: counter(count)".";
	position: absolute;
	top: 0;
	left: 0;
	font-weight: bold;
	text-align: center;
}

/* ------------------------------
 ボタン
------------------------------ */
.btn a,
button.btn {
	display: inline-block;
	position: relative;
	width: 340px;
	padding: 22px 40px 23px;
	border-radius: 60px;
	background-color: #dc155a;
	color: #fff;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.4;
	word-break: break-all;
	text-align: center;
	text-decoration: none;
}
.btn a::after,
button.btn::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 30px;
	width: 10px;
	height: 15px;
	margin: auto;
	background: url(../images/icon_arrow.png) no-repeat 0 0 / cover;
}
button.btn {
	cursor: pointer;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
/* ボタン小 */
.btn.btnSmall a,
button.btn.btnSmall {
	width: 260px;
	padding: 18px 40px 19px;
	font-size: 1.6rem;
}
/* リストアイコンボタン */
.btn.btnList a::after,
button.btn.btnList::after {
	width: 17px;
	height: 17px;
	background: url(../images/icon_list.png) no-repeat 0 0 / cover;
}
@media print, screen and (min-width: 768px) {
	.btn a:hover,
	button.btn:hover {
		opacity: .7;
	}
}
/* ------------------------------
 ボタン（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.btn a,
	button.btn {
		width: 96.969%;
		padding: 19px 40px 20px;
	}
	/* ボタン小 */
	.btn.btnSmall a,
	button.btn.btnSmall {
		width: 78.787%;
	}
}

/* ------------------------------
 アイコン
------------------------------ */
/* 外部リンク */
.contentsHome a[target="_blank"]::after,
.contents a[target="_blank"]::after {
	content: "";
	display: inline-block;
	width: 10px;
	height: 9px;
	margin: 0 5px 3px;
	background: url(../images/icon_blank.png) no-repeat 0 0 / cover;
	vertical-align: middle;
}
.icon_blank::after {
	content: "";
	display: inline-block;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	margin: 0 0 2px 5px;
	background: #ffecf0 url(../images/icon_blank.png) no-repeat center 8px / 8px 7px;
	vertical-align: middle;
}
/* ファイル */
.contents a[href$=".pdf"],
.contents a[href$=".doc"],
.contents a[href$=".docx"],
.contents a[href$=".ppt"],
.contents a[href$=".pptx"],
.contents a[href$=".xls"],
.contents a[href$=".xlsx"],
.contents a.file,
.contents .file a {
	display: block;
	position: relative;
	margin-bottom: .875em;
	padding-left: 1.5em;
}
.contents a[href$=".pdf"]::before,
.contents a[href$=".doc"]::before,
.contents a[href$=".docx"]::before,
.contents a[href$=".ppt"]::before,
.contents a[href$=".pptx"]::before,
.contents a[href$=".ppt"]::before,
.contents a[href$=".pptx"]::before,
.contents a.file::before,
.contents .file a::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: .5em;
	left: 0;
	width: 15px;
	height: 17px;
}
/* PDF */
.contents a[href$=".pdf"]::before {
	background: url(../images/icon_pdf.png) no-repeat 0 0 / cover;
}
/* Word */
.contents a[href$=".doc"]::before,
.contents a[href$=".docx"]::before {
	background: url(../images/icon_doc.png) no-repeat 0 0 / cover;
}
/* PPT */
.contents a[href$=".ppt"]::before,
.contents a[href$=".pptx"]::before {
	background: url(../images/icon_ppt.png) no-repeat 0 0 / cover;
}
/* Excel */
.contents a[href$=".xls"]::before,
.contents a[href$=".xlsx"]::before {
	background: url(../images/icon_xls.png) no-repeat 0 0 / cover;
}
/* ファイル */
.contents a.file::before,
.contents .file a::before {
	background: url(../images/icon_file.png) no-repeat 0 0 / cover;
}

/* ------------------------------
 スライド（PC）
------------------------------ */
/* 画像 */
.slide-contents .swiper-slide img {
	width: 100%;
}
/* pagination */
.sliderBlock .slide-control {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin-top: 20px;
}
.sliderBlock .swiper-horizontal .swiper-pagination {
	display: inline-block;
	position: static;
	width: auto;
	margin-right: 15px;
}
.sliderBlock .swiper-horizontal .swiper-pagination button {
	background-color: transparent;
	vertical-align: middle;
}
.sliderBlock .swiper-horizontal .swiper-pagination button.slide-dot {
	width: 24px;
	height: 24px;
	padding: 7px;
	cursor: pointer;
}
.sliderBlock .swiper-horizontal .swiper-pagination button.slide-dot > span {
	display: inline-block;
	width: 100%;
	height: 10px;
	border-radius: 100%;
	background-color: #fff;
	font-size: 0;
	line-height: 2px;
	vertical-align: top;
}
.sliderBlock .swiper-horizontal .swiper-pagination button.slide-dot.slide-dot-active > span {
	background: #dc155a;
}
/* stop start */
.slide-stop-start {
	display: inline-block;
	overflow: hidden;
	width: 82px;
	height: 24px;
}
.stop,
.start,
.slide-stop,
.slide-start {
	font-family: "Ubuntu", sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 24px;
	text-align: center;
	color: #fff;
	position: relative;
	padding: 0 10px 0 22px;
	width: 82px;
	height: 24px;
	border-radius: 24px;
	background-color: #dc155a;
	cursor: pointer;
}
.stop::before,
.slide-stop::before,
.start::before,
.slide-start::before  {
	content: "";
	display: inline-block;
	opacity: 1;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 10px;
	width: 6px;
	height: 10px;
	margin: auto;
}
.stop::before,
.slide-stop::before {
	background: url(../images/icon_slide_stop.png) no-repeat 0 0 / cover;
}
.start::before,
.slide-start::before {
	background: url(../images/icon_slide_start.png) no-repeat 0 0 / cover;
}
.pc.sliderBlock .inBlock {
	position: absolute;
	top: 3px;
	left: 50%;
	z-index: 1;
	margin-left: -570px;
}
/* ------------------------------
 スライド（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.contentsHome .sp.sliderBlock .inBlock {
		position: absolute;
		top: -4px;
		left: 0;
		z-index: 1;
		margin: 0;
	}
}

/* ------------------------------
 職業体験INDEX（PC）
------------------------------ */
.linkBlock img {
	margin-bottom: 25px;
	border-radius: 25px;
}
.linkBlock p + p {
	margin-top: 5px;
}
@media print, screen and (min-width: 768px) {
	.linkBlock {
		display: flex;
		flex-wrap: wrap;
		gap: 100px 45px;
	}
	.contents .inBlock:not(:last-child).linkBlock {
		margin-bottom: 120px;
	}
	.inBlock.linkBlock::after {
        content: none;
    }
	.linkBlock .w1-3 {
		position: relative;
		padding-bottom: 85px;
	}
	.linkBlock .w1-3 .btn.btnSmall.tac {
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		margin: 0 auto;
	}
}
/* ------------------------------
 職業体験INDEX（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.contents .inBlock:not(:last-child).linkBlock {
		margin-bottom: 70px;
	}
	.linkBlock .w1-3:not(:last-child) {
		margin-bottom: 50px;
	}
	.linkBlock img {
		width: 100%;
		margin-bottom: 20px;
		border-radius: 15px;
	}
	.linkBlock .w1-3 .btn.btnSmall.tac {
		margin-top: 15px;
	}
}

/* ------------------------------
 職業体験下層（PC）
------------------------------ */
.companyName {
	margin-bottom: 20px;
	color: #dc155a;
	font-size: 2rem;
	font-weight: bold;
}
.experienceImage {
	margin-bottom: 50px;
	text-align: center;
}
.experienceImage img {
	border-radius: 25px;
}
@media print, screen and (min-width: 768px) {
	.experienceImage img {
		width: 684px;
		height: 390px;
	}
}
/* ------------------------------
 職業体験INDEX（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.companyName {
		margin-bottom: 15px;
		font-size: 1.8rem;
	}
	.experienceImage {
		margin-bottom: 30px;
		text-align: center;
	}
	.experienceImage img {
		border-radius: 15px;
	}
}

/* ------------------------------
 小中学生の皆さまへ（PC）
------------------------------ */
.flexBox.jc-sb .w250 img {
	margin-bottom: 15px;
	border-radius: 25px;
}
.flexBox.jc-sb .w250 p {
	font-weight: bold;
	text-align: center;
}
/* ------------------------------
 小中学生の皆さまへ（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.flexBox.jc-sb .w250 + .w250 {
		margin-top: 28px;
	}
	.flexBox.jc-sb .w250 img {
		width: 100%;
		height: auto;
		margin-bottom: 10px;
		border-radius: 15px;
	}
}

/* ------------------------------
 リンク一覧（PC）
------------------------------ */
.linkList p + p {
	margin-top: 20px;
}
@media print, screen and (min-width: 768px) {
	.linkList {
		width: 980px;
		margin-left: auto;
		margin-right: auto;
	}
	.linkList.w780 {
		width: 780px;
	}
}

/* ------------------------------
 下層コンテンツ
------------------------------ */
/* 角丸 */
.corner-r img,
img.corner-r {
	border-radius: 25px;
}
/* google map */
.mapBox {
	border-radius: 25px;
	overflow: hidden;
	margin-bottom: 30px;
	position: relative;
    width: 100%;
	height: 100%;
	aspect-ratio: 2 / 1;
}
.mapBox iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
/* ------------------------------
 下層コンテンツ(SP)
------------------------------ */
@media screen and (max-width: 767px) {
	/* 角丸 */
	.corner-r img,
	img.corner-r {
		border-radius: 15px;
	}
	/* google map */
	.mapBox {
		border-radius: 15px;
		margin-bottom: 15px;
	}
}