@charset "utf-8";
/* CSS Document */

/*** ------------------------------------------------------------------------------

フェードイン

-----------------------------------------------------------------------------  ***/

.anime1,
.anime2,
.anime3,
.anime-t{
	position: relative;
}
.anime1:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color:#f4f4f4;
	animation-name: anime;
	animation-duration: 1s;
	animation-direction: ease-out;
	animation-fill-mode:forwards;
}
.anime2:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color:#f4f4f4;
	animation-name: anime;
	animation-duration: 2s;
	animation-direction: ease-out;
	animation-fill-mode:forwards;
}
.anime3:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color:#f4f4f4;
	animation-name: anime;
	animation-duration: 2s;
	animation-direction: ease-out;
	animation-fill-mode:forwards;
}

.anime-t:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color:#f4f4f4;
	animation-name: animet;
	animation-duration: 4s;
	animation-direction: ease-out;
	animation-fill-mode:forwards;
}

.anime-t2 {
	animation-name: animet2;
	animation-duration: 4s;
	animation-direction: ease-out;
	animation-fill-mode:forwards;
}

@keyframes anime{
	0%{
		left: 0;
		opacity: 1;
	}
	50%{
		left: 0;
		opacity: 1;
	}
	100%{
		left: 100%;
		opacity: 1;
	}
}


@keyframes animet{
	0%{
		opacity: 1;
	}
	50%{
		opacity: 1;
	}
	100%{
		opacity: 0;
	}
}

@keyframes animet2{
	0%{
		transform: translateX(-10px);
		opacity: 0;
	}
	45%{
		transform: translateX(-10px);
		opacity: 0;
	}
	100%{
		transform: translateX(0px);
		opacity: 1;
	}
}


.show-cnt{
	display: block;
	position: relative;
	overflow: hidden;
}
.show-cnt:before{
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #f4f4f4;
	transition: 0.8s cubic-bezier(.55, .085, .68, .53);
	z-index: 2;
}
.show-cnt.run:before,
.show-cnt.run:after{
	left: 200%;
	opacity: 1;
}

.show-cnt2{
	transition: all 1s;
	transform: translateY(60px);
	transition-duration: ease-in;
	opacity: 0;
}
.show-cnt2.run{
	transform: translateY(0px);
	opacity: 1;
}


.show-cnt3{
	transition: all 1s;
	transform: translateX(-60px);
	transition-duration: ease-in;
	opacity: 0;
}
.show-cnt3.run{
	transform: translateX(0px);
	opacity: 1;
}

.show-cnt4{
	transition: all 1s;
	transform: translateY(-60px);
	transition-duration: ease-in;
	opacity: 0;
}
.show-cnt4.run{
	transform: translateY(0px);
	opacity: 1;
}




/*** ------------------------------------------------------------------------------

#page

-----------------------------------------------------------------------------  ***/


#page .visual .mv-inner{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	align-content: flex-start;
	padding:0px;
	margin: 0 auto;
	box-sizing: border-box;
}
#page .visual .mv-inner .img-left{
	width: 47%;
}
#page .visual .mv-inner .img-left span{
	padding: 8px 18px;
	position: absolute;
	left: 0;
	bottom: 0;
	background: #1E2F4A;
	font-size: 1.4vw;
	color: #ffef1e;
	font-weight: 500;
	line-height: 1.6;
	animation-duration: 6s;
}
#page .visual .mv-inner .img-left img{
	width: 100%;
}
#page .visual .mv-inner div{
	width: 53%;
}
#page .visual .mv-inner .text{
	padding: 35px 40px;
	background: url('../../img/home/mv-bg.png')no-repeat center center;
	background-size: cover;
}
#page .visual .mv-inner .text.htmltext{
	display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 100px 20px 100px 60px;
	font-size: 2.5vw;
	color: #fff;
	font-weight: 600;
}
#page .visual .mv-inner .text.htmltext span.text-inner span{
    font-size: 2vw;
    letter-spacing: 2px;
}

#page .visual .mv-inner .text img{
	width: 100%;
    height: auto;
    object-fit: contain;
}
#page .visual .mv-inner .img-right {
	display: flex;
	width: 100%;
	position: relative;
}
#page .visual .mv-inner .img-right span{
	display: inline-block;
	width: 100%;
	background:#1E2F4A;
	color: #fff;
	font-size: 1.4vw;
	font-weight: bold;
	text-align: center;
}
#page .visual .mv-inner .img-right .anime3 span{
	border-left:solid 1px #fff;
}
#page .visual .mv-inner .img-right img{
	width: 100%;
}
#page .visual .mv-inner .mv-caption{
	padding: 8px 18px;
	position: absolute;
	left: 0;
	bottom: 0;
	background: #1E2F4A;
	font-size: 16px;
	color: #ffef1e;
	font-weight: 500;
	line-height: 1.6;
	animation-duration: 6s;
}
@media (max-width: 1100px){
		#page .visual .mv-inner .text.htmltext{
		font-size: 2.7vw;
	}
		#page .visual .mv-inner .text.htmltext span.text-inner span{
			font-size: 1.8vw;
}
}
@media (max-width: 768px){
	#page .visual .mv-inner{
		flex-wrap: wrap;
		/* height: calc(100vh - 65px); */
	}
	#page .visual .mv-inner .img-left{
		width: 100%;
		height: calc(50vh - 65px);
	}
	#page .visual .mv-inner .img-left span{
		top: auto;
		left: 0;
		right: auto;
		bottom: 0;
		font-size: 16px;
	}
	#page .visual .mv-inner .img-left img{
		height: 100%;
		object-fit: cover;
	}
	#page .visual .mv-inner div,
	#page .visual .mv-inner .text{
		display: flex;
		align-content: flex-start;
		align-items: center;
		flex-wrap: wrap;
		width: 100%;
		height: 50vh;
	}
	#page .visual .mv-inner .text{
		height: 100%;
		padding:25px 15px;
		box-sizing: border-box;
		height: auto;
	}
	#page .visual .mv-inner .text.htmltext{
		padding: 50px 10px 50px 30px;
		font-size: 5.5vw;
		line-height: 1.7;
	}
	#page .visual .mv-inner .text.htmltext span.text-inner span {
		font-size: 4vw;
	    letter-spacing: 2px;
	}
	#page .visual .mv-inner .text img{
		height: 100%;
		object-fit: contain;
	}
	#page .visual .mv-inner .img-right{
		height: 20vh;
	}
	#page .visual .mv-inner .img-right img{
		height: 100%;
		object-fit: cover;
	}
	#page .visual .mv-inner .img-right .text-cap01,
	#page .visual .mv-inner .img-right .text-cap02{
	    width: 100%;
	    margin: 0;
	    padding: 5px 10px 7px;
		box-sizing: border-box;
	    text-align: left;
	    font-size: 16px;
	}
	#page .visual .mv-inner .mv-caption{
	    top: auto;
	    left: 0;
	    right: auto;
	    bottom: -20px;
	    font-size: 10px;
	    padding: 2px 7px;
	}
}

#page .section-ttl{
	font-size: 44px;
}
#page .section-ttl:first-letter{
	color: #222222;
}
#page .section-ttl .blue{
	display: inline;
	font-size: 100%;
	color: #00a0e9;
}
#page .section-ttl .small{
	font-size: 26px;
	font-weight: bold;
	color: #222;
}
#page .section-ttl .middle{
	font-size: 32px;
	color: #222!important;
	display: inline;
}
#page .arrow{
	font-size: 48px;
	font-weight: 900;
    padding: 0 0 40px 0;
    display: inline-block;
}
#page .section-ttl-q{
	margin-bottom: 40px;
	text-align: center;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.7;
}
#page .section-ttl-q .big{
	display: inline-block;
	margin-bottom: 15px;
	font-size: 26px;
	font-weight: bold;
}
#page .section-ttl-q .blue{
	color: #00a0e9;
	font-weight: bold;
}

#page .cont-list{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#page .cont-list.list-ques li{
	width: calc(100% / 3 - 60px);
	margin: 30px 30px;
	border:solid 4px #00A0E9;
	box-sizing: border-box;
	position: relative;
}
#page .cont-list.list-ques li p{
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	position: relative;
	width: 100%;
	height: 100%;
	padding: 25px;
	text-align: center;
	font-size: 26px;
	font-weight: bold;
	line-height: 1.5;
	box-sizing: border-box;
	z-index: 2;
}
#page .cont-list.list-ques li:before,
#page .cont-list.list-ques li:after{
	content: '';
	display: block;
	width: 90px;
	height: 110px;
	background: url('../img/page/icon-talk.svg')no-repeat center center;
	background-size: calc(100% - 20px);
	background-color: #F4F4F4;
	position: absolute;
	top: -30px;
	left: -30px;
	z-index: 1;
}
#page .cont-list.list-ques li:after{
	background: #F4F4F4;
	position: absolute;
	top: auto;
	left: auto;
	right: -30px;
	bottom: -30px;
	z-index: 1;
}

#page .cont-list.list-black li{
	width: calc(100% / 3 - 60px);
	margin: 30px 30px;
	background: #333333;
	box-sizing: border-box;
	position: relative;
}
#page .cont-list.list-black li p{
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	position: relative;
	width: 100%;
	height: 100%;
	padding: 20px;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.4;
	box-sizing: border-box;
	color: #fff;
	z-index: 2;
}

