@charset "utf-8";


/*resetCSS*/
html{
font-size: 62.5%;
-webkit-text-size-adjust: 100%;
color:#131313;
background:#FFF;
}
body,div,
dl,dt,dd,ul,ol,li,
h1,h2,h3,h4,h5,h6,
form,fieldset,input,textarea,
p,
th,td{
margin:0;
padding:0;
}
table{
border-collapse:collapse;
border-spacing:0;
}
fieldset,
img{ border:0; }
address,
caption,
em{
font-style:normal;
font-weight:normal;
}
ol,ul{ list-style:none; }
caption, th{ text-align:left; }
h1,h2,h3,h4,h5,h6{
font-size:100%;
font-weight:normal;
}
q:before,q:after{ content:''; }
abbr,acronym{
border:0;
font-variant:normal;
}
sup{ vertical-align:text-top; }
sub{ vertical-align:text-bottom; }
input,textarea,select{
font-family:inherit;
font-size:inherit;
font-weight:inherit;
*font-size:100%;
}
*{
margin:0;
padding:0;
}
strong,
th{ font-weight:bold;}

#content{ }
.section{
clear:both;
margin-bottom:30px;
}

body{
font-size:1.6rem;
font-family: "Noto Sans Japanese";
}

*, *:before, *:after{
-webkit-box-sizing:border-box;
-moz-box-sizing:border-box;
-o-box-sizing:border-box;
-ms-box-sizing:border-box;
box-sizing:border-box;
}

h1{
font-size:2.8rem;
font-weight:bold;
margin-bottom:30px;
}
h2{
font-size:2.8rem;
font-weight:bold;
margin-bottom:1.5em;
}
h2 span{ }
h3{
font-size:24px;
font-weight:bold;
margin-bottom:15px;
}
h3 span{ }
h4{
font-size:95%;
font-weight:bold;
margin-bottom:15px;
}
h5{
font-size:90%;
font-weight:bold;
margin-bottom:10px;
}
p{ font-size:16px;
margin-bottom:1.5em;
line-height:180%; }
.anchor a{ }

a{
text-decoration: none;
color: #133882;
}
a:hover{
text-decoration:underline;
}
a:hover img{
opacity: 0.7;
transition: all .3s;
}

/*clear Fix*/
.clearFix:after{
content:".";
display:block;
height:0;
clear:both;
visibility:hidden;
}
.clearFix{
display:inline-table;
min-height:1%;
}
* html .clearFix{
height:1%;
}
.clearFix{
display:
block;
}
/* フォント指定
=========================================================================================== */
@font-face {
    font-family: 'Noto Sans Japanese';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/NotoSansCJKjp-Medium.woff2') format('woff2'),
	     url('../fonts/NotoSansCJKjp-Medium.woff') format('woff'),
	     url('../fonts/NotoSansCJKjp-Medium.ttf')  format('truetype'),
         url('../fonts/NotoSansCJKjp-Medium.eot') format('embedded-opentype');
}
@font-face {
    font-family: 'Noto Sans Japanese';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/NotoSansCJKjp-Bold.woff2') format('woff2'),
	     url('../fonts/NotoSansCJKjp-Bold.woff') format('woff'),
	     url('../fonts/NotoSansCJKjp-Bold.ttf')  format('truetype'),
         url('../fonts/NotoSansCJKjp-Bold.eot') format('embedded-opentype');
}
@font-face {
    font-family: 'Noto Sans Japanese';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/NotoSansCJKjp-Black.woff2') format('woff2'),
	     url('../fonts/NotoSansCJKjp-Black.woff') format('woff'),
	     url('../fonts/NotoSansCJKjp-Black.ttf')  format('truetype'),
         url('../fonts/NotoSansCJKjp-Black.eot') format('embedded-opentype');
}
@font-face {
    font-family: 'Zen Maru Gothic';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/ZenMaruGothic-Bold.woff2') format('woff2'),
	     url('../fonts/ZenMaruGothic-Bold.woff') format('woff'),
	     url('../fonts/ZenMaruGothic-Bold.ttf')  format('truetype'),
         url('../fonts/ZenMaruGothic-Bold.eot') format('embedded-opentype');
}
/*--------------------ここまで-----------------------------------*/
/* Header Setting
=========================================================================================== */
#headerSet{
	position:fixed;
	top:0;
	left:0;
	width: 100%;
    height: 70px;
	z-index:999;
	padding:0 4%;
	display: flex;
    justify-content: flex-end;
	align-items: center;
	transition: all .3s;
}
#headerSet #headerLogoSet{
	margin-right:auto;
}
#headerSet #headerLogoSet #headerLogo{
	margin-bottom: 0;
	font-weight:bold;
	font-size:24px;
    position: relative;
    z-index: 99999;
}
#headerSet #headerLogoSet #headerLogo a{
    display: flex;
    align-items: center;
    font-size: 0;
    transition: all .3s;
}
#headerSet #headerLogoSet #headerLogo a:hover{
    text-decoration: none;
    opacity: 0.7;
}

