/* =================

common

================= */
*{
	font-family: "Noto Sans JP", arial, helvetica, sans-serif;
	box-sizing:border-box;
}

body{
    letter-spacing: 1.5px;
    line-height: 32px;
    overflow-x: hidden;
}

.pc{
	display:block;
}

.sp{
	display:none;
}

.sp_2{
    display:none!important;
}
.sp-br{
    display: block;
}

:root {
    /* //  文字色　// */
        --color: #2d2d2d;
    
    /* //  メインブルー　//   */
        --blue: #1c4c8f;
    /* //  サブブルー　//   */
        --sub-blue: #69afd7;
    /* //  薄いブルー　//   */
        --pastel-blue:#e9f1f8;

    /* //  灰色　//   */
    --gray:#f9f9f9;

    /* //  レッド　//   */
    --red: #fa6e6e;

    /* //  イエロー　//   */
    --yellow:rgb(240, 250, 194);


    /* //  特大サイズ文字　4rem// */
    --font-e: clamp(1.5rem, 0.965rem + 1.36vw, 4rem);
    /* //  大サイズ文字　2rem// */
    --font-a: clamp(1.25rem, 0.977rem + 1.36vw, 2rem);
    /* //  中サイズ文字　// */
    --font-b: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
    /* //  小サイズ文字　1.2rem// */
    --font-c: clamp(0.875rem, 0.739rem + 0.68vw, 1.25rem);
    /* //  極小サイズ文字　// */
    --font-d: 0.8rem;

    /* //  sp時中サイズ文字　// */
    --font-bs:clamp(1rem, 0.75rem + 1.25vw, 1.25rem);


}



.blue{
    color:var(--blue)
}

.pastel-blue{
    background: var(--pastel-blue)!important;
}

.color{
    color: var(--color)!important;
}

.weight{
    font-weight: bold!important;
}

.text{
    color:var(--color)
}

.xl_text{
    font-size: var(--font-e);
    font-weight: bold;
}

.l_text{
    font-size: var(--font-a);
    font-weight: bold;
}

.m_text{
    font-size: var(--font-b);
    font-weight: bold;
}

.s_text{
    font-size: var(--font-c);
}

.xs_text{
    font-size: var(--font-d);
}

.small{
    font-size: var(--font-d);
}

.title_accent{
    background: url(../img/accent.png) no-repeat left / 24px;
    padding-left: 55px;
}

.p_title .title_accent{
	background:none;
	position:relative;
}

.p_title .title_accent::before{
	content:"";
	width:1em;
	height:3px;
	background:#fff;
	transform:rotate(-45deg);
	position:absolute;
	left:10px;
	top:15px;
}

.title_accent_2{
    background: url(../img/accent_2.png) no-repeat left / 24px;
    padding-left: 35px;
    align-self: center;
}

.title_center{
    left:50%;
    transform: translateX(-50%);
    position:absolute;
}

.f_inner{
   max-width:65%;
   margin:0 auto;
}

.s_inner{
    width: 65%;
    margin:0 auto;
}

.footer_inner{
    max-width:65%;
    margin:0 auto;
}

.box{
    padding: 100px 0;
}

.box2{
    padding-bottom: 100px;
}

.contact_fix{
    position: fixed;
    width: 100%;
    bottom: 10%;
    right: 0;
    z-index: 10000;
}


.contact_fix img{
    display: block;
    width: 10%;
    height:auto;
    transition: all .5s;
    position: absolute;
    bottom: 0;
    right: 3%;
}

.contact_fix img:hover{
    transform: scale(1.05);
}


/* ========= animation before ======== */



.fade {
    transform:translateY(10px);
    opacity: 0;
    transition: transform 2s, opacity 1.5s, visibility 1s;
  }

  .fadey {
    transform:translateY(15px);
    opacity: 0;
    transition: transform 2s, opacity .5s, visibility 1s;
  }

  .fadeleft {
    transform:translateX(-100px);
    opacity: 0;
    transition: transform 1.8s, opacity 1.5s, visibility 1s;
  }

  .faderight {
    transform:translateX(100px);
    opacity: 0;
    transition: transform 1.8s, opacity 1.5s, visibility 1s;
  }


.fadein {
    opacity: 0;
    transition: opacity 2s, visibility 1s;
  }

  .line{
    width: 0%;
    transition: width 2s, opacity 1s, visibility 1s;
  }
 