#page .cont-list.list-num li,
#page .cont-list.list-num-blue li{
	width: calc(100% / 3 - 40px);
	margin: 20px;
	padding: 30px 12px;
	position: relative;
	border: solid 5px #EBEBEB;
	border-radius: 8px;
	background: #fff;
	box-sizing: border-box;
}
#page .cont-list.list-num li:before,
#page .cont-list.list-num-blue li:before{
	content: '';
	display: block;
	width: 48px;
	height: 48px;
	position: absolute;
	top: -20px;
	left: -20px;
	background: url('../img/page/num-1.svg')no-repeat center center;
	background-size: contain;
	z-index: 1;
}
#page .cont-list.list-num li p,
#page .cont-list.list-num-blue li p{
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.5;
}
#page.test .prepa .cont-list.list-num li p{
    display: block;
}

/* 青背景リスト */
#page .cont-list.list-num li:nth-child(2):before{
	background: url('../img/page/num-2.svg')no-repeat center center;
}
#page .cont-list.list-num li:nth-child(3):before{
	background: url('../img/page/num-3.svg')no-repeat center center;
}
#page .cont-list.list-num li:nth-child(4):before{
	background: url('../img/page/num-4.svg')no-repeat center center;
}
#page .cont-list.list-num li:nth-child(5):before{
	background: url('../img/page/num-5.svg')no-repeat center center;
}
#page .cont-list.list-num-blue li:before{
	background: url('../img/page/num-gray-1.svg')no-repeat center center;
	background-size: contain;
	z-index: 1;
}
#page .cont-list.list-num-blue li:nth-child(2):before{
	background: url('../img/page/num-gray-2.svg')no-repeat center center;
}
#page .cont-list.list-num-blue li:nth-child(3):before{
	background: url('../img/page/num-gray-3.svg')no-repeat center center;
}
#page .cont-list.list-num-blue li{
	background: #00A0E9;
}

#page .cont-fukidasi {
	width: 100%;
	max-width: 860px;
	height: 500px;
	position: relative;
}
#page .cont-fukidasi .img{
	width: 100%;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	color: #666666;
	line-height: 1.5;
}
#page .cont-fukidasi .img img{
	display: inline-block;
	margin-bottom: 10px;
}
#page .cont-fukidasi ul{
	width: 100%;
	height: 100%;
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	text-align: center;
}
#page .cont-fukidasi ul li{
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	width: 325px;
	height: 140px;
	padding: 10px;
	position: absolute;
	text-align: center;
}
#page .cont-fukidasi ul li.fukidasi-1{
	top: 20px;
	left: 0;
	right: 0;
	margin: 0 auto;
	background: url('../img/page/fukidasi-1.svg') no-repeat center center;
	background-size: contain;
}
#page.test .cont-fukidasi ul li.fukidasi-1{
	top: 70px;
	left: 0;
	right: 0;
	margin: 0 auto;
	background: url('../img/page/fukidasi-6.svg') no-repeat center center;
	background-size: contain;
	width: auto;
  height: 180px;
}
#page .cont-fukidasi ul li.fukidasi-2{
	top: 20px;
	right: 65px;
	margin-right: auto;
	background: url('../img/page/fukidasi-2.svg') no-repeat center center;
	background-size: contain;
}
#page .cont-fukidasi ul li.fukidasi-3{
	top: 20px;
	left: 80px;
	margin-right: auto;
	background: url('../img/page/fukidasi-3.svg') no-repeat center center;
	background-size: contain;
}
#page .cont-fukidasi ul li.fukidasi-4{
	top: 172px;
	left: -20px;
	margin-right: auto;
	background: url('../img/page/fukidasi-4.svg') no-repeat center center;
	background-size: contain;
}
#page .cont-fukidasi ul li.fukidasi-5{
	top: 172px;
	right: -20px;
	margin-left: auto;
	margin-right: auto;
	background: url('../img/page/fukidasi-5.svg') no-repeat center center;
	background-size: contain;
}
#page .cont-fukidasi ul li p{
	font-size: 22px;
	font-weight: bold;
	line-height: 1.5;
}

#page .visual .mv-inner{
	display: flex;
	justify-content: flex-end;
	background-size: cover;
    background-position: top left;
    background-repeat: no-repeat;
}
#page.before .visual .mv-inner{
	background-image:url(/common/img/company/mv-company.jpg);
}
#page.contact .visual .mv-inner{
/*	background-image:url("../img/company/mv-company.jpg");*/
	background: #1f2f49;
}
#page.privacy .visual .mv-inner{
	background-image:url("../img/company/mv-company.jpg");
}
#page .visual .mv-inner .img{
	width: 55%;
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
}
#page .visual .mv-inner .img .img-1{
	position: relative;
	width: 55%;
	height: 100%;
}
#page .visual .mv-inner .img .img-2{
	width: 45%;
	height: 100%;
}
#page .visual .mv-inner .img p img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#page .visual .mv-inner .img .img-2 img{
	height: 50%;
}
#page .visual .mv-inner .img .img-1 span{
	padding: 8px 18px;
	position: absolute;
	left: 0;
	bottom: 0;
	background: #1E2F4A;
	font-size: 16px;
	color: #fff;
	font-weight: 500;
	line-height: 1.6;
}

#page .visual .mv-inner h1{
	/* display: flex;
	justify-content: space-between;
	align-items: center;
	align-content: center; */
	width: 45%;
	padding: 65px 40px 45px 40px;
	text-align: left;
	background: url(../../img/home/mv-bg.png)no-repeat center center;
    background-size: cover;
	background-color: #1E2F4A;
	font-size: 46px;
	font-weight: bold;
	color: #fff;
	line-height: 1.1;
	box-sizing: border-box;
}

#page .visual .mv-inner h1 span.keisen {
	display: inline;
	color: #fff;
	font-size: 100%;
	margin-top: 0;
	letter-spacing: -1px;
}
#page .visual .mv-inner h1 img{
	max-width: 100%;
}

#page .intro .inner{
	padding-top: 60px;
}
@media(max-width: 769px){
	#page.contact .intro .inner,
		#page.company .intro .inner,
			#page.before .intro .inner{
		padding-top: 20px;
	}
	#page.contact .intro .inner p img,
		#page.company .intro .inner p img,
			#page.before .intro .inner p img{
		max-width:100%;
		height:auto;
	}
	#page .visual .mv-inner h1 span.keisen {
		font-size: 100%;
	}
}
/* about */
#page .about .inner{
	padding-top: 60px;
	padding-bottom: 60px;
}
#page .about .fukidasi-big{
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	text-align: center;
	flex-wrap: wrap;
	max-width:770px;
	margin: 0 auto;
}
#page .about .fukidasi-big .img{
	width: 320px;
	padding:0;
	background: url('../img/page/icon-back.svg')no-repeat center bottom;
	background-size: contain;
	font-size: 16px;
	color: #666666;
	line-height: 2.5;
	font-weight: bold;
  background: #1E2F4A;
  color: #fff;
}
#page .about .fukidasi-big .img img{
	display: inline-block;
	max-width:100%;
	height:auto;
}
#page .about .fukidasi-big .word{
	display: block;
	width: calc(100% - 320px);
	padding: 20px 30px 30px 30px;
	box-sizing: border-box;
	text-align: left;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5;
}
#page .about .fukidasi-big .word .big{
	display: inline-block;
	margin-bottom: 25px;
	font-size: 25px;
	font-weight: bold;
}

/* intro */
#page .intro .inner .section-ttl-q span{
	margin-top: 20px;
}

/* doubt */
#page .doubt .inner{
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	padding: 30px 20px 100px;
	text-align: center;
	background: url('../img/page/arrow-big.svg')no-repeat center bottom 20px;
	background-size: contain;
}
#page .doubt .inner h3 {
	line-height: 1.6;
}
#page .doubt .inner h3 .big{
	font-size:26px;
	font-weight: 900;
	color:#00A1D5;
}
#page .doubt .inner h3 {
	font-size: 26px;
	font-weight: 900;
}

/* doubt2 */
#page .doubt2-02{
	position: relative;
	background: #fff;
}
#page .doubt2-02 .section-ttl-q{
	margin: 0;
	padding-bottom: 40px;
}
#page .doubt2{
	position: relative;
	background: #fff;
}
#page .doubt2:before{
	content: '';
	display: block;
	width: 100%;
	height: 50%;
	position: absolute;
	bottom: 0;
	background: #f4f4f4;
	z-index: 1;
}
#page .doubt2 .inner{
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	max-width: 100%;
	padding: 0px;
	position: relative;
	background: url('../img/footer-bg.png')no-repeat center center;
	background-size:cover;
	z-index: 2;
}
#page .doubt2 .cont-fukidasi{
	height: 346px;
}

/* question */
#page .question .inner{
	padding-top:60px;
	padding-bottom: 50px;
}

/* prepa */
#page .prepa .inner{
	padding-bottom: 50px;
}

/* qa-branch */
#page .qa-branch .cont-qa{
	padding: 24px;
	margin-bottom: 18px;
	background: #fff;
	position: relative;
	box-sizing: border-box;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.6;
	border: solid 1px #E0E0E0;
	border-radius: 8px;
}
#page .qa-branch .cont-qa.back-l-blue{
	background-color:#E4F8FF ;
	font-size: 24px;
	color: #00A1D5;
}
#page .qa-branch ul{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 40px 0 18px;
}
#page .qa-branch ul li{
	width: 47%;
}
#page .qa-branch ul li .cont-qa{
	/*text-align: justify;*/
    text-align: center;
	font-size: 18px;
	font-weight: 500;
	background-color: #E4F8FF;
}
#page .qa-branch ul.hav-list3 li:nth-child(1){
	z-index: 99;
}
#page .qa-branch ul.hav-list3 li:nth-child(2){
	z-index: 88;
}