#headerSet #headerLogoSet #headerLogo a strong{
    font-size: 20px;
    color: #333;
    margin-left: 1em;
    transition: all .3s;
 }

#headerSet #headerMenuSet .gnav ul{
	display: flex;
    align-items: center;
	justify-content: flex-end;
	font-size:16px;
}
#headerSet #headerMenuSet .gnav ul li{
	padding:1em 1.5em;
    display: flex;
    align-items: center;
    justify-content: center;
}
#headerSet #headerMenuSet .gnav ul li a{
	color: #FFF;
	text-decoration:none;
	position: relative;
	transition: all .3s;
}
#headerSet #headerMenuSet .gnav ul li a:hover{
	color:#E60012;
}

#headerSet #headerMenuSet .gnav ul li a:after {
	position: absolute;
	bottom: -1em;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: #E60012;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
}
#headerSet #headerMenuSet .gnav ul li a:hover:after {
	transform-origin: center top;
	transform: scale(1, 1);
}


/*****サブメニュー*****/
#headerSet #headerMenuSet .gnav ul .drop{
	position: relative;
    cursor: pointer;
}
#headerSet #headerMenuSet .gnav ul .drop:hover a{
	color: #E60012;
}
/*#headerSet #headerMenuSet .gnav ul .drop > a{
	cursor: pointer;
}*/
#headerSet #headerMenuSet .gnav ul .drop .childMenu{
	position: absolute;
    top: 40px;
	left:50%;
	display:block;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
	transform: translateX(-50%);
	visibility: hidden;
    opacity: 0;
    z-index: 1;
}
#headerSet #headerMenuSet .gnav ul .drop .childMenu:before{
	content: "";
    position: absolute;
	top: -24px;
    left:50%;
	transform: translateY(0) translateX(-50%);
	border: 12px solid transparent;
	border-bottom: 12px solid #DB6314;
}
#headerSet #headerMenuSet .gnav ul .drop .childMenu li{
	border-left:none;
	text-align:center;
	float:none;
	border-bottom:1px solid #FFF;
	padding:0;
}
#headerSet #headerMenuSet .gnav ul .drop .childMenu li:last-child{
	border:none;
}
#headerSet #headerMenuSet .gnav ul .drop .childMenu li a{
	color:#FFF;
	background: #DB6314;
	padding:1em;
	display:block;
	width:250px;
}
#headerSet #headerMenuSet .gnav ul .drop .childMenu li a:hover{
	background:#B76835;
}
#headerSet #headerMenuSet .gnav ul .drop:hover .childMenu{
	display:block;
	top: 52px;
	left: 50%;
    visibility: visible;
    opacity: 1;
}

#headerSet #headerMenuSet .gnav ul .drop .childMenu li a:hover:after {
	transform: none;
	content: none;
}
/*****ここまで*****/




.current #headerSet{
	background: rgba(255, 255, 255, 0.8);
}
.current #headerSet #headerMenuSet .gnav ul li a{
    color: #333;
}
.current #headerSet #headerMenuSet .gnav ul li a:hover{
    color: #E60012;
}
.current #headerSet #headerMenuSet .gnav ul .drop .childMenu li a:hover{
	color:#FFF;
	
}
/* ALL Setting
=========================================================================================== */
#subContentsHead .mainVisualImgSet{
    max-width: 1600px;
    margin: 70px auto 0;
    margin-bottom: 1em;
    position: relative;
}
#subContentsHead .mainVisualImgSet:before{
    content: "";
    display: inline-block;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: #E5903C;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    animation: subfluffy 8s infinite;
}
@keyframes subfluffy{
  0%, 100% {
    transform: translateY(-50%) translateX(30%);
  }
  50% {
    transform: translateY(-50%) translateX(20%);
  }
}

#subContentsHead .mainVisualImgSet div{
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
    height: 28vw;
    max-height: 504px;
    margin: 0 4%;
}

#subContentsHead .mainVisualImgSet .mainVisual{
    position: relative;
}



#subContentsHead.aboutHead .mainVisualImgSet .mainVisual{
	background-image:url(../images/about/mainvisual.png);
}
#subContentsHead.serviceHead .mainVisualImgSet .mainVisual{
	background-image:url(../images/service/mainvisual.png);
}
#subContentsHead.companyHead .mainVisualImgSet .mainVisual{
	background-image:url(../images/company/mainvisual.png);
}
#subContentsHead.privacyHead .mainVisualImgSet .mainVisual{
	background-image:url(../images/privacy/mainvisual.png);
}


