@charset "UTF-8";

/* ============================================================
	CODING RULES
	- BEM命名規則 + プレフィックス設計
	============================================================

	[ l- ] Layout - ページ全体の骨格・大枠のレイアウト
	[ c- ] Component - 複数ページで再利用するUI部品
	[ p- ] Page - 特定ページにしか登場しない固有スタイル
	[ u- ] Utility - 単一目的の補助クラス。複合スタイルは定義しない
	[ js- ] JavaScript用フック - CSSファイルには一切記述しない

   ============================================================ */

/* ============================================================
	FOUNDATION
	- ベーススタイル・CSS変数（カスタムプロパティ）
	============================================================ */

/* サイト全体の基本設定 */
:root {
	--color_black: #333;
	--color_white: #fff;
	--color_gray01: #666;
	--color_gray02: #999;
	--color_gray03: #ccc;
	--color_gray04: #ededed;
	--color_gray05: #f5f5f5;
	--color01: #374a83;
	--color02: #68afaf;
	--color03: #f5f6f9;
	--color04: #e1e4ec;
	--color05: #d9ebeb;
	--color06: #5f6e9c;
	--color07: #e6e6e6;
	--color08: #f7fbfb;
	--color09: #7380a8;
	--color10: #f2fafd;
	--color11: #f4e156;
	--color_err: #d12926;
	--ff_jp: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
	--ff_jp_serif: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
	--ff_roboto: "Roboto", sans-serif;
	--fw_jp_normal: 400;
	--fw_jp_bold: 700;
	--fw_jp_serif_normal: 600;
	--fw_jp_serif_bold: 900;
	--fw_roboto_medium: 500;
	--fw_roboto_bold: 700;
	--content_w_sm: 432px;
	--content_w_md: 768px;
	--content_w_lg: 1280px;
}

* { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	font-family: var(--ff_jp);
	width: 100%;
	font-size: clamp(14px, calc(16 / 768 * 100vw), 16px);
	line-height: 2.0;
	letter-spacing: 0.03em;
	margin: 0 auto;
	font-weight: var(--fw_jp_normal);
	color: var(--color_black);
	background-color: var(--color_white);
	overflow-x: hidden;
}

img { width: 100%; display: block; }

ol, ul, li { list-style-type: none; }

a { color: var(--color01); display: inline-block; text-underline-offset: 0.3em; }
a:hover { text-decoration: none; }

button { font-family: inherit; border: none; font-weight: var(--fw_jp_normal); }


/* ============================================================
	UTILITY
	============================================================ */

/* レスポンシブ表示切り替え */
.u-sp-only { display: none; }
.u-pc-only { display: block; }

/* スマートフォン用 */
@media screen and (max-width: 768px) {
	.u-sp-only { display: block; }
	.u-pc-only { display: none; }
}

/* 明朝フォント */
.u-serif {
	font-family: var(--ff_jp_serif);
	font-weight: var(--fw_jp_serif_normal);
}

/* フォントサイズ */
.u-fs70 { font-size: 70%; }
.u-fs80 { font-size: 80%; }
.u-fs120 { font-size: 120%; }
.u-fs130 { font-size: 130%; }
.u-fs150 { font-size: 150%; }
.u-fs200 { font-size: 200%; }

/* テキスト */
.u-txt-justify { text-align: justify; }