/* QAの黒縦線 */
#page .qa-branch .cont-qa:not(.back-l-blue):before{
	content: '';
	display: block;
	width: 4px;
	height: 18px;
	background: #333333;
	position: absolute;
	margin: 0 auto;
	left: 0;
	right: 0;
	bottom: -19px;
}
#page .qa-branch ul li .cont-qa:after{
	content: '';
	display: block;
	width: 4px;
	height: 40px;
	background: #333333;
	position: absolute;
	margin: 0 auto;
	top: -41px;
	left: 0;
	right: 0;
}
#page .qa-branch ul.hav-list2 li:nth-child(1) .cont-qa:after{
	margin-right: 90px;
}
#page .qa-branch ul.hav-list2 li:nth-child(2) .cont-qa:after{
	margin-left: 90px;
}
#page .qa-branch .cont-qa.nex-none:before,
#page .qa-branch ul.next-none li .cont-qa:before{
	display: none;
}

#page .qa-branch ul li .cont-qa:after{
}

/* prepa */
/*#page .prepa .cont-list.list-num {
	justify-content: flex-start;
}*/
#page .prepa .cont-list.list-num li{
	width: calc(100% / 2 - 40px);
	padding: 40px 20px;
	position: relative;
}
#page .prepa .cont-list.list-num li p{
	position: relative;
	z-index: 2;
}

/* answer */
#page .answer .answer-ttl{
	display: flex;
	justify-content: center;
	align-items: flex-end;
	align-content: flex-end;
}
#page .answer .answer-ttl .ttl{
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	padding: 10px 30px;
	margin-bottom: 30px;
	background: #00A1D5;
	font-size: 30px;
	font-weight: 700;
	color: #fff;
	line-height: 1.5;
}
#page .answer .back-white{
	padding:50px 35px;
	position: relative;
	box-shadow: 0px 3px 15px rgba(0,0,0,0.1);
	box-sizing: border-box;
}
#page .answer .back-white:before{
	content: '';
	display: block;
	width: 230px;
	height: 50px;
	position: absolute;
	top: 0;
	right: 0;
	background: url('../img/page/line-top.svg')no-repeat top right;
	background-size: contain;
}
#page .answer .back-white:after{
	content: '';
	display: block;
	width: 230px;
	height: 50px;
	position: absolute;
	left: 0;
	bottom: 0;
	background: url('../img/page/line-bottom.svg')no-repeat top left;
	background-size: contain;
}
#page .answer .back-white .cont-list{
	display: flex;
	justify-content: space-between;
}
#page .answer .back-white .cont-list li{
	width: 23%;
	font-size: 20px;
	text-align: center;
	font-weight: bold;
	line-height: 1.5;
}
#page .answer .back-white .cont-list li span{
	min-height: 75px;
    display: flex;
    margin: 0 0 0 0;
    padding: 0 18px;
    align-items: center;
    justify-content: center;
}
#page .answer .back-white .cont-list li img{
	display: block;
	max-width: 95%;
	margin: 0 auto;
}
#page .answer .back-white .cont-list li p:not(.img){
	background: #00A1D5;
	border: solid 5px #EBEBEB;
	border-radius: 8px;
	box-sizing: border-box;
	text-align: center;
	font-size: 28px;
	font-weight: 700;
	color: #fff;
}
#page .answer .back-white .ttl{
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	position: relative;
	text-align: center;
	margin-top: 35px;
}
#page .answer .back-white .ttl:before{
	content: '';
	display: block;
	width: 30px;
	height: 40px;
	max-height: 100%;
	margin-right: 10px;
	position: relative;
	background: url('../img/page/ttl-left.svg')no-repeat center left;
	background-size: contain;
}
#page .answer .back-white .ttl:after{
	content: '';
	display: block;
	width: 30px;
	height: 40px;
	max-height: 100%;
	margin-left: 10px;
	position: relative;
	background: url('../img/page/ttl-right.svg')no-repeat center left;
	background-size: contain;
}
#page .answer .back-white .ttl h5{
	display:inline;
	font-size: 26px;
	font-weight: bold;
	color: #000;
	font-weight: 700;
}
#page .answer .cont-fukidasi{
	max-width: 100%;
	margin: 0 auto;
}
@media(min-width: 769px){
	#page .answer .cont-fukidasi{
		background: none !important;
	}
}

#page .answer .cont-fukidasi .img{
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
	max-width: 265px;
  margin: 0 auto 30px;
  padding: 0 0 10px 0;
  background: #1E2F4A;
  color: #fff;
}
#page .answer .cont-fukidasi ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#page .answer .cont-fukidasi ul li {
	width: 50%;
	height: auto;
	margin: 0 ;
	position: relative;
	box-sizing: border-box;
}
#page .answer .cont-fukidasi ul li p{
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	width: calc(100% - 140px);
	height: 100%;
	padding:20px;
	position: relative;
	margin-right: auto;
	background: #E4F8FF;
	box-sizing: border-box;
	border-radius: 10px;
	border: solid 1px rgba(70,70,70,0.3);
	text-align: left;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.7;
}
#page .answer .cont-fukidasi ul li:nth-child(2) p{
	margin-left: auto;
	margin-right: 0;
}
#page .answer .cont-fukidasi ul li:nth-child(4) p{
	margin-left: auto;
	margin-right: 0;
}
#page .answer .cont-fukidasi ul li p:before{
	content: '';
	display: block;
	width: 40px;
	height: 20px;
	position: absolute;
	right: -40px;
	background: url('../img/page/fukidasi-arrow1.svg')no-repeat left center;
	background-size: contain;
	z-index: 1;
}
#page .answer .cont-fukidasi ul li:nth-child(2) p:before{
	left: -40px;
	background: url('../img/page/fukidasi-arrow2.svg')no-repeat right center;
	background-size: contain;
	z-index: 1;
}
#page .answer .cont-fukidasi ul li:nth-child(3) p:before{
	top: 10px;
	background: url('../img/page/fukidasi-arrow3.svg')no-repeat left center;
	background-size: contain;
	z-index: 1;
}
#page .answer .cont-fukidasi ul li:nth-child(4) p:before{
	top: 10px;
	left: -40px;
	background: url('../img/page/fukidasi-arrow4.svg')no-repeat left center;
	background-size: contain;
	z-index: 1;
}

/* guide */
#page .guide .inner{
	padding-top:60px;
}
#page .guide .section-ttl-q .big{
	margin-bottom: 0px;
}
#page .guide .guide-list li .ttl {
	position: relative;
	padding: 5px;
}
#page .guide .guide-list li .ttl:before{
	content: '';
	display: block;
	width: 65px;
	height: 65px;
	position: absolute;
	top: 0;
	left: 0;
	background: url('../img/page/num-1.svg')no-repeat center center;
	background-size: contain;
}
#page .guide .guide-list li:nth-child(2) .ttl:before{
	background: url('../img/page/num-2.svg')no-repeat center center;
	background-size: contain;
}
#page .guide .guide-list li:nth-child(3) .ttl:before{
	background: url('../img/page/num-3.svg')no-repeat center center;
	background-size: contain;
}
#page .guide .guide-list li:nth-child(4) .ttl:before{
	background: url('../img/page/num-4.svg')no-repeat center center;
	background-size: contain;
}
#page .guide .guide-list li:nth-child(5) .ttl:before{
	background: url('../img/page/num-5.svg')no-repeat center center;
	background-size: contain;
}
#page .guide .guide-list li .ttl span{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	align-content: center;
	align-items: center;
	width: calc(100% - 30px);
	margin-left: auto;
	margin-right: 0px;
	padding: 5px 5px 5px 35px;
	border-radius: 8px;
	box-sizing: border-box;
	border: solid 5px #EBEBEB;
	font-size: 24px;
	font-weight:700;
	line-height: 1.6;
	color: #00A1D5;
}

#page .guide .guide-list li .cont{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	padding:20px 60px 0px;
	margin-bottom: 20px;
	box-sizing: border-box;
}
#page .guide .guide-list li .cont .img{
	width: 250px;
	margin-right: 70px;
	text-align: center;
	font-size: 16px;
    color: #666666;
    line-height: 1.5;
		font-weight:bold;
}
#page .guide .guide-list li .cont .img span{
	background-color: #1E2F4A;
	color: #fff;
	display: block;
	padding: 5px;
}
#page .guide .guide-list li .cont .img img{
	display: inline-block;
	max-width:100%;
}

/* list */
#page .guide .guide-list li .cont .list{
	width: calc(100% - 320px);
}
#page .guide .guide-list li .cont.img-none .list{
	width: 100%;
}
#page .guide .guide-list li .cont.img-none .list > p{
	text-align: center;
	margin-bottom: 15px;
}
#page .guide .guide-list li .cont.img-none .list ul{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
#page .guide .guide-list li .cont.img-none .list ul li{
	width: calc(50% - 10px);
	margin-right: 20px;
}
#page .guide .guide-list li .cont.img-none .list ul li:nth-child(2n){
	margin-right: 0;
}

#page .guide .guide-list li .cont .list > p{
	margin-top: 8px;
	margin-bottom: 8px;
	font-size: 20px;
	line-height: 1.5;
	font-weight: bold;
}
#page .guide .guide-list li .cont .list li{
	min-height: 80px;
	padding:15px 20px;
	margin-bottom: 10px;
	background:#E4F8FF;
	border: solid 1px #E0E0E0;
	border-radius: 10px;
	box-sizing: border-box;
}
#page .guide .guide-list li .cont .list li p{
	display: flex;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	min-height: 65px;
	padding-left: 65px;
	background: url('../img/page/icon-check.svg')no-repeat center left 10px;
	background-size: 45px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
}

