@charset "utf-8";

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

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

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

	/* site color */
	--primary: #175AA2;
	--secondary: #306FB4;
	--tertiary: #D1EDF5;
	--quaternary: #CEECFC;
	/* --quaternary-hover: #f5f;
	--fifth: #ff0;
	--fifth-hover: #ff5;
	--sixth: #0ff;
	--sixth-hover: #5ff; */
	--black: #333;
	--white: #fff;

	/* btn color */
	--btn-primary: var(--primary);
	--btn-primary-hover: var(--primary-hover);
	--btn-secondary: var(--secondary);
	--btn-secondary-hover: var(--secondary-hover);
	--btn-tertiary: var(--tertiary);
	--btn-tertiary-hover: var(--tertiary-hover);
	--btn-quaternary: var(--quaternary);
	--btn-quaternary-hover: var(--quaternary-hover);
	--btn-fifth: var(--fifth);
	--btn-fifth-hover: var(--fifth-hover);
	--btn-sixth: var(--sixth);
	--btn-sixth-hover: var(--sixth-hover);

	/* font family */
	--base-font-family: "Noto Sans", sans-serif;
	--fontA: "Noto Sans", sans-serif;
	--fontB: "Noto Sans JP", sans-serif;
}

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

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

#root {
	overflow-x: hidden;
}

body {
	margin: 0 auto;
	max-width: 192rem;
	width: 100%;
	line-height: 1.6;
	font-size: 1.6rem;
	font-weight: 500;
	font-family: var(--base-font-family);
	color: var(--base-font-color);
	overflow-x: hidden;
}

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

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

textarea {
	border: 1px solid var(--ui-border-color);
}

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

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

.area {
	width: 100%;
	padding: 0 1.5rem;
	margin: 0 auto;
}

.cursor-pointer {
	cursor: pointer;
}

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

.txt15 {
	font-size: 1.5rem;
	line-height: 1.33em;
	letter-spacing: .05em;
	font-weight: 600;
}

.txt16 {
	font-size: 1.6rem;
	line-height: 1.875em;
	letter-spacing: .05em;
	font-weight: 500;
}

.txt17 {
	font-size: 1.7rem;
	line-height: 2em;
	letter-spacing: .05em;
	font-weight: 500;
}

.txt18 {
	font-size: 1.8rem;
	line-height: 2.22em;
	letter-spacing: .05em;
	font-weight: 500;
}

.txt19 {
	font-size: 1.9rem;
	line-height: 2em;
	letter-spacing: .05em;
	font-weight: 500;
}

.txt20 {
	font-size: 2rem;
	line-height: 1.5em;
	letter-spacing: .05em;
	font-weight: 700;
}

.txt30 {
	font-size: 3rem;
	line-height: 1.5em;
	letter-spacing: .05em;
	font-weight: 700;
}

.txt40 {
	font-size: 4rem;
	line-height: 1.5em;
	letter-spacing: .05em;
	font-weight: 700;
}

.txt120 {
	font-size: 12rem;
	line-height: 1.5em;
	letter-spacing: .01em;
	font-family: var(--fontB);
	font-weight: 700;
}

.txt166 {
	font-size: 16.6rem;
	line-height: 1.5em;
	letter-spacing: .01em;
	font-family: var(--fontB);
	font-weight: 700;
}

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

.btn01 {
	position: relative;
	width: 29.5rem;
	height: 5.3rem;
	transition: all .3s;
	filter: drop-shadow(0px .3rem .4rem rgba(0, 0, 0, 0.2));
}


.btn01 a {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 0 1rem 0 0;
	transition: all .3s;
	font-size: 2.1rem;
	font-weight: 600;
	line-height: 1.5em;
	letter-spacing: .1em;
	color: var(--white);
	text-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
	clip-path: polygon(2.71% 0%, 100% 0%, 97.29% 100%, 0% 100%);
	background: linear-gradient(90deg, rgba(48, 111, 180, 1) 3%, rgba(129, 194, 213, 1) 60%, rgba(121, 191, 227, 1) 85%);
}

.btn01:hover {
	/* background: #175AA2;
	background: linear-gradient(90deg, rgba(23, 90, 162, 1) 3%, rgba(93, 172, 196, 1) 60%, rgba(85, 171, 214, 1) 85%); */
}

