@charset "UTF-8";

/*-----------Reset
------------------------------------------------------------*/
* {box-sizing: border-box;}

body,ul,ol,li,dl,dt,dd,blockquote,p,h1,h2,h3,h4,h5,h6,form,fieldset,address,em,th,strong,i {
	border: none;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 100%;
	font-weight: normal;
	font-style: normal;
	text-align: left;
}

button {
	background: transparent;
	border: none;
	outline: none;
	padding: 0;
	appearance: none;
	color: currentColor;
	font-family: inherit;
	display: block;
	cursor: pointer;
	}

input,select,textarea{
	font-family: inherit;
	font-size: 1.6rem;
	}

input[type="submit"],input[type="button"] {
	-webkit-appearance: none;
    appearance: none;
	border-radius: 0;
	}

/*input[type="text"],input[type="email"],input[type="number"],textarea,
*/
table {
	border-collapse: collapse;
	border-spacing: 0;
	}

img,picture,video {
	width: 100%;
	height: auto;
	margin: 0;
	border: 0;
	vertical-align: bottom;
	}

ul {list-style-type: none;}
small {font-size: 100%;}
iframe {border: 0;}
a {text-decoration: none;}
a:hover{opacity: 0.8;}
a:active{color: currentColor;}
a:visited{color: currentColor;}
/* Fonts
-------------------------------------------*/
html {
	font-size: 100%;
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: normal;
	font-style: normal;
}

/* Clearfix
-------------------------------------------*/
.clearfix:after{
	content: "";
	display: block;
	clear: both;
	}
/*==========
================================================== Reset END*/



/*==========common
============================================================*/
:root{
	--black: #333333;
	--gray: #f8f8f8;
	--red: #d62042;
	--navy: #1c2d52;
	--aqua: #d3dfe6;
}

br.tbbr{
	display: none;
}
@media screen and (max-width:1024px) {
	br.tbbr{
		display: block;
	}
}
br.spbr{
	display: none;
}
@media screen and (max-width:767px) {
	br.spbr{
		display: block;
	}
}
html {
	background-color: var(--gray);
	color: var(--black);
	scroll-behavior: smooth;
	line-height: 1.6;
}
	
header{
	width: 100%;
	position: sticky;
	top: 0;
	z-index: 5;
	background-color: #ccc;
}
header p{
	height: 80px;
}


