@charset "utf-8";
/********************************************************* reset*/
html, body, p, li, dl, dt, dd, blockquote, td, form {
  margin: 0;
  padding: 0;
}

body{
  display: flex;
  flex-flow: column;
  min-height: 100vh;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%
}

@media all and (-ms-high-contrast: none) {
	body{
		display: block;
	}
}

main{
  flex: 1;
}


h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-size: 100%;
}

ul, ol {
  list-style: none outside none;
  margin: 0;
  padding: 0;
}

address, em, code, cite, dfn, var, optgroup {
  font-style: normal;
}

caption, th {
  font-style: normal;
  font-weight: 500;
  margin: 0;
  padding: 0;
  text-align: left;
}

img {
  border: none;
  vertical-align: bottom;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
  line-height: inherit;
}

input, select, textarea {
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}

fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

main, article, aside, dialog, figure, footer, header, hgroup, nav, section {
  display: block;
  margin: 0;
  padding: 0;
}

map area {
  outline: none;
}


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

html{
	font-size: 62.5%;
	color: #333;
}

body{
	margin: 0;
	padding: 0;
	height: 100%;
	font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-feature-settings: "pkna";
}

p{
	font-size: 1.6rem;
	line-height: 1.8;
}

.dispPc{
	display: block;
}

.dispSp{
	display: none !important;
}

ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

li{
	margin: 0;
	padding: 0;
}

a{
    color: #333;
	text-decoration: none;
    transition: all .2s;
}

img{
	width: 100%;
    height: auto;
	border-style: none;
	vertical-align: bottom;
}

/* clearfix */
.clearfix:after{
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.clearfix{
	min-height: 1px;
}

* html .clearfix{
	height: 1px;
}

.inner{
	max-width: 1400px;
	width: 90%;
	margin: 0 auto;
}

.iconBlank::after{
	content: '';
	display: inline-block;
	width: 16px;
	height: 14px;
	background: url('../img/f_icon_link.png')no-repeat center;
	background-size: 100%;
	vertical-align: middle;
	margin-left: 5px;
}

.youtube{
	position: relative;
	max-width: 100%;
	padding-top: 56.25%;
}

.youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}

p.note{
	line-height: 1.5;
	padding-left: 1.15em;
	position: relative;
}

p.note::before{
	content: '※';
	position: absolute;
	left: 0;
	top: 0;
}

.listDisc > li,
.listNum > li{
    padding-left: 1.5em;
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: .75em;
    position: relative;
}

.listNum > li{
    counter-increment: number 1;
}

.listDisc > li::before{
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background-color: #e00012;
    position: absolute;
    left: .6em;
    top: .7em;
}

.listNum > li::before{
    content: counter(number)'.';
    display: inline-block;
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.listDisc > li span,
.listNum > li span{
    display: block;
    font-weight: 700;
}

.inlineLink{
    word-break: break-all;
    color: #108DB5;
    text-decoration: underline;
}

.inlineLink:hover{
    opacity: 1;
    text-decoration: none;
}

/* .inlineLink[target="_blank"]::after{
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 18px;
    height: 18px;
    background: url("../images/icon_blank.png")no-repeat center;
    background-size: 100%;
    margin-left: 5px;
    margin-top: -4px;
} */

.tac{
    text-align: center;
}

.tar{
    text-align: right;
}

.mb30{
    margin-bottom: 30px !important;
}

.mt30{
    margin-top: 30px !important;
}

.anchor{
    padding-top: 200px;
    margin-top: -200px;
}



/* ------------------------------------------------------- header */
header{
    position: fixed;
    width: 100%;
    background-color: #fff;
    z-index: 10;
    transition: all .2s;
}

/* header.is-animation{
    background-color: #fff;
} */

header .inner{
    max-width: 1400px;
    width: 95%;
}

.siteDescription{
    font-size: 1.4rem;
    font-weight: normal;
    line-height: 1.5;
}

.headerContainer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 30px;
    transition: all .2s;
}

header.is-animation .headerContainer{
    padding: 10px 0 20px;
}

.hLogo a{
    display: inline-block;
    width: 310px;
    height: 95px;
}

.hLogo a:hover{
    opacity: .8;
}

.hContents{
    flex: 1;
    width: 100%;
}

.hNav{
    position: relative;
}

.hNav .hContactBtns{
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
}

.hNav .hContactBtns > a{
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.25;
    padding: .75em 1.25em;
    border-left: 1px solid #e5dcd1;
}

.hNav .hContactBtns > a:nth-child(2){
    border-right: 1px solid #e5dcd1;
    margin-right: 1.25em;
}

.hNav .hContactBtns > a:hover{
    background-color: #ddf4e7;
}

.hNav .hContactBtns > a:nth-child(2):hover{
    background-color: #f9e9ea;
}

.hNav .hContactBtns > a::before{
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    background: url("../images/icon_line.png")no-repeat center;
    background-size: 100%;
    margin-right: 5px;
    margin-top: -3px;
}

.hNav .hContactBtns > a:nth-child(2)::before{
    background-image: url("../images/icon_mail.png");
}

.hNav .hContactBtns .hTel a{
    display: inline-block;
    font-family: "Roboto Condensed", 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
    font-size: 3.8rem;
    font-weight: 500;
    line-height: 1;
    margin-bottom: .1em;
}

.hNav .hContactBtns .hTel a::before{
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    background: url("../images/icon_tel_w.png")no-repeat center #e00012;
    background-size: 100%;
    border-radius: 50%;
    margin-right: 5px;
    margin-top: -6px;
}

.hNav .hContactBtns .hTel span{
    display: block;
    text-align: right;
    font-size: 1.3rem;
    line-height: 1;
}

.hNav nav{
    padding-top: 65px;
}

.hNav nav > ul{
    text-align: right;
}

.hNav nav > ul > li{
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
    margin: .75em 0 0 1.75em;
}

.hNav nav > ul > li > a{
    display: block;
    transition: all .1s;
}

.hNav nav > ul > li > a:hover{
    color: #e00012;
}