.btn01 a::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 2.5rem;
	z-index: 1;
	width: 3.65rem;
	height: .6rem;
	margin: auto 0;
	background: url(../../../../uploads/arrow_white01.svg) no-repeat center bottom /contain;
}


.btn01 a::after {
	content: "";
	position: absolute;
	z-index: 3;
	top: 0;
	left: 0;
	background: #000;
	opacity: 0;
	width: 100%;
	height: 100%;
	transition: all .3s;
	pointer-events: none;
}

.btn01:hover a::after {
	opacity: .1;
}

.btn02 a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 31rem;
	height: 6rem;
	padding: 0 0 0 1.5rem;
	border-radius: 100vmax;
	background: var(--secondary);
	box-shadow: 0 .3rem .6rem rgba(0, 0, 0, 0.2);
	transition: all .3s;
	font-size: 2rem;
	color: var(--white);
	text-shadow: 0 .3rem .4rem rgba(0, 0, 0, 0.2);
	font-weight: 700;
	letter-spacing: .15em;
	line-height: 1.5;
}

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

.btn02 a::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 3.5rem;
	width: 3.45rem;
	height: 2.65rem;
	margin: auto 0;
	background: url(../../../../uploads/book_icon_white.svg) no-repeat center /contain;
}

.btn02 a::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 2.65rem;
	width: 3.66rem;
	height: .54rem;
	margin: auto 0;
	background: url(../../../../uploads/arrow_white01.svg) no-repeat center /contain;
}

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

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

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

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

.sp-header-link {
	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-pagetop>a:before {
	content: "\f106";
	font-family: "Font Awesome 5 Free";
}

.sp-header-link-tel>a:before {
	content: "\f095";
	font-family: "Font Awesome 5 Free";
}

.sp-header-link-contact>a:before {
	content: "\f0e0";
	font-family: "Font Awesome 5 Free";
}

.sp-header-link-text {
	font-size: 1.4rem;
	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(--primary);
	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%);
}

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

.js-sp-nav {
	display: none;
	max-width: 1920px;
	width: 100%;
	margin: auto;
	padding: 0;
	position: fixed;
	top: 0;
	bottom: 0;
	right: -100%;
	transition: ease .5s;
	z-index: 999;
}

.js-sp-nav.js-open {
	right: 0;
}

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

.sp-nav-area {
	width: 100%;
	max-width: 40rem;
	margin: 0 auto;
	height: 100%;
	overflow: auto;
	padding: 10rem 1.5rem;
}

.sp-nav-list {
	padding: 10rem 0;
	width: 100%;
	height: 100%;
	overflow-y: scroll;
	-ms-overflow-style: none;
}

.sp-nav-list::-webkit-scrollbar {
	display: none;
}

.sp-nav-list-item {
	width: 100%;
	display: block;
	font-weight: bold;
	text-align: center;
	line-height: 1.5em;
	letter-spacing: 0.05em;
	position: relative;
	border-bottom: solid 1px;
}

.sp-nav-list-item a {
	display: block;
	padding: 1.5rem 0;
	font-size: 1.6rem;
	transition: .3s;
}

.sp-nav-list-item a:hover {
	opacity: .6;
}

.sp-nav-list-item-color {
	border-bottom-color: var(--sp-border-color);
}

/* カバー */

.inCvr {
	position: relative;
	height: 32.5rem;
	width: 100%;
	display: flex;
	align-items: center;
}

.inCvr::before {
	content: "";
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: #306FB4;
	opacity: .5;
}

.inCvrTitBx {
	position: relative;
	z-index: 5;
	padding: 0 0 1.5rem 0;
}

.inCvrTitBx::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	height: .2rem;
	width: 100%;
	max-width: 50rem;
	background: var(--quaternary);
}

.inCvrTxt {
	color: var(--white);
	text-align: center;
	font-weight: 700;
	line-height: 1.5;
	font-size: 4.5rem;
}

/* pankuzu */
.breadcrumbs-wrapper {
	margin: 1rem 0 0;
}

.breadcrumbs-list {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 142rem;
	margin: 0 auto;
	padding: 0 1.5rem;
}

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

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


/* 下層共通 */
.inReadWr {
	margin: 10rem 0 0;
}

.inReadTxt {
	text-align: center;
	line-height: 2.22;
}

.inTitBx {
	position: relative;
	margin: 16rem 0 0;
}