/* 画像 */
.u-img-cover {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.u-img-contain {
	width: 100%;
	height: 100%;
	object-fit: contain;
}


/* ============================================================
	LAYOUT / COMPONENT
	============================================================ */

/* 共通フレーム基本設定 */
main {
	padding-top: 176px;
}

.l-wrapper {
	margin: 160px auto;
}

.l-container {
	width: 90%;
	max-width: var(--content_w_lg);
	margin: 0 auto;
}


/* .l-header（ヘッダー） */
/* --------------------------------------- */
.l-header {
	position: fixed;
	top: 0;
	background-color: var(--color_white);
	width: 100%;
	z-index: 999;
	height: 176px;
	transition: .6s;
	-webkit-transition: .6s;
	-moz-transition: .6s;
	-ms-transition: .6s;
	-o-transition: .6s;
}

.l-header__brand {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 96px;
	background-color: var(--color01);
	padding: 0 min(24px, 5%);
}

.l-header__logo {
	width: 100%;
	max-width: 216px;
}

.l-header__nav-unit {
	padding: 0 min(24px, 5%);
}

.l-header__burger-unit {
	display: none;
}


/* .c-nav（グローバルナビゲーション） */
/* --------------------------------------- */
.c-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: var(--content_w_lg);
	margin: 0 auto;
}

.c-nav > ul {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.c-nav > ul > li {
	padding: 0;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	position: relative;
	flex-grow: 1;
}
.c-nav > ul > li:first-child:before,
.c-nav > ul > li::after {
	content: "";
	position: absolute;
	top: 30%;
	width: 1px;
	height: 40%;
	background-color: var(--color_black);
}
.c-nav > ul > li:first-child:before {
	left: 0;
}
.c-nav > ul > li::after {
	right: 0;
}

.c-nav > ul > li > a {
	color: var(--color_black);
	letter-spacing: 0.1em;
	text-decoration: none;
	text-align: center;
	height: 80px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	padding: 0 1em;
}

.c-nav > ul > li > a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: var(--color01);
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	transform: scale(0, 1);
	-webkit-transform: scale(0, 1);
	-moz-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	-o-transform: scale(0, 1);
	transform-origin: left top;
}

.c-nav > ul > li:hover > a {
	color: var(--color01);
}

.c-nav > ul > li:hover > a::after {
	transform: scale(1, 1);
	-webkit-transform: scale(1, 1);
	-moz-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	-o-transform: scale(1, 1);
}

/* .c-nav__child（ドロップダウンメニュー）*/
.c-nav__child {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background-color: var(--color01);
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
}

.c-nav > ul > li:hover > .c-nav__child {
	visibility: visible;
	opacity: 1;
}

.c-nav__child > li > a {
	font-size: 14px;
	line-height: 1.5;
	color: var(--color_white);
	text-decoration: none;
	padding: 1em 1em;
	width: 100%;
	position: relative;
	text-align: left;
	background-color: var(--color01);
	display: block;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
}

.c-nav__child > li > a:hover {
	background-color: var(--color06);
}


/* .c-burger-btn（ハンバーガーボタン） */
/* --------------------------------------- */
.c-burger-btn {
	position: absolute;
	z-index: 9999;
	top: 8px;
	right: 8px;
	cursor: pointer;
	width: 48px;
	height: 48px;
}

.c-burger-btn span {
	display: inline-block;
	position: absolute;
	left: 12px;
	height: 2px;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	-ms-border-radius: 0;
	-o-border-radius: 0;
	background-color: var(--color_white);
	width: 50%;
	transition: .4s;
	-webkit-transition: .4s;
	-moz-transition: .4s;
	-ms-transition: .4s;
	-o-transition: .4s;
}

.c-burger-btn span:nth-of-type(1) { top: 15px; }
.c-burger-btn span:nth-of-type(2) { top: 23px; }
.c-burger-btn span:nth-of-type(3) { top: 31px; }

.c-burger-btn.is-active {
	position: fixed;
}

.c-burger-btn.is-active span:nth-of-type(1) {
	top: 18px;
	left: 15px;
	width: 40%;
	transform: translateY(6px) rotate(-45deg);
	-webkit-transform: translateY(6px) rotate(-45deg);
	-moz-transform: translateY(6px) rotate(-45deg);
	-ms-transform: translateY(6px) rotate(-45deg);
	-o-transform: translateY(6px) rotate(-45deg);
	background-color: var(--color_gray01);
}

.c-burger-btn.is-active span:nth-of-type(2) {
	opacity: 0;
}