/* list-clm2 */
#page .guide .list-clm2{
	padding:0 60px;
	box-sizing: border-box;
}
#page .guide .list-clm2 ul{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin-bottom: 40px;
}
#page .guide .list-clm2 li{
	width: calc(50% - 10px);
	margin-right: 20px;
	margin-bottom:20px;
}
#page .guide .list-clm2 li:nth-child(2n){
	margin-right: 0px;
}
#page .guide .list-clm2 li p{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	align-content: center;
	width: 100%;
	height: 100%;
	padding: 15px 25px;
	border: solid 1px #00A1D5;
	border-radius: 10px;
	box-sizing: border-box;
	font-size:16px;
	font-weight: bold;
	line-height: 1.5;
	color:#00A1D5
}
#page .guide .guide-list li .lead{
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 15px;
}
/* link */
#page .guide .guide-list li .link{
	width: calc(100% - 120px);
	margin:0 auto 70px;
	position: relative;
	border: solid 4px #00A0E9;
	box-sizing: border-box;
}
#page .guide .guide-list li .link > div{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	padding: 30px;
	box-sizing: border-box;
}
#page .guide .guide-list li .link > div:before,
#page .guide .guide-list li .link > div:after{
	content: '';
	display: block;
	width: 13%;
	height: 58%;
	position:absolute;
	top: -5px;
	left: -5px;
	background: #fff;
	z-index: 1;
}
#page .guide .guide-list li .link > div:after{
	top: auto;
	left: auto;
	right: -5px;
	bottom: -5px;
	background: #fff;
	z-index: 1;
}
#page .guide .guide-list li .link .img{
	width: 280px;
	margin-right:40px;
	position: relative;
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
	z-index: 2;
	font-weight: bold;
}
#page .guide .guide-list li .link .img span{
	text-align: center;
	background-color: #1E2F4A;
	color: #fff;
	display: block;
	width: 270px;
	padding: 5px;
}
#page .guide .guide-list li .link .img img{
	max-width: 100%;
}
#page .guide .guide-list li .link .text{
	width: calc(100% - 320px);
	box-sizing: border-box;
	line-height: 1.7;
	font-size: 16px;
	position: relative;
	z-index: 2;
}
#page .guide .guide-list li .link .text.img-none{
	width: 100%;
}

/* effect */
#page .effect .inner{
	padding-top: 60px;
	padding-bottom:80px;
}
#page .effect .section-ttl{
	padding-bottom:30px;
}
#page .effect .text{
	max-width:850px;
	margin: 0 auto 25px;
	font-size: 16px;
	line-height: 1.7;
}
#page .effect .clm2-text{
	display: flex;
	justify-content: center;
	align-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	margin-bottom: 30px;
}
#page .effect .clm2-text p{
	height: 100%;
	padding: 3px 5px 5px;
	background:#E4F8FF;
	box-sizing: border-box;
	font-size: 26px;
	font-weight: bold;
	color: #00A0E9;
	line-height: 1.5;
}
#page .effect .clm2-text p.left,
#page .effect .clm2-text p.right{
	max-width: 48%;
}
#page .effect .clm2-text p span{
	background: red;
}

/* .contact-method */
#page .contact-method .inner p{
	font-size: 20px;
}
#page .contact-method .inner{
	padding-top: 60px;
	/*padding-bottom:0px;*/
    padding-bottom:60px;
	text-align: center;
}
@media screen and (max-width: 768px){
    #page .contact-method .inner{
        padding-bottom: 0;
    }
}
#page .contact-method .inner .section-ttl{
	padding-bottom: 25px;
}
#page .contact-method .inner > p{
	margin-bottom: 45px;
	font-weight: 500;
}
#page .contact-method .inner .reason{
	display: block;
	justify-content: space-between;
	max-width: 850px;
	margin: 0 auto 50px;
}
@media screen and (max-width: 768px){
    #page .contact-method .inner .reason{
        margin: 0 auto;
    }   
}
#page .contact-method .inner .reason > *{
	width: 100%;
	box-sizing: border-box;
}
#page .contact-method .inner .reason > ul {
	background: url('../img/page/arrow-contact.svg')no-repeat bottom 8% center;
	display: flex;
	justify-content: space-between;
    align-content: center;
    align-items: center;
    padding: 70px;
}
#page .contact-method .inner .reason > ul li {
	width: 45%;
	margin-bottom: 10px;
}
#page .contact-method .inner .reason > ul li p{
	padding: 25px;
	border-radius: 10px;
	box-sizing: border-box;
	background:#E4F8FF ;
	text-align: center;
	font-size: 26px;
	line-height: 1.6;
}
#page .contact-method .inner .reason > p{
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	box-sizing: border-box;
	background: #00A0E9;
	text-align: left;
	border-radius: 10px;
	font-size: 26px;
	color: #fff;
	line-height: 1.6;
}
#page .contact-method .inner .reason > :has(.more-btn) {
	background: none;
}
#page .contact-method .inner p:last-child{
	margin-bottom: 0px;
}
#page .contact-method .inner .reason p .link{
    display: block;
    width: 100%;
    padding: 25px;
    color: #fff;
    box-sizing: border-box;
    text-align: center;
}

/* however */
#page .however .inner {
	padding-top: 40px;
}
#page .however .inner > p{
	margin-bottom: 20px;
	text-align: center;
	font-weight: 500;
	line-height: 1.6;
}
#page .however .cont-list.list-num li{
	width: calc(50% - 40px);
	margin-bottom: 25px;
}
#page .however .inner > p:last-child{
	max-width:850px;
	margin: 15px auto 0px;
	text-align: left;
	font-weight: normal;
}

/* online-contact */
#page .online-contact .inner{
	padding-top: 60px;
	padding-bottom: 20px;
}
#page .online-contact .inner .section-ttl{
	padding-bottom: 30px;
}
#page .online-contact .inner > p{
	margin-bottom: 35px;
	text-align: center;
	font-weight: 500;
	line-height: 1.7;
}
#page .online-contact .inner > p a{
	text-decoration: underline;
	color: #00A1D5;
}
#page .online-contact .inner .cont-list{
	margin-bottom: 35px;
}
#page .online-contact .inner .cont-list li{
	padding-left: 45px;
    background: url(../img/page/icon-check.svg)no-repeat center left 15px;
    background-color: #E4F8FF;
    background-size: 35px;
    padding-right: 20px;
}
#page .online-contact .inner .cont-list li:before{
	display: none;
}
#page .online-contact .inner .more-btn{
	margin-bottom: 70px;
}

