@charset "utf-8";

/*------------------------------------------------------------
  Base / Reset
------------------------------------------------------------*/

/* box-sizing は全体に適用 */
*,
*::before,
*::after {
	box-sizing: border-box;
}

/* reset（必要最低限） */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em, font,
img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
figcaption, figure, section, footer, header, main, hgroup, menu, nav, summary {
	margin: 0;
	padding: 0;
	font-size: 1em;
	border: 0;
	background: transparent;
	outline: 0;
}

/* rem 基準 */
html {
	font-size: 62.5%;
}
html {
	scroll-behavior: smooth;
}

/* SP（小さめ端末） */
@media all and (max-width: 389px) {
	html {
		font-size: calc(1000vw / 390);
	}
}

/* 日本語フォント（必要に応じて読み込み） */
body,
table,
input,
textarea,
select,
option {
	font-family: "Zen Maru Gothic", sans-serif;
}

/* HTML5 elements */
article, aside, canvas, details, figcaption, figure,
footer, header, main, hgroup, menu, nav, section, summary {
	display: block;
}

/* list */
ol,
ul {
	list-style: none;
}

/* quote */
blockquote,
q {
	quotes: none;
}

/* フォーカスの枠（必要なら個別に付ける） */
:focus {
	outline: 0;
}

/* text decoration */
ins {
	text-decoration: none;
}

del {
	text-decoration: line-through;
}

/* image */
img {
	display: block;
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

/* address */
address {
	font-style: normal;
}

/* link */
a,
a:link,
a:visited,
a:hover,
a:active {
	color: #333;
	text-decoration: none;
	transition: 0.3s;
}

/* Chrome 拡張が入れる要素対策（必要に応じて残す） */
chrome_annotation {
	border: none !important;
}

/*------------------------------------------------------------
  Utility
------------------------------------------------------------*/

/* clearfix（古いfloat対応） */
.clearfix::after {
	display: block;
	clear: both;
	content: "";
}

/* flex */
.flex,
.flexA,
.flexB,
.flexC {
	display: flex;
	flex-wrap: wrap;
}

.flexA {
	justify-content: space-around;
}

.flexB {
	justify-content: space-between;
}

.flexC {
	justify-content: center;
}

/* font */
.lora {
	font-family: "Lora", serif;
}

/*------------------------------------------------------------
  Effects
------------------------------------------------------------*/

/* zoomHover */
.zoomHover {
	overflow: hidden;
}

.zoomHover img {
	transform: scale(1);
	transition: transform 1.2s ease;
}

.zoomHover:hover img {
	transform: scale(1.08);
}

/*------------------------------------------------------------
  Animation（全ページ共通）
------------------------------------------------------------*/

/* フェードインアップ：初期状態 */
.fadeInUp {
	opacity: 0;
	transform: translate3d(0, 20px, 0);
}

/* 表示時 */
.fadeInUp.is-in {
	animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translate3d(0, 20px, 0);
	}
	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

/* OS設定でアニメ停止（アクセシビリティ） */
@media (prefers-reduced-motion: reduce) {
	* {
		animation: none !important;
		transition: none !important;
	}
}

/*------------------------------------------------------------
  Layout
------------------------------------------------------------*/

body {
	min-width: auto;
	margin: 0;
	padding: 0;
	font-size: 1.8rem;
	font-weight: 300;
	line-height: 1.5;
	color: #333;
	background-color: #fff;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
}

.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
}

#container {
	position: relative;
	text-align: left;
}

#main {
	margin-bottom: 9.2rem;
}

/* telリンク（PCでは無効） */
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}

/* 表示切替 */
@media all and (min-width: 897px) {
	.sp {
		display: none !important;
	}
}

@media all and (max-width: 896px) {
	body {
		min-width: auto;
		font-size: 1.4rem;
	}

	.pc {
		display: none !important;
	}

	/* SPではtelリンク有効 */
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}

	/* hover無効環境での見た目崩れ回避（必要なら残す） */
	a:hover,
	a:hover img {
		opacity: 1 !important;
	}

	#main {
		margin-bottom: 5.5rem;
	}
}

/*------------------------------------------------------------
  Header / Footer（箱だけ：案件固有のCSSは style.css へ）
------------------------------------------------------------*/

/*------------------------------------------------------------
  Header
------------------------------------------------------------*/

#gHeader {
	position: absolute;
	top: 2rem;
	left: 0;
	z-index: 10;
	width: 100%;
}

.headerInner {
	display: flex;
	align-items: center;
	width: 140rem;
	/*min-width: 140rem;
	max-width: 140rem;*/
	margin: 0 auto;
	padding: 1.8rem 2.25rem 1.8rem 4rem;
	border-radius: 9rem;
	background: #fff;
}

.headerLogo {
	padding-top: 1rem;
	width: 42rem;
	flex-shrink: 0;
}

.headerLogo a {
	display: block;
}

.headerLogo img {
	width: 100%;
}

/* navigation */

.gNav {
	flex: 1;
	min-width: 0;
	padding-left: 5rem;
}

.navMain,
.navSub {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	white-space: nowrap;
}

.navMain {
	gap: 2rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #d8d8d8;
}

.navSub {
	padding-top: 1rem;
}

.navMain a {
	display: flex;
	align-items: center;
	font-size: 1.5rem; /* 16px */
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0.05rem;
	white-space: nowrap;
}

.navSub a {
	display: flex;
	align-items: center;
	font-size: 1.8rem; /* 18px */
	font-weight: 700;
	line-height: 1.4;
	white-space: nowrap;
}