/* ========= animation after ======== */


  .fadeanime,
  .fadeanimey{
    transform: translateY(0px);
    opacity: 1;
  }

  .fadeleftanime,
  .faderightanime
   {
    transform: translateX(0px);
    opacity: 1;
  }


  .fadeinanime {
    opacity: 1;
  }


  .lineanime{
    width: 10%;
  }
 



/* =================

header

================= */

.pcnav{
    width: 70%;
}

#navi ul {
	display: flex;
}

#navi ul>li {
    margin: 0;
    display: flex;
    width: 20%;
    transition: .5s;
}

#navi ul>li:hover>a {
    background: var(--blue);
    color: #fff;
    transition: .5s;
}

#navi ul>li:hover .hover_menu {
    height: 210px;
    transition: .5s;
}

#navi ul>li>a {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    width: 100%;
    line-height: 150%;
    text-align: center;
    height: 4vw;
}

.hover_menu {
    position: absolute;
    top: 4vw;
    left: 0;
    background-color: var(--blue);
    overflow: hidden;
    height: 0;
    transition: .5s;
    width: 100%;
}

#navi li .hover_menu .hover_inner {
	display: flex;
    width: 90%;
    box-sizing: border-box;
    padding: 2% 0;
    overflow: hidden;
	margin: 0 auto;
}

#navi li .hover_menu .hover_inner h2 {
    width: 20%;
    float: left;
    color: #fff;
    padding: 10px 0;
}

#navi li .hover_menu .hover_inner ol {
    width: 80%;
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    position: absolute;
    right: 0;
    overflow: hidden;
    gap: 10px;
}

#navi li .hover_menu .hover_inner ol li {
    width: 30%;
    float: left;
}

#navi li .hover_menu .hover_inner ol li a {
    color: #fff;
    padding: 15px 10px;
    display: block;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 400;
    border-bottom: 1px solid #ffffff52;
    position: relative;
    line-height: 150%;
}

#navi li .hover_menu .hover_inner ol li a:after {
    display: block;
    content: "";
    position: absolute;
    color: #fff;
    width: .5em;
    height: .5em;
    border: 1px solid #fff;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateX(-25%) rotate(45deg);
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: .5s;
}

#navi li .hover_menu .hover_inner ol li a:before {
    content: "";
    width: 0;
    border-bottom: 1px solid #fff;
    position: absolute;
    left: 0;
    bottom: -1px;
    transition: .5s;
}

#navi li .hover_menu .hover_inner ol li:hover a:before {
    width: 100%;
    transition: .5s;
}

#navi li .hover_menu .hover_inner ol li:hover a:after {
    right: 10px;
    transition: .5s;
}

.navwrap__sp{
display: none;
}

header{
	width: 100%;
    height: auto;
	position: fixed;
	z-index: 100000;
	background: #fff;
	display: flex;
    box-shadow: 0px 11px 11px -20px #3f3f3f;
}

.header-logo{
    width: 20%;
    height: 4vw;
}

.header-img{
	width: 60%;
    vertical-align: text-top;
}

.header-inner{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 90%;
	margin: 0 auto;
}



  /* 
===================

nav

===================
 */



.sp-ctabtn{
    width: 100%;
}

.sp-ctabox{
    display: flex;
    flex-direction: column;
}

.ctabox a{
    width: 100%;
}

.ctabox img{
    width: 100%;
}

.ctabox a:first-child{
    padding-bottom: 4%;
}

.cta-btn-box {
    display: flex;
    justify-content: center;
    padding-bottom: 6%;
}

.cta-btn-box > li {
    width: 45%;
}

.cta-btn-box > li:first-child {
    margin-right: 10px;
}



.hamburger {
    position: absolute;
    right: 0;
    top: 0;
    width: 75px;
    height: 75px;
    cursor: pointer;
    z-index: 1001;
    background-color: var(--blue);
}

.ham_line {
    position: absolute;
    width: 2rem;
    height: 3px;
    right: 20px;
    background-color: #fff;
    transition: all 0.5s;
}

.ham_line-1 {
    top: 28px;
}

.ham_line-2 {
    top: 38px;
}

.ham_line-3 {
    top: 48px;
}


.open .ham_line-1 {
    transform: rotate(-45deg);
    top: 38px;
}

.open .ham_line-2 {
    opacity: 0;
}

.open .ham_line-3 {
    transform: rotate(45deg);
    top: 38px;
}


/* 
  spnav(ナビ)
  =================================== */
