@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: 1280px;
	margin: 0;
	padding: 0;
	font-size: 1.8rem;
	font-weight: 300;
	line-height: 1.5;
	color: #333;
	background: #f8f5e6;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
}

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

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

#main {
	width: 71rem;
	margin: 0 auto;
	background: #fff;
	box-shadow: 0 0 1.2rem rgba(0, 0, 0, 0.16);
}

/* 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: 0.75 !important;
	}

	#main {
	}
}

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

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

#gHeader {
}

.headerInner {
}

.headerLogo {
}

.headerLogo a {
}

.headerLogo img {
}

/* navigation */

.gNav {
}



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

.subbg {
}

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

.commonContact {
}

.commonContactInner {
}

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

#gFooter {
}