.menuSingle{
    position: relative;
}

.menuSingle .menuSecondLevel{
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}

.menuSingle .menuSecondLevel{
    display: block;
    width: 100%;
    background: rgba(255,255,255,.95);
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0,0,0,.2);
    margin-top: 10px;
    overflow: hidden;
    position: absolute;
    transition: all .2s;
}

.menuSingle .menuSecondLevel.a,
.menuSingle .menuSecondLevel.b{
	width: 160%;
    left: -30%;
}

.menuSingle:hover .menuSecondLevel{
    visibility: visible;
    opacity: 1;
}

.menuSingle .menuSecondLevel li{
	display: block;
    font-weight: bold;
	border-bottom: 1px dotted #f2921a;
}

.menuSingle .menuSecondLevel li:last-child{
	border: none;
}

.menuSingle .menuSecondLevel li a{
	display: block;
    text-align: left;
    font-size: 1.4rem;
	line-height: 1.25;
	padding: 1em;
}

.menuSingle .menuSecondLevel li a::before{
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 5px;
    height: 5px;
    border-top: 1px solid #f2921a;
    border-right: 1px solid #f2921a;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-right: 8px;
    margin-top: -3px;
}

.menuSingle .menuSecondLevel li a:hover {
    opacity: 1;
	transform: none;
	background-color: #fef7ef;
}

@media(max-width: 1080px){
    .siteDescription{
        font-size: 1.2rem;
    }

    .hLogo a{
        width: 240px;
        height: 74px;
    }

    .hNav .hContactBtns > a{
        font-size: 1.4rem;
    }
    
    .hNav .hContactBtns .hTel a{
        font-size: 2.8rem;
    }
    
    .hNav .hContactBtns .hTel a::before{
        width: 30px;
        height: 30px;
    }

    .hNav .hContactBtns .hTel span{
        font-size: 1.2rem;
        font-feature-settings: "palt";
    }

    .hNav nav{
        padding-top: 55px;
    }
    
    .hNav nav > ul > li{
        font-size: 1.4rem;
    }
}










#nav-input{
	display: none;
}



/* ------------------------------------------------------- main */
main{
    padding-top: 156px;
}

.topHero{
    background-color: #e00012;
    margin-top: 20px;
    position: relative;
}

.topHero::before{
    content: '';
    width: 100%;
    height: 200px;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 0;
}

.topHero .slider{
    overflow: hidden;
}

.topHero .slider ul{
    display: flex;
    width: 100%;
    width: min-content;
    animation: 50s linear infinite sliderAnimation;
}

