@charset "utf-8";

/* Webフォント
======================================== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500&display=swap');
/*
* "Noto Sans Japanese" licensed under the Open Font License.
* https://fonts.google.com/noto/specimen/Noto+Sans+JP
* https://www.google.com/fonts/attribution
* https://openfontlicense.org/
*/

/* ステラスreset
======================================== */
table {
	border-collapse: collapse;
}
dt, th {
	font-weight: normal !important;
}
em {
	font-style: normal;
	font-weight: bold;
}
html {
	font-size: 62.5%;
	}
	@media screen and (max-width: 320px) {
	html { font-size: 54.6875%; }
}
img {
	width: 100%;
}

/* サイト共通
======================================== */
body {
	font-size: 1.6rem;
	font-size: clamp(1.5rem, 2vw, 1.6rem);
	font-family: "Noto Sans JP", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	color: #241611;
}
#contentsArea {
	padding-bottom: 160px;
}
section {
	padding-top: 120px;
}
.wrap {
	width: min(86%, 1280px);
	margin: 0 auto;
	position: relative;
	z-index: 10;
	}
	@media screen and (max-width:1024px) {
	#contentsArea {
		padding-bottom: 70px;
	}
	section {
		padding-top: 70px;
	}
}
a {
	transition: 0.3s;
}
a:hover {
	opacity: 0.6;
}

/* 電話番号リンク無効化 */
.pc a[href^="tel:"] {
	cursor: default;
	text-decoration: none;
	pointer-events: none;
}

/* 背景
----------------------------------------------------*/
body {
	background: url("../images/bg.jpg") 0 0 repeat-y;
	background-size: 100% auto;
	position: relative;
}
body::before {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 100%;
	height: 1200px;
	background-image: linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 30%);
	z-index: 0;
	}
	@media screen and (max-width:1024px) {
	body {
		background: url("../images/bg.jpg") top center repeat-y;
		background-size: 240% auto;
	}
	body::before {
		height: 400px;
	}
}

/* 見出し
------------------------------------------------- */
h2 {
	font-size: min(5.2vw, 5.6rem);
	line-height: 1.3;
	padding-top: 0.8em;
	margin-bottom: 0.95em;
	position: relative;
}
h2::before {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	width: 110px;
	height: 4px;
	background: #e7587a;
}
h2 + p:first-of-type,
h3 + p:first-of-type{
	margin-top: 0;
}
h3 {
	font-size: min(3.6vw, 3.8rem);
	padding-bottom: 0.75em;
	margin-bottom: 0.95em;
	border-bottom: 1px solid #a39296;
}
	@media screen and (max-width:1024px) {
	h2 {
		font-size: 2.9rem;
		margin-bottom: 1.1em;
		padding-top: 0.9em;
	}
	h2::before {
		width: 65px;
		height: 4px;
	}
	h3 {
		font-size: 2.3rem;
	}
}

h4, h5, h6 {
	line-height: 1.3;
	min-height: 0vw;
	margin: 1.6em 0 0.8em;
}
h4 {
	font-size: min(4.6vw, 2.6rem);
	color: #e7587a;
}
h5 {
	font-size: min(4.4vw, 2.4rem);
}
h6 {
	font-size: min(4vw, 1.8rem);
	background: #ffecf0;
	display: table;
	padding: 9px 1em 10px;
}

/* テキスト
------------------------------------------------- */
p, dl dd {
	line-height: 2.2;
}
table, ul li, ol li {
	line-height: 1.85;
}
p {
	margin-top: 1em;
}