#subContentsHead .mainVisualImgSet .mainVisual:before {
    content: "";
    display: inline-block;
    background-image: url("../images/mizutama.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 200px;
    height: 200px;
    position: absolute;
    bottom: 0;
    left: 0;
    pointer-events: none;
    animation:20s linear infinite subrotation1;
}
@keyframes subrotation1{
  0%{ transform:translateY(10%) translateX(-30%) rotate(0);}
  100%{ transform:translateY(10%) translateX(-30%) rotate(360deg); }
}

#subContentsHead .mainVisualImgSet .mainTitle{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    color: #FFF;
    text-shadow: 4px 4px 6px rgba(0, 0, 0, 0.8);
    font-size: 3.6rem;
    margin-bottom: 0;
    width: 100%;
    text-align: center;
}
/**パンくず**/
#path{
	max-width:1100px;
	margin:0 auto;
	display: flex;
    align-items: center;
	justify-content: flex-start;
	font-size:14px;
	margin-bottom: 1em;
}
#path li a{
	color:#215F7B;
}
#path li:after{
	content:"/";
	padding:0 1em;
}
#path li:last-child:after{
	content:none;
}
#path li a img{
    width: 18px;
    vertical-align: middle;
}
/**ここまで**/


#wrapper{
    overflow: hidden;
}
article section{
	padding:60px 0;
	width:1100px;
	margin:0 auto;
}