.navMain .current a {
	padding: 0.5rem 1.5rem;
	border-radius: 2rem;
	background: #ffdfdf;
}
.navMain li a:hover {
	color: #f57cb0;
}

/* recruit */

.navMain .recruit {
	position: relative;
	padding-left: 2rem;
}

.navMain .recruit::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 1px;
	height: 2.2rem;
	background: #ff7bac;
	transform: translateY(-50%);
	content: "";
}

.navMain .recruit a {
	gap: 1rem;
}

.navMain .recruit img {
	width: 2.4rem;
	height: auto;
}

/* sub nav separator */

.navSub li {
	display: flex;
	align-items: center;
}

.navSub li:not(:last-child)::after {
	display: block;
	width: 1px;
	height: 2rem;
	margin: 0 1.8rem;
	background: #ff7bac;
	content: "";
}

.navSub li.current a {
	padding: 0.5rem 1.5rem;
	border-radius: 2rem;
	background: #ffdfdf;
}
.navSub li a:hover {
	color: #f57cb0;
}

/* menu button */

.menuBtn {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 8.8rem;
	height: 8.8rem;
	margin-left: 2.0rem;
	padding: 0;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 400;
	color: #fff;
	border: none;
	border-radius: 50%;
	background: #f57cb0;
	cursor: pointer;
	flex-shrink: 0;
}

.menuBtn span:not(.menuText) {
	display: block;
	width: 4.0rem;
	height: 0.2rem;
	margin-bottom: 0.8rem;
	border-radius: 999px;
	background: #fff;
}

.menuBtn .menuText {
	display: block;
	margin-top: 0.2rem;
	font-size: 1.6rem;
	line-height: 1;
	letter-spacing: 0;
}


/*------------------------------------------------------------
  Header Tel
------------------------------------------------------------*/

.headerTel {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 133rem;
	margin: 2.4rem auto 0;
}

.headerTelNum {
	display: block;
	width: 33rem;
	margin-right: 2.4rem;
	pointer-events: auto;
}

.headerTelNum img {
	width: 100%;
}

.headerTelInfo {
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: 0.1rem;
}


/*------------------------------------------------------------
  背景共通
------------------------------------------------------------*/

.subbg {
	position: relative;
	padding: 0;
	background: url("../image/common/bg02.png") center top repeat-y;
	background-size: 100% auto;
}

/*------------------------------------------------------------
  Common Contact
------------------------------------------------------------*/

.commonContact {
	position: relative;
	padding: 7rem 0 6.5rem;
}

.commonContactInner {
	width: 130rem;
	margin: 0 auto;
}

.commonContactHead {
	display: flex;
	align-items: center;
	margin-bottom: 4rem;
}

.commonContactTitle {
	display: flex;
	align-items: center;
	width: 30rem;
	height: 8rem;
	padding: 0 3rem;
	border-radius: 1.5rem 4rem 4rem 1.5rem;
	background: #ff8daf;
	box-shadow: 0 0.8rem 1.4rem rgba(210, 90, 130, 0.18);
	flex-shrink: 0;
}

.commonContactTitle span {
	position: relative;
	padding-left: 3rem;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.04em;
	color: #fff;
}

.commonContactTitle span::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 1.4rem;
	height: 1.4rem;
	border-radius: 50%;
	background: #fff;
	transform: translateY(-50%);
	content: "";
}

.commonContactLead {
	margin-left: 4rem;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.8;
}

.commonContactBody {
	display: flex;
	align-items: center;
	padding-left: 6rem;
}

.commonContactTel {
	width: 40rem;
	margin-right: 5rem;
}

.commonContactMail {
	width: 50rem;
}

.commonContactTel a,
.commonContactMail a {
	display: block;
	transition: 0.3s;
}

.commonContactTel img,
.commonContactMail img {
	display: block;
	width: 100%;
}

.commonContactTel a:hover,
.commonContactMail a:hover {
	opacity: 0.7;
}

/*------------------------------------------------------------
  フッター
------------------------------------------------------------*/

#gFooter {
	position: relative;
	padding: 4rem 0 3rem 0;
	background: #ff8daf;
	letter-spacing: 0.1rem;
	font-weight: 500;
	overflow: hidden;
}

#gFooter::before {
	position: absolute;
	top: 4rem;
	right: 0;
	width: 100%;
	height: 100%;
	background: url("../image/common/bg03.png") no-repeat top right;
	background-size: 95% auto;
	opacity: 0.35;
	content: "";
}

#gFooter .footerInner {
	position: relative;
	z-index: 1;
}

#gFooter .footerInner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	width: 130rem;
	margin: 0 auto;
}

#gFooter .footerInfo {
	padding-top: 0.6rem;
}

#gFooter .footerName {
	font-size: 1.8rem;
	line-height: 1.7;
	color: #fff;
}

#gFooter .footerAddress {
	font-size: 1.8rem;
	line-height: 1.7;
	color: #fff;
}

#gFooter .footerAddress {
	display: block;
	margin-bottom: 2rem;
	font-size: 1.8rem;
	line-height: 1.7;
	color: #fff;
}

#gFooter .footerAddress a {
	color: #fff;
	text-decoration: none;
}

#gFooter .copyright {
	font-size: 1.8rem;
	line-height: 1.5;
	color: #fff;
}

#gFooter .pageTop {
	flex-shrink: 0;
}

#gFooter .pageTop a {
	display: block;
	width: 8.5rem;
	transition: 0.3s;
}

#gFooter .pageTop img {
	display: block;
	width: 100%;
}

#gFooter .pageTop a:hover {
	opacity: 0.7;
}