.c-burger-btn.is-active span:nth-of-type(3) {
	top: 30px;
	left: 15px;
	width: 40%;
	transform: translateY(-6px) rotate(45deg);
	-webkit-transform: translateY(-6px) rotate(45deg);
	-moz-transform: translateY(-6px) rotate(45deg);
	-ms-transform: translateY(-6px) rotate(45deg);
	-o-transform: translateY(-6px) rotate(45deg);
	background-color: var(--color_gray01);
}


/* .c-burger-nav（ハンバーガーメニュー） */
/* --------------------------------------- */
.c-burger-nav {
	position: fixed;
	z-index: 999;
	top: 0;
	right: -200%;
	width: 80%;
	height: 100vh;
	background: var(--color_gray05);
	transition: .6s;
	-webkit-transition: .6s;
	-moz-transition: .6s;
	-ms-transition: .6s;
	-o-transition: .6s;
}

.c-burger-nav.is-open {
	right: 0;
}

.c-burger-nav.is-open .c-burger-nav__inner {
	position: fixed;
	z-index: 999;
	width: 80%;
	height: 100vh;
	margin: 0 auto;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	padding: 24px 0;
}

.c-burger-nav__logo {
	width: 50%;
	max-width: 160px;
	margin: 0 auto;
}

.c-burger-nav__list > ul {
	margin: 24px auto;
	width: 90%;
}

.c-burger-nav__list > ul > li {
	list-style: none;
	text-align: center;
	border-bottom: solid 1px var(--color_gray03);
}

.c-burger-nav__link {
	padding: 24px 32px 24px 8px;
	position: relative;
	z-index: 1;
	cursor: pointer;
	font-size: 16px;
	line-height: 1.5;
	font-weight: var(--fw_jp_bold);
	letter-spacing: 0.05em;
	text-align: left;
	transition: .35s;
	-webkit-transition: .35s;
	-moz-transition: .35s;
	-ms-transition: .35s;
	-o-transition: .35s;
}

.c-burger-nav__link > a {
	display: block;
	text-decoration: none;
	color: var(--color_black);
}

/* .c-burger-nav__mark（開閉アイコン）*/
.c-burger-nav__mark {
	position: absolute;
	top: 50%;
	right: 4px;
	width: 16px;
	height: 16px;
	margin-top: -8px;
}

.c-burger-nav__mark::before,
.c-burger-nav__mark::after {
	position: absolute;
	content: "";
	margin: auto;
	vertical-align: middle;
}

.c-burger-nav__mark::before {
	border-top: 2px solid var(--color_black);
	width: 14px;
	height: 0;
	top: 6px;
	bottom: 0;
	right: 0;
}

.c-burger-nav__mark::after {
	border-left: 2px solid var(--color_black);
	width: 0;
	height: 14px;
	top: 6px;
	bottom: 0;
	left: 8px;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
}

.c-burger-nav__link.is-open .c-burger-nav__mark::after {
	height: 0;
}

/* .c-burger-nav__child（子メニュー）*/
.c-burger-nav__child {
	display: none;
	padding: 0 8px 20px 8px;
}

.c-burger-nav__child a {
	text-align: left;
	display: block;
	font-size: 15px;
	letter-spacing: 0.05em;
	margin-bottom: 8px;
	position: relative;
	padding: 0 1em 0 1em;
	color: var(--color_black);
	text-decoration: none;
}

.c-burger-nav__child a::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%) rotate(45deg);
	width: 0.35em;
	height: 0.35em;
	border: 1px solid currentColor;
	border-left: none;
	border-bottom: none;
}

.c-burger-nav__child li:last-of-type a {
	margin-bottom: 0;
}

/* .c-burger-nav__mask（オーバーレイ）*/
.c-burger-nav__mask {
	visibility: hidden;
	transition: .6s;
	-webkit-transition: .6s;
	-moz-transition: .6s;
	-ms-transition: .6s;
	-o-transition: .6s;
}