.bgPattern01{
	background:#FBF8F5;
}
.bgPattern02{
	background-image: url("../images/bg_orenji.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.ttlStyle1{
	font-size:4.8rem;
	margin-bottom: 1.5em;
    line-height: 1.2;
    text-align: center;
    color: #DB6314;
}
.ttlStyle1 strong{
    display:block;
    font-weight: 900;
    position: relative;
    font-family: 'Zen Maru Gothic', sans-serif;
    z-index: 0;
}
.ttlStyle1 strong:before {
    content: "";
    background-image: url("../images/mizutama.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    top:50%;
    left: 50%;
    width: 70px;
    height: 70px;
    transform: translateY(-50%) translateX(-50%);
    opacity: 0.4;
    z-index: -1;
}
.ttlStyle1 span{
	font-size:16px;
	display:block;
	color:#4E4E4E;
}

.ttlStyle2{
    font-size:3.6rem;
	margin-bottom: 1.5em;
    text-align: center;
    color: #DB6314;
}

.ttlStyle3{
    color: #DB6314;
    border: 1px solid #DB6314;
    border-radius: 3em;
    padding: 0.5em 1em;
    font-size: 3.2rem;
    margin-bottom: 0.5em;
}

.dashedTtl{
    border-top: 1px dashed #333;
    text-align: center;
}
.dashedTtl span{
    transform: translateY(-50%);
    display: inline-block;
    background: #FFF;
    padding: 0 1em;
    font-size: 2.8rem;
}

.catchStyle1{
    text-align: center;
    font-size: 18px;
}
.btnStyle1 a{
	color:#333;
	text-decoration:none;
	position:relative;
	font-size:16px;
	transition: all .3s;
}
.btnStyle1 a:hover{
	color:#E5903C;
}
.btnStyle1 a:before{
	content: "";
	display: inline-block;
	background:#E5903C;
	width:50px;
	height:50px;
	border-radius: 50%;
	position:absolute;
    top: 50%;
	right:-70px;
	transform: translateY(-50%);
	transition: all .3s;
}
.btnStyle1 a:after{
	content: "";
	background-image: url(../images/icon_arrow_w.svg);
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle;
    width: 18px;
    height: 18px;
	position: absolute;
    top: 50%;
    right:-54px;
	transform: translateY(-50%);
}
.btnStyle1 a:hover:before{
	background:#D2781F;
	width:60px;
	height:60px;
	top:48%;
	right:-75px;
}

.btnStyle2 a{
	font-size:16px;
	text-decoration:none;
	background:#E5903C;
	display:inline-block;
	padding:1.5em 2em;
	color:#FFF;
	min-width: 280px;
    border-radius: 3em;
	text-align: center;
	transition: all .3s;
	position:relative;
    box-shadow: 0 6px 0 #C7C7C7;
}
.btnStyle2 a:before {
    content: "";
    display: inline-block;
    background-image: url(../images/icon_arrow_w.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 50%;
    right: 1.5em;
    transform: translateY(-50%);
}
.btnStyle2 a:hover{
	opacity: 0.7;
    box-shadow: none;
	transform: translateY(6px);
}



.btnListStyle1{
    display: flex;
	flex-wrap:wrap;
}
.btnListStyle1 li{
    width: 48%;
    margin-left: 4%;
    margin-bottom: 1.5em;
    display: flex;
}
.btnListStyle1 li:nth-child(2n+1){
	margin-left:0;
}
.btnListStyle1 li a{
    background:#E5903C;
    color: #FFF;
    padding: 1.5em 3em 1.5em 1em;
    width: 100%;
	border-radius: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
	transition: all .3s;
}
.btnListStyle1 li a:before{
    content: "";
    display: inline-block;
    background-image: url("../images/icon_arrow_w.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    right: 1.5em;
    transform: translateY(-50%);
	transition: all .3s;
}
.btnListStyle1 li a:hover{
	opacity: 0.7;
}
.btnListStyle1 li.newWin a:before{
    background-image: url("../images/icon_newwin.svg");
}
.btnListStyle1 li.pdf a:before{
    background-image: url("../images/icon_pdf.svg");
}


.imgOnlyStyle img{
    max-width: 100%;
}
.centerAdjust{
	text-align:center;
}
.listStyle1 li{
	font-size:16px;
	margin-bottom: 0.5em;
    padding-left: 1.5em;
    text-indent: -1.5em;
}
.listStyle1 li:before {
    content: "●";
    color: #DB6314;
    margin-right: 0.5em;
}
.map iframe{
    width: 100%;
}
.listStyle2{
    list-style: disc;
    font-size: 16px;
    padding-left: 1em;
    line-height: 180%;
}
.listStyle2 li{
    margin-bottom: 0.5em;
}
/*

.ttlStyle2{
	font-size:3.4rem;
    font-weight: 900;
	margin-bottom: 1.5em;
}
.ttlStyle3{
	font-size:3.4rem;
    font-weight: 900;
    color: #FFF;
    background: #000;
    padding: 0.5em 1em;
	margin-bottom: 2em;
    position: relative;
    text-align: center;
}
.ttlStyle3:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -24px;
    left: 0;
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-color: #000 transparent transparent transparent;
    border-width: 24px 28px 0 28px;
}
.ttlStyle4{
    font-size: 24px;
    margin-bottom: 1em;
    border-bottom: 1px solid #000;
    padding-bottom: 0.5em;
}
.subTtlStyle1{
    font-size: 24px;
    margin-bottom: 1em;
}
.subTtlStyle1:before{
    content: "■";
    margin-right:0.5em;
}
.subTtlStyle2{
    font-size: 24px;
    border: 1px solid #000;
    border-radius: 3em;
    padding: 0.5em 2em;
    margin-bottom: 1.5em;
}







.btnStyle2 a{
	font-size:16px;
	text-decoration:none;
	background:#000;
	display:inline-block;
	padding:1.5em 2em;
	color:#FFF;
	min-width: 280px;
	text-align: center;
	transition: all .3s;
	position:relative;
}
.btnStyle2 a:before {
    content: "";
    display: inline-block;
    background-image: url(../images/icon_arrow1.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 50%;
    right: 1.5em;
    transform: translateY(-50%);
}
.btnStyle2 a:hover{
	opacity: 0.7;
}
.boxPatternA{
    border: 2px solid #000;
}
.boxPatternA .inner{
    padding: 2em 4%;
}
.boxPatternA .inner .boxTtl{
    font-size: 24px;
}
.boxPatternA .inner .boxTtl:before{
    content: "■";
    margin-right: 1em;
}
.column3List{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2em;
}
.column3List li{
    width: 30%;
    margin-left: 5%;
}
.column3List li:nth-child(3n+1){
    margin-left: 0;
}
.worksList{
	display: flex;
	justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 2em;
}
.worksList li{
	width: 30%;
    margin-left: 5%;
    margin-bottom: 1em;
}
.worksList li:nth-child(3n+1){
	margin-left:0;
}
.worksList li a{
	display:block;
	color: #000;
	text-decoration:none;
	transition: all .3s;
}
.worksList li a:hover{
	opacity: 0.7;
}
.worksList li a:hover img{
	opacity: 1;
}
.worksList li a .worksImg{
	height:230px;
    overflow: hidden;
	font-size:0;
}
.worksList li a img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.worksList li .worksText{
	padding:1em 0;
}
.worksList li .worksText .data{
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 1em;
}
.worksList li .worksText .cate{
    font-size: 14px;
    border: 1px solid #000;
    display: inline-block;
    padding: 0 1em;
    border-radius: 4px;
    margin-left: 1em;
    vertical-align: middle;
    margin-bottom: 1em;
}
.worksList li .worksText h3{
    font-size: 18px;
    margin-bottom: 0.5em;
}*/

/*
.categoryList{
    display: flex;
    flex-wrap: wrap;
}
.categoryList li{
    width: calc(88% / 7);
    margin-left: 2%;
    margin-bottom: 1em;
    display: flex;
}
.categoryList li:nth-child(7n+1){
    margin-left: 0;
}
.categoryList li a{
    border: 1px solid #000;
    color: #000;
    text-align: center;
    padding: 0.5em 1em;
    text-decoration: none;
    border-radius: 4px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}
.categoryList li a:hover{
    background: #000;
    color: #FFF;
}
.columnSet{
    display: flex;
    flex-wrap: wrap;
}
.columnSet .column2{
	width:48%;
	margin-left:4%;
}
.columnSet .column2:nth-child(2n+1){
	margin-left:0;
}
.columnSet .column2 img{
	max-width:100%;
}*/
/*article .fullSection{
	width:100%;
}
article .fullSection .innerSection{
	width:1100px;
	margin:0 auto;
}*/
/*.bgPattern01{
	background-image: url(../images/city_bg.gif);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color:#D9D9D7;*/
	
	/*background-image: url(../images/city_bg.gif);
	background-size:100%;
	background-position: bottom;
    background-repeat: no-repeat;
}*/

/*.h2Style1{
	text-align:center;
	font-size:3.6rem;
	font-weight:900;
	margin-bottom: 1.5em;
}
.h2Style1 span{
	font-size:14px;
	display:block;
	color:#A8A8A8;
}
.h3Style1{
	font-size:2.8rem;
	font-weight: bold;
}*/

/*.textBig1 {
    font-size: 24px;
}
.leftAdjust{
	text-align:left;
}

.catchStyle1{
	text-align:center;
    margin-bottom: 3em;
}

.checkList{
    text-align: left;
	font-size:18px;
	margin-bottom:1em;
}
.checkList li{
    position: relative;
    padding-left: 36px;
	margin-bottom:1em;
}
 
.checkList li:after {
    content: "";
    position: absolute;
    top: .35em;
    left: 10px;
    -webkit-transform: rotate(50deg);
    -ms-transform: rotate(50deg);
    transform: rotate(50deg);
    width: 7px;
    height: 14px;
    border-right: 2px solid #FFF;
    border-bottom: 2px solid #FFF;
}
 
.checkList li:before {
    content: "";
    position: absolute;
    top: .2em;
    left: 0;
    width: 25px;
    height: 25px;
    background: #215F7B;
}
.notesList li:before{
    content: "※";
}
.notesList li{
    font-size: 16px;
    padding-left:1em;
    text-indent:-1em;
}


.borderBox{
	text-align:center;
	border:2px solid #4c5c8e;
	border-radius: 10px;
	padding:2em;
}
.columnSet .column3{
	width:30%;
	margin-left:5%;
}
.columnSet .column3:nth-child(3n+1){
	margin-left:0;
}
.columnSet .column3 img{
	width:100%;
}*/

/* about Setting
=========================================================================================== */
.aboutMessageSet{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.aboutMessageSet .aboutMessageImg{
    width: 24%;
}
.aboutMessageSet .aboutMessageImg img{
    width: 100%;
}
.aboutMessageSet .aboutMessageText{
    width: 72%;
    margin-left: 4%;
}
.aboutMessageSet .aboutMessageText p{
    line-height: 240%;
}
/* service Setting
=========================================================================================== */
.codeList{
    text-align: right;
}
.serviceIntroText{
    margin-bottom: 6em;
}
.serviceList{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 4em;
}
.serviceList li{
    width: 23.5%;
    margin-left: 2%;
    margin-bottom: 1em;
    background: #F1F1F1;
    border-radius: 10px;
    padding: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.serviceList li:nth-child(4n+1){
    margin-left: 0;
}


.serviceFeaturesList{
    display: flex;
    flex-wrap: wrap;
}
.serviceFeaturesList li{
    width: 30%;
    margin-left: 5%;
    margin-bottom: 2em;
}
.serviceFeaturesList li:nth-child(3n+1){
    margin-left: 0;
}
.serviceFeaturesList li .imgOnlyStyle{
    text-align: center;
}
.serviceFeaturesList li .imgOnlyStyle img{
    width: 100%;
    max-width: 220px;
}
.serviceFeaturesList li h3{
    text-align: center;
    font-size: 2.0rem;
}



.fukidashiTtl{
    text-align: center;
    margin-bottom: 3em;
}
.fukidashiTtl span{
    position: relative;
    font-size: 2.4rem;
    border-radius: 3em;
    background: #E5903C;
    color: #FFF;
    padding: 1em 2em;
    display: inline-block;
}
.fukidashiTtl span:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -16px;
    left: 0;
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-color: #E5903C transparent transparent transparent;
    border-width: 16px 20px 0 20px;
}


.checkList{
    font-size: 18px;
    display: flex;
    justify-content: flex-start;
	flex-flow: wrap;
    margin-bottom: 0;
}
.checkList li{
    width: 48%;
    margin-left: 4%;
    position: relative;
    padding-left: 36px;
	margin-bottom:1em;
}
.checkList li:nth-child(2n+1){
	margin-left:0;
}
.checkList li:after {
    content: "";
    position: absolute;
    top: 0.3em;
    left: 10px;
    -webkit-transform: rotate(50deg);
    -ms-transform: rotate(50deg);
    transform: rotate(50deg);
    width: 7px;
    height: 14px;
    border-right: 2px solid #20C89B;
    border-bottom: 2px solid #20C89B;
}
 
.checkList li:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    background: #FFF;
    border: 2px solid #20C89B;
}




.consultationFlow1 li{
    background: #70B199;
    color: #FFF;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 3em;
    padding: 1em;
    position: relative;
    font-size: 18px;
}
.consultationFlow1 li:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -2em;
    left: 0;
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-color: #70B199 transparent transparent transparent;
    border-width: 18px 38px 0 38px;
}
.consultationFlow1 li:last-child:before {
    content: none;
}


.consultationFlow2 li{
    background: #DC769C;
    color: #FFF;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 3em;
    padding: 1em;
    position: relative;
    font-size: 18px;
}
.consultationFlow2 li:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -2em;
    left: 0;
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-color: #70B199 transparent transparent transparent;
    border-width: 18px 38px 0 38px;
}

.consultationFlow2Set .consultationFlow1 li:last-child:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -2em;
    left: 0;
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-color: #70B199 transparent transparent transparent;
    border-width: 18px 38px 0 38px;
}


.consultationFlow2Set .consultationFlow1 li:first-child:after,
.consultationFlow2Set .consultationFlow2 li:first-child:after{
    content: "";
    position: absolute;
    right: 0;
    top:-2em;
    left: 0;
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-color: #70B199 transparent transparent transparent;
    border-width: 18px 38px 0 38px;
}


.consultationFlow2Set{
    display: flex;
    flex-wrap: wrap;
}
.consultationFlow2Set .consultationFlowColumn2{
    width: 48%;
    margin-left: 4%;
}
.consultationFlow2Set .consultationFlowColumn2:first-child{
    margin-left: 0;
}
/* company Setting
=========================================================================================== */
.profileColumnSet{
	display: flex;
    flex-flow: row-reverse;
	margin-bottom:2em;
}
.profileColumnSet .img{
	width:32%;
	margin-left:4%;
}
.profileColumnSet .img img{
	width:100%;
	border-radius: 20px;
    margin-bottom: 0.5em;
}
.profileColumnSet .img strong{
    display: block;
    text-align: center;
    font-weight: normal;
}
.profileColumnSet .img strong span{
    background: #DB6314;
    color: #FFF;
    border-radius: 10px;
    padding: 0.5em 1em;
    margin-right: 1em;
}
.profileColumnSet .text{
	width:64%;
}




.companyTableSet{
    text-align: center;
}
.companyTable{
    display: inline-block;
	font-size: 16px;
    margin: 0 auto;
    text-align: left;
    margin-bottom: 2em;
}
.companyTable th{
	padding:1.5em;
    vertical-align: top;
}
.companyTable td{
	padding:1.5em;
}
/*.companyTable{
    width: 100%;
	font-size: 16px;
    margin-bottom: 4em;
}
.companyTable th{
	padding:1em;
    vertical-align: top;
}
.companyTable td{
	padding:1em;
}
.map iframe{
    width: 100%;
}*/
/*.greetingName{
    font-size: 20px;
    text-align: right;
}
.greetingName span{
    font-size: 14px;
    display: inline-block;
    line-height: 160%;
    color: #133882;
    border: 1px solid #133882;
    padding: 0 1em;
    margin-right: 1em;
    vertical-align: middle;
}

.accessColumnSet{
    display: flex;
    align-items: center;
    flex-direction:row-reverse;
    margin-bottom: 2em;
}
.accessColumnSet .accessColumnImg{
    width: 48%;
    margin-left: 4%;
}
.accessColumnSet .accessColumnText{
    width: 48%;
}
.accesslist li{
    padding-left: 1em;
    text-indent: -1em;
    margin-bottom: 2em;
    font-size: 18px;
}
.accesslist li:before{
    content: "■";
    margin-right: 0.5em;
    color: #133882;
}
.accesslist li span{
    font-size: 14px;
}
*/
/* contact Setting
=========================================================================================== */

/* index Setting
=========================================================================================== */
/***メインビジュアル***/
#indexContentsHead{
	position:relative;
}
#mainVisualImgSet{
    max-width: 1600px;
    margin: 70px auto 0;
}
#mainVisualImgSet:before{
    content: "";
    display: inline-block;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: #E5903C;
    position: absolute;
    top: 0;
    right: 0;
    /*transform: translateY(-50%) translateX(30%);*/
    z-index: -1;
    animation: fluffy2 8s infinite;
}
@keyframes fluffy2{
  0%, 100% {
    transform: translateY(-50%) translateX(30%);
  }
  50% {
    transform: translateY(-50%) translateX(20%);
  }
}
#mainVisualImgSet:after{
    content: "";
    display: inline-block;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: #E5903C;
    position: absolute;
    bottom: 0;
    left: 0;
    /*transform: translateY(20%) translateX(-50%);*/
    z-index: -1;
    animation: fluffy 6s infinite;
}
@keyframes fluffy {
  0%, 100% {
    transform: translateY(20%) translateX(-50%);
  }
  50% {
    transform: translateY(15%) translateX(-50%);
  }
}