/*==================common====================*/
.main {
	width: 100%;
	background-color: var(--gray);
}
section {
	max-width: 1170px;
	padding: 160px 15px 120px 15px;
	margin: 0 auto;
}
@media screen and (max-width:1209px) {
	section{
		max-width: 1060px;
		padding: 160px 5% 120px 5%;
	}
}
@media screen and (max-width:767px) {
	section{
		max-width: 750px;
		padding: 100px 15px 60px 15px;
	}
}
section p {
	font-size: 1.25rem;
}
@media screen and (max-width:767px) {
	section p {
		font-size: 1rem;
	}
}
section p:not(:last-of-type){
	margin-bottom: 1em;
}
em.underLine {
	font-weight: 700;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-color: var(--red);
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}
.bgWhite {
	background-color: #ffffff;
}
.bgSplit {
	background-image: linear-gradient(var(--gray) 0 130px,#ffffff 130px 100%);
}
@media screen and (max-width:1024px) {
	.bgSplit {
		background-image: linear-gradient(var(--gray) 0 110px,#ffffff 110px 100%);
	}
}
.point .flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 30px;
}
@media screen and (max-width:1024px) {
	.point .flex {
		flex-direction: column;
		column-gap: 0;
	}
}
.point .flex>:first-child {
	width: calc((100% - 30px)/5*3);
}
@media screen and (max-width:1024px) {
	.point .flex>:first-child {
		display: contents;
	}
}
.point .flex>:nth-child(2) {
	width: calc((100% - 30px)/5*2);
}
@media screen and (max-width:1024px) {
	.point .flex>:nth-child(2){
		width: 80%;
		margin: 0 0 50px auto;
		order: 2;
	}
}

/*-----concept-----*/
.concept {
	padding: 60px 15px 120px 15px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	column-gap: 30px;
}
@media screen and (max-width:1209px) {
	.concept {
		max-width: 1060px;
		padding: 60px 5% 120px 5%;
	}
}
@media screen and (max-width:1024px) {
	.concept {
		flex-direction: column;
		column-gap: 0;
	}
}
@media screen and (max-width:767px) {
	.concept {
		max-width: 750px;
		padding: 80px 15px 120px 15px;
	}
}

.concept::before {
	content: "CONCEPT";
	display: block;
	width: 100%;
	margin: 0 0 60px 0;
	color: rgba(214,32,66,0.3);
	font-size: 6.25rem;
	font-weight: 700;
	line-height: 1;
}
@media screen and (max-width:767px) {
	.concept::before {
		font-size: 3rem;
	}
}
.concept>:first-child {
	width: calc((100% - 30px)/5*3);
	padding: 0 0 0 40px;
}
@media screen and (max-width:1024px) {
	.concept>:first-child {
		display: contents;
	}
}
.concept>:first-child h1{
	margin: 0 0 50px 0;
	color: var(--navy);
	font-size: 2.5rem;
	font-weight: 700;
}
@media screen and (max-width:1209px) {
	.concept>:first-child h1 {
		font-size: 2.5rem;
	}
}
@media screen and (max-width:1024px) {
	.concept>:first-child h1 {
		margin: 0 0 50px 40px;
	}
}
@media screen and (max-width:767px) {
	.concept>:first-child h1 {
		margin: 0 0 40px 0;
		font-size: 2rem;
	}
}
.concept>:first-child h1 em {
	font-weight: 700;
	color: var(--red);
	display: inline-flex;
	/*text-emphasis: sesame var(--red);*/
}
.concept>:first-child h1 em span {
	position: relative;
}
.concept>:first-child h1 em span:before {
	content: "\fe45";
	display: block;
	font-size: 1rem;
	position: absolute;
	top: -10px;
	left: 0;
	right: 0;
	margin: 0 auto;
	text-align: center;
}
/*.concept>:first-child h1 em span:before {
    content: "、";
    display: block;
    font-size: 2.5rem;
    position: absolute;
    transform: translate(25%, -70%);
}*/
.concept>:first-child>:nth-child(2) {
	border-left: 8px solid var(--navy);
	padding: 0 0 0 10px;
	margin: 0 0 30px 0;
	font-size: 1.5rem;
	font-weight: 700;
}
@media screen and (max-width:1209px) {
	.concept>:first-child>:nth-child(2) {
		font-size: 1.375rem;
	}
}
@media screen and (max-width:1024px) {
	.concept>:first-child>:nth-child(2) {
		margin: 0 0 30px 40px;
		font-size: 1.25rem;
		order: 3;
	}
}
@media screen and (max-width:767px) {
	.concept>:first-child>:nth-child(2) {
		margin: 0 0 30px 0;
		order: 3;
	}
}
.concept>:first-child>:nth-child(3) {
	font-size: 1.25rem;
}
@media screen and (max-width:1024px) {
	.concept>:first-child>:nth-child(3) {
		margin: 0 0 0 40px;
		order: 4;
	}
}
@media screen and (max-width:767px) {
	.concept>:first-child>:nth-child(3) {
		margin: 0;
		font-size: 1rem;
		order: 4;
	}
}
.concept>:nth-child(2){
	width: calc((100% - 30px)/5*2);
}
@media screen and (max-width:1024px) {
	.concept>:nth-child(2){
		width: 80%;
		margin: 0 0 50px auto;
		order: 2;
	}
}
/*-----POINT共通-----*/
.point h2{
	width: 80%;
	padding: 0 0 0 80px;
	margin: 0 0 50px 0;
	border-bottom: 2px solid var(--navy);
	color: var(--navy);
	font-size: 2.25rem;
	font-weight: 700;
	position: relative;
}
@media screen and (max-width:1024px) {
	.point h2 {
		width: 90%;
		font-size: 1.75rem;
	}
}
@media screen and (max-width:767px) {
	.point h2 {
		width: 95%;
		padding: 0 0 0 20px;
		font-size: 1.375rem;
	}
}
.point h2::before {
	display: block;
	width: 100%;
	color: rgba(214,32,66,0.3);
	font-size: 4rem;
	font-weight: 700;
	line-height: 1;
	position: absolute;
	top: -50px;
	left: 0;
}
@media screen and (max-width:767px) {
	.point h2::before {
		font-size: 2.5rem;
		top: -30px;
	}
}
.point h3 {
	margin: 0 0 40px 0;
	color: var(--navy);
	font-size: 1.75rem;
	font-weight: 700;
}
@media screen and (max-width:1024px) {
	.point h3 {
		font-size: 1.375rem;
	}
}
@media screen and (max-width:767px) {
	.point h3 {
		font-size: 1.125rem;
	}
}
/*-----POINT 01-----*/
.point01 h2::before {
	content: "POINT 01";
}
.point01 .flex{
	margin: 0 0 60px 0;
}
@media screen and (max-width:1024px) {
	.point01>.flex h3 {
		order: 1;
	}
	.point01>.flex div {
		order: 2;
	}
	.point01>.flex p {
		order: 3;
	}
}
.tabs {
    position: relative;
	margin: 0 0 60px 0;
}
.tabs::after {
    content: "";
    display: none;
    width: 100%;
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    left: 0;
	border-bottom: 10px solid var(--red);
    z-index: 4;
}
.tabs.is-active::after {
    display: block;
}
.tabs .sticky {
	position: -webkit-sticky;
	position: sticky;
	z-index: 4;
	top: 80px;
	background-color: var(--gray);
}
.tabs .tabBtn {
	display: flex;
	flex-wrap: wrap;
	column-gap: 30px;
}
@media screen and (max-width:1024px) {
	.tabs .tabBtn {
		column-gap: 20px;
	}
}
@media screen and (max-width:767px) {
	.tabs .tabBtn {
		column-gap: 10px;
	}
}
.tabs .tabBtn button {
	width: calc((100% - 60px)/3);
	padding: 20px;
	background-color: #ffffff;
	border: var(--navy) solid 1px;
	border-radius: 4px;
	line-height: 1;
	text-align: center;
	font-size: 1.25rem;
	font-weight: 700;
	align-self: stretch;
}
@media screen and (max-width:1024px) {
	.tabs .tabBtn button {
		width: calc((100% - 40px)/3);
	}
}
@media screen and (max-width:767px) {
	.tabs .tabBtn button {
		width: calc((100% - 20px)/3);
		margin: 0;
		padding: 10px;
	}
}
.tabs .tabBtn button span:first-child {
	width: 100%;
	display: block;
	margin: 0 auto 15px auto;
}
@media screen and (max-width:1209px) {
	.tabs .tabBtn button span:first-child {
		font-size: 1.125rem;
	}
}
@media screen and (max-width:1024px) {
	.tabs .tabBtn button span:first-child {
		height: 2em;
		display: flex;
		align-items: center;
		justify-content: center;
	}
}
@media screen and (max-width:767px) {
	.tabs .tabBtn button span:first-child {
		font-size: clamp(0.6em, 3vw, 1em);
	}
}
.tabs .tabBtn button span:nth-child(2) {
	display: block;
	width: 50%;
	min-width: 180px;
	padding: 10px;
	margin: 0 auto;
	background-color: var(--red);
	text-align: center;
	border-radius: 4px;
	color: #ffffff;
	font-weight: 700;
}
@media screen and (max-width:767px) {
	.tabs .tabBtn button span:nth-child(2) {
		width: 100%;
		min-width: auto;
		padding: 10px 0;
		font-size: clamp(0.6em, 3vw, 1em);
	}
}
.tabs .tabBtn button span:nth-child(2) i {
	padding-right: 5px;
}
.tabs .tabBtn button:hover {
	opacity: 0.8;
}
.tabs .sticky h4 {
	display: block;
	width: 100%;
	padding: 20px 0;
	margin: 30px 0 0 0;
	border-top: var(--red) solid 10px;
	border-right: var(--red) solid 1px;
	border-left: var(--red) solid 1px;
	background-color: var(--gray);
	position: relative;
	text-align: center;
	font-size: 2rem;
	font-weight: 700;
}
@media screen and (max-width:767px) {
	.tabs .sticky h4 {
		width: 100%;
		min-width: auto;
		padding: 10px 0;
		font-size: clamp(1.125rem,5vw, 1.5rem);
	}
}
.tabs h4::before {
    content: "";
	border-style: solid;
	border-width: 0 30px 30px 30px;
	border-color: transparent transparent var(--red);
    position: absolute;
    top: 0;
	translate: -50% -100%;
}
.tabs h4:first-of-type::before {
    left: calc((100% - 60px)/6);
}
.tabs h4:nth-of-type(2)::before {
    left: 50%;
}
.tabs h4:nth-of-type(3)::before {
    left: calc((100% - 60px)/6*5 + 60px);
}
.tabs .tabContentsWrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	padding: 0 30px 30px 30px;
	border-right: var(--red) solid 1px;
	border-left: var(--red) solid 1px;
	background-color: var(--gray);
	overflow-y: auto;
	/*scrollbar-gutter: stable;*/
}
@media screen and (max-width:1024px) {
	.tabs .tabContentsWrapper {
		gap: 20px;
		padding: 20px;
	}
}
@media screen and (max-width:767px) {
	.tabs .tabContentsWrapper {
		padding: 10px;
	}
}
.tabs .tabContentsWrapper .tabContent {
	width: calc((100% - 30px)/2);
	padding: 15px;
	border-radius: 4px;
	background-color: #ffffff;
}
@media screen and (max-width:1024px) {
	.tabs .tabContentsWrapper .tabContent {
		width: calc((100% - 20px)/2);
		padding: 20px;
	}
}
@media screen and (max-width:767px) {
	.tabs .tabContentsWrapper .tabContent {
		width: 100%;
		padding: 10px;
	}
}
.tabs .tabContentsWrapper .tabContent h5 {
	margin-bottom: 10px;
	text-align: center;
	font-size: 1.125rem;
	font-weight: 700;
}
@media screen and (max-width:1024px) {
	.tabs .tabContentsWrapper .tabContent h5 {
		font-size: 1rem;
	}
}
.tabs .tabContentsWrapper .tabContent p{
	font-size: 1rem;
}
.tabs .tabContentsWrapper table {
	width: 100%;
	margin: 0 auto;
	border-collapse: collapse;
}
.tabs .tabContentsWrapper table tr {
}
.tabs .tabContentsWrapper table th ,
.tabs .tabContentsWrapper table td {
	padding: 10px;
	width: 50%;
	border: 1px solid #333333;
}
@media screen and (max-width:767px) {
	.tabs .tabContentsWrapper table th ,
	.tabs .tabContentsWrapper table td {
		padding: 5px;
	}
}
.tabs .tabContentsWrapper table th {
	font-size: 1.125rem;
	font-weight: 700;
	background-color: var(--aqua);
	text-align: center;
}
@media screen and (max-width:767px) {
	.tabs .tabContentsWrapper table th {
		font-size: 1rem;
	}
}
.tabs .tabContentsWrapper table td {
}

