@charset "utf-8";

/* ============================
  Base / Reset / Mobile First
============================ */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	font-size: clamp(14px, 3.5vw, 18px);
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
}

body {
	margin: 0;
	font-family: 'Noto Sans JP', system-ui, sans-serif;
	font-size: 14px;
	color: #333;
	line-height: 1.8;
	min-height: 100dvh;
	background: #fff;
}

a {
	color: inherit;
	text-decoration: none;
	transition: all 0.5s ease;
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
	height: auto;
	object-fit: cover;
	vertical-align: bottom;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

li {
	list-style: none;
}

button,
input,
textarea,
select {
	font: inherit;
	border: none;
	background: none;
	outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: 700;
	line-height: 1.3;
	overflow-wrap: break-word;
}

p {
	margin: 0;
	overflow-wrap: break-word;
}

/* ============================
PC/SP切替
============================ */
.pc {
	display: none;
}

.sp {
	display: block;
}
@media screen and (max-width: 768px) {
	.global-nav.pc {
		display: none !important;
	}
}
@media screen and (min-width: 768px) {
	.pc {
		display: block;
	}
	.sp {
		display: none !important;
	}
}

/* ============================
レイアウト
============================ */
#wrapper {
	width: 100%;
	margin: 0 auto;
}
.inner,
.inner_under,
.inner_page,
.maincol {
	width: 93%;
	margin: 0 auto;
}
.inner {
	max-width: 1200px;
	padding: 25px 0;
}
.inner_under {
	padding-bottom: 6rem;
}
.inner_page {
	max-width: 1000px;
	margin-bottom: 50px;
}
.maincol {
	max-width: 900px;
}
.contents {
	margin: 3rem 0 2.5rem;
}

.flex_box {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: flex-start;
}

@media screen and (min-width: 768px) {
	.inner {
		padding: 50px 0 60px;
	}
}

/* ============================
ヘッダー・ナビ
============================ */
header {
	position: relative;
	width: 100%;
}

nav {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
nav a {
	font-size: clamp(14px, 4vw, 18px);
	padding: 8px 12px;
	display: inline-block;
}

@media screen and (min-width: 768px) {
	.global-nav.pc {
		flex-direction: row;
		justify-content: flex-end;
	}
}

/* ============================
ボタン
============================ */
.btn,
.btn01 a {
	display: inline-flex;
	align-items: center;
	background: #000;
	color: #fff;
	padding: clamp(10px, 3vw, 18px) clamp(20px, 5vw, 40px);
	border-radius: 0.25rem;
	font-size: clamp(14px, 4vw, 18px);
	transition: 0.3s;
}

.btn01 {
	margin: 0 auto;
	display: block;
	width: fit-content;
}

@media screen and (min-width: 768px) {
	.btn,
	.btn01 a {
		font-size: clamp(14px, 1.2vw, 18px);
	}
}

/* ============================
コンテンツヘッダー
============================ */
.contents_header {
	padding: 3rem 0 1rem;
	text-align: center;
	display: flex;
	flex-direction: column-reverse;
}
.contents_header h1 {
	font-size: 1rem;
	line-height: 1.4;
	text-align: center;
}
.contents_header p.title {
	font-size: 1rem;
	font-weight: normal;
	line-height: 1.6;
}
.contents_header p {
	font-size: 2rem;
	line-height: 1.4;
}

@media screen and (min-width: 768px) {
	.contents_header {
		padding: 2rem 0;
	}
	.contents_header h1,
	.contents_header p.title {
		font-size: 1rem;
	}
	.contents_header p {
		font-size: 2rem;
	}
}

/* ============================
パンくず
============================ */
.breadcrumb {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 1rem 0;
	font-size: 0.75rem;
}
.breadcrumb span {
	margin: 0 0.5rem;
}
.breadcrumb span:first-child {
	margin: 0 0.5rem 0 0;
}

/* ============================
タイトル
============================ */
.cont_titile {
	font-size: 1rem;
	line-height: 1.4;
	text-align: center;
	padding: 2.5rem 0 1rem;
}
.cont_titile span {
	font-size: 2rem;
	line-height: 1;
	display: block;
	padding-bottom: 0.25rem;
}
.cont_titile a {
	display: flex;
	align-items: center;
	width: fit-content;
	margin: 0 auto;
}
.cont_titile a img {
	width: 2rem;
	height: auto;
}

@media screen and (min-width: 768px) {
	.cont_titile {
		padding: 2.5rem 0 1.5rem;
	}
}

/* ============================
マップ
============================ */
.ggmap {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	padding-bottom: 20%;
	padding-top: 40%;
	height: 0;
	overflow: hidden;
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media screen and (min-width: 768px) {
	.ggmap {
		padding-bottom: 25%;
		padding-top: 0;
	}
}

/* ============================
マテリアルアイコン
============================ */
.material-icons,
.material-symbols-outlined {
	font-family: 'Material Symbols Outlined', sans-serif;
	font-weight: normal;
	font-style: normal;
	font-size: 24px;
	display: inline-block;
	line-height: 1;
	vertical-align: middle;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

/* ============================
その他
============================ */
#sbi_mod_error {
	display: none !important;
}