#mainVisualImgSet div{
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	/*height: 92vh;*/
	margin: 0;
}

#mainVisualImgSet .mainVisual1{
	/*background-image: url("../images/index/mainvisual1.png");*/
    position: relative;
    margin: 0 4%;
}
#mainVisualImgSet .mainVisual1 img{
    width: 100%;
}
#mainVisualImgSet .mainVisual1:before {
    content: "";
    display: inline-block;
    background-image: url("../images/mizutama.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 150px;
    height: 150px;
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translateY(30%) translateX(30%);
    animation:20s linear infinite rotation1;
}
@keyframes rotation1{
  0%{ transform:translateY(30%) translateX(30%) rotate(0);}
  100%{ transform:translateY(30%) translateX(30%) rotate(360deg); }
}
#mainVisualImgSet .mainVisual1:after {
    content: "";
    display: inline-block;
    background-image: url("../images/triangle.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 120px;
    height: 120px;
    position: absolute;
    top: 10%;
    left: 0;
    transform: translateX(-50%);
    animation:20s linear infinite rotation2;
}
@keyframes rotation2{
  0%{ transform:translateX(-50%) rotate(0);}
  100%{ transform:translateX(-50%) rotate(360deg); }
}
/*#mainVisualImgSet .mainVisual2{
	background-image: url("../images/index/mainvisual2.png");
}*/