.topHero .slider ul li{
    width: 533px;
    height: 400px;
    margin-right: 30px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.topHero .slider ul li img{
    height: 100%;
    object-fit: cover;
}

@keyframes sliderAnimation{
    100%{
        transform: translateX(-50%);
    }
}

.topHero .inner{
    max-width: 1400px;
}

.topHeroTxt{
    width: 411px;
    height: 284px;
    margin: -166px auto 0;
    position: relative;
}

.topHeroTxt h1{
    text-indent: -9999px;
    width: 100%;
    height: 100%;
    background: url(../images/top_hero_illust_01.svg)no-repeat center bottom;
    background-size: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.topHeroTxt p{
    text-indent: -9999px;
    width: 174px;
    height: 174px;
    background: url(../images/top_hero_illust_02.svg)no-repeat center bottom;
    background-size: 100%;
    position: absolute;
    left: -150px;
    bottom: 20px;
}

.topHeroTxt figure{
    width: 186px;
    height: 194px;
    position: absolute;
    right: -155px;
    bottom: 0;
}

.topHeroCatch{
    border-top: 2px solid #fff;
}

.topHeroCatch p{
    text-align: center;
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.5;
    color: #fff;
    padding: 1em 0;
}

.topContentsWrapper{
    padding: 100px 0 120px;
    position: relative;
}

.topContentsWrapper .inner{
    max-width: 1200px;
}

.topContentsWrapper h2{
    text-align: center;
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.5;
    font-feature-settings: "palt";
    margin-bottom: 1.5em;
}

.topContentsWrapper h2 br{
    display: none;
}

.topContentsWrapper h2 strong{
    font-weight: 700;
    padding: 0 .15em;
    font-feature-settings: "palt";
    background: -webkit-linear-gradient(transparent 65%, #f5e721 65%);
    background: -o-linear-gradient(transparent 65%, #f5e721 65%);
    background: linear-gradient(transparent 65%, #f5e721 65%);
}

.topContentsWrapper h2 span{
    display: block;
    font-family: "Roboto Condensed", 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: .75em;
}

.contentsTopTxt{
    text-align: center;
    margin-bottom: 2.5em;
}

.topContentsWrapper h2 + .contentsTopTxt{
    margin-top: -1em;
}

.topReasonList{
    margin-bottom: 80px;
}

.topReasonList ul{
    display: flex;
    justify-content: space-between;
}

.topReasonList ul li{
    counter-increment: topReasonListNum 1;
    width: 31.25%;
    box-shadow: 0 0 10px rgba(0,0,0,.3);
}

.topReasonList ul li .txtContents{
    padding: 30px;
    background-color: #fff;
    position: relative;
}

.topReasonList ul li .txtContents::before{
    content: '0'counter(topReasonListNum);
    display: inline-block;
    width: 2em;
    height: 2em;
    text-align: center;
    font-family: "Roboto Condensed", 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
    font-size: 3.6rem;
    font-weight: 600;
    line-height: 2em;
    color: #4e82c9;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    left: 0;
    right: 0;
    top: -1em;
    margin: auto;
}

.topReasonList ul li .txtContents p{
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.topProblem h3{
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 1.5em;
    position: relative;
}

.topProblem h3::after{
    content: '';
    width: 100%;
    border-top: 3px dotted #c5c5c5;
    position: absolute;
    left: 0;
    top: 50%;
}

.topProblem h3 span{
    display: inline-block;
    padding: .75em 1.5em;
    background-color: #f5e721;
    border-radius: 50px;
    position: relative;
    z-index: 1;
}

.topProblem h3 span::after{
    content: "";
    border: 15px solid transparent;
    border-top: 15px solid #f5e721;
    margin-left: -15px;
    position: absolute;
    top: 100%;
    left: 50%;
}

.topProblem h3 span br{
    display: none;
}

.topProblemList{
    display: flex;
    justify-content: center;
    align-items: center;
}

.topProblemList ul li{
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    padding-left: 1.75em;
    margin-bottom: 1em;
    position: relative;
}

.topProblemList ul li::before{
    content: '';
    display: inline-block;
    width: 26px;
    height: 26px;
    background: url(../images/icon_check.png)no-repeat center;
    background-size: 100%;
    position: absolute;
    left: 0;
    top: .2em;
}

.topProblemList ul li:last-child{
    margin-bottom: 0;
}

.topProblemList figure{
    width: 330px;
    margin-left: 30px;
}

#topWorks{
    background-color: #e8f3f7;
}

.topWorksSlider .slick-slider{
    max-width: 1070px;
    margin: 0 auto;
}

.topWorksSlider ul li span{
    display: block;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 1.75em 0 .75em;
}

.topWorksSlider ul li p{
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 1em;
}

.topWorksSlider ul li p strong{
    font-weight: 700;
    color: #e00012;
    padding: 0 .15em;
    background: -webkit-linear-gradient(transparent 65%, #f5e721 65%);
    background: -o-linear-gradient(transparent 65%, #f5e721 65%);
    background: linear-gradient(transparent 65%, #f5e721 65%);
}

.slick-prev{
    left: -40px;
}

.slick-next{
    right: -40px;
}

.slick-prev::before{
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border-top: 4px solid #333;
    border-right: 4px solid #333;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    transition: all .2s;
}

.slick-next::before{
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border-top: 4px solid #333;
    border-right: 4px solid #333;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all .2s;
}

.topWorksList{
    margin-top: 50px;
}

.topWorksList ul{
    display: flex;
    flex-wrap: wrap;
}

.topWorksList ul li{
    width: 24.25%;
    margin: 1% 1% 0 0;
}

.topWorksList ul li:nth-child(4n){
    margin-right: 0;
}

.topWorksList ul li a{
    display: block;
    font-size: 1.6rem;
    line-height: 1.5;
    padding: .75em;
    background-color: #fff;
    border-radius: 5px;
}

.topWorksList ul li a:hover{
    box-shadow: 0 0 10px rgba(0,0,0,.15);
}

.topWorksList ul li a::before{
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 6px;
    height: 6px;
    border-top: 1px solid #e00012;
    border-right: 1px solid #e00012;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-right: 8px;
    margin-top: -3px;
    transition: all .2s;
}

.topWorksList ul li a:hover::before{
    margin-right: 12px;
}

.moreBtn{
    margin-top: 50px;
}

.moreBtn a{
    display: inline-block;
    width: 100%;
    max-width: 240px;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.5;
    color: #333;
    padding: 1em;
    border: 1px solid #333;
    border-radius: 50px;
    position: relative;
}

.moreBtn a:hover{
    color: #fff;
    background-color: #e00012;
    border-color: #e00012;
}

.moreBtn a::after{
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 6px;
    height: 6px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    right: 25px;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all .2s;
}

.moreBtn a:hover::after{
    border-color: #fff;
    right: 22px;
}

#topWorks .moreBtn a{
    background-color: #fff;
    border-color: #fff;
}

#topWorks .moreBtn a:hover{
    color: #fff;
    background-color: #e00012;
    border-color: #e00012;
}

#topStrength .moreBtn a{
    color: #fff;
    border-color: #fff;
}

#topStrength .moreBtn a:hover{
    color: #e00012;
    background-color: #fff;
}

#topStrength .moreBtn a::after{
    border-color: #fff;
}

#topStrength .moreBtn a:hover::after{
    border-color: #e00012;
}

.topServiceList ul{
    display: flex;
    flex-wrap: wrap;
}

.topServiceList ul li{
    width: 22%;
    margin: 0 4% 4% 0;
}

.topServiceList ul li:nth-child(4n){
    margin-right: 0;
}

.topServiceList ul li a{
    display: block;
}

.topServiceList ul li a figure{
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.topServiceList ul li a figure::before{
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    right: 18px;
    bottom: 17px;
    z-index: 1;
}

.topServiceList ul li a figure::after{
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #e00012;
    border-radius: 50%;
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.topServiceList ul li a figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .2s;
}

.topServiceList ul li a:hover figure img{
    transform: scale(1.1);
}

.topServiceList ul li a span{
    display: block;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    margin-top: .5em;
    transition: all .2s;
}

.topServiceList ul li a:hover span{
    color: #e00012;
}

#topProduce{
    border-top: 1px solid #ebebeb;
}

.topProduce2Col{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.topProduce2Col .txtContents{
    width: 57%;
}

.topProduce2Col figure{
    width: 39%;
}

.topContentsWrapper .topProduce2Col .txtContents h2{
    text-align: left;
}

.topContentsWrapper .topProduce2Col .txtContents p{
    margin-bottom: 1.5em;
}

.topContentsWrapper .topProduce2Col .txtContents p:last-child{
    margin: 0;
}

.topVoiceList{
    margin-top: 70px;
}

.topVoiceList ul{
    display: flex;
    flex-wrap: wrap;
}

.topVoiceList ul li{
    width: 18%;
    margin: 0 2.5% 2.5% 0;
}

.topVoiceList ul li:nth-child(5n){
    margin-right: 0;
}

.topVoiceList ul li figure{
    border: 1px solid #e0e0e0;
    overflow: hidden;
    cursor: zoom-in;
    position: relative;
}

.topVoiceList ul li figure::after{
    content: '';
    display: inline-block;
    width: 28px;
    height: 28px;
    background: url(../images/icon_zoom.png)no-repeat center #e00012;
    background-size: 100%;
    border-radius: 0 0 0 5px;
    position: absolute;
    right: 0;
    top: 0;
}

.topVoiceList ul li figure img{
    aspect-ratio: 210 / 297;
    object-fit: cover;
    transition: all .2s;
}

.topVoiceList ul li:hover figure img{
    transform: scale(1.1);
}

.topMovieList ul{
    display: flex;
    flex-wrap: wrap;
}

.topMovieList ul li{
    width: 32%;
    margin: 2% 2% 0 0;
}

.topMovieList ul li:nth-child(3n){
    margin-right: 0;
}

#topStrength{
    background-color: #e00012;
}

#topStrength .container{
    display: flex;
}

#topStrength .container .imgCol{
    flex: 1;
    width: 100%;
}