.c-burger-nav__mask.is-open {
	visibility: visible;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0.8;
	z-index: 990;
	cursor: pointer;
}


/* .l-footer（フッター） */
/* --------------------------------------- */
.l-footer {
	background-color: var(--color07);
	padding: 80px 0 16px;
}

.l-footer__container {
	width: 90%;
	max-width: var(--content_w_lg);
	margin: 0 auto;
}

.l-footer__main {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 24px 5%;
}

.l-footer__information {
	width: 45%;
}

.l-footer__logo {
	width: 100%;
	max-width: 192px;
}

.l-footer__address {
	font-style: normal;
	margin-top: 24px;
}

.l-footer__address a {
	color: var(--color_black);
	text-decoration: none;
}

.l-footer__bottom {
	margin-top: 48px;
}

.l-footer__copyrights small {
	font-size: clamp(12px, calc(14 / 768 * 100vw), 14px);
	line-height: 1.5;
}


/* .c-footer-nav（フッターナビゲーション） */
/* --------------------------------------- */
.c-footer-nav {
	width: 50%;
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 1em 5%;
}

.c-footer-nav__list {
	display: flex;
	flex-direction: column;
	gap: 1em;
	min-width: 250px;
}

.c-footer-nav a {
	color: var(--color_black);
	letter-spacing: 0.1em;
	text-decoration: none;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
}

.c-footer-nav a:hover {
	color: var(--color01);
	text-decoration: underline;
}

.c-footer-nav__item--has-child {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.c-footer-nav__item--has-child > a {
	padding-right: 40px;
	position: relative;
}
.c-footer-nav__item--has-child > a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	width: 32px;
	height: 1px;
	background-color: currentColor;
}

.c-footer-nav__child a {
	font-size: clamp(12px, calc(14 / 768 * 100vw), 14px);
}


/* .c-footer-sub-nav（フッターサブナビゲーション） */
/* --------------------------------------- */
.c-footer-sub-nav {
	margin-top: 24px;
}

.c-footer-sub-nav ul {
	display: flex;
	justify-content: flex-start;
	gap: 2em;
}

.c-footer-sub-nav a {
	font-size: clamp(12px, calc(14 / 768 * 100vw), 14px);
	line-height: 1.5;
	color: var(--color_black);
	text-decoration: none;
	display: block;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
}

.c-footer-sub-nav a:hover {
	text-decoration: underline;
}



/* .l-cta（CTA） */
/* --------------------------------------- */
.l-cta {
	margin-top: 160px;
}

.l-cta__lead {
	font-size: clamp(16px, calc(24 / 768 * 100vw), 24px);
	line-height: 1.5;
	letter-spacing: 0.1em;
	margin-bottom: 0.5em;
	position: relative;
	z-index: 2;
}

.l-cta__content {
	margin: 0 calc(50% - 50vw);
	background-color: var(--color01);
	position: relative;
}
.l-cta__content::after {
	content: "Contact";
	position: absolute;
	bottom: 100%;
	right: 5%;
	z-index: 1;
	font-size: clamp(40px, calc(72 / 768 * 100vw), 72px);
	line-height: 1.0;
	font-family: var(--ff_jp_serif);
	font-weight: var(--fw_jp_serif_normal);
	color: var(--color04);
	letter-spacing: 0.05em;
}
.l-cta--consultation .l-cta__content::after {
	content: none;
}

.l-cta__inner {
	width: 90%;
	max-width: var(--content_w_lg);
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 0 5%;
}

.l-cta__item {
	width: 45%;
	padding: 48px 0;
}

.l-cta__ttl {
	display: flex;
	align-items: flex-end;
	gap: 0.8em;
	color: var(--color_white);
}

.l-cta__sub {
	font-size: clamp(20px, calc(36 / 768 * 100vw), 36px);
	line-height: 1.1;
	letter-spacing: 0.1em;
}