#indexContentsHead .mainCatch{
	width:100%;
	margin-bottom:0;
	padding: 0 4%;
    text-align: right;
    line-height: 1;
    max-width: 1280px;
	position:absolute;
	top:50%;
	left:50%;
    transform:translateY(-50%) translateX(-50%);  
}
#indexContentsHead .mainCatch span{
    filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.9));
    display: block;
    margin-bottom: 2em;
}

/*.slick-dots{
	position:absolute;
	bottom: 2em;
	left:50%;
	transform:translateX(-50%);
}
.slick-dots li{
	position: relative;
    display: inline-block;
    width: 10px;
	margin-left:16px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button{
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 5px;
    cursor: pointer;
    outline: none;
	border:1px solid #FFF;
	background:none;
    border-radius: 50%;
}
.slick-dots .slick-active button{
	background: #000;
}*/

/***contents01***/
.contents01 .topServiceList li.typeA{
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    flex-wrap: wrap;
	margin-bottom: 2em;
}
.contents01 .topServiceList li.typeB{
	display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
	margin-bottom: 2em;
}
.contents01 .topServiceList li:last-child{
	margin-bottom:0;
}
.contents01 .topServiceList li.typeA .columnText{
	width:48%;
}
.contents01 .topServiceList li.typeA .columnImg{
	width:48%;
    margin-left:4%;
}
.contents01 .topServiceList li.typeB .columnText{
	width:48%;
    margin-left:4%;
}
.contents01 .topServiceList li.typeB .columnImg{
	width:48%;
}

