@charset "utf-8";

/* ==========================================
カスタムプロパティ
========================================== */

:root {
	/* base color */
	--base-font-color: #333;

	/* ui color */
	--ui-border-color: #B1B2AC;
	--ui-focus-color: #333;
	/* ui color */
	--ui-border-color: #B1B2AC;
	--ui-focus-color: #333;

	/* site color */
	--primary: #3A433D;
	--primary-dark: #313933;
	--primary-light: #626964;
	--secondary: #E6E3DD; 
	--secondary-dark: #D9D6CF; 
	--secondary-light: #F5F3F1; 
	--tertiary: #A1A096;
	--dark: #292929; 
	--gray: #B0B4B1; 
	--gray-dark: #A0A29C; 
	--gray-light: #CBC9C8; 
	--white: #fff; 

	/* font family */
	--font-family01: "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	--font-family02: "Zen Old Mincho", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	--font-family03: "Marcellus", serif;
	--font-family04: "Inter", sans-serif;

}

/* ==========================================
共通
========================================== */

html {
	/* font-size: var(--root-font-size); */
	font-size: 62.5%;
}

body {
	margin: 0 auto;
	max-width: 192rem;
	width: 100%;
	line-height: 1.6;
	font-size: 1.8rem;
	font-weight: 500;
	font-family: var(--font-family01);
	background-color: var(--primary);
	color: var(--secondary);
}

input {
	background: unset !important;
	appearance: auto;
	border: 1px solid var(--ui-border-color) !important;
}

input:focus-visible {
	outline: 1px solid var(--ui-focus-color) !important;
	border-color: var(--ui-focus-color) !important;
}

textarea {
	background: unset !important;
	border: 1px solid var(--ui-border-color) !important;
}

textarea:focus-visible {
	outline: 1px solid var(--ui-focus-color) !important;
	border-color: var(--ui-focus-color) !important;
}

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

a, button {
	transition: 0.3s;
}

p > a {
	text-decoration: underline;
}

p > a:hover {
	text-decoration: unset;
}

/* ==========================================
表示切替
========================================== */

.d-none {
    display: none !important;
}

/* ==========================================
改行
========================================== */

.br-none br {
	display: none;
}

/* ==========================================
ローディングアニメーション
========================================== */

.loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: var(--primary);
	display: flex !important;
	align-items: center;
	justify-content: center;
	animation: fadeOut 1.5s 2s forwards;
	z-index: 999;
}

.loading img {
	opacity: 0;
	animation: logo_fade 2s 0.2s forwards;
	width: 250px;
}

@keyframes fadeOut {
0% {
	opacity: 1;
}
100% {
	opacity: 0;
	visibility: hidden;
}
}

@keyframes logo_fade {
0% {
	opacity: 0;
}
60% {
	opacity: 1;
}
100% {
	opacity: 0;
}
}

/* ==========================================
タイトル
========================================== */

.en-title01 {
	font-size: 8rem;
	font-weight: normal;
	font-family: var(--font-family03);
	line-height: 1.25em;
}

.en-title02 {
	font-size: 6rem;
	font-weight: normal;
	font-family: var(--font-family03);
	line-height: 1.25em;
}

.title01 {
	font-size: 4rem;
	font-weight: 600;
	font-family: var(--font-family02);
	letter-spacing: 0.03em;
	line-height: 1.5em;
}

.title02 {
	font-size: 3rem;
	font-weight: 600;
	font-family: var(--font-family02);
	letter-spacing: 0.03em;
	line-height: 1.66em;
}

.title02 strong {
	font-size: 1.33em;
	font-weight: 600;
	letter-spacing: 0.03em;
	line-height: 1.45em;
}

.title03 {
	font-size: 2.5rem;
	font-weight: 600;
	font-family: var(--font-family02);
	letter-spacing: 0.03em;
	line-height: 1.44em;
}

.sub-title01 {
	letter-spacing: 0.03em;
	line-height: 1.66em;
}

.title-decoration01 {
	display: flex;
	align-items: center;
	padding-bottom: 2rem;
	border-bottom: solid 1px;
}

.title-decoration01-primary {
	border-color: var(--primary);
}

.title-decoration01-primary-light {
	border-color: var(--primary-light);
}

.title-decoration01-gray {
	border-color: var(--gray);
}

.title-decoration01-gray-light {
	border-color: var(--gray-light);
}

.title-decoration02 {
	display: flex;
	justify-content: center;
	align-items: center;
}

.title-decoration02:before, .title-decoration02:after {
	content: "";
	display: inline-block;
	width: 1px;
	height: 4rem;
	margin: 0 2rem;
	vertical-align: middle;
	position: relative;
}

.title-decoration02:before {
	transform: rotate(-45deg);
}

.title-decoration02:after {
	transform: rotate(45deg);
}

.title-decoration02-secondary:before, .title-decoration02-secondary:after {
	background: var(--secondary);
}


/* ==========================================
テキスト
========================================== */

.text01 {
	letter-spacing: 0.03em;
	line-height: 1.66em;
}