.l-cta__heading {
	line-height: 1.5;
	letter-spacing: 0.1em;
}

.l-cta__tel {
	margin-top: 24px;
	display: flex;
	gap: 0.5em 1em;
}

.l-cta__tel-number {
	color: var(--color_white);
	text-decoration: none;
	font-size: clamp(20px, calc(36 / 768 * 100vw), 36px);
	line-height: 1.2;
	font-weight: var(--fw_jp_bold);
	letter-spacing: 0.1em;
}
.l-cta__tel-number:hover {
	opacity: 0.8;
}

.l-cta__note {
	color: var(--color_white);
	font-size: clamp(14px, calc(15 / 768 * 100vw), 15px);
	line-height: 1.5;
}

.l-cta__mail {
	margin-top: 24px;
}

.l-cta__line {
	width: 1px;
	background-color: var(--color_white);
}

.l-cta__balloon {
	text-align: center;
	margin-bottom: 48px;
}

.l-cta__balloon-text {
	display: inline-block;
	font-size: clamp(20px, calc(36 / 768 * 100vw), 36px);
	line-height: 1.5;
	font-weight: var(--fw_jp_bold);
	letter-spacing: 0.1em;
	color: var(--color01);
	padding: 0 1em 0.5em 1em;
	border-bottom: 1px solid var(--color01);
	position: relative;
}

.l-cta__balloon-text::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 16px;
	height: 16px;
	background-color: var(--color_white);
	border-right: 1px solid var(--color01);
	border-bottom: 1px solid var(--color01);
	transform: translate(-50%, 50%) rotate(45deg);
	-webkit-transform: translate(-50%, 50%) rotate(45deg);
	-moz-transform: translate(-50%, 50%) rotate(45deg);
	-ms-transform: translate(-50%, 50%) rotate(45deg);
	-o-transform: translate(-50%, 50%) rotate(45deg);
}


/* .l-page-ttl（下層ページタイトル） */
/* --------------------------------------- */
.l-page-ttl {
	padding: 160px 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.l-page-ttl__content {
	text-shadow: 0 0 5px rgb(0 0 0 / 20%);
}

.l-page-ttl__sub {
	font-family: var(--ff_roboto);
	font-size: clamp(40px, calc(64 / 768 * 100vw), 64px);
	line-height: 1.2;
	font-weight: var(--fw_roboto_bold);
	letter-spacing: 0.05em;
	color: var(--color_white);
}

.l-page-ttl__heading {
	font-size: clamp(15px, calc(20 / 768 * 100vw), 20px);
	line-height: 1.5;
	font-weight: var(--fw_jp_bold);
	letter-spacing: 0.15em;
	color: var(--color_white);
}



/* .c-cont-ttl（コンテンツタイトル） */
/* --------------------------------------- */
.c-cont-ttl {
	margin: 0 auto 64px;
	padding-bottom: 24px;
	text-align: center;
	position: relative;
}
.c-cont-ttl::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	width: 80px;
	height: 2px;
	background-color: var(--color01);
}

.c-cont-ttl__sub {
	font-size: clamp(40px, calc(64 / 768 * 100vw), 64px);
	line-height: 1.5;
	font-weight: var(--fw_jp_serif_bold);
	letter-spacing: 0.05em;
	color: var(--color04);
}

.c-cont-ttl__heading {
	font-size: clamp(18px, calc(24 / 768 * 100vw), 24px);
	line-height: 1.5;
	font-weight: var(--fw_jp_bold);
	letter-spacing: 0.1em;
}



/* .c-btns（リンクボタン） */
/* --------------------------------------- */
.c-btns {
	margin-top: 48px;
}

.c-btn {
	font-size: clamp(14px, calc(15 / 768 * 100vw), 18px);
	line-height: 1.5;
	letter-spacing: 0.1em;
	text-decoration: none;
	display: inline-block;
	margin: 0;
	padding: 1em 2em;
	position: relative;
	transition: .3s;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-ms-transition: .3s;
	-o-transition: .3s;
	min-width: 240px;
	text-align: center;
}