.point01 a {
	display: block;
	width: 100%;
	padding: 10px;
	border-radius: 999px;
	background-color: var(--navy);
	color: #ffffff;
	font-size: 1.5rem;
	font-weight: 700;
	text-align: center;
}
@media screen and (max-width:1209px) {
	.point01 a {
		font-size: 1.375rem;
		padding: 10px 2em;
	}
}@media screen and (max-width:1024px) {
	.point01 a {
		max-width: 700px;
		margin: 0 auto;
		font-size: 1.25rem;
	}
}
@media screen and (max-width:767px) {
	.point01 a {
		font-size: 1.125rem;
	}
}

/*-----POINT 02-----*/
.point02>div{
	margin: 0 0 60px 0;
}
.point02 h2::before {
	content: "POINT 02";
}
.point02 ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	position: relative;
}
@media screen and (max-width:767px) {
	.point02 ul {
		max-width: 480px;
		margin: 0 auto;
		flex-direction: column;
	}
}
.point02 ul::before,
.point02 ul::after {
	content: "\f061";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	display: block;
	width: 5%;
	text-align: center;
	position: absolute;
	top: 50%;
}
.point02 ul::before {
	left: 30%;
}
.point02 ul::after {
	left: 60%;
}
@media screen and (max-width:767px) {
	.point02 ul::before,
	.point02 ul::after {
	content: "\f063";
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 30px;
	left: 0;
	}
	.point02 ul::before {
		top: calc((100% - 60px)/3);
	}
	.point02 ul::after {
		top: calc(((100% - 60px)/3)*2 + 30px);
	}
}
.point02 ul li {
	width: 30%;
	padding: 20px;
	border-width: 10px 1px 1px 1px;
	border-style: solid;
	align-self: stretch;
}
@media screen and (max-width:767px) {
	.point02 ul li {
		width: 100%;
	}
}
.point02 ul li:first-child,
.point02 ul li:nth-child(2) {
	border-color: var(--navy);
	color: var(--navy);
}
@media screen and (max-width:767px) {
	.point02 ul li:first-child,
	.point02 ul li:nth-child(2) {
		margin-bottom: 30px;
	}
}
.point02 ul li:nth-child(3) {
	border-color: var(--red);
	color: var(--red);
}
.point02 ul li i {
	display: block;
	margin: 0 0 15px 0;
	font-size: 1.75rem;
	text-align: center;
}
@media screen and (max-width:767px) {
	.point02 ul li i {
		font-size: 1.5rem;
	}
}
.point02 ul li em {
	display: block;
	margin: 0 0 10px 0;
	font-size: 2.25rem;
	font-weight: 700;
	text-align: center;
	line-height: 1;
}
@media screen and (max-width:1024px) {
	.point02 ul li em {
		font-size: 1.75rem;
	}
}
@media screen and (max-width:767px) {
	.point02 ul li em {
		font-size: 1.375rem;
	}
}
.point02 ul li b {
	display: block;
	margin: 0 0 15px 0;
	font-size: 1.25rem;
	font-weight: 700;
	text-align: center;
	line-height: 1;
}
@media screen and (max-width:767px) {
	.point02 ul li b {
		font-size: 1rem;
	}
}
.point02 ul li p {
	font-size: 1rem;
	text-align: center;
	color: #333333;
}