.spnav {
    position: fixed;
    right: -100%;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgb(28 76 143);
    transition: all 0.5s;
    z-index: 1000;
    overflow-y: auto;
}


.open .spnav {
    right: 0;
}

.black-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 5;
    background-color: var(--blue);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 100;
}

.open .black-bg {
    opacity: 0.3;
    visibility: visible;
}

.spwrap {
    width: 100%;
    height: 100vh;
}

.sp-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20% auto 5% auto;
}

.sp-nav-list01 {
    width: 37%;
}

.sp-nav-list02 {
    width: 57%;
}

.sp-nav li{
    padding: 8px 0;
    line-height: 120%;
    text-align: left;
}

.spmenu li:not(:last-child){
    border-bottom: 1px solid var(--pastel-blue);
    list-style: none;
}


.spmenu li a{
    font-size: 14px;
}

.sp-menu-line  {
    display: flex;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--pastel-gray);
    transition: .2s;
}

.sp-menu-link{
    display: flex;
    padding: 0 0 16px 0;
    width: 100%;
}

.spmenu{
    color: var(--pastel-blue);
    width: 90%;
    margin: 0 auto;
}

.sp-ctabtn:hover{
    opacity: .8;
}

.spmenu > .cta_content {
    width: 65%;
}

 







/* =================

top

================= */


.top{
    background:url(../img/header_img.jpg) no-repeat center / cover;
    height: 700px;
    position: relative;
    z-index:0;
    overflow: hidden;
    padding-top: 75px;
    animation: top 1.6s ease-in-out .3s 1;
}

@keyframes top {
    from {
        opacity: 0;
        background-position: 50% -50%
    }

    to {
        opacity: 1;
        background-position:center;
    }
  }


.top:before{
    content: "";
    background:  linear-gradient(to right,rgba(28,76,143,0.8),rgba(56,177,246,.8));;
    position: absolute;
    width: 100%;
    height: 1000px;
    top: -80%;
    left: 0%;
    z-index: -1;
    transform: skewY(-45deg);
    animation: top_before 1.2s ease-in-out .4s 1;
}

@keyframes top_before {
    0% {
        opacity: 0;
        left: -80%;
    }

    40%{
        left: 0;
    }

    100% {
        
        opacity: 1;
    }
  }

  

.top_title{
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.top_title img {
    position: relative;
    width: 45%;
    height: auto;
    margin-left: 5vw;
    display: block;
    animation: top-title 1.8s ease-in-out .4s 1;
}


@keyframes top-title {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
        opacity: 1;
      transform: translateY(0);
    }
  }


/* =================

news

================= */

.news{
    padding-top: 48px;
}

.news_box{
    display: flex;
}

.nb_left{ 
	width: 25%;
}

.nb_right{ 
    width: 75%;
    height: 200px;
    overflow-y: scroll;
}

.news_link{
    display: block;
    position:relative;
    padding-top: 32px;
    text-align:left;
    width:53%;
    margin-left:2vw;
}

.news_link::before{
    content:"";
    border-bottom: 1px dotted var(--blue);
    position:absolute;
    width:100%;
    height:0;
    right:0;
    bottom:0;
}

.news_link span{
	position:absolute;
	right:0;
}

.news_box>.news_link{
	display:none;
}


.nb_right dl,
.nb_right dd{
    display:flex;
    align-items:center;
}

.nb_right dl:not(:last-child){
    border-bottom: 1px solid var(--gray);
}

.news_category{
    background: var(--sub-blue);
    padding: 2px 12px;
    margin: 16px;
    color: #fff;
    font-size: var(--font-d);
    font-weight: bold;
}



/* =================

about

================= */


.about{
    background: url(../img/img_2.jpg) no-repeat 80% 60% / 150%;
    position: relative;
    z-index:0;
    height: 500px;
    overflow: hidden;
}

.about::before{
    content: "";
    background:  linear-gradient(to right,rgba(28,76,143,0.8),rgba(56,177,246,.8));;
    position: absolute;
    width: 100%;
    height: 1000px;
    top: 20%;
    left: 0;
    z-index: -1;
    transform: skewY(-45deg);
}

.about_title{
    position: relative;
    background: url(../img/OUR_VISION.png) no-repeat left / contain;
    width: 100%;
    height: 100px;
    left: 0;
    margin-bottom: -48px;
    mix-blend-mode: screen;
    z-index: 1;
    margin-top: 48px;
}


.about_box{
    width: 50%;
    color: #fff; 
    transform: translate(100%, 0);
}

