@charset "utf8";
/*=============================
	- font-style
	- 汎用 color & background
	- 汎用 wrap & title
	- top.css  TOPページCSS
==============================*/

/*----------------------------------------------------
	font-style
----------------------------------------------------*/
/*  全体 font  */
@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@100;300;500;700;900&display=swap');

html {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.my-font01 {
  font-family: "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.02em;
}

/*----------------------------------------------------
	汎用 color & background
----------------------------------------------------*/
/* color */
.white {
  color: #fff;
}
.base-color01 {
  /*--メイン文字カラー--*/
  color: #000;
}
.base-back01 {
  /*--メイン背景カラー--*/
  background: #fff;
}
.base-back02 {
  /*--アクセント背景カラー 薄グレー--*/
  background: #f5f5f5;
}
.point-color01 {
  /*--ポイント文字カラー ブルー --*/
  color: #1f6ed4;
}
.point-color02 {
  /*--ポイント文字カラー 水色 --*/
  color: #2fbbdc;
}
.point-back01 {
  /*--ポイント背景カラー ブルー --*/
  background: #1f6ed4;
}
.point-back02 {
  /*--ポイント背景カラー 濃いめピンク--*/
  background: #ff585d;
}

/*  shadow  */
.shadow {
	box-shadow: 0 0 12px 0 rgba(0,0,0,0.2);
}


/*----------------------------------------------------
	汎用 buttton
----------------------------------------------------*/
/* 無料相談ボタン */
.btn01 {
	display: inline-block;
	min-width: 260px;
	font-size: 16px;
	font-weight: bold;
	color: #1f6ed4;
	letter-spacing: 0.05em;
	text-align: center;
	padding: 22px 60px;
	background: #fff;
	border: 1px solid #1f6ed4;
	border-radius: 50px;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width: 680px) {
	.btn01 {
		width: 80%;
		min-width: auto;
		font-size: 3.8vw;
		padding: 13px 0;
	}
}

/* 青枠丸ボタン */
.btn02 {
  display: inline-block;
  text-align: center;
  letter-spacing: 0.05em;
  min-width: 330px;
  border-radius: 140px;
  padding: 22px 0 21px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 680px) {
  .btn02 {
    width: 100%;
    min-width: 100%;
  }
}

/*----------------------------------------------------
	汎用 wrap & title
----------------------------------------------------*/
/*  width 管理  */
.mywidth {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 681px) and (max-width: 1080px) {
	.mywidth {
		padding-left: 2vw;
		padding-right: 2vw;
	}
}
@media screen and (max-width: 680px) {
  .mywidth {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

/*  メインコンテンツwrap   */
#main-wrapp {
  overflow-x: hidden;
}

/* title */
.content-title01 {
	color: #000;
	font-size: 18px;
	letter-spacing: 0.1em;
	text-align: center;
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
}
.content-title01 span {
    font-size: 30px;
    display: block;
}
@media screen and (max-width: 680px) {
	.content-title01 {
		margin-bottom: 20px;
	}
	.content-title01 span {
		font-size: 3vw;
		display: block;
	}
}


.text {
	font-size: 16px;
	line-height: 1.8em
}
@media screen and (max-width: 680px) {
	.text {
		font-size: 14px;
		line-height: 1.6em
	}
}

.ellipsis-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.ellipsis-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ellipsis-1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}




/* tab  */
.tab-box .tab-hidden {
    display: none;
}
.tab-head {
	display:flex;
	justify-content:space-between;
}
.tab-head li {
    padding: 25px 10px;
    border-top: 1px solid #1f6ed4;
    border-left: 1px solid #1f6ed4;
    border-right: 1px solid #1f6ed4;
    background: #1f6ed4;
    width: calc(100% / 3 - 20px);
    cursor: pointer;
    position: relative;
	
	display: flex;
    justify-content: center;
    align-items: center;
}
.tab-head li span {
	font-size: 18px;
    font-weight: bold;
	line-height: 1.3em;
	letter-spacing: 0.2em;
	text-decoration: underline;
}
.tab-head li span.eng {
	font-size: 16px;
	letter-spacing: 0em;
	padding-left: 15px;
	text-decoration: none;
}
.tab-head li.current {
	background: #fff;
    text-align: center;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    color: #1f6ed4;
}
.tab-head li.current span {
	color: #1f6ed4;
}
.tab-head li::before {
	content: "";
	display: inline-block;
	width: 22px;
	height: 21px;
	background: url(../images/tab-off.png) no-repeat center / contain;
	margin-right: 10px;
}
.tab-head li.current::before {
	content: "";
	display: inline-block;
	width: 22px;
	height: 21px;
	background: url(../images/tab-on.png) no-repeat center / contain;
}
.tab-head li::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -15px;
	left: 0;
	width: 0px;
	height: 0px;
	margin: auto;
	border-style: solid;
	border-color: #1f6ed4 transparent transparent transparent;
	border-width: 15px 15px 0 15px;
}
.tab-head li.current::after {
	content: none;
}
.tab-content {
	padding:30px 50px;
	background:#fff;
}
@media screen and (max-width:1080px) {
	.tab-head { width: 100%; }
	.tab-head li {
		font-size: 12px;
		padding: 10px;
		width: 31.33%;
		text-align: center;
		flex-direction: column;
	}
	.tab-head li.current {
		padding: 10px;
	}
	.tab-head li span {
		font-size: 2.0vw;
	}
	.tab-head li span.eng {
		font-size: 1.5vw;
		padding-left: 0;
		padding-top: 5px;
	}
	.tab-head li::before,
	.tab-head li.current::before {
		content: none;
	}
	
	.tab-content {
		padding: 30px 15px;
	}
}