.inTit {
	color: var(--primary);
	text-align: center;
}

.inBgTit {
	position: absolute;
	z-index: -1;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 auto;
	text-align: center;
	color: var(--quaternary);
}


.inItemWr {
	padding: 0 0 15rem 0;
}

.inItemBx {
	width: 100%;
	max-width: 142rem;
	margin: 7rem auto 0;
	padding: 6rem 0;
	background: var(--tertiary);
	box-shadow: 0 .4rem 1rem rgba(0, 0, 0, 0.25);
}

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

.inItemTitBx {
	width: 100%;
	border-bottom: 1px solid var(--primary);
	padding: 0 0 1rem 0;
}

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

.inItemInfoFl {
	display: flex;
	justify-content: space-between;
	margin: 1.5rem 0 0
}

.inItemInfoTxt01 {
	font-weight: 700;
}

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

.inItemInfoTxt02 {
	text-align: end;
}

.inItemFl01 {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.inItemFl01L {
	width: 46%;
	max-width: 56rem;
}

.inItemFl01R {
	width: 50%;
	max-width: 61rem;
}

.inItemFl01TxtBx {
	margin: 2rem 0 0;
	padding: 2.5rem;
	background: var(--white);
	border: 1px solid var(--primary);
	border-radius: 1rem;
}

.inItemFl01TxtBx:first-of-type {
	margin: 0;
}

.inItemFl01TxtFl {
	display: flex;
}

.inItemFl01Txt {
	font-size: 1.9rem;
}

.inItemFlTxt {
	letter-spacing: 0;
	text-align: center;
}

.inItemFlTxt br {
	display: none;
}

.txtBlue {
	color: var(--primary);
	text-decoration: underline;
}

.inItemPointTitBx {
	display: flex;
	align-items: center;
	margin: 2rem 0 0;
}

.inItemPointTit {
	display: flex;
	align-items: center;
	padding: .5rem 3.5rem .5rem 2.5rem;
	color: var(--white);
	font-size: 2.5rem;
	background: var(--primary);
	clip-path: polygon(0% 0%, 100% 0, 87% 50%, 100% 100%, 0% 100%);
}

.inItemPointTitBar {
	flex: 1;
	height: 1px;
	background: #81C2D5;
	margin: 0 0 0 1.5rem;
}

.inItemFl02 {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	margin: 3rem 0 0;
}

.inItemFl02L {
	width: 48%;
	max-width: 56rem;
}

.inItemFl02R {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 48%;
	max-width: 56rem;
}

.inItemFl02TxtFl {
	display: flex;
	margin: 2rem 0 0;
}

.inItemFl02TxtFl:first-of-type {
	margin: 0;
}

.inItemFl02Tit01 {
	color: var(--primary);
	font-weight: 700;
}

.inItemFl02BtnAr {
	padding: 1rem 0 0;
	margin: auto 0 0;
}

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

.inItemFlDeco {
	color: var(--primary);
	font-size: 2rem;
}

.inItemFlDeco01 {
	margin: 0 1rem 0 0;

	transform: scaleX(-1);
}

.inItemFlDeco02 {
	margin: 0 0 0 1rem;
}

.inItemFl02BtnBx .btn02 a {
	margin: 0 auto;
}

.inItemFl02txt01.uLine {
	text-decoration: underline;
}

.inItemFl02txt01.mt {
	margin: 1.5rem 0 0;
}

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

.inItemFl02Table {
	margin: 1.5rem 0 0;
	background: var(--white);
	border-top: 1px solid var(--primary);
	border-left: 1px solid var(--primary);
}

.inItemFl02Table p {
	font-size: 1.9rem;
}

.inItemFl02Tr {
	display: flex;
}

.inItemFl02Th p {
	font-size: 1.9rem;
	line-height: 1.5;
}

.inItemFl02TrTit .inItemFl02Th p {
	color: var(--primary);
}

.inItemFl02Th,
.inItemFl02Td {
	width: 50%;
	padding: 1rem;
	text-align: center;
	border-right: 1px solid var(--primary);
	border-bottom: 1px solid var(--primary);
}

.inItemFl02Txt03 {
	margin: 1rem 0 0;
}

.inItemInfoBx {
	width: 100%;
	margin: 4rem 0 0;
	padding: 4rem 0 0 0;
	border-top: 1px solid #81C2D5;
}

.inItemInfoTit {
	width: 100%;
	max-width: 81rem;
	margin: 0 auto;
	padding: .5rem;
	text-align: center;
	color: var(--white);
	font-size: 2.5rem;
	text-shadow: 0 .3rem .6rem rgba(0, 0, 0, 0.16);
	background: #81C2D5;
}

.inItemInfoTxtBx {
	margin: 2rem 0 0;
	font-weight: 700;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.inItemInfoLink {
	display: flex;
	align-items: center;
	color: var(--primary);
}

.inItemInfoLink:hover {
	text-decoration: underline;
}

.inItemInfoLinkIcon {
	display: flex;
	align-items: center;
}

.inItemFl02RImg:nth-of-type(n+2) {
	width: 100%;
	margin: 1rem 0 0;
}

.inItemFl02BtnAr {
	padding: 5rem 0 0 !important;
}

.inItemGr {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 7rem 6rem;


	width: 100%;
	max-width: 142rem;
	margin: 7rem auto 0;
}

.inItemGrBx {
	padding: 6rem 0;
	background: var(--quaternary);
	box-shadow: 0 .4rem 1rem rgba(0, 0, 0, 0.25);
}

.inItemGrBxIn {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	max-width: 50rem;
	padding: 0 1.5rem;
	margin: 0 auto;
}

.inItemGrBx .inItemTit {
	font-size: 2.4rem;
}

.inItemGrImg {
	margin: 2rem 0 0;
}

@-webkit-keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

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

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

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

}

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

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

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

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

	.txt30 {
		font-size: 2.6rem;
	}

	.txt40 {
		font-size: 3.2rem;
	}

}

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

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

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

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

	.inCvrTxt {
		font-size: 3rem;
	}

	.inItemGr {
		gap: 2rem 1.5rem;
	}

}

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

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

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

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

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

	.txt15 {
		font-size: 1.4rem;
	}

	.txt16 {
		font-size: 1.5rem;
	}

	.txt17 {
		font-size: 1.7rem;
	}

	.txt18 {
		font-size: 1.6rem;
	}

	.txt19 {
		font-size: 1.65rem;
	}

	.txt20 {
		font-size: 1.7rem;
	}

	.txt30 {
		font-size: 2rem;
	}

	.txt40 {
		font-size: 2.2rem;
	}

	.txt120 {
		font-size: 4.5rem;
	}

	.txt166 {
		font-size: 6rem;
	}

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

	.sp-header {
		display: flex;
	}

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

	.sp-nav-btn {
		display: flex;
	}

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

	.js-sp-nav {
		display: block;
	}

	/* カバー */
	.inCvrTxt {
		font-size: 2.5rem;
	}

	/* 下層共通 */

	.inTitBx {
		margin: 8rem 0 0;
	}

	.inReadTxt {
		text-align: left;
	}

	.inReadTxt br {
		display: none;
	}

	.inItemFl01 {
		flex-direction: column-reverse;
		align-items: center;
	}

	.inItemFl01L {
		width: 100%;
		margin: 2rem 0 0;
	}

	.inItemFl01R {
		width: 100%;
	}

	.inItemFl01TxtBx {
		padding: 2.5rem 1.5rem;
	}

	.inItemFl01Txt {
		font-size: 1.65rem;
	}

	.inItemFl02 {
		flex-direction: column;
		align-items: center;
	}

	.inItemFl02L {
		width: 100%
	}

	.inItemFl02R {
		margin: 2rem 0 0;
		width: 100%
	}

	.inItemInfoFl {
		flex-direction: column;
	}

	.inItemGr {
		grid-template-columns: repeat(1, 1fr);
	}

}

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

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

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

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

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

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

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

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

	.sp-nav-btn {
		width: 6rem;
		height: 6rem;
	}

	.sp-nav-btn-bar-box {
		max-width: 3rem;
	}

	.sp-nav-btn-text {
		font-size: 1rem;
	}

	.sp-nav-btn-text {
		margin: 0;
	}

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

	.sp-nav-list-item a {
		padding: 1.2rem 0;
		font-size: 1.45rem;
	}


	/* 共通 */
	.inItemFl02Table p {
		font-size: 1.8rem;
	}

	.inItemFlTxt br {
		display: block;
	}

}

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

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

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

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

}

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