.contents01 .topServiceList li .columnImg img{
	width:100%;
    border-radius: 40px;
}
.contents01 .topServiceList li .columnText h3{
    font-size: 2.4rem;
    margin-bottom: 1.5em;
    color: #DB6314;
    letter-spacing: 0.2em;
}
/***contents02***/
.contents02 .indexAccessColumn{
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
    flex-wrap: wrap;
}
.contents02 .indexAccessColumn .columnL{
	width:48%;
    margin-left:4%;
}
.contents02 .indexAccessColumn .columnL h3{
	font-size:2.4rem;
    display: flex;
    align-items: center;
}
.contents02 .indexAccessColumn .columnL h3 img{
    margin-right: 1em;
}
.contents02 .indexAccessColumn .columnL h3 span{
	display:block;
	font-size:20px;
}
.contents02 .indexAccessColumn .columnL ul{
	margin-bottom:2em;
	font-size:16px;
}
.contents02 .indexAccessColumn .columnL ul li{
	padding-left:1em;
	text-indent:-1em;
}
.contents02 .indexAccessColumn .columnL .btnStyle1{
	text-align:left;
}
.contents02 .indexAccessColumn .columnR{
	width:48%;
}
/* footer Setting
=========================================================================================== */
footer #footerContact{
	background-image: url("../images/footer_bg.jpg");
    background-size: cover;
    background-position:  center;
    background-repeat: no-repeat;
	text-align:center;
    background-attachment: fixed;
}
footer #footerContact .inner{
	padding: 60px 0;
    width: 1100px;
    margin: 0 auto;
}
footer #footerContact .inner .ttlStyle1{
    margin-bottom: 1em;
}