/*-----POINT 03-----*/
.point03 h2::before {
	content: "POINT 03";
}
.split {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	background-color: #ffffff;
	border-radius: 4px;
}
@media screen and (max-width:1024px) {
	.split {
		flex-direction: column;
	}
}
.split .lead {
	width: 40%;
	padding: 30px;
	background-color: var(--navy);
	border-radius: 4px 0 0 4px;
	color: #ffffff;
	font-weight: 700;
}
@media screen and (max-width:1024px) {
	.split .lead {
		width: 100%;
		border-radius: 4px 4px 0 0;
	}
}
.split .lead h4 {
	margin-bottom: 30px;
	font-size: 1.75rem;
	font-weight: 700;
}
@media screen and (max-width:767px) {
	.split .lead h4 {
		font-size: 1.125rem;
	}
}@media screen and (max-width:1024px) {
	.split .lead h4 br {
		display: none;
	}
}
.split .lead p {
	margin: 0 0 40px 0;
}
.split .lead a {
	display: block;
	width: 100%;
	padding: 10px;
	border-radius: 999px;
	background-color: #ffffff;
	color: var(--red);
	font-size: 1.5rem;
	font-weight: 700;
	text-align: center;
}
@media screen and (max-width:1209px) {
	.split .lead a {
		font-size: 1.375rem;
	}
}@media screen and (max-width:1024px) {
	.split .lead a {
		max-width: 350px;
		margin: 0 auto;
		font-size: 1.25rem;
	}
}
@media screen and (max-width:767px) {
	.split .lead a {
		font-size: 1.125rem;
	}
}
.split .detail {
	width: 60%;
	padding: 25px;
}
@media screen and (max-width:1024px) {
	.split .detail {
		width: 100%;
		padding: 20px;
	}
}
.split .detail ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}
@media screen and (max-width:767px) {
	.split .detail ul {
		flex-direction: column;
	}
}
.split .detail ul li {
	border: 1px solid var(--navy);
	background-color: #ffffff;
	border-radius: 4px;
	width: calc((100% - 30px)/2);
	padding: 10px 0 10px 15px;
}
@media screen and (max-width:1024px) {
	.split .detail ul li {
		width: calc((100% - 15px)/2);
	}
}
@media screen and (max-width:767px) {
	.split .detail ul li {
		width: 80%;
		max-width: 480px;
		margin: 0 auto;
	}
}
.split .detail ul li::before {
	content: "\f00c";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	padding: 0 10px 0 0;
}