@media (max-width:768px){
	#page .visual .mv-inner .img .img-1 span{
		font-size: 12px;
		padding: 5px 8px;
	}
	#page .section-ttl{
		font-size: 28px;
	}
	#page .section-ttl-q{
		padding-top: 80px;
		font-size: 16px;
	}
	#page .section-ttl-q .big{
		font-size: 21px;
	}
	#page .cont-list{
		display: block;
	}
	#page .cont-list.list-black li{
		width: auto;
	}
	#page .cont-list.list-ques li,
	#page .cont-list.list-num li,
	#page .cont-list.list-num-blue li{
		width: calc(100% - 20px);
		margin: 10px 10px 40px;
	}
	#page .cont-list.list-ques li:before,
	#page .cont-list.list-ques li:after{
		width: 80px;
		height: 100px;
	}
	#page .cont-list.list-num li,
	#page .cont-list.list-num-blue li{
		margin-bottom: 20px;
	}
	#page .cont-list.list-ques li p{
		font-size: 22px;
	}

	#page .cont-fukidasi .img img{
		max-width: 100%;
	}
	#page .cont-fukidasi ul li{
		max-width: 50%;
		width: 200px;
		height: 200px;
	}
	#page .cont-fukidasi ul li p{
		font-size: 14px;
	}
	#page .cont-fukidasi ul li p br.sp-none{
		display: none;
	}
	#page .cont-fukidasi ul li.fukidasi-1{
		top: -33px;
	}
	#page .cont-fukidasi ul li.fukidasi-2{
		top: 30px;
		right: -7px;
	}
	#page .cont-fukidasi ul li.fukidasi-3{
		top: -50px;
		left: -10px;
	}
	#page .cont-fukidasi ul li.fukidasi-4{
		top: 85px;
		left: -10px;
	}
	#page .cont-fukidasi ul li.fukidasi-5{
		top: 155px;
		right: -10px;
	}


	#page .visual .mv-inner h1{
		width: 100%;
		background: url(../../img/home/mv-bg.png)no-repeat center center;
		padding:80px 20px;
		font-size: 35px;
	}
	#page .about .inner{
		padding-bottom: 0px;
	}
	#page .about .fukidasi-big{
	}
	#page .about .fukidasi-big .word{
		max-width: 100%;
		margin: 0 auto;
    	font-size: 20px;
    	width: auto;
	}
	#page .about .fukidasi-big .img{
	}
	#page .about .fukidasi-big .img img{
		max-width: 100%;
	}
	#page .doubt .inner{
		padding-top: 20px;
		padding-bottom: 70px;
		background: url('../img/page/arrow-big.svg')no-repeat top 30% center;
	}
	#page .doubt .inner h3 .big{
		display: inline-block;
		margin-bottom: 5px;
		font-size: 22px;
	}
	#page .doubt2 .section-ttl-q{
		margin-bottom: 10px;
	}
	#page .qa-branch .cont-qa.back-l-blue{
		font-size: 21px;
		position: relative;
		z-index: 2;
	}
	#page .qa-branch ul li{
		width: 100%;
		position: relative;
		z-index: 2;
	}
	#page .qa-branch ul li .cont-qa{
		padding: 15px;
		font-size: 16px;
		letter-spacing: 1px;
		line-height: 1.7;
	}
	#page .qa-branch ul.hav-list2 li:nth-child(2){
		z-index: 1;
	}
	#page .qa-branch ul.hav-list2 li:nth-child(2) .cont-qa:after{
		height: 210%;
		top: -210%;
	}

	#page .prepa .inner .section-ttl{
		font-size: 24px;
	}
	#page .prepa .inner .section-ttl .middle{
		font-size: 22px;
	}
	#page .prepa .inner .section-ttl .small{
		font-size: 22px;
	}
	#page .prepa .cont-list.list-num li{
		width: 100%;
		padding: 40px 10px;
	}
	#page .cont-list.list-num li p,
	#page .cont-list.list-num-blue li p{
		font-size: 15px;
	}

	#page .answer .answer-ttl {
		width: 80%;
		margin: 0 auto;
	}
	#page .answer .answer-ttl .ttl{
		padding: 10px;
		font-size: 20px;
	}
	#page .answer .back-white{
		padding:30px 20px;
	}
	#page .answer .back-white .cont-list li{
		width: 47%;
		margin-bottom: 20px;
	}
	#page .answer .back-white .cont-list li img{
		width: 90%;
		object-fit: contain;
	}
	#page .answer .back-white .cont-list li p:not(.img){
		font-size: 20px;
	}
	#page .answer .back-white .ttl h5{
		font-size: 20px;
		line-height: 1.6;
	}
	#page .answer .cont-fukidasi {
		background-size: contain;
		height: auto;
	}
	#page .answer .cont-fukidasi .img{
		position: relative;
		margin: 10px auto 15px;
	}
	#page .answer .cont-fukidasi ul li,
	#page .answer .cont-fukidasi ul li p{
		width: 100%;
		max-width: 100%;
	}
	#page .answer .cont-fukidasi ul li p{
		background:rgba(228, 248, 255, 0.8);
		font-weight: bold;
	}
	#page .answer .cont-fukidasi ul li p:before,
	#page .answer .cont-fukidasi ul li p:after{
		display:none;
	}
	#page .answer .cont-fukidasi .caption{
		text-align: center;
		font-size: 12px;
    	color: #333;
    	font-weight: bold;
    	line-height: 1.5;
	}
	#page .answer .back-white .cont-list li .hgt{
		min-height: 120px;
	}
	#page .guide .guide-list li .ttl:before{
		width: 40px;
		height: 40px;
	}
	#page .guide .guide-list li .ttl span{
		width: 100%;
		padding:10px 15px;
		margin: 0 auto;
		padding-left: 30px;
		font-size: 17px;
		line-height: 1.3;
	}
	#page .guide .guide-list li .cont{
		padding: 20px 0px;
		margin-bottom: 10px;
	}
	#page .guide .guide-list li .cont.img-none .list ul li{
		width: 100%;
		margin-right: 0px;
		margin-bottom: 15px;
	}
	#page .guide .guide-list li .cont .img{
		max-width: 100%;
		margin: 0 auto 20px;
	}
	#page .guide .guide-list li .cont .list{
		width: 100%;
	}
	#page .guide .guide-list li .cont .list li p {
	    padding-left: 40px;
	    background: url(../img/page/icon-check.svg)no-repeat top left 0px;
	    background-size: 30px;
	    font-size: 15px;
	    font-weight: 400;
	    line-height: 1.5;
	}
	#page .guide .guide-list li .link{
		width: 100%;
	}
	#page .guide .guide-list li .link > div{
		padding: 20px;
	}
	#page .guide .guide-list li .link .img{
		width: 100%;
		margin: 0 auto 20px;
	}
	#page .guide .guide-list li .link .text{
		width: 100%;
	}
	#page .guide .guide-list li .link > div:before,
	#page .guide .guide-list li .link > div:after{
		width: 5%;
		height: 30%;
	}
	#page .guide .list-clm2{
		padding: 0px;
	}
	#page .guide .list-clm2 ul{
		margin-bottom: 20px;
	}
	#page .guide .list-clm2 li{
		width: calc(50% - 5px);
		margin-right: 10px;
		margin-bottom: 10px;
	}
	#page .guide .list-clm2 li p{
		padding: 10px;
		text-align: justify;
		font-size: 15px;
	}

	#page .effect .clm2-text {
		flex-wrap: wrap;
	}
	#page .effect .clm2-text p{
		position: relative;
		font-size: 20px;
		z-index: 1;
	}
	#page .effect .clm2-text p:not(.left),
	#page .effect .clm2-text p:not(.right){
		transform: rotate(90deg);
	}
	#page .effect .clm2-text p.left,
	#page .effect .clm2-text p.right{
		max-width: 100%;
		width: 100%;
		transform: rotate(0deg);
		z-index: 2;
	}

	#page .contact-method .inner .reason{
		flex-wrap: wrap;
	}
	#page .contact-method .inner .reason > *{
		width: 100%;
	}
	#page .contact-method .inner .reason > ul {
		display: flex;
		justify-content: space-between;
	    background: url(../img/page/sp/arrow-contact.svg)no-repeat center bottom 10px;
    	background-size: 50px;
    	padding:0 0 40px 0;
	}
	#page .contact-method .inner .reason > ul li{
		width: 48%;
	}
	#page .contact-method .inner .reason > ul li p{
		display: flex;
		justify-content: space-between;
		align-items: center;
		align-content: center;
		min-height: 160px;
		font-size: 16px;
	}
	#page .contact-method .inner p:last-child{
		font-size: 18px;
		/*padding-bottom: 20px;*/
	}

	#page .contact-method .inner .reason > :has(.more-btn) {
		padding-bottom: 60px;
	}

	#page .however .cont-list.list-num li{
		width: 100%;
	}
}

/* #page .test */

#page.test .cont-list.list-black .show-cnt2-1{
	width: auto;
}
#page.test .cont-list.list-black .show-cnt2-1:after{
	content: "↓";
    text-align: center;
    display: block;
    font-size: 30px;
    font-weight: 900;
}
#page.test .guide .list-clm2 li{
	width: 100%;
	margin-right: 0;
}
@media(max-width: 768px){
	#page.test .cont-list.list-black li p{
		font-size: 22px
	}
	#page.test .cont-list.list-black li:first-child:after{
 	   color: #fff;
	}
}

#page.test .doubt2 .section-ttl-q{
	display: none;
}


/* company */

.company .visual .mv-inner h1 {
	background: none!important;
	width: 55%!important;
	position: absolute;
	right: 0;
	padding: 0 0 0 40px!important;
	top: 50%;
	transform: translateY(-50%);
}
.company .visual .mv-inner {
	position: relative;
  min-height: 340px!important;
  background-position: center!important;
	display: block!important;
}


.company .list {
	margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
}

.company .list li {
	display: table;
    border: solid 5px #EBEBEB;
    border-radius: 8px;
    background: #00A0E9;
    max-width: 240px;
    width: 24%;
    box-sizing: border-box;
    text-align: center;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    min-height: 140px;
}
.company .text{
	margin:0 0 15px;
}

.company .list li strong {
    font-size: 42px;
    display: inline-block;
    vertical-align: baseline;
}

.company .list li span {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}

.company .rinen {
	padding-top: 110px;
	background: url(../img/company/bg-rinen.jpg)no-repeat;
	background-size: cover;
	color: #fff;
	text-align: center;
}

.company .rinen .ttl {
    display: block;
    width: 100%;
    padding: 0px 0px 35px;
    text-align: center;
    font-size: 48px;
    line-height: 1;
    font-weight: 900;
		letter-spacing: 0.1em;
}

.company .rinen .text {
    font-size: 26px;
		font-weight: 600;
}

.company .message {
    padding-top: 100px;
}

.company .flex-2col {
    display: flex;
    justify-content: space-between;
}

.company .flex-2col-content {
    max-width: 550px;
    width: 50%;
}

.company .flex-2col-img {
    width: 400px;
}

.company .flex-2col-img figure {
    margin: 0;
    line-height: 1;
}

.company .message .ttl {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 30px;
}

.company .flex-2col-img figcaption {
    text-align: right;
    padding-top: 15px;
    font-size: 48px;
}

.company .flex-2col-img figcaption small {
    display: block;
    font-size: 16px;
    padding:0 118px 5px 0;
}
@media screen and (max-width: 768px){
	.company .flex-2col-img figcaption small {
	    padding:0 0 5px 0;
	}
	.company .history .text{
		font-size: 15px;
	}
}

.company .visual .mv-inner h1 {
	background: none!important;
	width: 55%!important;
	position: absolute;
	right: 0;
	padding: 0 0 0 40px!important;
	top: 50%;
	transform: translateY(-50%);
	font-size: 2.3vw!important;
	line-height: 2!important;
}
.company .ourgroup {
    padding-top: 100px;
}

.company .ourgroup .img {
    text-align: center;
}

.company .ourgroup .img img {
	width:993px;
	max-width: 100%;
}

.company .table-about,
.company .table-history {
    width: 100%;
    margin: 0 auto;
}
.company .table-about tr{
    border-bottom: dotted 1px #999999;
}
.company .table-history tr {
    border: solid 1px #CCC;
}
.company .table-about th{
    padding: 20px 0;
    vertical-align: top;
    font-size: 18px;
    font-weight: 900;
}
.company .table-history th {
    padding: 10px 0 10px;
    font-size: 18px;
    font-weight: 900;
}

