body {
	font-family: "Noto Sans JP", sans-serif;
}

body {
	font-weight: 400;
}

body {
	color: #000;
}

.u-desktop {
	display: none;
}

/* リキッドレイアウト対応 */

html {
	font-size: 16px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults */

html {
	scroll-behavior: smooth;
}

/* Set core body defaults */

body {
	line-height: 1.5;
	min-height: 100vh;
	text-rendering: optimizeLegibility;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

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

/* Natural flow and rhythm in articles by default */

article > * + * {
	margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
	font: inherit;
}

/* Blur images when they have no alt attribute */

img:not([alt]) {
	filter: blur(10px);
}

/* フォームリセット */

input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

input[type=checkbox],
input[type=radio] {
	display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

/* ホバー */

a {
	color: inherit;
	text-decoration: none;
	transition: opacity 0.3s;
}

.c-sectiontitle {
	color: #000;
	font-family: "IBM Plex Sans JP", sans-serif;
	font-size: clamp(24px, 1.75rem, 40px);
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: clamp(30px, 2.5rem, 50px);
	text-align: center;
}

.c-sectiontitle.white {
	color: #fff;
}

.c-sectiontitle span {
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
}

.c-sectiontitle span.red {
	color: #B32C2C;
}

.c-sectiontitle span.blue {
	color: #2671C1;
}

.c-sectiontitle span.yellow {
	color: #F7F17B;
}

.m-header {
	align-items: center;
	background-color: #fff;
	display: flex;
	height: 60px;
	justify-content: space-between;
	left: 0;
	padding: 0 0 0 20px;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
}

.m-header__logo img {
	width: clamp(120px, 11.25rem, 200px);
}

.m-header__btn a {
	align-items: center;
	background-color: #FF8A3B;
	border: 1px solid #FF8A3B;
	color: #fff;
	display: flex;
	font-size: 1.4375rem;
	font-weight: 700;
	gap: 8px;
	height: 100%;
	justify-content: center;
	padding: 0 2.25rem;
	transition: all 0.3s;
}

.m-header__btn a.mail {
	background-color: #F7F17B;
	border-color: #F7F17B;
	color: #0A1F95;
}

.m-header__btn a img {
	transition: all 0.3s;
	width: 1.5625rem;
}

.m-header__btn a:hover {
	background-color: #fff;
	color: #FF8A3B;
}

.m-header__btn a.mail:hover {
	background-color: #fff;
	border-color: #0A1F95;
	color: #0A1F95;
}

.m-header__btn a:hover img {
	filter: brightness(0) saturate(100%) invert(45%) sepia(100%) saturate(1200%) hue-rotate(10deg) brightness(0.9) contrast(1.3);
}

.m-header__btn a.mail:hover img {
	filter: unset;
}

.m-header__humburger {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 6px;
	height: 60px;
	justify-content: center;
	width: 60px;
}

.m-header__humburger span {
	background-color: #000;
	display: block;
	height: 1px;
	transition: all 0.3s;
	width: 30px;
}

.m-header__humburger.is-active {
	background-color: #2B44CC;
}

.m-header__humburger.is-active span {
	background-color: #fff;
	height: 1.5px;
	position: absolute;
}

.m-header__humburger.is-active span:nth-child(1) {
	transform: rotate(45deg);
}

.m-header__humburger.is-active span:nth-child(2) {
	opacity: 0;
}

.m-header__humburger.is-active span:nth-child(3) {
	transform: rotate(-45deg);
}

.m-header__drawer {
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	background-color: rgba(255, 255, 255, 0.9);
	height: 100vh;
	left: 0;
	position: fixed;
	top: 60px;
	transform: translateX(100%);
	transition: all 0.5s;
	width: 100%;
	z-index: 100;
}

.m-header__drawer__scroll {
	height: calc(100vh - 60px);
	overflow-y: auto;
}

.m-header__drawer.is-active {
	transform: translateX(0);
}

.m-header__drawer-inner {
	height: calc(100vh - 60px);
	position: relative;
}

.m-header__drawer-inner nav {
	padding: clamp(20px, 1.25rem, 40px) 1.25rem clamp(30px, 3.75rem, 60px);
}

.m-header__drawer-inner nav ul li {
	border-bottom: 0.5px solid #C3C6D1;
}

.m-header__drawer-inner nav ul li:last-child {
	border-bottom: none;
}

.m-header__drawer-inner nav ul li a {
	display: block;
	font-size: clamp(16px, 1.25rem, 24px);
	font-weight: 700;
	padding: clamp(20px, 1.25rem, 40px) 0;
}

.m-header__drawer-inner nav ul li a.js-accordion {
	position: relative;
}

.m-header__drawer-inner nav ul li a.js-accordion::after {
	background: url("../../images/acordion_arrow.svg") no-repeat center center;
	content: "";
	height: 14px;
	position: absolute;
	right: 10px;
	top: calc(clamp(20px, 1.25rem, 40px) + 0.4em);
	width: 20px;
}

.m-header__drawer-inner nav ul li > div ul {
	padding-bottom: clamp(16px, 1.25rem, 20px);
}

.m-header__drawer-inner nav ul li > div ul li {
	border-bottom: none;
	padding-left: 3.125rem;
}

.m-header__drawer-inner nav ul li > div ul li a {
	font-size: clamp(15px, 1.0625rem, 20px);
	font-weight: 500;
	padding: clamp(14px, 0.875rem, 20px) 0;
}

.m-header__drawer-inner-accordion {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.m-header__drawer-inner-accordion.is-active {
	max-height: 500px;
	opacity: 1;
}

.m-header__drawer-inner-contact {
	align-items: center;
	background-color: #0A1F95;
	display: flex;
	flex-direction: column;
	gap: clamp(16px, 1rem, 20px);
	justify-content: center;
	padding: clamp(30px, 2.5rem, 40px) 0;
}

.m-header__drawer-inner-contact a {
	align-items: center;
	border-radius: 30px;
	box-shadow: 1.2px 2.4px 6px rgba(22, 46, 107, 0.5);
	display: flex;
	font-size: clamp(16px, 1.125rem, 22px);
	font-weight: 700;
	gap: 8px;
	height: clamp(50px, 3.125rem, 65px);
	justify-content: center;
	padding: clamp(16px, 1rem, 20px) 0;
	width: 15rem;
}

.m-header__drawer-inner-contact a span {
	align-items: center;
	display: flex;
	gap: 8px;
	justify-content: center;
	width: 11.5625rem;
}

.m-header__drawer-inner-contact a span img {
	transition: all 0.3s;
	width: 1.25rem;
}

.m-header__drawer-inner-contact a.mail {
	background-color: #F7F17B;
	color: #0A1F95;
}

.m-header__drawer-inner-contact a.download {
	background-color: #FF8A3B;
	color: #fff;
}

.c-inner {
	margin: 0 auto;
	max-width: 87.5rem;
}

.flex__btns {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: clamp(20px, 1.5rem, 24px);
	justify-content: flex-start;
}

.flex__btns a {
	align-items: center;
	border-radius: 50px;
	box-shadow: 1.2px 2.4px 6px rgba(22, 46, 107, 0.5);
	display: flex;
	font-size: clamp(16px, 1.2125rem, 22px);
	font-weight: 700;
	height: clamp(45px, 2.8125rem, 60px);
	justify-content: center;
	padding: clamp(16px, 1rem, 20px) 0;
	width: 15rem;
}

.flex__btns a span {
	align-items: center;
	display: flex;
	gap: 8px;
	justify-content: center;
	width: 11.5625rem;
}

.flex__btns a span img {
	transition: all 0.3s;
	width: 1.0625rem;
}

.flex__btns a.mail {
	background-color: #F7F17B;
	border: 2px solid #F7F17B;
	color: #0A1F95;
	transition: all 0.3s;
}

.flex__btns a.mail:hover {
	background-color: #fff;
	border-color: #0A1F95;
}

.flex__btns a.download {
	background-color: #FF8A3B;
	border: 2px solid #FF8A3B;
	color: #fff;
	transition: all 0.3s;
}

.flex__btns a.download:hover {
	background-color: #fff;
	color: #FF8A3B;
}

.flex__btns a.download:hover img {
	filter: brightness(0) saturate(100%) invert(45%) sepia(100%) saturate(1200%) hue-rotate(10deg) brightness(0.9) contrast(1.3);
}

.c-footer__contact {
	background-image: url(../../images/cta_bg.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 3.125rem clamp(20px, 1.75rem, 32px) 6.875rem;
	position: relative;
	z-index: 1;
}

.c-footer__contact h2 {
	color: #fff;
	font-family: "IBM Plex Sans JP", sans-serif;
	font-size: clamp(20px, 1.5rem, 32px);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: clamp(14px, 0.875rem, 24px);
	text-align: center;
}

.c-footer__contact h2 span {
	font-size: 1.4em;
}

.c-footer__contact p {
	color: #fff;
	font-size: clamp(13px, 0.9375rem, 18px);
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
}

.c-footer__contact__cta {
	background-color: #fff;
	border-radius: clamp(6px, 0.375rem, 12px);
	bottom: 0;
	box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1019607843);
	left: 50%;
	max-width: 700px;
	padding: 1.625rem 1.25rem;
	position: absolute;
	transform: translate(-50%, 69%);
	width: calc(100% - clamp(20px, 1.75rem, 40px) * 2);
}

.c-footer__contact__cta p {
	color: #000;
	font-size: clamp(14px, 0.9375rem, 18px);
	font-weight: 600;
}

.c-footer__contact__cta .flex__btns {
	flex-direction: column-reverse;
	justify-content: center;
	margin-top: clamp(18px, 1.25rem, 30px);
}

.c-footer__bottom {
	align-items: center;
	background-color: #F2F2F2;
	display: flex;
	flex-direction: column;
	height: clamp(247px, 16.5625rem, 400px);
	justify-content: flex-end;
	padding: clamp(30px, 1.875rem, 40px) clamp(20px, 1.75rem, 40px) clamp(12px, 0.875rem, 20px);
}

.c-footer__bottom__left {
	align-items: center;
	display: flex;
	gap: clamp(15px, 0.9375rem, 36px);
	justify-content: left;
	width: 100%;
}

.c-footer__bottom__left__logo {
	align-items: center;
	display: flex;
	justify-content: left;
}

.c-footer__bottom__left__logo img {
	height: clamp(16px, 1.1875rem, 30px);
}

.c-footer__bottom__left ul {
	align-items: center;
	display: flex;
	justify-content: left;
}

.c-footer__bottom__left ul li {
	border: 1px solid #000;
	border-width: 0 1px 0 1px;
	display: flex;
	padding: 0 clamp(4px, 0.3125rem, 8px);
}

.c-footer__bottom__left ul li + li {
	border-width: 0 1px 0 0;
}

.c-footer__bottom__left ul li a {
	color: #000;
	font-size: clamp(11px, 0.6875rem, 12px);
	font-weight: 400;
}

.c-footer__copy {
	align-items: center;
	color: #000;
	display: flex;
	font-size: clamp(10px, 0.625rem, 12px);
	font-weight: 400;
	margin-top: clamp(10px, 0.625rem, 12px);
}

@media screen and (min-width: 768px) {

.c-inner {
	max-width: 700px;
}

}

@media screen and (min-width: 1001px) {

.u-desktop {
	display: block;
}

.u-mobile {
	display: none;
}

html {
	font-size: 0.906002265vw;
}

.c-sectiontitle {
	font-size: 3.125rem;
	margin-bottom: 2.5rem;
}

.m-header {
	height: 90px;
	padding: 0 0 0 6.25rem;
	position: static;
}

.m-header__logo img {
	width: 19.6875rem;
}

.m-header__btn {
	height: 100%;
}

.m-header__humburger {
	display: none;
}

.m-header__drawer {
	display: none;
}

.c-inner {
	max-width: 87.5rem;
}

.flex__btns {
	flex-direction: row;
	gap: clamp(27px, 2.5625rem, 41px);
	margin-top: 4.8125rem;
}

.flex__btns a {
	font-size: clamp(20px, 1.75rem, 28px);
	height: clamp(60px, 5.625rem, 90px);
	width: 22.875rem;
}

.flex__btns a span {
	gap: 1rem;
	width: auto;
}

.flex__btns a span img {
	width: 1.875rem;
}

.c-footer__contact {
	padding: 6.25rem clamp(20px, 1.75rem, 40px) 11.875rem;
}

.c-footer__contact h2 {
	font-size: 3.25rem;
	margin-bottom: 3rem;
}

.c-footer__contact h2 {
	font-size: 3.25rem;
	margin-bottom: 3rem;
}

.c-footer__contact p {
	font-size: 1.75rem;
}

.c-footer__contact__cta {
	border-radius: 1.25rem;
	max-width: none;
	max-width: initial;
	padding: 4.375rem;
	transform: translate(-50%, 60%);
	width: auto;
}

.c-footer__contact__cta p {
	font-size: 2rem;
}

.c-footer__contact__cta .flex__btns {
	flex-direction: row;
	margin-top: 1.875rem;
}

.c-footer__bottom {
	align-items: flex-end;
	flex-direction: row;
	height: 26.4375rem;
	justify-content: space-between;
	padding: 4.5625rem 3.75rem 2.75rem;
}

.c-footer__bottom__left {
	gap: 3.125rem;
	width: auto;
}

.c-footer__bottom__left__logo img {
	height: 3.125rem;
}

.c-footer__bottom__left ul li {
	padding: 0 0.9375rem;
}

.c-footer__bottom__left ul li a {
	font-size: 1.125rem;
}

.c-footer__copy {
	font-size: 0.9375rem;
	height: 3.125rem;
}

}

@media (min-width: 1766px) {

html {
	font-size: 16px;
}

}

@media (max-width: 1000px) {

html {
	font-size: 4.1025641026vw;
}

}


/*# sourceMappingURL=common.css.map */