@media screen and (max-width:650px) {
	.tab-out-wrap {
		width:100%;
		/*
		overflow-x:scroll;
		-webkit-overflow-scrolling: touch;
		overflow-scrolling: touch;
		*/
	}
	
	.tab-head li span {
		font-size: 3.5vw;
	}
	.tab-head li span.eng {
		font-size: 2.5vw;
	}
	
}





/*----------------------------------------------------
	top.css  TOPページCSS
----------------------------------------------------*/

/*  content01  */
.content01  {}
.content01 .tab-box {
    padding-top: 50px;
    padding-bottom: 80px;
}

.content01 .box {
	width: 90%;
	margin: 12px;
    border-radius: 12px;
	display: block;
}
.content01 .box .img-wrap {}
.content01 .box .img-wrap img {
	width:100%;
	height:150px;
	object-fit:cover;
	border-radius: 12px 12px 0 0;
	display: none;
}
.content01 .box .text-wrap {
    padding:15px;
}
.content01 .box .tag {
    line-height: 1.2em;
    padding: 3px 15px;
    border: 1px solid #1f6ed4;
    border-radius: 50px;
    margin: 8px 0;
    /*display: inline-block;*/
	display: none;
}
.content01 .overview {}
.content01 .overview li {
	color: #434343;
    font-size: 16px;
    margin-bottom: 5px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
}
.content01 .overview li::before {
	content: "";
	display: inline-block;
	margin-right: 8px;
}
.content01 .overview li.i-kyuyo::before {
	width: 15px;
	height: 18px;
	background: url(../images/i-kyuyo.png) no-repeat center;
	background-size: contain;
}
.content01 .overview li.i-koyou::before {
	width: 15px;
	height: 18px;
	background: url(../images/i-koyou.png) no-repeat center;
	background-size: contain;
}
.content01 .overview li.i-area::before {
	width: 15px;
	height: 18px;
	background: url(../images/i-area.png) no-repeat center;
	background-size: contain;
}

@media screen and (max-width:650px){
	.content01 .mywidth {
		padding-left: 3vw;
		padding-right: 3vw;
	}
	.content01 .tab-box {
		padding-top: 30px;
		padding-bottom: 50px;
	}
	
	.content01 .box {
		margin: 12px 20px;
	}
}



/*  content02  */
.content02 {
	padding-top: 70px;
	padding-bottom: 70px;
	overflow: hidden;
}
.content02 .strength-item {
	display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}
.content02 .strength-item .outside-left {
	width: 48%;
    flex: 1;
    margin-left: calc(50% - 50vw);
    margin-right: 4%;
}
.content02 .strength-item .box {
	width: 50%;
}

.content02 .strength-item .title {
	padding-top: 10px;
	padding-left: 120px;
	min-height: 128px;
	background: url("../images/strength-point.png") no-repeat;
	background-position: left top;
}
.content02 .strength-item .title .count {
	font-size: 24px;
    line-height: 1em;
    letter-spacing: 0.2em;
    font-family: 'Roboto Condensed', sans-serif;
    margin-bottom: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}