.company .table-about th {
	width: 300px;
}
.company .text-a-c{
	text-align:center;
}
.company .table-history tr th{
	width: 20%;
}
.company .table-history tr td,
 .company .table-history tr th.head{
	width: 40%;
}
.company .table-history tr:first-child th:nth-child(2){
	width: auto;
}
.company .table-history th {
	width: 200px;
	border-left:1px solid #CCC;
	text-align: center;
	background:#EFEFEF;
}
.company .table-about td{
    padding: 20px 0;
    vertical-align: top;
    font-size: 16px;
    font-weight: 600;
}
.company .table-about .bold{
	font-weight: 900;
}
.company .table-history td {
    padding: 10px 10px 10px;
    vertical-align: top;
    font-size: 16px;
    font-weight: 600;
		border-left:1px solid #CCC;
}
.company .red{
	color: #C7000B;
}
.company .about {
    padding-bottom: 100px;
}

.company .history {
    padding-top: 100px;
}
.company span.pcbr {
    display: block;
}
@media screen and (max-width: 1100px) {
	.company .list li {
	    font-size: 16px;
	    min-height: 120px;
	}

	.company .list li strong {
	    font-size: 30px;
	}

	.company .list {
	    margin-bottom: 30px;
	}

	.company .rinen .ttl {
	    font-size: 40px;
	}

	.company .rinen .text {
	    font-size: 20px;
	}

	.company .message .ttl {
	    font-size: 20px;
	}

	.company .flex-2col-content {
	    padding-right: 30px;
	    width: calc(100% - 300px);
	}

	.company .flex-2col-img {
	    width: 300px;
	}

	.company .flex-2col-img figure img {
	    max-width: 100%;
	}

	.company .flex-2col-img figcaption {
	    font-size: 30px;
	}

	.company .ourgroup .img {
	    max-width: 700px;
	    margin: 0 auto;
	}
	.company .visual .mv-inner h1 {
	    width: 55%!important;
	    font-size: 2.2vw!important;
	}

	.company span.pcbr {
 	   display: inline;
	}
}

@media screen and (max-width: 768px){
	.company .visual .mv-inner {
	    min-height: 100px!important;
	}

	.company .visual .mv-inner h1 {
	    padding: 0!important;
	    font-size: 3vw!important;
	}

	.company .list li {
    width: 49%;
    margin-bottom: 10px;
	}

	.company .list {
	    flex-wrap: wrap;
	    margin-bottom: 10px;
	}

	.company .intro .text {
	    font-size: 14px;
	}


	.company .rinen {
	    padding-top: 60px;
	}

	.company .rinen .ttl {
	    font-size: 30px;
	    padding-bottom: 20px;
	}

	.company .rinen .text {
	    font-size: 16px;
	}

	.company .message {
	    padding-top: 60px;
	}

	.company .flex-2col {
	    display: block;
	}

	.company .flex-2col-content {
	    width: 100%;
	    padding: 0;
	    margin-bottom: 30px;
	}

	.company .flex-2col-content .text {
	    font-size: 14px;
	}

	.company .message .ttl {
	    line-height: 1.6;
	    margin-bottom: 10px;
	}

	.company .message .text {
		font-size: 15px;
	}

	.company .flex-2col-img {
	    width: 200px;
	    margin: 0 auto;
	}

	.company .flex-2col-img figcaption {
	    font-size: 20px;
	    padding-top: 10px;
			text-align: left;
	}

	.company .flex-2col-img figcaption small {
	    font-size: 12px;
	}

	.company .ourgroup {
	    padding-top: 50px;
	}

	.company .table-about th{
	    display: block;
	    width: 100%;
	    padding: 10px 0 0;
	    font-size: 16px;
	}

	.company .table-about td{
	    display: block;
	    width: 100%;
	    padding: 0 0 10px;
	    font-size: 14px;
	}
	.company .scroll-table {
		overflow: auto;
		white-space: nowrap;
		overflow-y:scroll;
		height: 500px;
	}

	.company .about {
	    padding-bottom: 60px;
	}

	.company .history {
	    padding-top: 60px;
	}
	.company .table-history th{
		padding: 10px 12px;
	}
	.company .table-history th.ta-l{
		text-align: left;
	}
	.company .table-history th.fixed,
	.company .table-history th.fixed02{
		position: sticky;
		top:0;
		left: 0;
	}
	.company .table-history th.fixed03{
		position: sticky;
		top:57px;
		left:102px;
	}

	.company .table-history th.fixed:before,
	.company .table-history th.fixed02:before,
	.company .table-history th.fixed03:before{
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: 100%;
    height: 100%;
    border: 1px solid #ccc;
  }
  .company .table-history th.fixed{
  	z-index: 1;
  }
  .company .table-history th.fixed02{
  	z-index: 2;
  }
	.company .table-history{
		margin-top: 15px;
	}
}

/*
#page02.company .table-about,
#page02.company .table-history {
    width: 100%;
    margin: 0 auto;
}
#page02.company .table-about tr{
    border-bottom: dotted 1px #999999;
}
#page02.company .table-history tr {
    border: solid 1px #CCC;
}
#page02.company .table-about th{
    padding: 20px 0;
    vertical-align: top;
    font-size: 18px;
    font-weight: 900;
}
#page02.company .table-history th {
    padding: 10px 0 10px;
    font-size: 18px;
    font-weight: 900;
}

#page02.company .table-about th {
	width: 300px;
}
#page02.company .text-a-c{
	text-align:center;
}
#page02.company .table-history th {
	width: 200px;
	border-left:1px solid #CCC;
	text-align: center;
	background:#EFEFEF;
}
#page02.company .table-about td{
    padding: 20px 0;
    vertical-align: top;
    font-size: 16px;
    font-weight: 600;
}
#page02.company .table-about .bold{
	font-weight: 900;
}
#page02.company .table-history td {
    padding: 10px 10px 10px;
    vertical-align: top;
    font-size: 16px;
    font-weight: 600;
		border-left:1px solid #CCC;
}

#page02.company .about {
    padding-bottom: 100px;
}

#page02.company .history {
    padding-top: 100px;
}

@media screen and (max-width: 768px){
	#page02.company .visual .mv-inner {
	    min-height: 100px!important;
	}

	#page02.company .visual .mv-inner h1 {
	    padding: 0!important;
	    font-size: 3vw!important;
	}

	#page02.company .list li {
    width: 49%;
    margin-bottom: 10px;
	}

	#page02.company .list {
	    flex-wrap: wrap;
	    margin-bottom: 10px;
	}

	#page02.company .intro .text {
	    font-size: 14px;
	}


	#page02.company .rinen {
	    padding-top: 60px;
	}

	#page02.company .rinen .ttl {
	    font-size: 30px;
	    padding-bottom: 20px;
	}

	#page02.company .rinen .text {
	    font-size: 16px;
	}

	#page02.company .message {
	    padding-top: 60px;
	}

	#page02.company .flex-2col {
	    display: block;
	}

	#page02.company .flex-2col-content {
	    width: 100%;
	    padding: 0;
	    margin-bottom: 30px;
	}

	#page02.company .flex-2col-content .text {
	    font-size: 14px;
	}

	#page02.company .message .ttl {
	    line-height: 1.6;
	    margin-bottom: 10px;
	}

	#page02.company .flex-2col-img {
	    width: 200px;
	    margin: 0 auto;
	}

	#page02.company .flex-2col-img figcaption {
	    font-size: 20px;
	    padding-top: 10px;
			text-align: left;
	}

	#page02.company .flex-2col-img figcaption small {
	    font-size: 12px;
	}

	#page02.company .ourgroup {
	    padding-top: 50px;
	}

	#page02.company .table-about th{
	    display: block;
	    width: 100%;
	    padding: 10px 0 0;
	    font-size: 16px;
	}

	#page02.company .table-about td{
	    display: block;
	    width: 100%;
	    padding: 0 0 10px;
	    font-size: 14px;
	}
	#page02.company .scroll-table {
		overflow: visible;
		white-space: normal;
	}

	#page02.company .about {
	    padding-bottom: 60px;
	}

	#page02.company .history {
	    padding-top: 60px;
	}
	#page02.company .table-history th{
		padding: 10px 12px;
	}
	#page02.company .table-history{
		margin-top: 15px;
	}
	#page02.company .table-history tr{
		display: block;
		margin-bottom:10px;
	}
	#page02.company .table-history th{
		display: block;
		width:auto;
		border:none;
	}
	#page02.company .table-history .sp-none{
		display: none;
	}
	#page02.company .table-history td{
		display: list-item;
		border:none;
		list-style:none;
	}
	#page02.company .table-history td:nth-of-type(1):before{
		content: '経営全般に関わること';
		display: block;
		background-color: #ccc;
		padding: 0 5px;
	}
	#page02.company .table-history td:nth-of-type(2):before{
		display: block;
		content: '商品に関わること';
		background-color: #ccc;
		padding: 0 5px;
	}

}
*/

/* case study */


.case .visual .mv-inner h1 {
	background: none!important;
	width: 40%!important;
	position: absolute;
	right: 0;
	padding: 0 0 0 40px!important;
	top: 50%;
	transform: translateY(-50%);
}
.case .visual .mv-inner {
	position: relative;
  min-height: 340px!important;
  background-position: center!important;
	display: block!important;
}

.case .section-ttl {
	font-size: 48px!important;
}

.case .flex-3col-block {
    max-width: 320px;
    width: 32%;
}

.case .flex-3col {
    display: flex;
    /* justify-content: space-between; */
    align-items: flex-start;
		flex-wrap: wrap;
}
.case .flex-3col.category-content {
    justify-content: space-between;
}