/* header
======================================== */
header {
	height: 150px;
	z-index: 1000;
}
header .wrap {
	display: flex;
	align-items: center;
	width: auto;
	height: 100%;
	margin: 0 40px;
}
header h1 {
	margin: 0;
	width: min(22vw, 340px);
	position: relative;
	z-index: 1;
}
header h2 {
	margin: 0 0 0 20px;
	font-size: 1.7rem;
	font-size: clamp(1.5rem, 1.25vw, 1.7rem);
}
header nav {
	margin-left: auto;
}
header nav li {
	margin: 0 8px;
}
header nav li.recruit,
header nav li.corporate {
	margin-right: 0;
}
header nav li a {
	text-decoration: none;
	margin: 0 auto;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background: #e7587a;
	color: #fff;
	height: 66px;
	border-radius: 100px;
	width: 268px;
	line-height: 1;
	font-size: 1.8rem;
	text-align: center;
}
header nav li.tel a {
	background: #e7587a url("../images/icon_tel.svg") left 40px center no-repeat;
	background-size: 38px auto;
	padding-left: 50px;
	padding-bottom: 0.05em;
	font-size: 2.1rem;
}
header nav li.recruit a,
header nav li.corporate a {
	position: relative;
	padding-bottom: 0.1em;
}
header nav li.recruit a::after,
header nav li.corporate a::after {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 28px;
	margin: auto 0;
	width: 14px;
	height: 14px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
header nav li.recruit a {
	background: #f597ad url("../images/icon_people.svg") left 38px center no-repeat;
	background-size: 35px auto;
	padding-left: 25px;
}
header nav li.corporate a {
	background: #f597ad;
	text-align: center;
	padding-right: 10px;
}
	@media screen and (max-width:1280px) {
	header {
		height: 110px;
	}
	header h1 {
		width: 20rem;
	}
	header nav li a {
		height: 50px;
		width: 200px;
		border-radius: 100px;
		padding: 0 3em 0.1em 0;
		font-size: 1.5rem;
	}
	header nav li.tel a {
		background: #e7587a url("../images/icon_tel.svg") left 28px center no-repeat;
		background-size: 24px auto;
		padding: 0 0 0.1em 32px;
		padding-bottom: 0.05em;
		font-size: 1.7rem;
	}
	header nav li.recruit a {
		background: #f597ad url("../images/icon_people.svg") left 26px center no-repeat;
		background-size: 24px auto;
		padding: 0 0 0.1em 22px;
	}
	header nav li.recruit a::after,
	header nav li.corporate a::after {
		display: block;
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		right: 20px;
		margin: auto 0;
		width: 8px;
		height: 8px;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	}
	@media screen and (max-width:1024px) {
	header {
		height: min(16vw, 90px);
	}
	header .wrap {
		margin: 0 10px;
	}
	header h1 {
		width: min(26vw, 18rem);
	}
	header nav li {
		margin: 0 3px;
	}
	header nav li.tel a {
		height: 34px;
		border-radius: 100px;
		width: 34px;
		line-height: 1;
		text-align: center;
		text-indent: -9999px;
		background: #e7587a url("../images/icon_tel.svg") left 7px center no-repeat;
		background-size: 18px auto;
		padding: 0 0 0.1em 0;
	}
	header nav li.recruit a {
		height: 34px;
		width: auto;
		background: #f597ad url("../images/icon_people.svg") left 11px center no-repeat;
		background-size: 19px auto;
		padding: 0 2.3em 0.1em 35px;
		font-size: min(2.6vw, 1.5rem);
	}
	header nav li.corporate a {
		background-image: none;
		height: 34px;
		width: auto;
		border-radius: 100px;
		padding: 0 2.3em 0.1em 1.1em;
		font-size: min(2.6vw, 1.5rem);
	}

	header nav li.recruit a::after,
	header nav li.corporate a::after {
		right: 10px;
	}
}
body.index header nav li.corporate,
body.news header nav li.corporate,
body.recruit header nav li.recruit {
	display: none;
}


/* navi
======================================== */
#g-nav {
	position: relative;
	z-index: 999;
	height: 100%;
	background: transparent;
	visibility: visible;
	overflow: hidden;
}
#g-nav ul {
	position: static;
	display: flex;
	align-items: center;
}
#g-nav #g-nav-list {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
	}
	@media screen and (max-width:1024px) {
	#g-nav {
		top: 0;
		left: 0;
		position: fixed;
		width: 100%;
		height: 100vh;
		background: #fffbe1;
		visibility: hidden;
		opacity: 0;
		transition: 1s;
	}
	#g-nav.panelactive {
		visibility: visible;
		opacity: 1;
		transition: 1s;
	}
	#g-nav #g-nav-list {
		display: block;
		height: 100%;
	}
	/*ナビゲーションの縦スクロール（ナビの数が増えた場合）*/
	#g-nav.panelactive #g-nav-list {
		position: fixed;
		z-index: 999; 
		width: 100%;
		height: 100vh;
		overflow: auto;
		-webkit-overflow-scrolling: touch;
	}
	#g-nav ul {
		position: static;
		display: block;
		transform: none;
	}
}


/* footer
======================================== */
footer {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 70px;
	border-top: 1px solid #a39296;
	margin: 0 auto;
	width: calc(100% - 6.2vw);
	position: relative;
	z-index: 5;
}