#topStrength .container .imgCol figure{
    width: 100%;
    height: 50%;
    background: url(../images/top_strength_img_01.jpg)no-repeat center;
    background-size: cover;
}

#topStrength .container .imgCol.l figure:nth-child(2){
    background-image: url(../images/top_strength_img_02.jpg);
}

#topStrength .container .imgCol.r figure:first-child{
    background-image: url(../images/top_strength_img_03.jpg);
}

#topStrength .container .imgCol.r figure:nth-child(2){
    background-image: url(../images/top_strength_img_04.jpg);
}

#topStrength .container .mainCol{
    padding: 100px 80px;
    width: 47.5%;
}

#topStrength .container .mainCol h2{
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
    margin-bottom: 1.5em;
}

#topStrength .container .mainCol h2 br{
    display: none;
}

#topStrength .container .mainCol p{
    color: #fff;
}

#topSetplan.topContentsWrapper h2{
    padding: 1.75em 0 1.25em;
    background: url(../images/h_parts_02.svg)no-repeat center bottom;
    background-size: auto 16px;
    position: relative;
}

#topSetplan.topContentsWrapper h2::before{
    content: '';
    display: inline-block;
    width: 108px;
    height: 46px;
    background: url(../images/h_parts_01.png)no-repeat center;
    background-size: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
}

.topSetplanHead{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.topSetplanHead::before{
    content: '';
    width: 100%;
    height: 50px;
    background-color: #e8f3f7;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.topSetplanHead::after{
    content: '';
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: 45px;
    z-index: -1;
}

.topSetplanHead > div{
    width: 100%;
    max-width: 320px;
    position: relative;
}

.topSetplanHead > div p{
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    position: absolute;
    left: 0;
    right: 0;
    top: -1em;
    margin: auto;
}

.topSetplanHead > div p span{
    display: inline-block;
    padding: .5em .75em;
    color: #fff;
    background-color: #e00012;
}

.topSetplanHead > div:nth-of-type(2) p span{
    background-color: #4e82c9;
}

.topSetplanHead > div figure{
    border-radius: 5px;
    overflow: hidden;
}

.topSetplanHead > span{
    text-align: center;
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1;
    padding: 1em;
}

.topSetplanBody{
    display: flex;
    justify-content: center;
    padding: 60px 40px;
    background-color: #e8f3f7;
    position: relative;
}

.topSetplanBody::after{
    content: '';
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: 3px;
}

.topSetplanBody .txtContents ul li{
    counter-increment: topSetplanNum 1;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
    padding-left: 1.75em;
    margin-bottom: 1em;
    position: relative;
}

.topSetplanBody .txtContents ul li:last-child{
    margin: 0;
}

.topSetplanBody .txtContents ul li::before{
    content: counter(topSetplanNum);
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    text-align: center;
    font-family: "Roboto Condensed", 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.5em;
    color: #fff;
    background-color: #e00012;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: .1em;
}

.topSetplanBody figure{
    width: 100%;
    max-width: 368px;
    margin-left: 30px;
}

.topLpBnr{
    margin-bottom: 120px;
}

.topLpBnr a{
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

.topLpBnr a:hover{
    opacity: .8;
}

.topLpBnr a img:nth-child(2){
    display: none;
}

#topBlog.topContentsWrapper{
    padding: 0 0 140px;
}

.topBlog2Col{
    display: flex;
    justify-content: space-between;
}

.topBlog2Col .topBlogHead{
    margin-right: 50px;
}

.topContentsWrapper .topBlog2Col .topBlogHead h2{
    font-size: 1.6rem;
}

.topContentsWrapper .topBlog2Col .topBlogHead h2 span{
    display: inline;
    font-size: 3.6rem;
}

.topBlog2Col .topBlogHead a{
    display: inline-block;
    font-size: 1.5rem;
    line-height: 1;
}

.topBlog2Col .topBlogHead a:hover{
    text-decoration: underline;
    color: #e00012;
}

.topBlog2Col .topBlogHead a::before{
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 6px;
    height: 6px;
    border-top: 1px solid #e00012;
    border-right: 1px solid #e00012;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-right: 8px;
    margin-top: -3px;
    transition: all .2s;
}

.topBlog2Col .blogList{
    flex: 1;
    width: 100%;
}

.blogList ul li{
    border-top: 1px solid #e0e0e0;
}

.blogList ul li:last-child{
    border-bottom: 1px solid #e0e0e0;
}

.blogList ul li a{
    display: flex;
    align-items: center;
    padding: 20px;
}

.blogList ul li a:hover{
    background-color: #f9e9ea;
}

.blogList ul li a span{
    width: 7em;
    font-size: 1.6rem;
    color: #929292;
    transition: all .2s;
}

.blogList ul li a:hover span{
    margin-right: .5em;
}

.blogList ul li a p{
    flex: 1;
    width: 100%;
}



/* fadeUp */
.fadeUp{
    animation-name:fadeUpAnime;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity:0;
}

@keyframes fadeUpAnime{
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger{
    opacity: 0;
}



@media(max-width: 1080px){
    main{
        padding-top: 140px;
    }
}





/* ------------------------------------------------------- footer */
footer > .inner{
    max-width: 1400px;
}

#fContact.topContentsWrapper{
    padding: 100px 0;
    background: url(../images/f_contact_bg.jpg)no-repeat center;
    background-size: cover;
    position: relative;
}

#fContact.topContentsWrapper::before{
    content: '';
    width: 100%;
    height: 100%;
    background-color: #666;
    mix-blend-mode: multiply;
    position: absolute;
    left: 0;
    top: 0;
}