.content02 .strength-item .title .count::after {
	font-size: 62px;
    line-height: 0.8em;
	font-family: 'Roboto Condensed', sans-serif;
}
.content02 .strength-item:nth-child(1) .title .count::after {
	content: "1"
}
.content02 .strength-item:nth-child(2) .title .count::after {
	content: "2"
}
.content02 .strength-item:nth-child(3) .title .count::after {
	content: "3"
}
.content02 .strength-item .title h4 {
    font-size: 22px;
    font-weight: bold;
}
.content02 .strength-item p {
    margin-top: 40px;
}
@media only screen and (min-width: 681px) and (max-width: 1080px) {
	.content02 .strength-item .outside-left {
		width: 40%;
		margin-left: calc(40% - 48vw);
		margin-right: 2%;
	}
	.content02 .strength-item .box {
		width: 60%;
	}
	.content02 .strength-item .title {
		padding-top: 0;
		padding-left: 10vw;
		min-height: 12vw;
		background-size: contain;
	}
	.content02 .strength-item .title .count {
		font-size: 2vw;
	}
	.content02 .strength-item .title .count::after {
		font-size: 5vw;
	}
	.content02 .strength-item .title h4 {
		font-size: 2.5vw;
	}
	.content02 .strength-item p {
		margin-top: 20px;
		line-height: 1.6em;
	}
	
}
@media screen and (max-width: 680px) {
	.content02 {
		padding-top: 50px;
  		padding-bottom: 50px;
	}
	.content02 h3 {
		width: 65%;
		margin-left: auto;
		margin-right: auto;
	}
	.content02 .strength-item {
		flex-direction: column;
		margin-bottom: 40px;
	}
	.content02 .strength-item:last-of-type {
		margin-bottom: 0;
	}
	.content02 .strength-item .outside-left {
		width: 100%;
		margin-left: 0;
		margin-bottom: 20px;
	}
	.content02 .strength-item .box {
		width: 100%;
	}
	.content02 .strength-item .title {
    	padding-top: 0;
		padding-left: 0;
		min-height: inherit;
		background: none;
	}
	.content02 .strength-item .title .count {
		font-size: 16px;
		margin-bottom: 5px;
	}
	.content02 .strength-item .title .count::after {
		font-size: 34px;
	}
	.content02 .strength-item .title h4 {
		font-size: 18px;
	}
	.content02 .strength-item p {
		margin-top: 10px;
		font-size: 14px;
		line-height: 1.6em;
	}
	
	
}