/*-----important-----*/

.important {
	padding: 60px 15px 80px 15px;
}
@media screen and (max-width:1209px) {
	.important {
		max-width: 1060px;
		padding: 60px 5% 80px 5%;
	}
}
@media screen and (max-width:1024px) {
	.important {
	}
}
@media screen and (max-width:767px) {
	.important {
		max-width: 750px;
		padding: 80px 15px 80px 15px;
	}
}
.important::before {
	content: "IMPORTANT";
	display: block;
	width: 100%;
	margin: 0 0 60px 0;
	color: rgba(214,32,66,0.3);
	font-size: 6.25rem;
	font-weight: 700;
	line-height: 1;
}
@media screen and (max-width:767px) {
	.important::before {
		font-size: 3rem;
	}
}
.important p{
	width: 100%;
	padding: 0;
	margin: 0;
	border-bottom: none;
	color: var(--navy);
	font-size: 2.25rem;
	font-weight: 700;
	text-align: center;
}
@media screen and (max-width:1024px) {
	.important p {
		font-size: 1.75rem;
	}
}
@media screen and (max-width:767px) {
	.important p {
		font-size: 1.375rem;
		text-align: left;
	}
}
@media screen and (max-width:767px) {
	.important p br {
		display: none;
	}
}
/*-----POINT 04-----*/
.point04 h2::before {
	content: "POINT 04";
}
/*-----#contactArea(footer.phpと競合のため)-----*/
#contactArea h2 {
	text-align: center;
}
#contactArea p {
	font-size: 1rem;
	text-align: center;
}