#fContact.topContentsWrapper::after{
    content: '';
    width: 100%;
    height: 100%;
    background: url(../images/bg_parts_01.png);
    position: absolute;
    left: 0;
    top: 0;
}

#fContact .inner{
    position: relative;
    z-index: 1;
}

#fContact.topContentsWrapper h2{
    color: #fff;
}

.fContactContainer .contactBtns{
    display: flex;
    justify-content: center;
}

.fContactContainer .contactBtns a{
    display: inline-block;
    width: 100%;
    max-width: 340px;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    padding: 1.25em;
    background-color: #fff;
    border-radius: 50px;
    margin-right: 20px;
}

.fContactContainer .contactBtns a:nth-child(2){
    margin-right: 0;
}

.fContactContainer .contactBtns a:hover{
    background-color: #ddf4e7;
}

.fContactContainer .contactBtns a:nth-child(2):hover{
    background-color: #f9e9ea;
}

.fContactContainer .contactBtns a::before{
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 24px;
    background: url(../images/icon_line.png)no-repeat center;
    background-size: 100%;
    margin-right: 8px;
    margin-top: -2px;
    transition: all .2s;
}

.fContactContainer .contactBtns a:nth-child(2)::before{
    background-image: url(../images/icon_mail.png);
}

.fContactContainer .contactBtns a:hover::before{
    margin-right: 13px;
}

.fContactContainer .tel{
    text-align: center;
    margin-top: 30px;
}

.fContactContainer .tel a{
    display: inline-block;
    font-family: "Roboto Condensed", 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Verdana, Arial, Helvetica, sans-serif;
    font-size: 5rem;
    font-weight: 500;
    line-height: 1;
    color: #fff;
}

.fContactContainer .tel a::before{
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 42px;
    height: 42px;
    background: url("../images/icon_tel_w.png")no-repeat center #e00012;
    background-size: 100%;
    border-radius: 50%;
    margin-right: 8px;
    margin-top: -7px;
}

.fContactContainer .tel span{
    display: block;
    font-size: 1.5rem;
    line-height: 1.5;
    color: #fff;
}

.fContainer{
    display: flex;
    justify-content: space-between;
    padding: 50px 0;
}

.fInfo a.fLogo{
    display: inline-block;
    width: 255px;
    height: 79px;
}

.fInfo a.fLogo:hover{
    opacity: .8;
}

.fInfo P{
    font-size: 1.4rem;
    line-height: 1.5;
    margin-top: 1em;
}

.fInfo .snsLinks{
    margin-top: 15px;
}

.fInfo .snsLinks ul{
    display: flex;
}

.fInfo .snsLinks ul li{
    width: 40px;
    margin-right: 8px;
}

.fInfo .snsLinks ul li:last-child{
    margin: 0;
}

.fInfo .snsLinks ul li a{
    display: block;
    background-color: #e00012;
    border-radius: 50%;
}

.fInfo .snsLinks ul li a:hover{
    opacity: .8;
}

.fInfo a.ecLink{
    display: inline-block;
    text-decoration: underline;
    font-size: 1.5rem;
    line-height: 1.5;
    margin-top: 2em;
}

.fInfo a.ecLink:hover{
    text-decoration: none;
}

.fInfo a.ecLink::after{
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 18px;
    height: 18px;
    background: url("../images/icon_blank.png")no-repeat center;
    background-size: 100%;
    margin-left: 5px;
    margin-top: -3px;
}

.fSitemap{
    display: flex;
}

.fSitemap ul{
    font-size: 1.5rem;
    line-height: 1.5;
    margin-right: 3em;
}

.fSitemap ul:last-child{
    margin: 0;
}

.fSitemap ul li{
    margin-bottom: 1em;
}

.fSitemap ul li a{
    display: inline-block;
}

.fSitemap ul li a:hover{
    text-decoration: underline;
    color: #e00012;
}

.copyright{
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.5;
    padding: 1.25em 0;
}