.case .flex-3col-block .category {
    background: #00A0E9;
    width: 100%;
    border-radius: 8px;
    min-height: 68px;
}

.case .flex-3col-block .category a {
    display: block;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 1;
    padding: 24px 30px;
}

.case .flex-3col-block ul {
    margin-top: 15px;
}

.case .flex-3col-block ul li {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}

.case .flex-3col-block ul li.cat-item-none{
	display: none;
}

.case .flex-3col-block ul li:last-child {
    margin: 0;
}

.case .category-content {
    margin-top: 60px;
}

.case .archive-content {
    margin: 80px auto 0px;
}

.case .archive-block {
    max-width: 320px;
    width: 32%;
    margin: 0 32px 60px 0;
}
.case .archive-block:nth-of-type(3n),
.case .archive-block:last-child {
    margin: 0 0 60px;
}

.case .archive-img {
    width: 100%;
    height: 240px;
    border-radius: 6px;
    overflow: hidden;
    margin: 0 auto 15px;
}
.case .archive-img img {
    width: 130%;
		height: auto;
}

.case .archive-block a {
    display: block;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.case .archive-block p {
    font-size: 20px;
    line-height: 1.5;
}

.case .archive-block span {
    display: block;
    font-size: 16px;
    line-height: 1;
    padding-top: 13px;
}

.case .single-pic {
    max-width: 1020px;
    width: 100%;
    height: auto;
    border-radius: 6px;
    overflow: hidden;
    margin: 0 auto 50px;
		text-align:center;
}

.case .single-content {
    max-width: 870px;
    margin: 0 auto;
    padding: 0 30px;
}

.case .single-table th {
    text-align: left;
    font-size: 18px;
    font-weight: 900;
    width: 300px;
    vertical-align: middle;
    padding: 20px 0;
}

.case .single-table td {
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    vertical-align: middle;
    padding: 20px 0;
}

.case .single-table {
    width: 100%;
    margin: 0 auto 80px;
}

.case .single-table tr {
    border-bottom: dotted 1px #999999;
}

.case .single-table tr:last-child {
	border-bottom: none;
}

.case .single-button {
    margin: 100px auto 0;
    max-width: 320px;
    text-align: center;
    background: #00A0E9;
    min-height: 68px;
    border-radius: 8px;
}

.case .single .inner {
    padding-bottom: 200px!important;
}

.case .single-button a {
    display: block;
    line-height: 1;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    padding: 24px;
}

@media screen and (max-width: 1100px){
	.case .section-ttl {
	    font-size: 40px!important;
	}

	.case .archive-img {
	    height: 200px;
	}

	.case .visual .mv-inner h1 {
	    width: 35%!important;
	    font-size: 35px!important;
	}

	.case .single-table th {
    width: 200px;
	}

	.case .single .inner {
	    padding-bottom: 100px!important;
	}

	.case .single-button {
	    margin: 60px auto 0;
	}

	.case .single-pic {
    height: 400px;
	}

}

@media screen and (max-width: 768px){
	.case .visual .mv-inner {
			min-height: 100px!important;
	}

	.case .visual .mv-inner h1 {
			padding: 0!important;
			font-size: 25px!important;
	}


	.case .section-ttl {
    font-size: 30px!important;
	}

	.case .text {
	    font-size: 14px;
	}

	.case .category-content {
	    margin-top: 30px;
	}

	.case .flex-3col-block .category {
	    min-height: inherit;
	    border-radius: 4px;
	}

	.case .flex-3col-block .category a {
	    padding: 0;
	    font-size: 14px;
	    padding: 10px;
	    font-weight: 600;
	}

	.case .flex-3col-block ul li {
	    font-size: 12px;
	    margin-bottom: 10px;
	}

	.case .flex-3col-block ul {
	    margin-top: 10px;
	}

	.case .archive-content {
	    margin: 40px auto 80px;
	}

	.case .archive-img {
	    height: 120px;
	    margin-bottom: 7px;
	}

	.case .archive-block {
	    width: 49%;
	    margin-bottom: 30px;
	}

	.case .archive-block p {
	    font-size: 14px;
	}

	.case .archive-block span {
	    font-size: 12px;
	    padding-top: 5px;
	}

	.case .single-pic {
    height: 240px;
    margin: 0 auto 40px;
 }

 .case .single-content {
    padding: 0;
	}

	.case .single-table th {
	    font-size: 16px;
	    width: 150px;
	    padding: 10px 0;
	    vertical-align: top;
	}

	.case .single-table td {
	    font-size: 14px;
	    padding: 10px 0;
	    vertical-align: top;
	}

	.case .single-table {
	    margin: 0 auto 40px;
	}

	.case .single-button {
	    margin: 40px auto 0;
	}

}




/* before */

.before .visual .mv-inner h1 {
	background: none!important;
	width: 55%!important;
	position: absolute;
	right: 0;
	padding: 0 0 0 40px!important;
	top: 50%;
	transform: translateY(-50%);
	font-size: 2.3vw!important;
	line-height: 2!important;
}
.before .visual .mv-inner {
	position: relative;
  min-height: 340px!important;
  background-position: center!important;
	display: block!important;
}

.before .section-subttl {
    font-size: 30px;
    font-weight: 600;
    margin: 40px 0 10px;
    color: #00A0E9;
}
.before .inner a{
	text-decoration:underline;
	color:#00A0E9;
	font-weight:bold;
}
.before .inner .text{
	margin:0 0 20px;
}
.before .inner .img-scr img{
	width:50%;
	height: auto;
	border:1px solid #CCC;
	margin:0 0 20px;
}
.before .inner h2.catch{
  font-size: 2vw;
  font-weight: 900;
  letter-spacing: 0.05em;
}
.before .inner h2.catch .big{
  font-size: 2.4vw;
  font-weight: 900;
  margin-bottom: -20px;
  line-height:initial;
}
.before .inner h2.catch .small{
  font-size: 1.6vw;
  font-weight: 900;
  margin-bottom: -20px;
}
.before .inner h2.catch .indent01{
  font-weight: 900;
	padding-left: 1em;
	margin: 0 0 -20px 0;
	line-height: initial; 
}
.before .inner h2.catch .indent02{
	font-size: 2.4vw;
  font-weight: 900;
  letter-spacing: 0.06em;
	padding-left: 1.8em;
}

@media screen and (max-width: 1100px){
	.before .section-ttl {
	    font-size: 30px!important;
	}

	.before .visual .mv-inner h1 {
	    font-size: 2.2vw!important;
	    width: 55%!important;
	    line-height: 1.3!important;
	}

	.before .section-subttl {
	    font-size: 25px;
	    margin: 30px 0 0;
	}
	.before .inner h2.catch{
	  font-size: 4.0vw;
	  font-weight: 900;
	}
	.before .inner h2.catch .big{
	  font-size: 5.0vw;
	  font-weight: 900;
	  letter-spacing: 0.02em;
	}
	.before .inner h2.catch .small{
	  font-size: 3.2vw;
	  font-weight: 900;
	}
	.before .inner h2.catch .indent01{
	  font-weight: 900;
		padding-left: 0.5em;
		margin: 0 0 -20px 0;
		line-height: initial; 
	}
	.before .inner h2.catch .indent02{
		font-size: 4.0vw;
	  font-weight: 900;
	  letter-spacing: 0.06em;
		padding-left: 1em;
	}
}

@media screen and (max-width: 768px){
	.before .visual .mv-inner {
			min-height: 100px!important;
	}

	.before .visual .mv-inner h1 {
			padding: 0!important;
			font-size: 3vw!important;
	}

	.before .section-ttl {
    font-size: 30px!important;
	}

	.before .text {
	    font-size: 14px;
	}

	.before .section-ttl {
	    font-size: 23px!important;
	}

	.before .section-subttl {
	    font-size: 20px;
	}
}

/* privacy */

.privacy .visual .mv-inner h1 {
	background: none!important;
	width: 55%!important;
	position: absolute;
	right: 0;
	padding: 0 0 0 40px!important;
	top: 50%;
	transform: translateY(-50%);
	font-size: 2.3vw!important;
	line-height: 2!important;
}
.privacy .visual .mv-inner {
	position: relative;
  min-height: 340px!important;
  background-position: center!important;
	display: block!important;
}

.privacy .section-subttl {
    font-size: 30px;
    font-weight: 600;
    margin: 40px 0 10px;
    color: #00A0E9;
}


@media screen and (max-width: 1100px){
	.privacy .section-ttl {
	    font-size: 30px!important;
	}

	.privacy .visual .mv-inner h1 {
	    font-size: 2.2vw!important;
	    width: 55%!important;
	    line-height: 1.3!important;
	}

	.privacy .section-subttl {
	    font-size: 25px;
	    margin: 30px 0 0;
	}

}

@media screen and (max-width: 768px){
	.privacy .visual .mv-inner {
			min-height: 100px!important;
	}

	.privacy .visual .mv-inner h1 {
			padding: 0!important;
			font-size: 3vw!important;
	}

	.privacy .section-ttl {
    font-size: 30px!important;
	}

	.privacy .text {
	    font-size: 14px;
	}
	.privacy .section-ttl {
	    font-size: 23px!important;
	}

	.privacy .section-subttl {
	    font-size: 20px;
	}


}

/* お問い合わせページ */
#page.contact footer{
	margin: 0 auto;
	padding: 40px 0 0;
}
#page.contact footer .footer-content.info{
	padding-bottom: 40px;
}