.text02 {
	letter-spacing: 0.03em;
	line-height: 2.22em;
}

.text-center {
	text-align: center;
}

.lead-text-box {
	text-align: center;
}

/* ==========================================
ボタン
========================================== */

.btn01 {
	max-width: 25rem;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	letter-spacing: 0.03em;
	line-height: 1.44em;
	border: solid 1px;
	border-radius: 4.6rem;
	padding: 1.5rem 1rem 1.7rem;
	position: relative;
}

.btn01-arrow {
	justify-content: flex-start;
	padding: 1.5rem 4rem 1.7rem 3rem;
}

.btn01-arrow:before {
	content: "";
	display: block;
	max-width: 1.6rem;
	width: 100%;
	height: 9rem;
	position: absolute;
	top: 50%;
	right: 2rem;
	transform: translateY(-50%);
	transition: .3s;
}

.btn01-primary {
	border-color: var(--primary);
	color: var(--primary);
}

.btn01-arrow.btn01-primary:before {
	background: url(../../../../uploads/arrow_icon01_primary.svg) no-repeat center / contain;
}

.btn01-primary:hover {
	background: var(--primary);
	color: var(--secondary);
}

.btn01-arrow.btn01-primary:hover:before {
	background: url(../../../../uploads/arrow_icon01_secondary.svg) no-repeat center / contain;
	transform: translateX(5px) translateY(-50%);
}

.btn01-secondary {
	border-color: var(--secondary);
	color: var(--secondary);
}

.btn01-arrow.btn01-secondary:before {
	background: url(../../../../uploads/arrow_icon01_secondary.svg) no-repeat center / contain;
}

.btn01-secondary:hover {
	background: var(--secondary);
	color: var(--primary);
}

.btn01-arrow.btn01-secondary:hover:before {
	background: url(../../../../uploads/arrow_icon01_primary.svg) no-repeat center / contain;
	transform: translateX(5px) translateY(-50%);
}

.btn02 {
	max-width: 40rem;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	letter-spacing: 0.03em;
	line-height: 1.45em;
	border: solid 1px;
	border-radius: 4.6rem;
	padding: 2.3rem 1rem 2.6rem;
	position: relative;
}

.btn02-arrow {
	justify-content: flex-start;
	padding: 2.3rem 4rem 2.6rem 3rem;
}

.btn02-arrow:before {
	content: "";
	display: block;
	max-width: 1.6rem;
	width: 100%;
	height: 9rem;
	position: absolute;
	top: 50%;
	right: 2rem;
	transform: translateY(-50%);
	transition: .3s;
}

.btn02-primary {
	border-color: var(--primary);
	background: var(--primary);
	color: var(--secondary);
}

.btn02-arrow.btn02-primary:before {
	background: url(../../../../uploads/arrow_icon01_secondary.svg) no-repeat center / contain;
}

.btn02-primary:hover {
	background: var(--secondary);
	color: var(--primary);
}

.btn02-arrow.btn02-primary:hover:before {
	background: url(../../../../uploads/arrow_icon01_primary.svg) no-repeat center / contain;
	transform: translateX(5px) translateY(-50%);
}

.btn02-secondary {
	border-color: var(--secondary);
	background: var(--secondary);
	color: var(--primary);
}

.btn02-arrow.btn02-secondary:before {
	background: url(../../../../uploads/arrow_icon01_primary.svg) no-repeat center / contain;
}

.btn02-secondary:hover {
	background: var(--secondary);
	color: var(--primary);
}

.btn02-arrow.btn02-secondary:hover:before {
	background: url(../../../../uploads/arrow_icon01_secondary.svg) no-repeat center / contain;
	transform: translateX(5px) translateY(-50%);
}

.btn03 {
	max-width: 40rem;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	letter-spacing: 0.03em;
	line-height: 1.45em;
	border: solid 1px;
	border-radius: 4.6rem;
	padding: 2.3rem 1rem 2.6rem;
	position: relative;
}

.btn03-arrow {
	justify-content: flex-start;
	padding: 2.3rem 4rem 2.6rem 3rem;
}

.btn03-arrow:before {
	content: "";
	display: block;
	max-width: 1.6rem;
	width: 100%;
	height: 9rem;
	position: absolute;
	top: 50%;
	right: 2rem;
	transform: translateY(-50%);
	transition: .3s;
}

.btn03-primary {
	border-color: var(--primary);
	color: var(--primary);
}

.btn03-arrow.btn03-primary:before {
	background: url(../../../../uploads/arrow_icon01_primary.svg) no-repeat center / contain;
}

.btn03-primary:hover {
	background: var(--primary);
	color: var(--secondary);
}

.btn03-arrow.btn03-primary:hover:before {
	background: url(../../../../uploads/arrow_icon01_secondary.svg) no-repeat center / contain;
	transform: translateX(5px) translateY(-50%);
}

.btn03-secondary {
	border-color: var(--secondary);
	color: var(--secondary);
}