.c-btn--primary {
	color: var(--color_white);
	background-color: var(--color01);
	border: 1px solid var(--color01);
}
.c-btn--primary:hover {
	color: var(--color01);
	background-color: var(--color_white);
}

.c-btn--secondary {
	color: var(--color01);
	background-color: var(--color_white);
	border: 1px solid var(--color01);
}
.c-btn--secondary:hover {
	color: var(--color_white);
	background-color: var(--color01);
	border: 1px solid var(--color_white);
}



/* .c-breadcrumb（パンクズリスト） */
/* --------------------------------------- */
.c-breadcrumb {
	color: var(--color_black);
	font-size: clamp(12px, calc(14 / 768 * 100vw), 14px);
	padding: 8px 24px;
}

.c-breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.c-breadcrumb__item {
	display: flex;
	align-items: center;
}

.c-breadcrumb__item:not(:last-of-type)::after {
	content: "";
	display: inline-block;
	width: 0.5em;
	height: 0.5em;
	border: 1px solid currentColor;
	border-left: none;
	border-bottom: none;
	transform: rotate(45deg);
	margin: 0 1.0em 0 0.8em;
}

.c-breadcrumb__link {
	color: var(--color_black);
	text-decoration: none;
}

.c-breadcrumb__link:hover {
	color: var(--color_gray02);
	text-decoration: underline;
}





/* ============================================================
	RESPONSIVE
	============================================================ */

/* タブレット・SP */
@media screen and (max-width: 840px) {

	/* ナビゲーション切り替え */
	.l-header__nav-unit  {display: none;}
	.l-header__burger-unit {display: block;}

	main {
		padding-top: 64px;
	}

	.l-header {
		height: 64px;
	}

	.l-header__brand {
		height: 64px;
	}

	.l-header__logo {
		width: calc(100% - 64px);
		max-width: 160px;
	}

}



/* スマートフォン用 */
@media screen and (max-width: 768px) {

	body {
		line-height: 1.8;
	}


	/* 共通フレーム基本設定 */
	.l-wrapper {margin: 80px auto;}


	/* .l-footer（フッター） */
	/* --------------------------------------- */
	.l-footer { padding: 40px 0 16px; }
	.l-footer__main { flex-direction: column; }
	.l-footer__information { width: 100%; }
	.l-footer__logo { margin: 0 auto; }
	.l-footer__address { text-align: center; }
	.l-footer__copyrights { text-align: center; }


	/* .c-footer-nav（フッターナビゲーション） */
	/* --------------------------------------- */
	.c-footer-nav { display: none; }


	/* .c-footer-sub-nav（フッターサブナビゲーション） */
	/* --------------------------------------- */
	.c-footer-sub-nav ul { justify-content: center; }


	/* .l-cta（CTA） */
	/* --------------------------------------- */
	.l-cta { margin-top: 80px; }
	.l-cta__inner { flex-direction: column; }
	.l-cta__item {
		width: 100%;
		max-width: 480px;
		margin:0 auto;
		padding: 24px 0;
	}
	.l-cta__tel { margin-top: 16px; flex-direction: column; }
	.l-cta__mail { margin-top: 16px; }
	.l-cta__line { width: 100%; height: 1px; }
	.l-cta__balloon { margin-bottom: 36px; }


	/* .l-page-ttl（下層ページタイトル） */
	/* --------------------------------------- */
	.l-page-ttl { padding: 80px 0; }


	/* .c-btns（リンクボタン） */
	/* --------------------------------------- */
	.c-btns { margin-top: 32px; }
	.c-btn { min-width: 200px; }


	/* .c-breadcrumb（パンクズリスト） */
	/* --------------------------------------- */
	.c-breadcrumb { padding: 8px 0; }
	.c-breadcrumb__list { width: 90%; margin: 0 auto; }

}