#page.contact main.main-content section .inner{
	padding: 30px 20px 50px;
}
.contact .text{
	margin: 0 0 20px 0;
	line-height: 1.75;
}
.contact .text a{
	text-decoration: underline;
}
.contact_table th .contact_hissu{
	background: #e40020;
	display: inline-block;
	padding: 2px 5px;
	line-height: 1;
	font-size: 12px;
	font-weight: normal;
	color: #fff;
	margin:0 0 0 5px;
}
.contact_table{
	width:100%;
	margin:0 0 10px;
	table-layout:fixed;
}
.contact_table tr:nth-child(odd){
	background:#f6f6f6;
}
.contact_table th{
	width: 25%;
	padding: 10px 20px 10px 25px;
	box-sizing: border-box;
	font-weight: bold;
	font-size: 15px;
	line-height: 1.4;
}
.contact_table td{
	width: 75%;
	padding: 10px 25px 10px 0;
	box-sizing: border-box;
	font-size: 16px;
}
.contact_table td .address,
.contact_table td input[type=text],
.contact_table td input[type=email],
.contact_table td input[type=url]{
	max-width: 100%;
	padding: 8px;
	box-sizing: border-box;
	border: #CCC 1px solid;
}
.contact_table td textarea{
	width: 100%;
	padding: 8px;
	box-sizing: border-box;
	font-size: 16px;
	background: #fff;
	border: #CCC 1px solid;
}
.contact_table td select{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 400px;
	padding: 8px;
	border-radius: 0;
	border: #CCC 1px solid;
}
.contact_table td.name-w input{
	width: 200px;
}
.contact_table td input.zip1{
	width: 80px;
	margin: 0 5px;
}
.contact_table td input.zip2{
	width: 100px;
	margin: 0 5px;
}
.contact_table td .example-flex{
    display: flex;
    gap: 20px 10px;
}
.contact_table td .example-flex__box{
    width: 50%;
}
.contact_table td span.example{
	color:#999;
    display: block;
    text-indent: -1.75em;
    padding: 0 0 0 1.75em;
}

.form-btn{
	text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.form-btn input[type=submit]{
	width: 300px;
	padding: 15px 30px;
	box-sizing: border-box;
	background: #000;
	border: 2px solid #000;
	color: #fff;
	transition: all 0.3s;
}
.form-btn input[type=submit]:hover{
	background: #fff;
	border: 2px solid #0054a7;
	color: #0054a7;
}

.contact .visual .mv-inner h1 {
	background: none!important;
	/*width: 55%!important;*/
	width: 100%!important;
	position: absolute;
	right: 0;
	padding: 0 !important;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5vw!important;
	line-height: 1.5!important;
}
#page.contact .visual .mv-inner h1 {
	text-align: center;
}
.contact .visual .mv-inner {
	position: relative;
	min-height: 60px!important;
	background-position: center!important;
	display: block!important;
}

.contact .section-subttl {
    font-size: 30px;
    font-weight: 600;
    margin: 40px 0 10px;
    color: #00A0E9;
}
.contact .mw_wp_form_input .back-btn{
	display: none;
}

.contact .mw_wp_form_confirm .back-btn{
	display: block;
}
.contact .contact_send .txt01{
	text-align: center;
}
.contact .contact_send p > a{
	text-decoration: underline;
	color: #0054a7;
}
.contact_table td .fl-box{
	display: flex;
}
.contact_table td .fl-box .fl-box-zip{
	width: 250px;
}
.contact_table td .fl-box .fl-box-pref{
	width: calc(100% - 250px);
}
.contact_table td .fl-box .fl-box-pref input[type=text]{
	max-width: 240px;
}
@media screen and (min-width: 769px){
	.contact .contact_send p > a:hover{
		text-decoration: none;
	}	
}
.contact .contact_send p > span{
	display: block;
	text-align: center;
}
@media screen and (max-width: 1100px){
	.contact .section-ttl {
	    font-size: 30px!important;
	}

	.contact .visual .mv-inner h1 {
	    font-size: 3.0vw!important;
	    width: 100%!important;
	    line-height: 1.3!important;
	}

	.contact .section-subttl {
	    font-size: 25px;
	    margin: 30px 0 0;
	}

}
@media screen and (max-width: 880px){
	#page.contact #back-btn{
		display: none;
	}
}
@media screen and (max-width: 768px){
	.contact .visual .mv-inner {
			min-height: 60px!important;
	}

	.contact .visual .mv-inner h1 {
			padding: 0!important;
			font-size: 4.0vw!important;
	}
	#page.contact main.main-content section .inner{
		padding: 20px 20px 30px;
	}

	.contact .section-ttl {
    font-size: 30px!important;
	}

	.contact .text {
	    font-size: 14px;
	}
	.contact .text br.pc{
		display: none;
	}

	.contact .section-ttl {
	    font-size: 23px!important;
	}

	.contact .section-subttl {
	    font-size: 20px;
	}
	.contact .inner form{ margin: 0 -3%;}

	.contact .inner table th{

		width: 100%;

		float: left;

		display: block;

	}

	.contact .inner table th{ padding: 15px 15px 0;}

	.contact .inner table td{

		width: 100%;

		float: left;

		display: block;

		padding: 10px 15px 15px;

	}

	.contact .inner table td input[type=text],

	.contact .inner table td input[type=url],

	.contact .inner table td input[type=email]{ width: 100%;}

	.contact .inner select { width: 100%;}

	.contact .inner .pricy-box{ margin: 0 3%;}

	.contact .inner .text{ margin: 0 3% 20px;}

	.contact .form-btn { margin: 0 3%; }

	.contact .form-btn li {

		display: block;

		margin: 0 0 10px;

	}

	.contact .form-btn li input[type=submit]{

		width: 100%;

		padding: 15px 30px;

		box-sizing: border-box;

	}

	.contact .contact-tel-box_temp{

		width: 94%;

		margin: 30px 3% ;

		padding: 20px;

	}

	.contact .contact-tel-box_temp .text{

		font-size: 16px;

		line-height: 1.8;

		text-align: center;

	}

	.contact .contact-tel-box_temp .text a{

		padding: 0;

		font-size: 28px;

		color: #d6000f;

	}

	.contact .contact-tel-box_temp ul li{

		float: none;

		margin: 0 0 10px;

		line-height: 1;

	}

	.contact .contact-tel-box_temp .img{ display: none;}
	.contact .inner .contact_table td input.zip1{
		width: 30%;
		margin: 0 5px;
	}
	.contact .inner .contact_table td input.zip2{
		width: 45%;
		margin: 0 5px;
	}
	.contact_table td .fl-box{
		display: block;
	}
	.contact_table td .fl-box .fl-box-zip{
		width: 100%;
	}
	.contact_table td .fl-box .fl-box-pref{
		width: 100%;
		margin: 10px 0 0;
	}
	.contact_table td .fl-box .fl-box-pref input[type=text]{
		max-width: 100%;
	}
	.contact_table td span.example{
		font-size: 15px;
	}
    .contact_table td .mwform-radio-field.horizontal-item{
        display: block;
        width: 100%;
        margin-left: 0;
    }
}

@media screen and (max-width: 540px){
    .contact_table td .example-flex{
        flex-wrap: wrap;
        gap: 5px 5px;
    }
    .contact_table td .example-flex__box{
        width: 100%;
    }
    .contact_table td span.example{
		font-size: 13px;
	}
}


/* お問い合わせ完了 */
#page.contact.contact_thanks footer .footer-content.contact{
	display: none;
}
#page.contact.contact_thanks .mw_wp_form_complete{
	padding: 60px 0;
}

/* .pg-top-approach
=================================================== */
.pg-top-approach{
    background: var(--color_bg);
    padding: 110px 0 160px;
}
@media screen and (max-width:768px){
    .pg-top-approach{
        padding: 65px 0 70px;
    }   
}
.pg-top-approach__title{
    margin: 0 0 0.5em;
}
.pg-top-approach__title span{
    font-size: 3.0rem;
}
@media screen and (max-width:768px){
    .pg-top-approach__title span{
        font-size: 1.75rem;
    }   
}
.pg-top-approach__text{
    font-size: 1.25rem;
    margin: 0 0 1.25em;
}
@media screen and (max-width:768px){
    .pg-top-approach__text{
        font-size: 1.0rem;
        line-height: 1.625;
        margin: 0 0 2.0em;
    }   
}
.pg-top-approach__card{
    gap: 40px 4.75%;
}
@media screen and (max-width:768px){
    .pg-top-approach__card{
        flex-wrap: wrap;
    }
}
.pg-top-approach__card-item{
    width: calc(100% / 3);
    background: #fff;
}
@media screen and (max-width:768px){
    .pg-top-approach__card-item{
        width: 100%;
    }
}
.pg-top-approach__card-item .img-cont{
    position: relative;
}
.pg-top-approach__card-item .img-cont .title{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    width: 100%;
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
    padding: 0 10px;
    box-sizing: border-box;
}
@media screen and (max-width:1100px){
    .pg-top-approach__card-item .img-cont .title{
        font-size: min( 2.5vw, 1.625rem);
    }
}
@media screen and (max-width:768px){
    .pg-top-approach__card-item .img-cont .title{
        font-size: min( 6.0vw, 1.3125rem);
    }
}
.pg-top-approach__card-item .text-cont{
    padding: 18px 20px 40px;
}
@media screen and (max-width:768px){
    .pg-top-approach__card-item .text-cont{
        padding: 18px 20px;
    }   
}
.pg-top-approach__card-item .text-cont .text{
    line-height: 1.6;
}
.pg-top-approach__card-item .text-cont .btn{
    margin: 27px 0 0;
}