.about_box h2{
    font-weight: bold;
    font-size: var(--font-a);
    padding-bottom: 24px;
    line-height: 2.5rem;
}

.about_box p{
    font-size: var(--font-d);
    line-height: 1.8rem;
}



/* =================

business

================= */


.business{
    background: var(--pastel-blue);
    position: relative;
    padding: 100px 0;
    overflow:hidden;
}

.business_contents{
    padding-top: 200px;
    display: flex;
}

.business_contents_2{
    flex-direction: row-reverse;
}

.business_contents_2 .bc_left{
    padding-left: 10%;
    padding-right: 0;
}


.business_contents_2 .bc_left_2::before {
    left: 100px;
}


.business:before{
    content: "";
    position: absolute;
    background: url(../img/OUR_SERVICE.png) no-repeat center / contain;
    width: 100%;
    height: 100px;
    mix-blend-mode: screen;
    top: 150px;
}

.bc_left{
    width: 50%;
    padding-right:10%;
    position: relative;
    z-index: 0;
}

.bc_left:before{
    content: "";
    position: absolute;
    background: url(../img/img_back2.png) no-repeat center / contain;
    width: 100%;
    height: 100%;
    z-index: -1;
    left: -150px;
    top: -80px;
}

.bc_left_2::before{
    background: url(../img/img_back.png) no-repeat center / contain;
}

.bc_img{
	width: 100%;
	position:relative;
}

.bc_img img{
    width: 100%;
}