/* ページの先頭へ
======================================== */
#pageTop {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 10;
}
#pageTop a {
	display: block;
	position: relative;
	width: 80px;
	height: 80px;
	z-index: 999;
	text-indent: -9999px;
	background: #f597ad;
	border-radius: 50%;
	transition: 0.3s;
}
#pageTop a:hover {
	opacity: 0.6;
}
#pageTop a::after {
	display: block;
	content: "";
	position: absolute;
	top: 45%;
	left: 0;
	right: 0;
	margin: auto;
	vertical-align: middle;
	width: 14px;
	height: 14px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	}
	@media screen and (max-width:1024px) {
	#pageTop {
		bottom: 8px;
		right: 8px;
	}
	#pageTop a {
		width: 5rem;
		height: 5rem;
	}
	#pageTop a::after {
		width: 1.2rem;
		height: 1.2rem;
	}
}


/* parts
======================================== */
/* 箇条書き
------------------------------------------------- */
/* 黒丸リスト */
.disc li {
	list-style-type: disc;
	margin: 1em 0 0 20px;
	padding-left: 0.3em;
}

/* 数字リスト */
.decimal li {
	list-style-type: decimal;
	margin: 1em 0 0 20px;
	padding-left: 0.8em;
	}
	@media screen and (max-width:1024px) {
	.decimal li {
		padding-left: 0.4em;
	}
}

/* ※つきリスト */
.kome li {
	position: relative;
	margin: 1em 0 0;
	text-indent: -1em;
	padding-left: 1.5em;
}
.kome li::before {
	position: relative;
	content: "※";
	display: inline-block;
	margin-left: 0.5em;
	margin-right: 0.5em;
}

/* マージン調整 */
.disc li:first-child,
.decimal li:first-child,
.kome li:first-child {
	margin-top: 0;
}

/* 改行なし（.disc.noTurnなど重ね付けする） */
.noTurn li {
	margin-top: 0;
}

/* 表
------------------------------------------------- */
/* 【01】スマホ、PC：表 */
.table {
	width: 100%;
	background: #fff;
}
.table th, .table td {
	border: 1px solid #ddd;
	padding: 1em;
	display: table-cell;
}
.table th {
	width: 14em;
}
.table td {
	width: calc(100% - 14em);
}

/* 【02】スマホ、PC：罫線（table） */
table.list {
	width: 100%;
	border-top: 1px solid #ddd;
}
table.list th, table.list td {
	border-bottom: 1px solid #ddd;
	padding: 1em;
	display: table-cell;
}
table.list th {
	width: 14em;
}
table.list td {
	width: calc(100% - 14em);
}

/* 【02】スマホ、PC：罫線（dl） */
dl.list {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	border-bottom: 1px solid #ddd;
}
dl.list dt,
dl.list dd {
	display: block;
	padding: 1em;
	border-top: 1px solid #ddd;
}
dl.list dt {
	flex-basis: 14em;
}
dl.list dd {
	flex-basis: calc(100% - 14em);
}

/* 【03】スマホ、PC：罫線（table listB） */
table.listB {
	width: 100%;
	border-bottom: 1px solid #ddd;
}
table.listB th, table.listB td {
	display: table-cell;
	padding: 1em;
}
table.listB th {
	border-top: 1px solid #ddd;
	width: 14em;
	font-weight: normal;
}
table.listB td {
	border-top: 1px solid #ddd;
	width: calc(100% - 14em);
	}
	@media screen and (max-width:1024px) {
	table.listB th, table.listB td {
		display: block;
		width: 100%;
	}
	table.listB th {
		font-weight: bold;
		padding-bottom: 0;
	}
	table.listB td {
		border-top: none;
		padding-top: 0;
	}
}

/* 【03】スマホ、PC：罫線（dl listB） */
dl.listB {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	border-bottom: 1px solid #ddd;
}
dl.listB dt,
dl.listB dd {
	padding: 1em;
	border-top: 1px solid #ddd;
}
dl.listB dt {
	flex-basis: 14em;
	font-weight: normal;
}
dl.listB dd {
	flex-basis: calc(100% - 14em);
	}
	@media screen and (max-width:1024px) {
	dl.listB {
		display: block;
	}
	dl.listB dt,
	dl.listB dd {
		display: block;
		flex-basis: 100%;
	}
	dl.listB dt {
		padding: 1em 1em 0.2em;
		font-weight: bold;
	}
dl.listB dd {
		border-top: none;
		padding: 0 1em 1em;
	}
}