.btn03-arrow.btn03-secondary:before {
	background: url(../../../../uploads/arrow_icon01_secondary.svg) no-repeat center / contain;
}

.btn03-secondary:hover {
	background: var(--secondary);
	color: var(--primary);
}

.btn03-arrow.btn03-secondary:hover:before {
	background: url(../../../../uploads/arrow_icon01_primary.svg) no-repeat center / contain;
	transform: translateX(5px) translateY(-50%);
}

/* ==========================================
画像
========================================== */

.img-rounded01 > img {
	border-radius: 0.3rem;
}

/* ==========================================
背景色
========================================== */

.bg-color-primary {
	background-color: var(--primary);
}

.bg-color-primary-dark {
	background-color: var(--primary-dark);
}

.bg-color-primary-light {
	background-color: var(--primary-light);
}

.bg-color-secondary {
	background-color: var(--secondary);
}

.bg-color-secondary-dark {
	background-color: var(--secondary-dark);
}

.bg-color-secondary-light {
	background-color: var(--secondary-light);
}

.bg-color-tertiary {
	background-color: var(--tertiary);
}

.bg-color-dark {
	background-color: var(--dark);
}

.bg-color-gray {
	background-color: var(--gray);
}

.bg-color-gray-dark {
	background-color: var(--gray-dark);
}

.bg-color-gray-light {
	background-color: var(--gray-light);
}

.bg-color-white {
	background-color: var(--white);
}

/* ==========================================
文字色
========================================== */

.color-primary {
	color: var(--primary);
}

.color-primary-dark {
	color: var(--primary-dark);
}

.color-primary-light {
	color: var(--primary-light);
}

.color-secondary {
	color: var(--secondary);
}

.color-secondary-dark {
	color: var(--secondary-dark);
}

.color-secondary-light {
	color: var(--secondary-light);
}

.color-tertiary {
	color: var(--tertiary);
}

.color-dark {
	color: var(--dark);
}

.color-gray {
	color: var(--gray);
}

.color-gray-dark {
	color: var(--gray-dark);
}


.color-gray-light {
	color: var(--gray-light);
}

.color-white {
	color: var(--white);
}

/* ==========================================
ヘッダー
========================================== */

header {
	max-width: 192rem;
	width: 100%;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	margin: auto;
	z-index: 999;
	transition: .5s;
}

.header-inner {
	max-width: 185rem;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 3rem 1.5rem;
	margin: auto;
	position: relative;
	z-index: 999;
}

.header-logo {
	max-width: 23.7rem;
	width: 13.02%;
	display: block;
	margin: 1rem 0 0;
}

.header-area {
	max-width: 154rem;
	width: 100%;
	display: flex;
	justify-content: flex-end;
	margin: 0 0 0 2rem;
}