.bc_right{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bcr_link{
    align-self:flex-end;
    display: flex;
    justify-content: space-between;
    padding-top: 32px;
    padding-bottom: 8px;
    font-weight: bold;
}




.bcr_a,
.footer_list a{
    /*線の基点とするためrelativeを指定*/
    position:relative;
    /*リンクの形状*/ 
    color:var(--blue);
    padding: 10px 100px 10px 0;
    display:inline-block;
    text-decoration: none;
    outline: none;
}

.footer_list a{
    color:#fff;
}

.bcr_a::before,
.bcr_a::after,
.footer_list a::before,
.footer_list a::after{
content:'';
    position:absolute;
    z-index:1;
    bottom:0;
    left:0;
    background:var(--blue);
    width:100%;
    height:1px;
    transition:all 0.3s ease-in-out;
}

.footer_list a::before,
.footer_list a::after{
    background:#fff;
}

.bcr_a::after,
.footer_list a::after{
    width:0;
    background:#ccc;
}
 
.bcr_a:hover::after,
.footer_list a:hover::after{
    width:100%;
}

.bcr_a span::after,
.footer_list a span::after{
    content: '';
    position: absolute;
    top: 1.3em;
    right: 20px; 
    width: 5px;
    height: 5px;
    border-top: 1px solid var(--blue);
    border-right: 1px solid var(--blue);
    transform: rotate(45deg);
    transition: all .3s;
}

.footer_list a span::after{
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}

.bcr_a:hover span::after,
.footer_list a:hover span::after{
  right:15px;
}




.bc_h2 {
    font-size: var(--font-b);
    font-weight: bold;
    padding-left: 54px; 
    background: url(../img/icon_sozoku.png) no-repeat left / contain;
    display: flex;
}

.bc_span{
    font-size: var(--font-d);
    display: inline-block;
    padding-left: 20px;
}

.bc2{
    background: url(../img/icon_isan.png) no-repeat left / contain;
}

.bc3{
    background: url(../img/icon_hudosan.png) no-repeat left / contain;
}

.bc4{
    background: url(../img/icon_shogyo.png) no-repeat left / contain;
}

.bc5{
    background: url(../img/icon_yuigon.png) no-repeat left / contain;
}

.bcr_text p{
    border-top: 1px solid gray;
    padding-top: 24px;
    margin-top: 16px;
}




/* =================

cta

================= */


.cta{
    background: var(--blue);
}

.cta_content{
    display: flex;
    justify-content: space-between;
    align-items: end;
    width: 80%;
    margin: 0 auto;
}

.cta_tel,
.cta_mail{
    width: 49%;
    transition: all .5s;
}

.cta_tel:hover,
.cta_mail:hover{
    box-shadow: 0 2px 3px rgba(123, 170, 237, 0.3);
    opacity: .7;
}


.cta_content img,
.cta_content a{
    width: 100%;
    display: block;
    height: auto;
}


/* =================

map

================= */


.access{
    position: relative;
}

.access::after{
    content: "";
    position: absolute;
    background: url(../img/ACCESS.png) no-repeat center / contain;
    width: 100%;
    height: 100px;
    top: 150px;
    left: 0;
    z-index:-1
}

.mapbox iframe{
    width: 100%;
}


.access_h2{
    padding: 100px 0;
}

.access_items{
    display: flex;
    padding-top: 32px;
}

.access_items dd{
    padding-left: 42px;
}




/* =================

footer

================= */

footer{
    background: var(--blue);
    color: #fff;
}


.footer_contents,
.footer_right{
    display: flex;
}

.footer_contents{
    justify-content: space-between;
}


.footer_left{
    width: 40%;
    padding-right: 10%;
}

.footer_right{
    width: 50%;
}

.footer_logo{
    width:100%;
    margin-bottom: 32px;
}
    

.footer_list h2{
    font-size: var(--font-c);
    font-weight: bold;
    padding-bottom: 32px;
}

.footer_list:nth-child(2n){
    padding: 0 48px;
}

   /* ===============footer=============== */

.footer_contents{
    width:95%;
}  

.footer_right{
    display:block;
    width:95%;
    margin:auto;
}

.footer_logo{
    width: clamp(12.5rem, 11.364rem + 5.68vw, 15.625rem);
}

footer.box{
    padding:50px 0;
}

.footer_right,
.footer_left{
    width:100%;
    padding:0;
    width:90%;
    margin:auto;
    margin-bottom:30px;
}

.footer_left{
    margin:0 5% 0 0;
}

.footer_list:nth-child(2n){
    padding:0;
}

.footer_list h2{
    padding-bottom:1px;
}

.footer_list ul{
    margin-bottom:20px;
}


.footer_list ul li{
    display:inline-block;
    width: 100%;
}

.footer_list ul li a{
    display:block;
    position:relative;
    padding: 10px 100px 10px 0;
    margin-right:10px;
}












article.business{
	position:relative;
}

article.business .s_inner{
	position:relative;
	z-index:2;
}

.business_background{
	position:absolute;
	display:block;
	z-index:1;
}


.business_accent{
	top:0;
	left:0;
	width:40%;
}


.business_accent_1{
	top:5%;
	right:0;
	width:60%;
}



.business_accent_2{
	top:30%;
	right:0;
	width:50%;
}

.business_accent_3{
	bottom:5%;
	right:0;
	width:60%;
}


@media screen and (max-width: 1080px){
    .pc{
        display: none;
    }
    
    .sp{
        display: block;
    }

	.top{
		height:50vh;
		height:100vw;
		position:relative;
	}
	
	.top:before{
		content: "";
		width:100%;
		height:calc(100% - 75px);
		top:75px;
		left:0;
		clip-path: polygon(0 25%, 25% 0,100% 0, 100% 75%, 75% 100% ,0 100%);
		background: linear-gradient(to right, rgba(28, 76, 143, 0.8), rgba(56, 177, 246, .8));
		z-index: -1;
		position: absolute;
		transform: none;

	}

    header{
        height: 75px;
    }

    .header-logo{
        height: auto;
    }

    .header-img{
        width: 150px;
    }

	.top_title{
		position:absolute;
		top:50%;
		left:50%;
		transform: translate(-50%,-50%);
	}
	
	.top_title img{
		position:relative;
		width:100%;
		height:auto;
		margin-left:5vw;
		display:block;
	}

    .contact_fix{
        bottom: 5%;
    }

    .contact_fix img{
        width: 15%;
    }
    
	


	header,
	.header-inner{
		width:100%;
		display:block;
		box-sizing:border-box;
		overflow:hidden;
	}
	
	.header-inner .header-logo{
		margin-left:5%;
		margin-top:15px;
	}

	.header-inner .header-logo ,
	.header-inner .header-logo img{
		display:block;
	}

	.nav-list{
		margin-right:0;
	}

	.f_inner{
		overflow:hidden;
		position:relative;
		height:100%;
	}
	
	.news{
		padding-top:0;
	}
	
	.news_box{
		width:90%;
		margin:80px auto;
		display:block;
	}
	
	.nb_right,
	.nb_left{
		width:100%;
		padding-right:0;
		margin-bottom:20px;
	}

	.news_box>.news_link{
		text-align:right;
	}

	.box.s_inner{
		padding:20px 0;
	}
	
	.box .about_box h2{
		text-align:right;
		padding-bottom:10px;
	}

	.business:before{
		width:100%;
		left:0;
		top:85px;
	}
	
	.business_contents{
		padding-top:150px;
	}

	.f_inner,
	.s_inner{
		width: 90%;
		overflow:hidden;
		margin:auto;
	}

	.bc_h2{
		padding-top:10px;
		padding-bottom:10px;
	}
	
    .bcr_text p{
        margin-top: 0;
    }

    .bc_span{
        padding-left:0
    }

	.bc1{
		background: url(../img/icon_sozoku.png) no-repeat left / 1.5em;
	}
	
	.bc2{
	    background: url(../img/icon_isan.png) no-repeat left / 1.5em;
	}

	.bc3{
	    background: url(../img/icon_hudosan.png) no-repeat left / 1.5em;
	}

	.bc4{
	    background: url(../img/icon_shogyo.png) no-repeat left / 1.5em;
	}

	.bc5{
	    background: url(../img/icon_yuigon.png) no-repeat left / 1.5em;
	}

	.cta.box{
		padding:30px 0;
	}


    /* ==================footer================== */

    .footer_contents{
        flex-direction: column;
            display: block;
            width: 95%;
            margin: auto;
    }

    .footer_left{
        width: 90%;
        margin: auto;
        margin-bottom: 30px;
    }

    .footer_list ul li a {
        display: block;
        position: relative;
        padding: 10px 5px 10px 15px;
        margin-right: 10px;
    }

    .footer_list:not(:last-child){
        margin-bottom: 10%;
    }
	
}


@media screen and (max-width: 640px){

    .pc_2{
        display: none!important;
    }
    
    .sp_2{
        display: block!important;
    }

	.top_title img{
		width:80%;
		margin:auto;
	}
	.about::before{
		content:none;
	}
	
	article.about{
		margin-bottom:80px;
		background: url(../img/img_2.jpg) no-repeat left top / 100%;
		height:auto;
   }
	
	.about .about_box{
	    background: linear-gradient(to right, rgba(28, 76, 143, 0.8), rgba(56, 177, 246, .8));
	    width:100%;
	    transform:none;
	    margin-top:20%;
	    padding:5% 5% 10% 5%;
	}

	.about .box.s_inner{
		overflow:hidden;
		padding:0 0 0;
	}
	
	.about .about_box h2{
		text-align:left;
	}

	.nb_right dl{
		padding:10px 0 12px;
	}
	
	.nb_right dl,
	.nb_right dd{
		display:block;
		overflow:hidden;
	}
	
	.news_category{
		display:inline-block;
		float:left;
		margin:0;
		margin-right:10px;
		padding:1px 10px;
	}

	.nb_right dd p:not(.news_category){
		padding:1px 0;
	}

	.access_items,
	.business_contents{
		display:block;
		width:95%;
		margin:auto;
	}
	
	.business_contents_2 .bc_right,
	.business_contents_2 .bc_left,
	.bc_right,
	.bc_left{
		width:100%;
		padding:0;
		margin-bottom:10px;
	}

    .contact_fix{
        bottom: 3%;
    }

    .contact_fix img{
        width: 25%;
    }

    .bcr_text p{
        margin-top: 0;
    }

    .bc_h2 {
        flex-direction: column;
    }

	.bc1{
		background: url(../img/icon_sozoku.png) no-repeat left / 2em;
	}
	
	.bc2{
	    background: url(../img/icon_isan.png) no-repeat left / 2em;
	}

	.bc3{
	    background: url(../img/icon_hudosan.png) no-repeat left / 2em;
	}

	.bc4{
	    background: url(../img/icon_shogyo.png) no-repeat left / 2em;
	}

	.bc5{
	    background: url(../img/icon_yuigon.png) no-repeat left / 2em;
	}

	.cta.box{
		padding:20px 0;
	}
	
	.cta_content{
		display:block;
	}
	
	.cta_tel,
	.cta_mail{
		width:100%;
		margin:15px auto;
	}


	.title_accent{
		padding-left:35px;
	}

	.business_accent{
		top:0;
		left:-10%;
		width:120%;
	}

	.business_accent_1{
		top:25%;
		right:-10%;
		width:120%;
	}

	.business_accent_2{
		top:50%;
		right:-10%;
		width:120%;
	}

	.business_accent_3{
		bottom:0;
		right:-10%;
		width:120%;
	}

	.access_items dd{
		padding-left:20px;
	}


    /* ==================footer================== */

    .footer_inner{
        max-width: 90%;
    }


}