footer .footerTelBtn a{
	font-size:24px;
	text-decoration:none;
	background:#E5903C;
	display:inline-block;
	padding:1em 2em;
	color:#FFF;
	min-width: 400px;
    border-radius: 3em;
	text-align: center;
	transition: all .3s;
	position:relative;
    box-shadow: 0 6px 0 #C7C7C7;
    margin-bottom: 1em;
}
footer .footerTelBtn a span{
    display: flex;
    align-items: center;
    justify-content: center;
}
footer .footerTelBtn a span:before {
    content: "";
    display: inline-block;
    background-image: url(../images/icon_tel_w.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 24px;
    height: 24px;
    margin-right: 1em;
}
footer .footerTelBtn a:hover{
	opacity: 0.7;
    box-shadow: none;
	transform: translateY(6px);
}

footer #footerArea{
	background:#E5903C;
	padding:0;
	color:#FFF;
    text-align: center;
    position: relative;
}
footer #footerArea:before{
    content: "";
    background-image: url(../images/footer_line.svg);
    position: absolute;
    top: -38px;
    left: 0;
    display: block;
    width: 100%;
    height: 40px;
    background-repeat: repeat-x;
    pointer-events: none;
    background-position: center;
}
footer #footerArea a{
	color:#FFF;
}
footer #footerArea section{
	width:1100px;
	padding:60px 0;
	margin:0 auto;
}
footer #footerArea #footerLogo{
    margin-bottom: 1em;
}
footer #footerArea #footerLogo a{
    display: inline-block;
    font-size: 24px;
}
footer #footerArea #footerLogo a span{
    display: flex;
    align-items: center;
    justify-content: center;
}
footer #footerArea #footerLogo a span img{
    margin-right: 0.5em;
}

footer #footerArea .footerNav ul{
    display: flex;
    justify-content: center;
    margin-bottom: 4em;
}
footer #footerArea .footerNav ul li{
    margin: 0 1em;
}
/*footer .footerColumnSet{
	display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 4em;
}
footer .footerColumnSet .columnL{
	width:60%;
}
footer .footerColumnSet .columnL #footerLogo{
	margin-bottom:1.5em;
}


footer .footerColumnSet .columnR{
	width:36%;
	margin-left:4%;
}
footer .footerColumnSet .columnR .footerNav ul{
	display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}
footer .footerColumnSet .columnR .footerNav ul li{
    width: 50%;
    margin-bottom: 1em;
}
footer .footerColumnSet .columnR .footerNav ul li a{
	text-decoration:none;
	transition: all .3s;
}
footer .footerColumnSet .columnR .footerNav ul li a:hover{
	opacity:0.7;
}*/

footer #copy{
	font-size:14px;
	padding:1em 0;
	text-align:center;
	color:#FFF;
	margin-bottom:0;
}
@media all and (-ms-high-contrast: none) {
}
/* After Setting
=========================================================================================== */
.mt0{margin-top:0;}
.ml0{ margin-left:0;}
.mb0{margin-bottom:0;}
.mb20{margin-bottom:20px;}
.mb40{margin-bottom:40px;}
.mb50{margin-bottom:50px;}
.mb100{margin-bottom:100px;}
.mb3{margin-bottom:3em;}
.mb4{margin-bottom:4em;}
.mb6{margin-bottom:6em;}
.pb0{ padding-bottom:0;}
.pb20{ padding-bottom:20px;}
.pr20{ padding-right:20px;}
.vat{ vertical-align:top;}
.vam{ vertical-align:middle;}