/* 【04】スマホ：罫線、PC：表（table） */
table.list-table {
	width: 100%;
	border-bottom: 1px solid #ddd;
}
table.list-table th, table.list-table td {
	border: 1px solid #ddd;
	padding: 1em;
	display: table-cell;
}
table.list-table th {
	width: 14em;
	font-weight: normal;
}
table.list-table td {
	border-top: 1px solid #ddd;
	width: calc(100% - 14em);
	}
	@media screen and (max-width:1024px) {
	table.list-table th, table.list-table td {
		display: block;
		width: 100%;
		padding: 1em;
		border: none;
	}
	table.list-table th {
		border-top: 1px solid #ddd;
		padding-bottom: 0;
		font-weight: bold;
	}
	table.list-table td {
		border-bottom: none;
		padding-top: 0;
	}
}

/* 【04】スマホ：罫線、PC：表（dl） */
dl.list-table {
	display: flex;
	flex-wrap: wrap;
	border-left: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}
dl.list-table dt,
dl.list-table dd {
	border-top: 1px solid #ddd;
	border-right: 1px solid #ddd;
	padding: 1em;
	display: table-cell;
}
dl.list-table dt {
	flex-basis: 14em;
	font-weight: normal;
}
dl.list-table dd {
	flex-basis: calc(100% - 14em);
	}
	@media screen and (max-width:1024px) {
	dl.list-table {
		display: block;
		width: 100%;
		border-left: none;
	}
	dl.list-table dt,
	dl.list-table dd {
		display: block;
		flex-basis: 100%;
		border-right: none;
	}
	dl.list-table dt {
		border-top: 1px solid #ddd;
		padding: 1em 1em 0.2em;
		font-weight: bold;
	}
	dl.list-table dd {
		border-top: none;
		padding: 0 1em 1em;
	}
}

/* 表スクロール */
@media screen and (max-width:1024px) {
	.table-scroll {
		overflow-x: scroll;
	}
	.table-scroll table {
		width: 1000px;
		margin-bottom: 8px;
	}
}

/* 改行
------------------------------------------------- */
/* スマホだけ改行 */
br.sp { 
	display: none;
	}
	@media screen and (max-width:1024px) {
	br.sp {
		display: block;
	}
}
/* PCだけ改行 */
br.pc { 
	display: block;
	}
	@media screen and (max-width:1024px) {
	br.pc {
		display: none;
	}
}

/* ピンチアウト（図の拡大をうながす）
------------------------------------------------- */
.sp .sp_atten {
	display: block;
	text-align: right;
	font-size: 1.1rem;
}
.pc .sp_atten {
	display: none;
}


/* 段組み
------------------------------------------------- */
.col {
	display: flex;
	justify-content: space-between;
	}
	@media screen and (max-width:1024px) {
	.col {
		display: block;
	}
}
/* 折り返しあり */
.col_wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	}
.col_wrap:after { /* 最後のコンテンツを左寄せにする指定 */
	content: "";
	display: block;
	width: 31%;
	height: 0;
	}
	@media screen and (max-width:1024px) {
	.col_wrap {
		display: block;
	}
}

/* ボタン
------------------------------------------------- */
.btn {
	text-align: center;
	margin-top: 1.5em;
}
.btn a {
	text-decoration: none;
	margin: 0 auto;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background: #e7587a;
	color: #fff;
	height: 66px;
	padding: 0 3.7em 0 3em;
	border-radius: 100px;
	width: auto;
	min-width: 330px;
	line-height: 1;
	font-size: 1.8rem;
	padding-bottom: 0.15em;
	text-align: center;
	position: relative;
}
.btn a::after {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 28px;
	margin: auto 0;
	width: 14px;
	height: 14px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.btn a:hover {
	opacity: 0.6;
}
	@media screen and (max-width:1024px) {
	.btn a {
		padding: 0 2.7em 0.1em 1.8em;
		height: 52px;
		min-width: 240px;
		font-size: clamp(1.5rem, 2vw, 1.6rem);
	}
	.btn a::after {
		right: 20px;
		width: 10px;
		height: 10px;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
	}
}

/* テキスト文字揃え
------------------------------------------------- */
.txtC {
	text-align: center;
}
.txtR {
	text-align: right;
}


/* アニメーション
======================================== */
body {
	animation: fadein 5s forwards;
}
@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}