.contactFixed{
    width: 100%;
    padding: 10px 5px 15px;
    background: linear-gradient(rgba(255,255,255,0), #fff);
    position: fixed;
    left: 0;
    bottom: 0;
}

.contactFixed ul{
    display: flex;
    justify-content: space-between;
}

.contactFixed ul li{
    width: 49.5%;
}

.contactFixed ul li a{
    display: block;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
    padding: 1.25em .75em;
    background-color: #303e52;
    border-radius: 50px;
}

.contactFixed ul li:nth-child(2) a{
    background-color: #e00012;
}

.contactFixed ul li a::before{
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 18px;
    height: 17px;
    background: url(../images/icon_tel_sp_fixed.png)no-repeat center;
    background-size: 100%;
    margin-right: 5px;
    margin-top: -3px;
}

.contactFixed ul li:nth-child(2) a::before{
    background-image: url(../images/icon_shop_w.png);
}






@media(max-width: 1080px){
    .fContact div.fTel a{
        font-size: 2.8rem;
    }
    
    .fContact div.fTel a::before{
        width: 30px;
        height: 30px;
    }
    
    .fSiteMap ul li{
        width: 32%;
        margin-right: 2%;
    }
    
    .fSiteMap ul li:nth-child(5n){
        margin-right: 2%;
    }
    
    .fSiteMap ul li:nth-child(3n){
        margin-right: 0;
    }
}



/* ------------------------------------------------------- tab / sp */
@media(max-width: 820px){
    .dispPc{
        display: none !important;
    }

    .dispSp{
        display: block !important;
    }

    p{
        font-size: 1.5rem;
    }
    
    .listDisc > li,
    .listNum > li{
        font-size: 1.5rem;
    }

    .listDisc > li::before{
        top: .55em;
    }
    
    header{
        height: 94px;
    }
    
    header.is-animation{
        height: 80px;
    }

    header .inner{
        height: 100%;
    }
    
    .siteDescription{
        font-size: 1.1rem;
        transition: all .2s;
    }
    
    header.is-animation .siteDescription{
        height: 0;
        opacity: 0;
        margin: 0;
    }
    
    .headerContainer{
        padding: 10px 0 0;
        transition: all .2s;
    }
    
    header.is-animation .headerContainer{
        height: 100%;
        padding: 0;
    }
    
    .hLogo a{
        width: 200px;
        height: 61px;
    }
    
    .telBtnSp{
        position: absolute;
        top: 34px;
        right: 62px;
        width: 44px;
        height: 44px;
        border: 1px solid #eee;
        border-radius: 5px;
        transition: all .2s;
    }

    header.is-animation .telBtnSp{
        top: 17px;
    }



    /*ハンバーガーメニュー
	ヘッダーまわりはサイトに合わせて調整してください*/
	#nav-drawer {
		position: absolute;
		top: 34px;
		right: 13px;
		width: 44px;
		height: 44px;
        border: 1px solid #eee;
		border-radius: 5px;
        transition: all .2s;
	}
    
    header.is-animation #nav-drawer{
        top: 17px;
    }

	/*チェックボックス等は非表示に*/
	.nav-unshown {
		display:none;
	}

	/*アイコンのスペース*/
	#nav-open {
	  	display: inline-block;
	  	width: 100%;
	  	vertical-align: middle;
	}
    
    #nav-open img{
        display: block;
    }

	/*ハンバーガーアイコンをCSSだけで表現*/
	#nav-open span, #nav-open span:before, #nav-open span:after {
	  	position: absolute;
	  	height: 3px;/*線の太さ*/
	  	width: 24px;/*長さ*/
	  	background: #fff;
	  	display: block;
	  	content: '';
	  	cursor: pointer;
	}
	#nav-open span:before {
	  	bottom: -8px;
	}
	#nav-open span:after {
	  	bottom: -16px;
	}

	/*閉じる用の薄黒カバー*/
	#nav-close {
	  	display: none;/*はじめは隠しておく*/
	  	position: fixed;
	  	z-index: 99;
	  	top: 0;/*全体に広がるように*/
	  	left: 0;
	  	width: 100%;
	  	height: 100%;
	  	background: black;
	  	opacity: 0;
	  	transition: .2s ease-in-out;
	}

	/*中身*/
	#nav-content {
	  	overflow: auto;
	  	position: fixed;
	  	top: 0;
	  	left: 0;
	  	z-index: 9999;/*最前面に*/
	  	width: 70%;/*右側に隙間を作る（閉じるカバーを表示）*/
	  	max-width: 330px;/*最大幅（調整してください）*/
	  	height: 100%;
	  	background: rgba(255,255,255,.9);/*背景色*/
	  	transition: .2s ease-in-out;/*滑らかに表示*/
	  	-webkit-transform: translateX(-105%);
	  	transform: translateX(-105%);/*左に隠しておく*/
		margin-top: 94px;
	}

	/*チェックが入ったらもろもろ表示*/
	#nav-input:checked ~ #nav-close {
	  	display: block;/*カバーを表示*/
	  	opacity: .5;
		margin-top: 94px;
	}
    
    header.is-animation #nav-content,
    header.is-animation #nav-input:checked ~ #nav-close{
        margin-top: 80px;
    }

	#nav-input:checked ~ #nav-content {
	  	-webkit-transform: translateX(0%);
	  	transform: translateX(0%);/*中身を表示（右へスライド）*/
	  	/* box-shadow: 6px 0 25px rgba(0,0,0,.15); */
	}
	
	#top header.is-animation #nav-content{
		background-color: rgba(255,255,255,.95);
		border: none;
	}
    
    .hNav .hContactBtns{
        flex-wrap: wrap;
        position: relative;
    }
    
    .hNav .hContactBtns > a{
        display: block;
        width: 100%;
        text-align: center;
        padding: 1.5em;
        background-color: #fff;
        border: none;
        border-radius: 50px;
        box-shadow: 0 0 5px rgba(0,0,0,.15);
        margin: 10px 10px 0;
    }
    
    .hNav .hContactBtns > a:nth-child(2){
        margin-right: 10px;
    }
    
    .hNav .hContactBtns .hTel{
        width: 100%;
        background-color: #fff;
        padding: 20px 0;
        border-radius: 5px;
        margin: 10px 10px 0;
        text-align: center;
    }
    
    .hNav .hContactBtns .hTel span{
        text-align: center;
    }
    
    .hNav nav{
        padding: 0;
    }
    
    .hNav nav ul{
        text-align: left;
    }
    
    .hNav nav > ul > li{
        display: block;
        font-size: 1.5rem;
        border-bottom: 1px dotted #ccc;
        margin: 0;
    }
    
    .hNav nav > ul > li > a{
        padding: 1.5em 1.25em;
        margin: 0;
    }
    
    .hNav nav > ul > li > a::before{
        content: '';
        display: inline-block;
        vertical-align: middle;
        width: 6px;
        height: 6px;
        border-top: 1px solid #e00012;
        border-right: 1px solid #e00012;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        margin-right: 8px;
        margin-top: -3px;
    }

    .hNav nav > ul > li > a[target="_blank"]::after{
        content: '';
        display: inline-block;
        vertical-align: middle;
        width: 14px;
        height: 14px;
        background: url("../images/icon_blank.png")no-repeat center;
        background-size: 100%;
        margin-left: 5px;
        margin-top: -2px;
    }
    
    .menuSingle .menuSecondLevel{
        display: none;
    }
    
    main{
        padding-top: 94px;
    }

    .topHero::before{
        height: 150px;
    }
    
    .topHero .slider ul li{
        width: 400px;
        height: 300px;
    }

    .topHeroTxt{
        width: 320px;
        height: 221px;
        margin-top: -100px;
    }

    .topHeroTxt p{
        width: 140px;
        height: 140px;
        left: -125px;
    }

    .topHeroTxt figure{
        width: 140px;
        height: 146px;
        right: -117px;
    }

    .topHeroCatch p{
        font-size: 2.4rem;
    }

    .topContentsWrapper{
        padding: 70px 0 80px;
    }

    .topContentsWrapper h2{
        font-size: 2.8rem;
    }

    .topContentsWrapper h2 span{
        font-size: 1.6rem;
    }

    .topReasonList{
        margin-bottom: 60px;
    }

    .topReasonList ul{
        justify-content: center;
        flex-wrap: wrap;
    }

    .topReasonList ul li{
        width: 47.5%;
        margin: 0 5% 5% 0;
    }

    .topReasonList ul li:nth-child(2){
        margin-right: 0;
    }

    .topReasonList ul li:last-child{
        margin: 0;
    }

    .topReasonList ul li .txtContents{
        padding: 25px;
    }

    .topReasonList ul li .txtContents::before{
        font-size: 3rem;
    }

    .topReasonList ul li .txtContents p{
        font-size: 1.8rem;
    }

    #topReason h3{
        font-size: 2rem;
    }

    .topProblem h3 span::after{
        border-width: 10px;
        margin-left: -10px;
    }

    .topProblemList ul li{
        font-size: 1.8rem;
    }

    .topProblemList ul li::before{
        width: 22px;
        height: 22px;
        top: .175em;
    }

    .topProblemList figure{
        width: 40%;
    }

    .topWorksSlider .slick-slider{
        max-width: 90%;
    }

    .topWorksSlider ul li span{
        font-size: 1.8rem;
    }

    .topWorksSlider ul li p{
        font-size: 2.2rem;
    }

    .topWorksList ul li a{
        font-size: 1.5rem;
    }

    .moreBtn{
        margin-top: 40px;
    }

    .moreBtn a{
        max-width: 220px;
        font-size: 1.4rem;
    }

    .moreBtn a::after{
        right: 20px;
    }

    .topServiceList ul li{
        width: 31%;
        margin: 0 3.5% 5% 0;
    }

    .topServiceList ul li:nth-child(4n){
        margin-right: 2%;
    }

    .topServiceList ul li:nth-child(3n){
        margin-right: 0;
    }

    .topServiceList ul li a span{
        font-size: 1.5rem;
    }

    .topProduce2Col .txtContents{
        width: 100%;
    }

    .topContentsWrapper .topProduce2Col .txtContents h2{
        text-align: center;
    }

    .topProduce2Col figure{
        width: 100%;
        margin-top: 30px;
    }

    .topVoiceList{
        margin-top: 60px;
    }

    #topStrength .container{
        flex-wrap: wrap;
    }

    #topStrength .container .imgCol{
        flex: auto;
        order: 1;
        display: flex;
        width: 50%;
    }

    #topStrength .container .imgCol figure{
        width: 50%;
        height: 125px;
    }

    #topStrength .container .mainCol{
        width: 100%;
        padding: 70px 5% 70px;
    }

    #topStrength .container .mainCol h2{
        font-size: 2.4rem;
    }

    #topStrength .container .mainCol p{
        text-align: center;
    }

    #topSetplan.topContentsWrapper h2::before{
        width: 88px;
        height: 37px;
    }

    .topSetplanHead > div{
        max-width: 40%;
    }

    .topSetplanHead > div p{
        font-size: 2.4rem;
    }

    .topSetplanHead > span{
        font-size: 2.4rem;
        padding: .5em;
    }

    .topSetplanBody{
        flex-wrap: wrap;
        padding: 40px;
    }

    .topSetplanBody .txtContents ul li{
        font-size: 1.8rem;
        padding-left: 1.85em;
    }

    .topSetplanBody .txtContents ul li::before{
        font-size: 1.8rem;
    }

    .topSetplanBody figure{
        max-width: 400px;
        margin: 15px 0 0;
    }

    .topBlog2Col .topBlogHead a{
        font-size: 1.4rem;
    }

    .blogList ul li a{
        flex-wrap: wrap;
    }

    .blogList ul li a span{
        width: 100%;
        font-size: 1.4rem;
        padding-bottom: .25em;
    }

    #fContact.topContentsWrapper{
        padding: 70px 0;
    }

    .fInfo P{
        font-size: 1.3rem;
    }

    .fInfo a.ecLink{
        font-size: 1.4rem;
    }

    .fInfo a.ecLink::after{
        margin-top: -2px;
    }

    .fSitemap ul{
        font-size: 1.4rem;
    }

    .copyright{
        font-size: 1.2rem;
    }

    .topLpBnr{
        margin-bottom: 80px;
    }



}