/*  content03  */
.content03 {
	padding-top: 70px;
	padding-bottom: 70px;
    overflow: hidden;
}
.content03 li {
    width: 49%;
    max-width: 620px;
    margin-bottom: 30px;
}
@media screen and (max-width: 680px) {
	.content03 {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.content03 li {
		width: 100%;
		max-width: inherit;
		margin-bottom: 20px;
	}
	.content03 li:last-of-type {
		margin-bottom: 0;
	}
	
}



/*  content04  */
.content04 {
	padding-top: 70px;
	padding-bottom: 70px;
	overflow: hidden;
}
.content04 .faq-list {
    margin-top: 60px;
}
.content04 .faq-list .accordion-switch:hover {
	opacity: .8;
}
.content04 .faq-list .accordion-switch .q-wrap {
    font-size: 20px;
	line-height: 1.4em;
    font-weight: bold;
	padding: 10px 0;
}
.content04 .faq-list .accordion-switch .q-wrap span {
    color: #fff;
    font-size: 15px;
    padding: 5px 15px 5px;
    background: #ff585d;
    margin-left: 10px;
    margin-right: 15px;
    border-radius: 50px;
    display: inline-block;
    white-space: nowrap;
	display: none;
}
.content04 .faq-list .accordion-switch .arrow {
	width: 60px;
    min-height: 60px;
	background: #1f6ed4;
	position: relative;
}
.content04 .faq-list .accordion-switch .arrow::before {
	content: '';
    width: 15px;
    height: 15px;
    border: 0px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    position: absolute;
    top: 30%;
    left: 38%;
}
.content04 .faq-list .accordion-switch.open .arrow::before {
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    top: 45%;
    left: 38%;
}
.content04 .faq-answer {
	padding: 20px 0;
}
.content04 .faq-answer p {
	margin-left: 15px;
	margin-right: 60px;
}
@media screen and (max-width: 680px) {
	.content04 {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.content04 .faq-list {
		margin-top: 0;
	}
	.content04 .faq-list .accordion-switch .q-wrap {
		font-size: 15px;
		padding: 10px 10px;
		width: calc(100% - 40px);
	}
	
	.content04 .faq-list .accordion-switch .q-wrap span {
		font-size: 13px;
		padding: 3px 10px 3px;
	}
	
	.content04 .faq-list .accordion-switch .arrow {
		width: 40px;
		height: 100%;
		position: absolute;
		right: 0;
	}
	.content04 .faq-list .accordion-switch .arrow::before {
		width: 10px;
		height: 10px;
		position: absolute;
		top: 18px;
		left: 38%;
	}
	.content04 .faq-list .accordion-switch.open .arrow::before {
		position: absolute;
		top: 18px;
		left: 38%;
	}
	
	.content04 .faq-answer {
		padding: 10px 10px;
	}
	.content04 .faq-answer p {
		font-size: 14px;
		margin-right: 0;
	}

}

/* faqのアコーディオン */
.box-accordion {
	margin-bottom: 20px;
}
.box-accordion .accordion-switch {
    padding: 0 0;
	border: 1px solid #111;
    cursor: pointer;
	position: relative;
	display: flex;
	justify-content: space-between;
    align-items: stretch;
}
.box-accordion .accordion-switch .q-wrap::before {
	content: "Q";
    color: #1f6ed4;
	padding: 0 20px;
    font-size: 40px;
    font-family: 'Geologica', sans-serif;
    line-height: 1.0em;
    display: flex;
    justify-content: center;
    align-items: center;
}
/*
.box-accordion .accordion-switch::after {

	content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #1f6ed4;
    position: absolute;
    right: 15px;
	top: 50%;
    transform: translateY(-50%);
}
.box-accordion .accordion-switch.open::after {
	content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/acc-minus.png) no-repeat;
    background-size: contain;
    position: absolute;
    right: 20px;
}
*/
.box-accordion .accordion-inner {
	display: none;
	background: #ecf2fb;
	box-sizing: border-box;
	transition: 0.05s;
}
.box-accordion .accordion-inner .faq-answer::before {
	content: "A";
	color: #1f6ed4;
	padding: 0 20px;
	/*min-width: 60px;*/
	font-size: 40px;
	font-family: 'Geologica', sans-serif;
    line-height: 1.0em;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
@media screen and (max-width: 680px) {
	.box-accordion .accordion-switch::before {
		min-width: 45px;
		min-height: 45px;
		height: auto;
		font-size: 30px;
	}
	.box-accordion .accordion-switch::after,
	.box-accordion .accordion-switch.open::after {
		display: inline-block;
		width: 18px;
		height: 18px;
		position: absolute;
		right: 10px;
		/*top: 20px;*/
	}
	.box-accordion .accordion-switch .q-wrap::before {
		padding: 0 8px 0 0;
		font-size: 30px;
	}
	.box-accordion .accordion-inner .faq-answer::before {
		min-width: inherit;
		font-size: 30px;
		padding: 0 0;
	}

	
}




/*  content05  */
.content05 {
	padding-top: 70px;
	padding-bottom: 70px;
}
.content05 .box {
	width: 22.5%;
	max-width: 280px;
    margin-right: 3.333%;
    background: #fff;
    border-radius: 20px;
	box-shadow: 6px 6px 10px 2px rgba(0, 0, 0, 0.2);
}
.content05 .box:nth-child(4) {
	margin-right: 0;
}
.content05 .box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}
.content05 .box .text {
    padding: 0 0;
    margin: 10px 20px;
}
@media only screen and (min-width: 681px) and (max-width: 1080px) {
	.content05 .box img {
		height: 15vw;
	}
	
}
@media screen and (max-width: 680px) {
	.content05 {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.content05 .box {
		width: 47%;
    	margin-right: 4%;
	}
	.content05 .box:nth-child(2n) {
		margin-right: 0;
	}
	.content05 .box img {
		height: 120px;
	}
	.content05 .box .text {
		margin: 8px 13px;
	}

}
