/*
Theme Name: mrep-as
Author: Kurofune Design
Description: This is our original theme.
Version: 1.0
*/

@charset "UTF-8";

/* 基本 */
:root {
	--v-space: clamp(90px, 9vw, 120px);
}

body {
	margin: 0;
	color: #1a1a1a;
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	font-weight: 400;
	font-style: normal;
}

h1, h2, h3, h4, h5, h6, p, figure, ul, dl, dt, dd {
	margin: 0;
	padding: 0;
	list-style: none;
}

p {
	font-size: 14px;
	line-height: 2;
}

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

a:hover {
	filter: brightness(90%) contrast(120%);
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

button {
	/* 背景色を無色に */
	background: transparent;
	/* 枠線を消す */
	border: none;
	/* クリックした際に枠線をnone消す */
	outline: none;
	/* 影を消す */
	box-shadow: none;
 }

/* ボタンのスタイル */
.btn a {
  margin: 60px auto 0;
  position: relative;
  display: block;
  width: 210px;
  padding: 15px 0;
  background-color: #00ba89;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

/* アイコンのスタイル */
.btn-arrow a::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 27px;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  box-sizing: border-box;
}


/* PC スマホ 表示切り替え */
@media (max-width: 767px) {
	.pc {
		display: none;
	}
}

@media (min-width: 768px) {
	.sp {
		display: none;
	}
}





/* 横幅と左右の余白 */
.w-container {
	width: min(92%, 1166px);
	margin: auto;
}

@media (min-width: 768px) {
  .w70-container {
    width: min(70%, 720px);
    margin: auto;
  }
}

@media (min-width: 768px) {
  .w80-container {
    width: min(80%, 920px);
    margin: auto;
  }
}

/* 見出しスタイル */
.heading {
	text-align: center;
  color: #00b989;
	font-size: clamp(24px, 3.3vw, 38px);
	min-height: 0vw;  /* clamp for Safari */
  margin: 40px 0 50px;
}

/* ヘッダー */
.header {
	position: sticky;
	height: 70px;
	background-color: #fff;
	top: 0;
	z-index: 10;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
	border-top: 8px solid;
	border-right: 0px; /* Safariで右辺のボーダーが表示されてしまうバグ対策 */
	border-bottom: 0px; /* Safariで下辺のボーダーが表示されてしまうバグ対策 */
	border-left: 0px; /* Safariで左辺のボーダーが表示されてしまうバグ対策 */
	border-color: #00ba89;
}

@media (min-width: 768px) {
	.header {
    height: 90px;
	}
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}

.site img {
	width: 154px;
	height: auto;
}

@media (min-width: 768px) {
	.site img {
    width: 194px;
	}
}


/* ナビゲーションボタン */
.navbtn {
	padding: 0;
	outline: none;
	border: none;
	background: transparent;
	cursor: pointer;
	color: #aaaaaa;
	font-size: 30px;
}

.open .navbtn {
	z-index: 110;
	color: #ffffff;
}

.navbtn .fa-bars {
	display: revert;
}
.open .navbtn .fa-bars {
	display: none;
}

.navbtn .fa-times {
	display: none;
}
.open .navbtn .fa-times {
	display: revert;
}

@media (min-width: 768px) {
	.navbtn {
		display: none;
	}
}

/* ナビゲーションメニュー：モバイル */
@media (max-width: 767px) {
	.nav {
		position: fixed;
		inset: 0 -100% 0 100%;
		z-index: 100;
		background-color: rgba(0, 186, 137, 0.9);
		transition: transform 0.3s;
	}

	.open .nav {
		transform: translate(-100%, 0);
	}

	.open body {
		position: fixed;
		overflow: hidden;
	}

	.nav ul {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		height: 100%;
		gap: 40px;
		color: #ffffff;
		font-size: 15px;
		font-weight: 700;
	}
}

/* ナビゲーションメニュー：PC */
@media (min-width: 768px) {
	.nav ul {
		display: flex;
	}
	.nav li {
    font-size: 14px;
		margin-left: 1.5em;
    white-space: nowrap;
	}
}

@media (min-width: 1024px) {
	.nav li {
		font-size: 15px;
		margin-left: 3em;
	}
}


/* メインイメージ（トップページ） */
/* プラグインのスライドを設置後、不要であれば削除するp*/
.top-slide img {
  width: 100vw;
}

/* メインイメージ（下層ページ） */
.main-img {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .main-img {
    margin-bottom: 10px;
  }
}

.main-img img {
  width: 100vw;
	max-height: 375px;
	object-fit: cover;
}

@media (min-width: 1024px) {
  .main-img img {
    max-height: 472px;
  }
}

/* パンくずリスト プラグイン Flexy Breadcrumb スタイル */
@media (min-width: 768px) {
  .fbc-page .fbc-wrap .fbc-items li {
    font-size: 16px !important;
  }
}
.fbc-page .fbc-wrap .fbc-items li:first-child {
  padding-left: 0;
}



/* フッター */
.footer {
	background-color: #00ba89;
	color: #ffffff;
	padding-top: 50px;
}

.footer-container {
	border-top: #fff 1px solid;
}

.footer-site {
	margin: 15px 0 30px;
}

.footer-site img {
	margin: 0 auto;
	width: 154px;
	height: auto;
}


.footer-menu {
	display: flex;
	justify-content: center;
	margin-bottom: 35px;
}

.footer-menu > ul {
	width: 65%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	font-size: 13px;
	font-weight: 700;
	padding-left: 10%;
}

.footer-copy {
	text-align: center;
	font-size: 10px;
	padding: 10px;
}

@media (min-width: 768px) {
	.footer-container {
		display: flex;
		justify-content: space-between;
	}
  .footer-site {
	  margin-top: 20px;
  }
	.footer-site img {
    width: 200px; 
	}

	
	.footer-menu {
    margin-top: 25px;
    margin-left: 50px;
	}

	.footer-menu > ul {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		padding-left: 0; /* センタリング リセット */
	}
  .footer-menu li {
		margin-right: 1em;
    white-space: nowrap;
	}

	.footer-copy {
    font-size: 14px;
	}	
}



/* トップ */
.news {
  margin-top: 45px;
}

@media (min-width: 768px) {
  .news {
    margin: 45px auto 0;
    width: 67.34%;
  }
}

@media (min-width: 768px) {
  .news-head {
    display: flex;
	  justify-content: space-between;
  }
}

.news-title {
  margin-bottom: 30px;
}

.news-title h2 {
  font-size: 11px;
  color: #999;
  margin-bottom: 8px;
}

.news-title p {
  font-size: 40px;
  color: #00ba89;
  line-height: 1;
  
}

.news-archive {
  text-align: center;
  font-size: 14px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .news-archive {
    text-align: right;
    font-size: 18px;
    margin-bottom: 30px;
  }
}

.circle-arrow {
  border-radius: 50%;
  display: inline-flex;
  width: 32px;
  height: 32px;
  background: #00ba89;
  position: relative;
  top: -2px;
  right: -10px;
}

.circle-arrow::after {
  content: '';
  width: 5px;
  height: 5px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}


.news-list {
	border-top: #dadada 1px solid;
}

.news-list li {
	border-bottom: #dadada 1px solid;
  padding: 20px 0;
}

.news-list li a {
  display: block;
}

.news-list time {
  font-size: 14px;
  font-weight: 700;
  margin-right: 1.3em;
}

.news-category {
  display: inline-block;
  width: 40px;
  background-color: #00ba89;
  padding: 3px 8px;
  font-size: 10px;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.news-txt {
  display: block;
  font-size: 13px;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .news-list time {
    float: left;
    width: 80px;
  }

  .news-category {
    float: left;
    width: 40px;
    margin-right: 1.5em;
    margin-bottom: 0.5em;
  }

  .news-txt {
	float: left;
    width: 65%;
    margin-top: 0;
	}

  .news-list li a::after {
	  content: "";
	  display: block;
	  clear: both;
  }
}


/* トップ キャッチコピー */
.top-catch {
  margin-top: 50px;
  margin-bottom: var(--v-space);
}

.top-catch-container {
	display: grid;
	justify-items: center;
	align-content: center;
}

.top-catch-container h1 {
	margin: 55px 0 40px;
	font-size: clamp(22px, 3vw, 40px);
	min-height: 0vw;  /* clamp for Safari */
	font-weight: 600;
	line-height: 1.8;
	color: #00b989;
	text-align: center;
}

@media (min-width: 768px) {
	.top-catch-container p {
		width: min(65%, 1110px);
	}
}


/* ニュース */

.contents-2col {
	display: grid;
}

.contents {
	padding-bottom: var(--v-space);
}

.sidebar {
	padding-bottom: var(--v-space);
}

@media (min-width: 768px) {
	.contents-2col {
		grid-template-columns: 3fr 9fr;
		gap: 30px;
	}
	
	.contents {
		order: 2;
	}
	
	.sidebar {
		order: 1;
    margin-top: 80px;
	}
}

.contents .news-list {
  list-style: none;
  padding: 0;
}

@media (min-width: 768px) {
  .news-archive-list {
    margin: 45px auto 0;
    width: 100%;
  }
}

.recent-news h2,
.monthly-news h2 {
  background-color: #00b989;
  text-align: center;
  color: #fff;
  font-size: 15px;
  padding: 5px;
}

@media (min-width: 768px) {
  .recent-news h2,
  .monthly-news h2 {
    background-color: transparent;
    border-left: solid 4px #00ba89;
    text-align: left;
    color: #1a1a1a;
    font-size: 18px;
    padding-left: 15px;
  }
}

.recent-news ul,
.monthly-news ul {
  font-size: 13px;
  margin: 20px 10px 50px;
}

.recent-news ul li,
.monthly-news ul li {
  margin-bottom: 1.5em;
}

.monthly-news ul li {
  text-align: center;
}

@media (min-width: 768px) {
  .monthly-news ul li {
    text-align: left;
  }
}

/* ニュース 月別ページ */
.news-archive-list .news-list {
  padding-top: 20px;
}

.news article.news-list {
  padding-bottom: 20px;
}

.news-list-head::after {
	content: "";
	display: block;
	clear: both;
}

.news-list h2 {
	font-size: clamp(14px, 3.29vw, 20px);
  min-height: 0vw;  /* clamp for Safari */
  font-size: 14px;
  color: #00b989;
  margin: 20px 0;
}

@media (min-width: 768px) {
  .news-list h2 {
    font-size: 20px;
  }
}

.news-list p {
  font-size: 13px;
}

@media (min-width: 768px) {
  .news-list p {
    font-size: 16px;
  }
}

.prev-next-btn {
  text-align: center;
  margin-top: 50px;
}

.prev-next-btn li {
  display: inline;
  margin-right: 20px;
}

.prev-next-btn li:last-child {
  margin-right: 0;
}

.prev-next-btn li a {
  display: inline-block;
  border: solid 2px #e9e9e9;
  font-size: 14px;
  padding: 6px 8px;
}

/* ニュース ページナビゲーション WP-PageNavi */
.wp-pagenavi {
  margin-top: 50px;
  text-align: center;
}

.wp-pagenavi span.current {
  background-color: #00ba89;
  border-color: #00ba89;
  font-weight: bold;
  color: #fff;
}

.wp-pagenavi a:hover,
.wp-pagenavi span.current {
  border-color: #dadada;
}

.wp-pagenavi a,
.wp-pagenavi span {
  text-decoration: none;
  border: solid 1px #dadada;
  padding: 10px;
  margin: 5px;
}


/* WordPressの投稿を想定してブラウザ標準の初期設定にリセット */
.news-post :where(h1, h2, h3, h4, h5, h6, p, figure, ul) {
	margin-top: revert;
	margin-bottom: revert;
	padding: revert;
	list-style: revert;
}


/* 会社概要 */
.organization-chart {
  margin: 40px auto 100px;
  width: 100%;
}

@media (min-width: 768px) {
  .organization-chart {
    width: 65%;
  }
}

.history {
  margin: 40px auto 100px;
}

.history-container {
  width: 100%;
  border-top: solid 1px #dadada;
  font-size: 13px;
  margin: 0 0 40px;
}

.history-container dt {
  box-sizing: border-box;
  padding: 10px 15px 5px;
  font-weight: 700;
}
.history-container dd {
  box-sizing: border-box;
  border-bottom: solid 1px #dadada;
  padding: 0 15px 10px;
}

@media (min-width: 768px) {
  .history-container {
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    margin: 0 auto;
  }
  
  .history-container dt {
    width: 25%;
    border-bottom: solid 1px #dadada;
    font-size: 16px;
    padding: 15px;
  }

  .history-container dd {
    width: 75%;
    font-size: 16px;
    padding: 15px;
  }
}

.company-overview {
  margin: 40px auto 100px;
}

.company-overview table {
	width: 100%;
	border-collapse: collapse;
  border: solid 1px #dadada;
	background-color: #ffffff;
  font-size: 13px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .company-overview table {
    margin: 0 auto 30px;
    max-width: 700px;
  }
}

.company-overview th {
	width: 20%;
  border: solid 1px #dadada;
	background-color: #dedede;
  font-weight: 700;
  padding: 15px;
}

.company-overview td {
	width: 80%;
  border: solid 1px #dadada;
  padding: 15px;
}


.company-img {
  width: 100%;
  margin-bottom: 20px;
}

.company-img p {
  text-align: center;
  font-size: 13px;
}

@media (min-width: 768px) {
  .company-img-container {
    display: flex;
    column-gap: 30px;
  }

	.company-img {
		width: 50%;
	}

  .company-img p {
    font-size: 16px;
  }
}


.greeting {
  margin: 40px auto 100px;
}

@media (min-width: 768px) {
  .greeting-container {
    max-width: 730px;
  }
}

.greeting-catch {
  font-family:"Hiragino Mincho ProN", YuMincho, serif;
  font-size: 22px;
  color: #997759;
  line-height: 2;
  text-align: center;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .greeting-catch {
    font-size: 30px;
  }
}

.greeting-txt {
  margin-bottom: 40px;  
}

@media (min-width: 768px) {
  .greeting-txt {
    margin: 0 auto;
    max-width: 560px;
    margin-bottom: 80px;  
  }
}

.greeting-txt p {
  font-size: 13px;
}

@media (min-width: 768px) {
  .greeting-txt p {
    font-size: 18px;
  }
}

.greeting-txt .ceo {
  text-align: right;
  font-size: 15px;
  margin-top: 1.5em;
}

@media (min-width: 768px) {
  .greeting-txt .ceo {
    font-size: 18px;
  }
}

.greeting-txt .ceo span {
  font-size: 18px;
}

@media (min-width: 768px) {
  .greeting-txt .ceo span {
    font-size: 24px;
  }
}

.profile {
  background-color: #e8f7f3;
  padding: 25px;
}

@media (min-width: 768px) {
  .profile {
    margin: 0 auto;
    max-width: 560px;
    padding: 25px;
  }
}

.profile h3 {
  color: #00b989;
  font-size: 20px;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .profile h3 {
    font-size: 30px;
  }
}

.profile p {
  font-size: 13px;
}

@media (min-width: 768px) {
  .profile p {
    font-size: 16px;
  }
}


.access-map {
  margin: 40px auto 100px;
}

.access-address {
  margin-bottom: 50px;
}

.access-address h3 {
  font-size: 16px;
  margin: 15px 0 5px;
}

@media (min-width: 768px) {
  .access-address h3 {
    font-size: 20px;
  }
}

.access-address p {
  font-size: 13px;
}

@media (min-width: 768px) {
  .access-address p {
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  .access-map-container {
    display: flex;
    column-gap: 30px;
  }

	.access-address {
		width: 50%;
	}
}


/* サービス */
.service-container {
  padding-bottom: var(--v-space);
}

.target-business-img {
  max-width: 920px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.target-business-img li {
  text-align: center;
  font-size: clamp(17px, 2.47vw, 22px);
  min-height: 0vw;  /* clamp for Safari */
  font-weight: 700;
}

.target-business-img li img {
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .target-business-img {
    margin: 0 auto;
    width: 80%;
    gap: 30px;
  }
}

.target-business-txt {
  width: 100%;
  height: auto;
  background: url("http://mrep-as.co.jp/wp/wp-content/uploads/2025/05/service-bg.jpg") center / cover no-repeat;
  padding-top: 70px;
  padding-bottom: var(--v-space);
  margin-bottom: var(--v-space);
}

@media (min-width: 768px) {
  .target-business-txt-container {
    width: 64%;
  }
}
.target-business-txt-container h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .target-business-txt-container h3 {
    font-size: 24px;
  }
}

.target-business-txt-container ul {
  margin-bottom: 40px;
}

.target-business-txt-container ul li {
  font-size: 13px;
}

@media (min-width: 768px) {
  .target-business-txt-container ul li {
    font-size: 16px;
  }
}

.service h3 {
  font-size: 20px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .service h3 {
    font-size: 24px;
  }
}

.service p {
  margin-bottom: 25px;
}

@media (min-width: 768px) {
  .service p {
    font-size: 16px;
  }
}

.service-fig-1,
.service-fig-2 {
  margin: 0 auto;
  width: 85%;
}

@media (min-width: 768px) {
  .service-fig-1 {
    width: 85%;
  }
  .service-fig-2 {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .service-fig-1 {
    width: 75%;
  }
  .service-fig-2 {
    width: 100%;
  }
}

.service ul {
  list-style-type: disc;
  font-size: 13px;
  font-weight: 700;
  line-height: 2;
  padding-left: 20px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .service ul {
    font-size: 16px;
  }
}

.service h4 {
  width: 68px;
  display: inline-block;
  background-color: #00ba89;
  border-radius: 100px;
  text-align: center;
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  padding: 2px 10px;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .service h4 {
    width: 100px;
    font-size: 18px;
  }
}


/* 事例 */
.case-container {
  padding-bottom: var(--v-space);
}

.case-thumb-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  column-gap: 15px;
  border: solid 1px #dadada;
  box-sizing: border-box;
  padding: 15px;
  margin-bottom: 30px;
}

.case-thumb-img,
.case-thumb-txt {
  width: 100%;
}

.case-thumb-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.case-thumb-txt h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0.5em;
}

.case-thumb-txt .more-link {
  display: block;
  margin: 20px auto;
  width: 70%;
  padding: 5px 0;
  background-color: #00ba89;
  border-radius: 100px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}


@media (min-width: 768px) {
  .case-thumb-txt h3 {
    font-size: 20px;
  }
}

.case-thumb-txt p {
  font-size: 13px;
}

@media (min-width: 768px) {
  .case-thumb-txt p {
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  .case-thumb-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

.case-container .service-fig-1 {
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .case-container p {
    font-size: 16px;
  }
}

.process-flow-img {
  margin-bottom: 30px;
}

.case-explanation {
  background-color: #e8f7f4;
  padding: 20px;
  margin-top: 30px;
}

.w-btn a {
 width: 360px; 
}


/* 求人情報 */
.career {
	max-width: 630px;
	padding-bottom: var(--v-space);
}

.career h2 {
  font-size: 22px;
	margin: 50px 0 20px;
}

.career h3 {
  font-size: 16px;
	margin: 30px 0 10px;
}

@media (min-width: 768px) {
  .career h3 {
    font-size: 18px;
  }
}

.career p {
  font-size: 13px;
}

@media (min-width: 768px) {
  .career p {
    font-size: 16px;
  }
}

.career ul {
    list-style-type: disc;
    margin-left: 1em;
}

.career ol,
.career ul {
  font-size: 13px;
}

@media (min-width: 768px) {
  .career ol,
  .career ul {
    font-size: 16px;
  }
}

.career ol,
.career ul {
	padding-left: 1em;
}

.career ol li,
.career ul li {
	margin-bottom: 0.5em;
}

.application-form {
  margin-top: 100px;  
}

.application-form .lead {
	margin-bottom: 40px;
}

.mf-job-input select {
    font-size: 16px;
    padding: 5px;
}

@media (min-width: 768px) {
	.career .mailform {
		display: grid;
		grid-template-columns: 1fr 1.9fr;
	}

	.career .mf-job {
		grid-area: 1 / 1 / 2 / 2;
	}

	.career .mf-job-input {
		grid-area: 1 / 2 / 2 / 3;
	}

	.career .mf-academic-history {
		grid-area: 2 / 1 / 3 / 2;
	}

	.career .mf-academic-history-input {
		grid-area: 2 / 2 / 3 / 3;
	}

	.career .mf-birthday {
		grid-area: 3 / 1 / 4 / 2;
	}

	.career .mf-birthday-input {
		grid-area: 3 / 2 / 4 / 3;
	}

	.career .mf-name {
		grid-area: 4 / 1 / 5 / 2;
	}

	.career .mf-name-input {
		grid-area: 4 / 2 / 5 / 3;
		margin-bottom: 30px;
	}
	
	.career .mf-kana {
		grid-area: 5 / 1 / 6 / 2;
	}
	
	.career .mf-kana-input {
		grid-area: 5 / 2 / 6 / 3;
		margin-bottom: 30px;
	}
	
	.career .mf-add {
		grid-area: 6 / 1 / 7 / 2;
	}
	
	.career .mf-add-input {
		grid-area: 6 / 2 / 7 / 3;
		margin-bottom: 30px;
	}
	
	.career .mf-tel {
		grid-area: 7 / 1 / 8 / 2;
	}
	
	.career .mf-tel-input {
		grid-area: 7 / 2 / 8 / 3;
		margin-bottom: 30px;
	}
	
	.career .mf-email {
		grid-area: 8 / 1 / 9 / 2;
	}
	
	.career .mf-email-input {
		grid-area: 8 / 2 / 9 / 3;
		margin-bottom: 30px;
	}
		
	.career .mf-means {
		grid-area: 9 / 1 / 10 / 2;
	}
	
	.career .mf-means-input {
		grid-area: 9 / 2 / 10 / 3;
		margin-bottom: 30px;
	}
	
	.career .mf-file {
		grid-area: 10 / 1 / 11 / 2;
	}
	
	.career .mf-file-input {
		grid-area: 10 / 2 / 11 / 3;
	}
	
	.career .mf-inquiry-details {
		grid-area: 11 / 1 / 12 / 3;
        margin-bottom: 10px;
	}
	
	.career .mf-career {
		grid-area: 12 / 1 / 13 / 3;
		margin-bottom: 20px;
	}
	
	.career .mf-btn {
		grid-area: 13 / 1 / 14 / 3;
	}
}



/* お問い合わせ */
.inquiry {
	max-width: 630px;
	padding-bottom: var(--v-space);
}

.inquiry .lead {
  font-size: 13px;
	margin-bottom: 40px;
}

@media (min-width: 768px) {
  .inquiry .lead {
    font-size: 16px;
  }
}


/* メールフォーム　お問い合わせ　求人情報　共通スタイル */

.mf-job,
.mf-academic-history,
.mf-birthday,
.mf-type,
.mf-name,
.mf-kana,
.mf-add,
.mf-tel,
.mf-email,
.mf-means,
.mf-inquiry-details,
.mf-file {
  border-top: solid 1px #dadada;
  padding: 30px 0 10px;
}

@media (min-width: 768px) {
  .mf-job,
  .mf-job-input,
  .mf-academic-history,
  .mf-academic-history-input,
  .mf-birthday,
  .mf-birthday-input,
  .mf-type,
  .mf-type-input,
  .mf-name,
  .mf-name-input,
  .mf-kana,
  .mf-kana-input,
  .mf-add,
  .mf-add-input,
  .mf-tel,
  .mf-tel-input,
  .mf-email,
  .mf-email-input,
  .mf-means,
  .mf-means-input,
  .mf-inquiry-details,
  .mf-file,
  .mf-file-input {
    border-top: solid 1px #dadada;
    padding-top: 40px;
  }
}

.mf-job-input,
.mf-academic-history-input,
.mf-birthday-input,
.mf-type-input,
.mf-name-input,
.mf-kana-input,
.mf-add-input,
.mf-tel-input,
.mf-email-input,
.mf-means-input,
.mf-file-input {
	margin-bottom: 30px;
}

.mf-career {
	padding-bottom: 30px;
}

.mf-email-input,
.mf-career {
	line-height: 1.6;
}

.mail-alert {
  display: inline-block;
  font-size: 13px;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .mail-alert {
    font-size: 16px;
  }
}

.mf1,
.mf2,
.mf3,
.mf4,
.mf5 {
  border: none;
	background-color: #f8f8f8;
  box-shadow: inset 1px 2px 4px rgba(0,0,0,.3);
	padding: 10px;
}

.mf1 {
	width: 60%;
}

.mf2 {
	width: 85%;
}

.mf3 {
	width: 95%;
	height: 250px;
}

.mf4 {
	width: 12%;
  margin-right: 0.5em;
}

.mf5 {
	width: 8%;
  margin-right: 0.5em;
  margin-left: 1em;
}

.mf-means-input {
	display: flex;
}

.mf-inquiry-details {
    margin-bottom: 10px;
}

input[type="radio"] {
	width: 15px;
	height: 15px;
  margin-top: 5px;
  margin-left: 1.5em;
  margin-bottom: 10px;
}

input[type="checkbox"] {
	width: 15px;
	height: 15px;
}

textarea {
  margin-top: 10px;
}

/* ボタンのスタイル */
.mf-btn input[type="submit"] {
  margin: 10px auto 0;
  position: relative;
  display: block;
  width: 210px;
  padding: 15px 0;
  background-color: #00ba89;
	border-radius: 100px;
  border: none;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.mf-career a:link {
  color: #00ba89;
}

.mf-career a:visited {
  color: #0053ba;
}

.mf-career a:hover {
	text-decoration: underline;
}

.mf-career a:active {
  color: #cdfeaa;
}

@media (min-width: 768px) {
	.inquiry .mailform {
		display: grid;
		grid-template-columns: 1fr 1.9fr;
	}

	.inquiry .mf-type {
		grid-area: 1 / 1 / 2 / 2;
	}

	.inquiry .mf-type-input {
		grid-area: 1 / 2 / 2 / 3;
		margin-bottom: 30px;
	}
	
	.inquiry .mf-name {
		grid-area: 2 / 1 / 3 / 2;
	}

	.inquiry .mf-name-input {
		grid-area: 2 / 2 / 3 / 3;
		margin-bottom: 30px;
	}
	
	.inquiry .mf-kana {
		grid-area: 3 / 1 / 4 / 2;
	}
	
	.inquiry .mf-kana-input {
		grid-area: 3 / 2 / 4 / 3;
		margin-bottom: 30px;
	}
	
	.inquiry .mf-add {
		grid-area: 4 / 1 / 5 / 2;
	}
	
	.inquiry .mf-add-input {
		grid-area: 4 / 2 / 5 / 3;
		margin-bottom: 30px;
	}
	
	.inquiry .mf-tel {
		grid-area: 5 / 1 / 6 / 2;
	}
	
	.inquiry .mf-tel-input {
		grid-area: 5 / 2 / 6 / 3;
		margin-bottom: 30px;
	}
	
	.inquiry .mf-email {
		grid-area: 6 / 1 / 7 / 2;
	}
	
	.inquiry .mf-email-input {
		grid-area: 6 / 2 / 7 / 3;
		margin-bottom: 30px;
	}
		
	.inquiry .mf-means {
		grid-area: 7 / 1 / 8 / 2;
	}
	
	.inquiry .mf-means-input {
		grid-area: 7 / 2 / 8 / 3;
		margin-bottom: 30px;
	}
	
	.inquiry .mf-inquiry-details {
		grid-area: 8 / 1 / 9 / 3;
        margin-bottom: 10px;
	}
	
	.inquiry .mf-career {
		grid-area: 9 / 1 / 10 / 3;
		margin-bottom: 20px;
	}
	
	.inquiry .mf-btn {
		grid-area: 10 / 1 / 11 / 3;
	}
}


/* プライバシーポリシー */
.privacy {
	padding-bottom: var(--v-space);
}

.privacy-container {
	max-width: 730px;
}

.privacy h2 {
  font-size: 20px;
	margin: 50px 0 20px;
}

@media (min-width: 768px) {
  .privacy h2 {
    font-size: 24px;
  }
}

.privacy p {
  font-size: 13px;
	margin-bottom: 20px;
}

@media (min-width: 768px) {
  .privacy p {
    font-size: 16px;
  }
}

.privacy ol li {
	list-style-type: decimal;
	margin-bottom: 1em;
}

.privacy ol ol {
	margin: 15px 0;
	padding-left: 2em;
}

.privacy ol,
.privacy ul {
  font-size: 13px;
}

@media (min-width: 768px) {
  .privacy ol,
  .privacy ul {
    font-size: 16px;
  }
}