@media(max-width: 670px){
    .anchor{
        padding-top: 120px;
        margin-top: -120px;
}


    header{
        height: 94px;
    }
    
    header.is-animation{
        height: 70px;
    }
    
    .siteDescription{
        margin-top: .25em;
    }
    
    .hLogo a{
        width: 180px;
        height: 55px;
    }
    
    .telBtnSp,
    #nav-drawer{
        top: 36px;
    }
    
    header.is-animation .telBtnSp,
    header.is-animation #nav-drawer{
        top: 14px;
    }

    #nav-input:checked ~ #nav-close,
    #nav-content{
        margin-top: 94px;
    }
    
    header.is-animation #nav-input:checked ~ #nav-close,
    header.is-animation #nav-content{
        margin-top: 70px;
    }

    .hNav nav > ul > li{
        font-size: 1.4rem;
    }

    .topHero{
        margin-top: 10px;
    }

    .topHero::before{
        height: 100px;
    }
    
    .topHero .slider ul li{
        width: 280px;
        height: 200px;
        margin-right: 15px;
    }
    
    .topHeroTxt{
        width: 240px;
        height: 166px;
        margin-top: -35px;
    }

    .topHeroTxt p{
        width: 90px;
        height: 90px;
        left: -55px;
        bottom: inherit;
    }

    .topHeroTxt figure{
        width: 90px;
        height: 94px;
        right: -58px;
    }

    .topHeroCatch p{
        font-size: 2rem;
    }

    .topContentsWrapper{
        padding: 50px 0 60px;
    }

    .topContentsWrapper h2{
        font-size: 2.4rem;
    }

    .topContentsWrapper h2 br{
        display: inline-block;
    }

    .topContentsWrapper h2 span{
        font-size: 1.5rem;
    }

    .contentsTopTxt{
        margin-bottom: 2em;
    }

    .topReasonList{
        margin-bottom: 45px;
    }

    .topReasonList ul li{
        width: 100%;
        margin: 0 0 20px;
    }

    .topProblem h3 span{
        width: 100%;
        font-size: 1.8rem;
    }

    .topProblem h3 span br{
        display: inline-block;
    }

    .topProblemList{
        flex-wrap: wrap;
    }

    .topProblemList ul li{
        font-size: 1.6rem;
    }

    .topProblemList ul li::before{
        width: 20px;
        height: 20px;
    }

    .topProblemList figure{
        width: 80%;
        margin: 15px 0 0;
    }

    .slick-prev{
        left: -25px;
    }

    .slick-prev::before{
        width: 12px;
        height: 12px;
    }

    .slick-next{
        right: -25px;
    }

    .slick-next::before{
        width: 12px;
        height: 12px;
    }

    .topWorksSlider ul li span{
        font-size: 1.6rem;
        margin-top: 1em;
    }

    .topWorksSlider ul li p{
        font-size: 2rem;
    }

    .topWorksList ul li{
        width: 49.5%;
        margin: 0 1% 1% 0;
    }

    .topWorksList ul li:nth-child(4n){
        margin-right: 1%;
    }

    .topWorksList ul li:nth-child(2n){
        margin-right: 0;
    }

    .topWorksList ul li a{
        font-size: 1.4rem;
    }

    .topServiceList ul li{
        width: 48%;
        margin: 0 4% 6% 0;
    }

    .topServiceList ul li:nth-child(3n){
        margin-right: 4%;
    }

    .topServiceList ul li:nth-child(2n){
        margin-right: 0;
    }

    .topServiceList ul li a span{
        font-size: 1.4rem;
        margin-top: .25em;
    }

    .topServiceList ul li a figure::before{
        right: 13px;
        bottom: 12px;
    }

    .topServiceList ul li a figure::after{
        right: 5px;
        bottom: 5px;
    }

    .topVoiceList{
        margin-top: 45px;
    }

    .topVoiceList ul li{
        width: 32.5%;
        margin: 0 1.25% 1.25% 0;
    }

    .topVoiceList ul li:nth-child(5n){
        margin-right: 1.25%;
    }

    .topVoiceList ul li:nth-child(3n){
        margin-right: 0;
    }

    .topMovieList ul li{
        width: 100%;
        margin: 15px 0 0;
    }

    #topStrength .container .mainCol{
        padding: 50px 5%;
    }

    #topStrength .container .mainCol h2{
        font-size: 2.2rem;
    }

    #topStrength .container .mainCol h2 br{
        display: inline-block;
    }

    #topStrength .container .mainCol p{
        text-align: left;
    }

    #topStrength .container .imgCol{
        width: 100%;
    }

    #topSetplan.topContentsWrapper h2::before{
        width: 78px;
        height: 33px;
    }

    .topSetplanHead{
        flex-wrap: wrap;
    }

    .topSetplanHead > div{
        max-width: 80%;
    }

    .topSetplanHead > div p{
        font-size: 2rem;
    }

    .topSetplanHead > span{
        width: 100%;
        padding-bottom: 1.25em;
    }

    .topSetplanBody{
        padding: 30px 20px;
    }

    .topSetplanBody .txtContents ul li{
        font-size: 1.6rem;
    }

    .topSetplanBody .txtContents ul li br{
        display: none;
    }

    .topSetplanBody .txtContents ul li::before{
        font-size: 1.5rem;
    }

    #topSetplan .moreBtn{
        margin-top: 15px;
    }

    .topBlog2Col{
        flex-wrap: wrap;
    }

    .topBlog2Col .topBlogHead{
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        width: 100%;
        margin: 0;
    }

    .topContentsWrapper .topBlog2Col .topBlogHead h2{
        font-size: 1.5rem;
    }

    .topContentsWrapper .topBlog2Col .topBlogHead h2 span{
        font-size: 3.2rem;
    }

    .topBlog2Col .blogList{
        flex: auto;
    }

    .blogList ul li a{
        padding: 15px 10px;
    }

    #topBlog.topContentsWrapper{
        padding-bottom: 100px;
    }

    #fContact.topContentsWrapper{
        padding: 50px 0;
        background-image: url(../images/f_contact_bg_sp.jpg);
    }

    .fContactContainer .contactBtns{
        flex-wrap: wrap;
    }

    .fContactContainer .contactBtns a{
        max-width: 90%;
        font-size: 1.6rem;
        margin: 0 0 10px;
    }

    .fContactContainer .tel{
        margin-top: 10px;
    }

    .fContactContainer .tel a{
        font-size: 4rem;
    }

    .fContactContainer .tel a::before{
        width: 34px;
        height: 34px;
        margin-right: 5px;
        margin-top: -8px;
    }

    .fContactContainer .tel span{
        font-size: 1.3rem;
    }

    .fContainer{
        flex-wrap: wrap;
        padding: 30px 0;
    }

    .fInfo{
        order: 1;
        width: 100%;
        text-align: center;
        margin-top: 30px;
    }

    .fInfo .snsLinks ul{
        justify-content: center;
    }

    .fSitemap{
        width: 100%;
    }

    .fSitemap ul{
        width: 50%;
        margin: 0;
    }

    .topLpBnr{
        margin-bottom: 60px;
    }

    .topLpBnr a img:first-child{
        display: none;
    }

    .topLpBnr a img:nth-child(2){
        display: block;
    }












    



    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
}