.gnavi {
	max-width: 103rem;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.gnavi-list01 {
	display: flex;
	justify-content: flex-end;
	gap: 4rem;
	font-size: 1.8rem;
}

.gnavi-link01 {
	display: block;
	letter-spacing: 0.03em;
	line-height: 1.44em;
	color: var(--secondary);
}

.gnavi-link01:hover {
	opacity: 0.65;
}

.gnavi-list02 {
	display: flex;
	justify-content: flex-end;
	gap: 1.8rem;
	font-size: 2rem;
	letter-spacing: 0.03em;
	line-height: 1.45em;
	margin: 1.5rem 0 0;
}

.gnavi-link02 {
	display: block;
	padding: 0 0 0 2rem;
	border-left: solid 1px var(--secondary);
	color: var(--secondary);
}

.gnavi-link02:first-child {
	padding-left: 0;
	border-left: 0;
}

.gnavi-link02:hover {
	opacity: 0.65;
}

.header-contact-block {
	max-width: 47.9rem;
	width: 100%;
	padding: 2rem 0 2rem 3rem;
	margin: 0 0 0 3rem;
	border-left: solid 1px var(--secondary);
}

.header-contact-title {
    letter-spacing: 0.03em;
    line-height: 1.44em;
    text-align: center;
}

.header-contact-list {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 2.5rem;
	margin: 1rem 0 0;
}

.header-tel-box {
	max-width: 22.1rem;
	width: 100%;
	display: flex;
	align-items: center;
	font-size: 3rem;
	font-family: var(--font-family04);
	line-height: 1.33em;
}

.header-tel-box:before {
	content: "";
	display: block;
	max-width: 2rem;
	width: 100%;
	height: 2rem;
	background: url(../../../../uploads/tel_icon_secondary.svg) no-repeat center / contain;
	margin: 0 0.5rem 0 0;
}

.header-btn {
	max-width: 19.7rem;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1rem 1rem 1.2rem;
	border: solid 1px var(--secondary);
	border-radius: 2.5rem;
	background: var(--secondary);
	color: var(--primary);
	letter-spacing: 0.03em;
	line-height: 1.44em;
}

.header-btn:before {
	content: "";
	display: block;
	max-width: 1.5rem;
	width: 100%;
	height: 1.2rem;
	background: url(../../../../uploads/mail_icon_primary.svg) no-repeat center / contain;
	margin: 0 1rem 0 0;
}

.header-btn:hover {
	background: var(--primary);
	color: var(--secondary);
}

.header-btn:hover:before {
	background: url(../../../../uploads/mail_icon_secondary.svg) no-repeat center / contain;
}

/* ==========================================
スクロール時の追従ヘッダー
========================================== */

header.is-active {
	background: var(--primary);
}

.is-active .header-inner {
	padding: 1.5rem;
}

.is-active .gnavi-list02 {
	margin: 1.25rem 0 0;
}

.header-contact-block {
	padding: 1rem 0 1rem 3rem;
}

/* ==========================================
ハンバーガーメニュー
========================================== */

.hamburger-btn {
	max-width: 3rem;
	width: 100%;
	height: 3rem;
	display: none;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: .3s;
	margin: 0 0 0 2rem;
}

.hamburger-btn:hover {
	opacity: 0.65;
}

.hamburger-btn-inner {
	width: 100%;
	height: 1rem;
	position: relative;
}

.hamburger-btn-bar {
	width: 100%;
	height: 1px;
	background: var(--secondary);
	position: absolute;
	right: 0;
	left: 0;
	transition: .5s;
	margin: auto;
}

.hamburger-btn-bar-top {
	top: 0;
}

.hamburger-btn-bar-bottom {
	top: 100%;
}

.js-open .hamburger-btn-bar-top {
	top: 50%;
	transform: rotate(30deg);
}

.js-open .hamburger-btn-bar-bottom {
	top: 50%;
	transform: rotate(-30deg);
}

.nav-area {
	max-width: 192rem;
	width: 100%;
	height: 100%;
	background: rgb(58 67 61 / 40%);
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transition: .5s;
}

.nav-content {
	max-width: 44rem;
	width: 100%;
	height: 100%;
	overflow: auto;
	background: var(--primary);
	padding: 14.5rem 2rem 10rem;
	margin: auto;
	position: absolute;
	left: auto;
	right: -100%;
	transition: 1s;
}

.js-open.nav-area {
	opacity: 1;
	visibility: visible;
}

.js-open .nav-content {
	right: 0;
	transition: .5s;
}

.nav-list01 {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	padding: 0 0 3rem;
	border-bottom: solid 1px var(--primary-light);
	font-size: 1.65rem;
}

.nav-link01 {
	color: var(--secondary);
}

.nav-link01:hover {
	opacity: 0.65;
}

.nav-list02 {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 1rem;
	padding: 2.5rem 0;
	border-bottom: solid 1px var(--primary-light);
}

.nav-link02 {
	color: var(--secondary);
}

.nav-link02:hover {
	opacity: 0.65;
}

.nav-contact-area {
	margin: 3rem 0 0;
}

.nav-tel-box {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2.5rem;
	font-family: var(--font-family04);
	line-height: 1.2em;
}

.nav-tel-box:before {
	content: "";
	display: block;
	max-width: 1.57rem;
	width: 100%;
	height: 1.57rem;
	background: url(../../../../uploads/tel_icon_secondary.svg) no-repeat center / contain;
	margin: 0 0.39rem 0 0;
}

.nav-contact-btn {
	max-width: 33.5rem;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1rem 1rem 1.2rem;
	border: solid 1px var(--secondary);
	border-radius: 2.5rem;
	background: var(--secondary);
	color: var(--primary);
	letter-spacing: 0.03em;
	line-height: 1.44em;
	margin: 1.5rem auto;
}

.nav-contact-btn:before {
	content: "";
	display: block;
	max-width: 1.34rem;
	width: 100%;
	height: 1.75rem;
	background: url(../../../../uploads/mail_icon_primary.svg) no-repeat center / contain;
	margin: 0 1rem 0 0;
}

.nav-contact-btn:hover {
	background: var(--primary);
	color: var(--secondary);
}

.nav-contact-btn:hover:before {
	background: url(../../../../uploads/mail_icon_secondary.svg) no-repeat center / contain;
}

/* ==========================================
スマホ固定ヘッダー
========================================== */

.sp-header {
	width: 100%;
	height: 8rem;
	display: none;
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
}

.sp-header-block {
	width: 100%;
	height: 100%;
	flex: 1;
	border-right: solid 1px;
}

.sp-header-block-color {
	background: var(--secondary);
	border-color: var(--gray);
	color: var(--primary);
}

.sp-header-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.sp-header-link > a {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.sp-header-link > a:before {
	content: "";
	display: inline-block;
	max-width: 3rem;
	width: 100%;
	height: 3rem;
	font-size: 2.5rem;
	font-weight: 900;
	text-align: center;
}

.sp-header-link:before {
	content: "";
	display: block;
	max-width: 2rem;
	width: 100%;
	height: 2.5rem;
}

.sp-header-link-pagetop:before {
	background: url(../../../../uploads/pagetop_icon_primary.svg) no-repeat center / contain;
}

.sp-header-link-contact:before {
	background: url(../../../../uploads/mail_icon_primary.svg) no-repeat center / contain;
}

.sp-header-link-tel:before {
	background: url(../../../../uploads/tel_icon_primary.svg) no-repeat center / contain;
}

.sp-header-link-map:before {
	background: url(../../../../uploads/map_icon_primary.svg) no-repeat center / contain;
}

.sp-header-link-text {
	font-size: 1.2rem;
	letter-spacing: 0.03em;
	margin: .7rem 0 0;
}

/* ---------- ハンバーガーボタン ---------- */

.sp-nav-btn {
	width: 8rem;
	height: 8rem;
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	position: fixed;
	top: auto;
	bottom: 0;
	right: 0;
	z-index: 9999;
}

.sp-nav-btn-color {
	background: var(--secondary);
	color: var(--white);
}

.sp-nav-btn-bar-box {
	max-width: 4rem;
	width: 100%;
	height: 3rem;
	display: flex;
	position: relative;
}

.sp-nav-btn-bar {
	display: block;
	width: 100%;
	height: 3px;
	background: var(--white);
	position: absolute;
	right: 0;
	left: 0;
	margin: auto;
	transition: .3s;
}

.sp-nav-btn-bar-top {
	top: 10%;
}

.sp-nav-btn-bar-center {
	top: 50%;
	transform: translateY(-50%);
}

.sp-nav-btn-bar-bottom {
	top: 90%;
	transform: translateY(-100%);
}

.sp-nav-btn-text {
	font-size: 1.4rem;
	margin: .7rem 0 0;
}

.js-open .sp-nav-btn-bar-top {
	top: 50%;
	transform: rotate(35deg) translateY(-50%);
}

.js-open .sp-nav-btn-bar-center {
	opacity: 0;
}

.js-open .sp-nav-btn-bar-bottom {
	top: 50%;
	transform: rotate(-35deg) translateY(-50%);
}

/* ==========================================
下層カバー
========================================== */

.in-cover {
	max-width: 192rem;
	width: 100%;
	height: 48rem;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.in-cover:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: rgb(49 57 51 / 40%);
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	margin: auto;
	z-index: 9;
}

.in-cover-bg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	margin: auto;
}

.in-cover-bg > img {
	object-fit: cover;
	width: 100%;
	height: 100% !important;
}

.in-cover-inner {
	max-width: 155rem;
	width: 100%;
	padding: 0 1.5rem;
	margin: auto;
	position: relative;
	z-index: 99;
}

.in-cover-title {
	font-size: 4.5rem;
	font-family: var(--font-family02);
	line-height: 1.44em;
	text-align: center;
}

/* ==========================================
パンくず
========================================== */

.breadcrumbs-wrapper {
	font-size: 1.6rem;
	color: var(--gray-dark);
	margin: 2rem 0 0;
}

.breadcrumbs-list {
	max-width: 155rem;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	padding: 0 1.5rem;
	margin: auto;
}

.breadcrumbs-link {
	text-decoration: underline;
}

.breadcrumbs-link:hover {
	text-decoration: none;
}

.breadcrumbs-arrow {
	margin: 0 1rem 0 0;
}

/* ==========================================
ブロック
========================================== */

.wrapper01 {
	padding: 16rem 0;
}

.wrapper02 {
	padding: 16rem 0 0;
}

.inner {
	max-width: 155rem;
	width: 100%;
	padding: 0 1.5rem;
	margin: auto;
}

/* ==========================================
施工事例
========================================== */

.common-works-wrapper {
	padding: 16rem 0;
}

.common-works-inner {
	max-width: 160rem;
	width: 100%;
	padding: 0 1.5rem;
	margin: auto;
}

.common-works-flex-area {
	max-width: 152rem;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin: 0 0 0 auto;
}

.common-works-text-block {
	max-width: 50.5rem;
	width: 33.22%;
}

.common-works-btn {
	margin: 10rem 0 0;
}

.common-works-btn-sp {
	display: none;
}

.common-works-img-block {
	max-width: 94rem;
	width: 61.84%;
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 2rem;
	margin: 5rem 0 0;
}

/* ==========================================
お問い合わせ
========================================== */

.common-contact-wrapper {
	padding: 0 1.5rem;
}

.common-contact-inner {
	padding: 10rem 1.5rem;
	border-radius: 0.3rem;
}

.common-contact-text-box {
	text-align: center;
	margin: 4rem 0 0;
}

.common-contact-grid-area {
	max-width: 132rem;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 3rem;
	margin: 6rem auto 0;
}

.common-contact-card {
	padding: 3rem 1.5rem 2rem;
	border-radius: 0.3rem;
	background: var(--secondary-dark);
}

.common-contact-card-title {
	font-size: 2rem;
	letter-spacing: 0.03em;
	line-height: 1.45em;
	text-align: center;
}

.common-contact-card-btn {
	margin: 1.5rem auto 0;
}

.common-contact-card-text {
	text-align: center;
	margin: 1rem 0 0;
}

.common-contact-tel-box {
	font-size: 3rem;
	font-family: var(--font-family04);
	line-height: 1.2em;
	padding: 2.1rem 1.5rem;
}

.common-contact-tel-box:before {
	content: "";
	display: block;
	max-width: 1.56rem;
	width: 100%;
	height: 1.56rem;
	background: url(../../../../uploads/tel_icon_secondary.svg) no-repeat center / contain;
	margin: 0 1rem 0 0;
}

.common-contact-tel-box:hover {
	background: var(--primary);
	color: var(--secondary);
}

.common-contact-btn:before {
	content: "";
	display: block;
	max-width: 2.1rem;
	width: 100%;
	height: 1.7rem;
	background: url(../../../../uploads/mail_icon_secondary.svg) no-repeat center / contain;
	margin: 0 1rem 0 0;
}

.common-contact-btn:hover:before {
	background: url(../../../../uploads/mail_icon_primary.svg) no-repeat center / contain;
}

/* ==========================================
フッター
========================================== */

footer {
	padding: 16rem 0 10rem;
}

.footer-contact-inner {
	max-width: 137rem;
	width: 100%;
	padding: 0 1.5rem;
	margin: auto;
}

.footer-contact-grid-area {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 3rem;
}

.footer-contact-card {
	padding: 3rem 1.5rem 2rem;
	border-radius: 0.3rem;
	background: var(--secondary);
	color: var(--primary);
}

.footer-contact-card-title {
	font-size: 2rem;
	letter-spacing: 0.03em;
	line-height: 1.45em;
	text-align: center;
}

.footer-contact-card-btn {
	margin: 1.5rem auto 0;
}

.footer-contact-card-text {
	text-align: center;
	margin: 1rem 0 0;
}

.footer-contact-tel-box {
	font-size: 3rem;
	font-family: var(--font-family04);
	line-height: 1.2em;
	padding: 2.1rem 1.5rem 2.1rem;
}

.footer-contact-tel-box:before {
	content: "";
	display: block;
	max-width: 1.56rem;
	width: 100%;
	height: 1.56rem;
	background: url(../../../../uploads/tel_icon_primary.svg) no-repeat center / contain;
	margin: 0 1rem 0 0;
}

.footer-contact-tel-box:hover {
	border-color: var(--primary);
	background: var(--secondary);
	color: var(--primary);
}

.footer-contact-btn:before {
	content: "";
	display: block;
	max-width: 2.1rem;
	width: 100%;
	height: 1.7rem;
	background: url(../../../../uploads/mail_icon_primary.svg) no-repeat center / contain;
	margin: 0 1rem 0 0;
}

.footer-contact-btn:hover:before {
	background: url(../../../../uploads/mail_icon_secondary.svg) no-repeat center / contain;
}

.footer-inner {
	max-width: 155rem;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	padding: 0 1.5rem;
	margin: 8.85rem auto 0;
}

.footer-left-block {
	max-width: 38rem;
	width: 100%;
}

.footer-logo {
	max-width: 28.4rem;
	width: 100%;
}

.footer-info-box {
	margin: 6rem 0 0;
}

.footer-info-item {
	display: flex;
}

.footer-info-title {
	max-width: 7.5rem;
	width: 100%;
}

.footer-info-text {
	flex: 1;
	margin: 0 0 0 1.7rem;
}

.footer-right-block {
	flex: 1;
	margin: 0 0 0 2rem;
}

.footer-navi-list01 {
	display: flex;
	justify-content: flex-end;
	gap: 3rem;
	font-size: 2rem;
	letter-spacing: 0.03em;
	line-height: 1.45em;
}

.footer-navi-link01 {
	display: block;
	padding: 0 0 0 3rem;
	border-left: solid 1px var(--secondary);
	color: var(--secondary);
}

.footer-navi-link01:first-child {
	padding-left: 0;
	border-left: 0;
}

.footer-navi-link01:hover {
	opacity: 0.65;
}

.footer-navi-list02 {
	display: flex;
	justify-content: flex-end;
	gap: 4rem;
	margin: 1rem 0 0;
}

.footer-navi-link02 {
	display: block;
	letter-spacing: 0.03em;
	line-height: 1.44em;
	color: var(--secondary);
}

.footer-navi-link02:hover {
	opacity: 0.65;
}

.copyright {
	font-size: 1.5rem;
	font-weight: 400;
	letter-spacing: 0.03em;
	line-height: 1.4em;
	text-align: right;
	margin: 15.15rem 0 0;
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 1920px) {

	html {
		/* 10px */
		font-size: 0.52083vw;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 1550px) {

	html {
		/* 10px */
		font-size: 0.64516vw;
	}

	body {
		font-size: 1.6rem;
	}

	/* ==========================================
	タイトル
	========================================== */
	
	.en-title01 {
		font-size: 6.6rem;
	}

	.en-title02 {
		font-size: 4.8rem;
	}
	
	.title01 {
		font-size: 3.6rem;
	}
	
	.title02 {
		font-size: 2.8rem;
	}
	
	.title02 strong {
		font-size: 1.33em;
	}

	.title03 {
		font-size: 2.2rem;
	}

	/* ==========================================
	ヘッダー
	========================================== */

	.gnavi-list01 {
		font-size: 1.6rem;
		gap: 2rem;
	}
	
	.gnavi-list02 {
		font-size: 1.6rem;
		gap: 1rem;
	}
	
	.gnavi-link02 {
		padding: 0 0 0 1rem;
	}
	
	.header-contact-block {
		max-width: 45rem;
		gap: 1.5rem;
		padding-left: 1.5rem;
		margin: 0 0 0 1.5rem;
	}

	.header-tel-box {
		font-size: 2.6rem;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 1024px) {

	html {
		/* 10px */
		font-size: 0.97656vw;
	}

	body {
		font-size: 1.4rem;
	}

	/* ==========================================
	表示切替
	========================================== */

	.d-lg-none {
	    display: none !important;
	}

	.d-lg-flex {
	    display: flex !important;
	}
	
	/* ==========================================
	タイトル
	========================================== */
	
	.en-title01 {
		font-size: 5.2rem;
	}

	.en-title02 {
		font-size: 3.6rem;
	}
	
	.title01 {
		font-size: 2.6rem;
	}
	
	.title02 {
		font-size: 2rem;
	}
	
	.title02 strong {
		font-size: 1.33em;
	}

	.title03 {
		font-size: 1.8rem;
	}

	.title-decoration01 {
		padding-bottom: 1.5rem;
	}
	
	/* ==========================================
	ボタン
	========================================== */

	.btn02 {
		font-size: 1.8rem;
	}

	.btn03 {
		font-size: 1.8rem;
	}

	/* ==========================================
	ヘッダー
	========================================== */

	.header-logo {
		max-width: 18rem;
		width: 40%;
		margin: 0;
	}
	
	.header-area {
		display: none;
	}
	
	.header-inner {
		align-items: center;
		padding: 1.5rem;
	}

	/* ==========================================
	ハンバーガーメニュー
	========================================== */

	.hamburger-btn {
		display: flex;
	}

	/* ==========================================
	スクロール時の追従ヘッダー
	========================================== */
	
	.is-active .header-inner {
		padding: 1rem 1.5rem;
	}

	/* ==========================================
	フッター
	========================================== */

	footer {
		padding: 8rem 0 5rem;
	}
	
	.footer-contact-grid-area {
		gap: 1.5rem;
	}
	
	.footer-contact-card {
		padding: 1.5rem 1.5rem 1rem;
	}
	
	.footer-contact-card-title {
		font-size: 1.8rem;
	}
	
	.footer-contact-tel-box {
		font-size: 2.6rem;
	}
	
	.footer-contact-card-text {
		margin: 0.5rem 0 0;
	}

	.footer-left-block {
		max-width: 26.5rem;
	}
	
	.footer-logo {
		max-width: 20rem;
	}
	
	.footer-info-box {
		margin: 4rem 0 0;
	}
	
	.footer-navi-list01 {
		gap: 1rem;
		font-size: 1.4rem;
	}
	
	.footer-navi-link01 {
		padding: 0 0 0 1rem;
	}
	
	.footer-navi-list02 {
		gap: 2rem;
	}
	
	.copyright {
		font-size: 1.3rem;
		margin: 8rem 0 0;
	}

	/* ==========================================
	下層カバー
	========================================== */

	.in-cover {
		height: 36rem;
	}

	.in-cover-title {
		font-size: 3.8rem;
	}
	
	/* ==========================================
	パンくず
	========================================== */
	
	.breadcrumbs-wrapper {
		font-size: 1.4rem;
		margin: 1.5rem 0 0;
	}

	/* ==========================================
	ブロック
	========================================== */
	
	.wrapper01 {
		padding: 8rem 0;
	}
	
	.wrapper02 {
		padding: 8rem 0 0;
	}
	
	/* ==========================================
	施工事例
	========================================== */

	.common-works-wrapper {
		padding: 8rem 0;
	}
	
	.common-works-img-block {
		gap: 1.5rem;
		margin: 3rem 0 0;
	}
	
	.common-works-btn {
		margin: 5rem 0 0;
	}

	.common-works-btn-sp {
		display: none;
	}

	/* ==========================================
	お問い合わせ
	========================================== */
	
	.common-contact-inner {
		padding: 5rem 1.5rem;
	}
	
	.common-contact-text-box {
		margin: 3rem 0 0;
	}
	
	.common-contact-grid-area {
		gap: 1.5rem;
		margin: 4rem auto 0;
	}

	.common-contact-card {
		padding: 1.5rem 1.5rem 1rem;
	}
	
	.common-contact-card-title {
		font-size: 1.8rem;
	}
	
	.common-contact-tel-box {
		font-size: 2.6rem;
	}
	
	.common-contact-card-text {
		margin: 0.5rem 0 0;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 768px) {

	html {
		/* 10px */
		font-size: 1.30208vw;
	}

	/* ==========================================
	改行
	========================================== */
	
	.br-768-block br {
		display: block;
	}

	.br-768-none br {
		display: none;
	}

	/* ==========================================
	ローディングアニメーション
	========================================== */

	.loading img {
		width: 200px;
	}

	/* ==========================================
	タイトル
	========================================== */
	
	.en-title01 {
		font-size: 3.8rem;
	}

	.en-title02 {
		font-size: 2.8rem;
	}
	
	.title01 {
		font-size: 2.4rem;
	}
	
	.title02 {
		font-size: 1.8rem;
	}
	
	.title02 strong {
		font-size: 1.33em;
	}

	.title03 {
		font-size: 1.6rem;
	}
	
	/* ==========================================
	テキスト
	========================================== */

	.lead-text-box {
		text-align: left;
	}

	/* ==========================================
	ボタン
	========================================== */

	.btn02 {
		font-size: 1.6rem;
	}

	.btn03 {
		font-size: 1.6rem;
	}
	
	/* ==========================================
	ハンバーガーメニュー
	========================================== */

	.nav-content {
		max-width: 100%;
	}

	/* ==========================================
	スマホ固定ヘッダー
	========================================== */

	.sp-header {
		display: flex;
	}

	/* ==========================================
	フッター
	========================================== */

	footer {
		padding: 6rem 0 3rem;
	}

	.footer-contact-grid-area {
		grid-template-columns: repeat(1,1fr);
	}

	.footer-contact-card-title {
		font-size: 1.6rem;
	}
	
	.footer-contact-tel-box {
		font-size: 2.2rem;
	}

	.footer-inner {
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
	
	.footer-left-block {
		width: 100%;
	}
	
	.footer-logo {
		max-width: 15rem;
	}
	
	.footer-right-block {
		width: 100%;
		margin: 6rem 0 0;
	}

	.footer-navi-list01 {
		justify-content: flex-start;
		gap: 1.5rem;
		padding: 0 0 3rem;
		border-bottom: solid 1px var(--primary-light);
	}
	
	.copyright {
		margin: 6rem 0 0;
	}

	/* ==========================================
	下層カバー
	========================================== */

	.in-cover {
		height: 25rem;
	}
	
	.in-cover-title {
		font-size: 3.2rem;
	}

	/* ==========================================
	施工事例
	========================================== */

	.common-works-flex-area {
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
	}
	
	.common-works-text-block {
		max-width: 100%;
		width: 100%;
	}
	
	.common-works-btn-pc {
		display: none;
	}
	
	.common-works-btn-sp {
		display: flex;
	}
	
	.common-works-img-block {
		width: 100%;
	}
	
	.common-works-btn {
		margin: 3rem 0 0;
	}
	
	/* ==========================================
	お問い合わせ
	========================================== */

	.common-contact-text-box {
		text-align: left;
	}
	
	.common-contact-grid-area {
		grid-template-columns: repeat(1,1fr);
	}
	
	.common-contact-card-title {
		font-size: 1.6rem;
	}
	
	.common-contact-tel-box {
		font-size: 2.2rem;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 576px) {

	html {
		/* 12px */
		font-size: 2.08333vw;
	}

	/* ==========================================
	タイトル
	========================================== */

	.title01 {
		font-size: 2.2rem;
	}

	/* ==========================================
	ボタン
	========================================== */

	.btn02 {
		padding: 1.1rem 1rem 1.3rem;
	}

	.btn03 {
		padding: 1.1rem 1rem 1.3rem;
	}
	
	/* ==========================================
	スマホ固定ヘッダー
	========================================== */
	.sp-header{
		height: 6rem;
	}

	.sp-header-link > a:before{
		font-size: 2rem;
	}

	.sp-header-link-text{
		font-size: 1.4rem;
		margin: 0;
	}

	/* ==========================================
	フッター
	========================================== */

	.footer-contact-tel-box {
		font-size: 2rem;
		padding: 1.16rem 1.5rem;
	}

	.footer-navi-list01 {
		flex-direction: column;
	}
	
	.footer-navi-link01 {
		padding: 0;
		border: 0;
	}

	.footer-navi-list02 {
		display: grid;
		grid-template-columns: repeat(2,1fr);
		gap: 1rem;
		margin: 1.5rem 0 0;
	}
	
	.copyright {
		text-align: left;
	}

	/* ==========================================
	下層カバー
	========================================== */

	.in-cover {
		height: 20rem;
	}
	
	.in-cover-title {
		font-size: 2rem;
	}
	
	/* ==========================================
	施工事例
	========================================== */

	.common-works-img-block {
		grid-template-columns: repeat(2,1fr);
	}

	.common-works-img:last-child {
	    display: none;
	}
	
	/* ==========================================
	お問い合わせ
	========================================== */

	.common-contact-tel-box {
		font-size: 2rem;
		padding: 1.16rem 1.5rem;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 414px) {

	html {
		/* 14px */
		font-size: 2.43055vw;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */