@charset "utf-8";
/* ----------------------------------------------------------------------
 user reset
---------------------------------------------------------------------- */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  list-style: none;
}
table {
  border-collapse: collapse;
	box-sizing: border-box;
}
ul {
    list-style: none;
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
/* ----------------------------------------------------------------------
 media query

@media (min-width: 768px) {

}
@media (min-width: 1025px) {

}
---------------------------------------------------------------------- */
/* ----------------------------------------------------------------------
 base
---------------------------------------------------------------------- */
html {
    font-size: 50%;
}
@media (min-width: 1025px) {
html {
    font-size: 62.5%;
}
}

body {
    color: #111;
    font-family: "Noto Sans JP", sans-serif, "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
    font-size: 1.8rem;
    line-height: 2;
}
@media (min-width: 768px) {
body {
    font-size: 1.8rem;
}
}
@media (min-width: 1025px) {

}

a {
	text-decoration: none;
	cursor: pointer;
	word-break: break-all;
}
a:hover {
    transition: .3s;
}

a img:hover {
  opacity: .9;
}

img.scale, img.responsive {
	max-width: 100%;
	height: auto;
}
img{
    -webkit-backface-visibility: hidden;
    vertical-align: bottom;
}
.border{
    border: 1px solid;
}
.shadow{
    text-shadow:0px 0px 5px #222;
}
/* ----------------------------------------------------------------------
 layout
---------------------------------------------------------------------- */
.flex{
    display: flex;
}

.fl-reverse {
	flex-direction: row-reverse;
}

.fl-wrap{
    flex-wrap: wrap;
}
.fl-column{
    flex-direction: column;
}
.fl-center{
    justify-content: center;
    align-items: center;
}
.fl-between.fl-between{
    flex-wrap: wrap;
    justify-content: space-between;
}
.fl-justify{
    justify-content: center;
}
.fl-end{
	justify-content: flex-end;
}
.fl-start{
	justify-content: flex-start;
}

.fl-align{
    align-items: center;
}
.fl-align-start{
    align-items: flex-start;
}
.grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.grid-column{
    padding: 4.6rem 3rem;
    border-radius: 10px;
    color: #444;
}

.col-2{
    width: 100%;
}
@media (min-width:768px) {
.col-2 {
    width: 48%;
}
}

.col-xs-2 {
    width: 48%;
}


.col-3{
    width: 100%;
}
@media (min-width:768px) {
.col-3 {
    width: 31%;
}
}

.col-xs-3 {
    width: 31%;
}

.col-4{
    width: 46%;
}
@media (min-width:768px) {
.col-4 {
    width: 24%;
}
}

.contents,.contents-02{
    max-width: 100%;
    padding: 0 2.5rem;
}
@media (min-width:768px) {
	.contents,.contents-02{
        margin-right: auto;
        margin-left: auto;
    }
	.contents{
        width: 94%;
    }
    .contents-02{
        width: 90%;
    }
}

@media (min-width: 1025px) {
	.contents{
        width: 120rem;
    }
    .contents-02{
        width: 100rem;
    }
}

.text-c{
    text-align: center;
}
.text-r{
    text-align: right;
}
.text-lc,.text-l{
    text-align: left;
}


@media (min-width:768px) {
.text-lc{
    text-align: center;
}
}



/* ----------------------------------------------------------------------
 スマホ特例
---------------------------------------------------------------------- */
@media (max-width:767px) {
.sp-column {
    flex-direction: column;
}
.sp-center{
    text-align: center;
}
.sp-mgn {
	padding-left: 2.5rem;
	padding-right: 2.5rem;
}
.sp-mt-1 {
	margin-top: 1rem;
}	
.sp-mt-3 {
	margin-top: 3rem;
}
.sp-mt-5 {
	margin-top: 5rem;
}
.sp-mt-10 {
	margin-top: 10rem;
}
}

/* ----------------------------------------------------------------------
 margin
---------------------------------------------------------------------- */
.mtb-1{
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.mtb-2{
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.mt-1{
    margin-top: 1rem;
}
.mt-2{
    margin-top: 2rem;
}

.mt-3{
    margin-top: 1.5rem;
}
@media (min-width: 768px) {
	.mt-3{
	   	margin-top: 3rem;
	}
}

.mt-4{
    margin-top: 2rem;
}
@media (min-width: 768px) {
	.mt-4{
	   	margin-top: 4rem;
	}
}

.mt-5 {
	margin-top: 2.5rem;
}
@media (min-width: 768px) {
	.mt-5{
	   	margin-top: 5rem;
	}
}
.mt-6 {
	margin-top: 3rem;
}
@media (min-width: 768px) {
	.mt-6{
	   	margin-top: 6rem;
	}
}


.mt-7 {
	margin-top: 3.5rem;
}
@media (min-width: 768px) {
	.mt-7{
	   	margin-top: 7rem;
	}
}


.mt-8 {
	margin-top: 4rem;
}
@media (min-width: 768px) {
	.mt-8{
	   	margin-top: 8rem;
	}
}

.mt-10{
    margin-top: 5rem;
}
@media (min-width: 768px) {
	.mt-10{
	   	margin-top: 10rem;
	}
}


.mt-15{
    margin-top: 5rem;
}
@media (min-width: 768px) {
	.mt-15{
	   	margin-top: 15rem;
	}
}


.mt-20{
    margin-top: 5rem;
}
@media (min-width: 768px) {
	.mt-20{
	   	margin-top: 20rem;
	}
}


.ml-1{
    margin-left: 1rem;
}
.ml-2{
    margin-left: 2rem;
}
.ml-3{
    margin-left: 3rem;
}

.m-auto {
	margin-left : auto;
	margin-right: auto; 
}
.pd-1{
    padding: 1rem;
}

.pb-20 {
	padding-bottom: 10rem;
}
@media (min-width: 1025px) {
.pb-20 {
	padding-bottom: 20rem;
}
}


.pd-tb-4 {
	padding: 4rem 0;
}
.mg-lr-3 {
	margin-left: 3rem;
	margin-right: 3rem;
}


/* ----------------------------------------------------------------------
 フォント関連
---------------------------------------------------------------------- */
/* サイズ */
.fs-100{
    font-size: 7.5rem;
    line-height: 1.5;
}
@media (min-width: 768px) {
	.fs-100{
    	font-size: 10rem;
	}
}


.fs-75{
    font-size: 5.625rem;
    line-height: 1.5;
}
@media (min-width: 768px) {
	.fs-75{
    	font-size: 7.5rem;
	}
}

.fs-45{
    font-size: 3.375rem;
    line-height: 1.5;
}
@media (min-width: 768px) {
	.fs-45{
    	font-size: 4.5rem;
	}
}



.fs-25{
    font-size: 1.875rem;
    line-height: 1.7;
}
@media (min-width: 768px) {
	.fs-25{
    	font-size: 2.5rem;
	}
}

.fs-20{
    font-size: 1.5rem;
    line-height: 1.7;
}
@media (min-width: 768px) {
	.fs-20{
    	font-size: 2rem;
	}
}

.fs-15{
    font-size: 1.3rem;
    line-height: 1.7;
}
@media (min-width: 768px) {
	.fs-15{
    	font-size: 1.5rem;
	}
}

/* 見出し */
.heading-60 {
	font-size: 4rem;
	line-height: 1.7;
	font-weight: 700;
}
@media (min-width: 768px) {
	.heading-60 {
		font-size: 6rem;
	}
}

.heading-40 {
	font-size: 2.75rem;
	line-height: 1.7;
	font-weight: 700;
}
@media (min-width: 768px) {
	.heading-40 {
		font-size: 4rem;
	}
}

.heading-30 {
	font-size: 2.25rem;
	line-height: 1.7;
	font-weight: 700;
}
@media (min-width: 768px) {
	.heading-30 {
		font-size: 3rem;
	}
}


/* 種類 */
.en{
    font-family: 'Poppins', sans-serif;
	font-weight: 700;
}
.bold{
    font-weight: 700;
}
.underline {
	border-bottom: 2px solid;	
}
.maker {
	color: #ED6D2C;
	font-weight: 700;
	background: linear-gradient(transparent 0%, #FEEEE1 0%);
	
}
/* 色*/
.base-color{
    color: #feeee1;
}
.main-color{
    color: #ED6D2C;
}
.white{
    color: #fff;
}
.black{
    color: #111;
}
/* インデント */
.indent-1 {
    padding-left:1em;
    text-indent:-1em;
}
/* ----------------------------------------------------------------------
 背景色
---------------------------------------------------------------------- */
.bg{
    background: #ECF3FB;
}
.bg-base{
    background: #FEEEE1;
}
.bg-main{
    background: #ED6D2C;
}
.bg-black{
    background: #111;
}


/* padding */
.bg-pd {
	padding: 7.5rem 0;
}
@media (min-width: 1025px) {
.bg-pd {
	padding: 15rem 0;
}
}


.bg-triangle {
	width: 0;
	height: 0;
	border: 50vw solid transparent;
	border-top: 10vh solid #fff;
	border-bottom: none;
}
@media (min-width: 768px) {
	.bg-triangle {
		border: 49.5vw solid transparent;
		border-top: 33vh solid #fff;
		border-bottom: none;
	}
}

/* ----------------------------------------------------------------------
 表示・非表示
---------------------------------------------------------------------- */
.sp-on{
    display: block;
   }
@media (min-width: 1025px) {
	.sp-on{
        display: none;
    }
}
.tab-on{
    display: none;
}
@media (min-width: 768px) {
.tab-on{
    display: inline-block;
}
}

.pc-on{
    display: none;
}
@media (min-width: 1025px) {
.pc-on{
    display: block;
}
}


/* ----------------------------------------------------------------------
 サイト共通
---------------------------------------------------------------------- */
header{
    width: 100%;
    height: 60px;
    position: fixed;
    z-index: 99;
	background: #fff;
	box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
@media (min-width: 1025px) {
	header{
        display: flex;
		align-items: center;
        height: 80px;
    }
}
header nav{
        margin-left: auto;
        margin-right: 2rem;
}
header a{
        color: #ED6D2C;
}

.header-logo{
	display: flex;
	align-items: center;
	width: 45%;
	height: 100%;
    margin: 0 1.5rem;
}
@media (min-width: 1025px) {
	.header-logo{
		width: auto;
        margin: 0 3rem;
    }
}
.header-logo a {
	display: flex;
	align-items: center;
}

/*パソコンメニュー*/
.pc-nav {
	display: none;
}
@media (min-width: 1025px) {
	.pc-nav{
        display: flex;
		align-items: center;
    }
    .pc-nav li{
        margin: 0 1rem;
		font-size: 12px;
		line-height: 1.7;
    }
	.pc-nav li a {
		color: #111;
		
	}
    .pc-nav li a:hover{
        padding-bottom: 0.1rem;
        border-bottom: 2px solid #ED6D2C;
    }
}
@media (min-width: 1400px) {
    .pc-nav li{
        margin: 0 2rem;
		font-size: 15px;
    }
}

.header-tel {
	display: none;
}
@media (min-width: 1025px) {
.header-tel {
	display: flex;
	align-items: center;
	height: 100%;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
}
@media (min-width: 1400px) {
.header-tel {
	padding-left: 3rem;
	padding-right: 3rem;
}
}

.header-contact-btn {
	display: none;
}
@media (min-width: 1025px) {
.header-contact-btn{
    display: flex;
	align-items: center;
	justify-content: center;
    width: 16rem;
	height: 100%;
    text-align: center;
	background: #ED6D2C;
}
}
@media (min-width: 1400px) {
.header-contact-btn{
    width: 20rem;
}	
}
.header-contact-btn:hover{
    color: #ED6D2C;
	background: none;
}

/* スマホメニュー */
.sp_nav{
        display: block;
}
@media (min-width: 1025px) {
	.sp_nav{
        display: none;
    }
}



.open #global-nav {
    z-index: 1000;
    visibility: visible;
}
#global-nav {
    visibility: hidden;
    position: fixed;
    display: table;
    vertical-align: middle;
    color: #fff;
    top: 0;
    height: 100%;
    width: 100%;
    text-align: center;
    font-size: 16px;
}
#global-nav ul {
    display: table-cell;
    vertical-align: middle;
    list-style: none;
}
#global-nav a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 10px 0;
}
/*nav-list*/
#global-nav ul li {
    opacity: 0;
    -webkit-transform: scaleX(0) translateX(-260px);
    transform: scaleX(0) translateX(-260px);
    -webkit-transition: none;
    transition: none;
}
.open #global-nav ul li {
    opacity: 1;
    -webkit-transform: scaleX(1) translateX(0);
    transform: scaleX(1) translateX(0);
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
}
.open #global-nav ul li:nth-child(2) {
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
}
.open #global-nav ul li:nth-child(3) {
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
}
.open #global-nav ul li:nth-child(4) {
    -webkit-transition-delay: .4s;
    transition-delay: .4s;
}
.open #global-nav ul li:nth-child(5) {
    -webkit-transition-delay: .5s;
    transition-delay: .5s;
}
.open #global-nav ul li:nth-child(6) {
    -webkit-transition-delay: .6s;
    transition-delay: .6s;
}
.open #global-nav ul li:nth-child(7) {
    -webkit-transition-delay: .7s;
    transition-delay: .7s;
}
.open #global-nav ul li:nth-child(8) {
    -webkit-transition-delay: .8s;
    transition-delay: .8s;
}
/*#nav-bg*/
#nav-bg {
    content: "";
    width: 45px;
    height: 45px;
    top: 8px;
    right: 10px;
    display: block;
    position: fixed;
    background: rgba(255,255,255,0.6);
    box-shadow: 0 0.5rem 3rem rgba(153, 153, 153, 0.3);
    box-sizing: border-box;
    z-index: 999;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}
.open #nav-bg {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .6s ease-out;
    transition: all .6s ease-out;
    background: #ED6D2C;
    width: 3000px;
    height: 3000px;
    margin-right: -1200px;
    margin-top: -1200px;
}
/*#nav-toggle*/
#nav-toggle {
    display: block;
    position: fixed;
    right: 18px;
    top: 2px;
    width: 25px;
    height: 30px;
    cursor: pointer;
    padding: 10px 11px;
    z-index: 1001;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
#nav-toggle div {
    position: relative;
}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 20px;
    background: #ED6D2C;
    left: 11px;
    zoom: 1;
    -webkit-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
    top: 12px;
}
#nav-toggle span:nth-child(2) {
    top: 19px;
}
#nav-toggle span:nth-child(3) {
    top: 26px;
}
.open #nav-toggle {
    background: transparent;
}
.open #nav-toggle span {
    background: #fff;
}
.open #nav-toggle span:nth-child(1) {
    top: 25px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    zoom: 1;
}
.open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
}
.open #nav-toggle span:nth-child(3) {
    top: 25px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    zoom: 1;
}

/* footer */
footer{
    max-width: 100%;
	height: auto;
    padding: 2rem 0;
}
@media (min-width: 1025px) {
footer{
	height: 35rem;
    padding: 6rem 0 2rem;
}	
}

.footer-nav a{
    color: #fff;
    font-size: 15px;
}
.footer-nav a:hover{
    padding-bottom: 0.1rem;
    border-bottom: 2px solid;
}
.footer-nav li{
    margin-right: 5rem;
}

/* サブナビ */
.sub-nav li {
	position: relative;	
	margin: .0rem 0 .5rem 1rem;
	padding: .5rem 0 .1rem 2rem;
	font-size: 13px;
}

.sub-nav li::after {
    display: block;
    content: '';
    position: absolute;
    top: 1.3em;
    left: 0em;
    width: 10px;
    height: 2px;
    background-color: #ED6D2C;
}

.sub-nav li a {
    font-size: 14px;
    padding: 2px 0;
}


.copyright{
	margin-left: auto;
	margin-right: auto;
    font-size: 12px;	
}
@media (min-width: 1025px) {
.copyright{
	align-self: flex-end;
	margin-top: 32rem;
    margin-left: auto;
	margin-right: 0;
}
}



/* お問い合わせ */
.contact-area{
    width: 100%;
    padding: 7rem 0;
    background: url(../images/contact-area.jpg) center;
    background-size: cover;
	margin-top: 10rem;
}
@media (min-width: 1025px) {
    .contact-area{
		height: 26rem;
		margin-top: 20rem;
    }
}









/* ボタン */
.btn{
	display: block;
    height: 50px;
	line-height: 50px;
	text-align: center;
    font-weight: 700;
	border-radius: 60px;
	margin-left: 2.5rem;
	margin-right: 2.5rem;
	min-width: 280px;
}
@media (min-width: 1025px) {
	.btn{
		height: 60px;
		line-height: 60px;
		width: 435px;
		margin-left: auto;
		margin-right: auto;
    }
}
.btn:hover {
  transition: all .2s;
}

/* ancor-btn */
.ancor-btn{
	display: block;
    height: 40px;
	line-height: 40px;
	text-align: center;
	font-size: 10.5px;
    font-weight: 700;
	border-radius: 50px;
	min-width: 15rem;
}
@media (min-width: 768px) {
	.ancor-btn{
		font-size: 13px;
    }
}
@media (min-width: 1025px) {
	.ancor-btn{
		height: 50px;
		line-height: 50px;
		font-size: 15px;
		width: 90%;
    }
}
.ancor-btn:hover {
  transition: all .2s;
}



/* メインカラー */
.btn-main-color {
	color: #fff;
	background: #ED6D2C;
	border: 2px solid #ED6D2C;
	
}
.btn-main-color:hover {
  background: none;
  color: #ED6D2C;
}

/* 白色 */
.btn-white {
	color: #ED6D2C;
	background: #fff;
	border: 2px solid #fff;
	
}
.btn-white:hover {
  background: none;
  color: #fff;
}





/* text-area */
.text-area {
	width: 100%;
	margin-left: 2.5rem;
	margin-right: 2.5rem;
}
@media (min-width: 1025px) {
.text-area {
	width: 56rem;
	margin-left: 0;
	margin-right: 0;
}
}

.text-area-l {
	justify-content: center;
}
@media (min-width: 1025px) {
.text-area-l {
	justify-content: flex-end;
	margin-right: 10rem;
}
}

.text-area-r {
	justify-content: center;
}
@media (min-width: 1025px) {
.text-area-r {
	justify-content: flex-start;
	margin-left: 10rem;
}
}

/* text左右余白 **/
.text-pd {
	padding-left: 2.5rem;
	padding-right: 2.5rem;
}


/* ----------------------------------------------------------------------
 top
---------------------------------------------------------------------- */
.full a {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  margin: 0;
}
.full a.img01 {
   background-image: url("../images/hero-sp.jpg");
}
.full a.img02 {
   background-image: url("../images/hero-02-sp.jpg");
}
.full a.img03 {
   background-image: url("../images/hero-03-sp.jpg");
}
.full a.img04 {
   background-image: url("../images/hero-04-sp.jpg");
}
.full a.img05 {
   background-image: url("../images/hero-05-sp.jpg");
}


@media (min-width: 768px) {
	.full a.img01 {
	   background-image: url("../images/hero.jpg");
	}
	.full a.img02 {
	   background-image: url("../images/hero-02.jpg");
	}
	.full a.img03 {
	   background-image: url("../images/hero-03.jpg");
	}
	.full a.img04 {
	   background-image: url("../images/hero-04.jpg");
	}
	.full a.img05 {
	   background-image: url("../images/hero-05.jpg");
	}
}
.full .slick-dots {
	bottom: 3%;
	z-index: +1;
}

/* hover時の色を変更 */
.full .slick-dots li button:hover:before,
.full .slick-dots li button:focus:before
{
    opacity: 1;
    color: #ED6D2C;
}

.full .slick-dots li button:before {
    font-family: 'slick';
    font-size: 18px;
    line-height: 30px;

    position: absolute;
    top: 0;
    left: 0;

    width: 22px;
    height: 10px;

    /* 元のcontentプロパティの値だとfont-sizeを変更した際に位置がずれてしまうので値を変更 */
    /* content: '•'; */
    content: '●';
    text-align: center;

    opacity: .25;
    color: #111;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* active時の色を変更 */
.full .slick-dots li.slick-active button:before
{
    opacity: .75;
    color: #ED6D2C;
}



/* キャッチ */
.position-relative {
	position: relative;
}


.top-catch {
	width: 100%;
	height: 100%;
	background: #ED6D2C;
	padding: 4rem;
	margin-top: 4rem;
}
@media (min-width: 768px) {
.top-catch {
	width: 40rem;
	background: none;
	padding: 0;
	margin-top: 0;
}
}

@media (min-width: 768px) {
.top-catch-bg {
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
	background: #ED6D2C;
	width: 50%;
	height: 100%;
}
}


/* 3大被害 */
.top-3dai-higai-area {
	display: flex;
	flex-direction: column;
	height: auto;
}
@media (min-width: 768px) {
	.top-3dai-higai-area {
		flex-direction: row-reverse;
		height: 71rem;
	}
}

.top-nezumi-3dai {/*img*/
	width: 70%;
}
@media (min-width: 768px) {
.top-nezumi-3dai {/*img*/
	width: 360px;
}
}

.top-3dai-higai-text {
	margin-top:  -5rem;
	margin-left: 1rem;
	width: 96%;
}
@media (min-width: 768px) {
	.top-3dai-higai-text {
		margin-top: -5rem;
		margin-left: 5rem;
		width: 40rem;
	}
}


.top-3dai-higai-circle {
	position: relative;
	width: 100%;
	height: 83rem;
}
@media (min-width: 768px) {
	.top-3dai-higai-circle {
		width: 60rem;
		height: 71rem;
	}
}


/* サークルポジション */
.circle-positon-1 {
	position: absolute;
	top: 3rem;
	left: 50%;
	transform: translateX(-50%);
}
@media (min-width: 768px) {
	.circle-positon-1 {
		top: 3rem;
	}
}

.circle-positon-2 {
	position: absolute;
	top: 32.5rem;
	left: 50%;
	transform: translateX(-50%);
}
@media (min-width: 768px) {
	.circle-positon-2 {
		top: 35rem;
		/*left: 4.5rem;*/
		left: 7.5rem;
		transform: translateX(-2.25rem);
	}
}
.circle-positon-3 {
	position: absolute;
	top: 60rem;
	right: 50%;
	transform: translateX(50%);
}
@media (min-width: 768px) {
	.circle-positon-3 {
		top: 35rem;
		right: 0;
		transform: translateX(0%);
	}
}


.circle-area{
    margin: 50px 0;
    text-align: center;
}
@media (min-width: 768px) {
	.circle-area{
    	margin: 100px 0;
	}
}


.circle {
    position: relative;
    display: inline-block;
    text-align: center;
}
.circle:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 25rem;
    height: 25rem;
    border-radius: 50%;
	background: #FEEEE1
}
@media (min-width: 768px) {
.circle:before {
    width: 32rem;
    height: 32rem;
}
}




/* 動画埋め込み */
.movie-wrap {
    position: relative;
    padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
    height: 0;
    overflow: hidden;
    margin: 1rem auto 5rem auto;
}
.movie-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media (min-width: 1025px) {
.movie-wrap {
    margin: 6rem auto 10rem auto;
	width: 80%;
}
}




.top-faq {
	background: #fff;
	margin-top: 2.5rem;
	padding: 4rem 4rem;
}
@media (min-width: 1025px) {
.top-faq {
	padding: 4rem 10rem;
	margin-top: 5rem;
}
}

/* 注意書き */
.top-attention {
	border: 4px solid #ED6D2C;
	color: #ED6D2C;
	font-weight: 700;
	font-size: 17px;
	text-align: left;
	padding: 3rem;
}
@media (min-width: 1025px) {
.top-attention {
	font-size: 25px;
	text-align: center;
	padding: 6rem;
}
}


/* ----------------------------------------------------------------------
 サブページ共通
---------------------------------------------------------------------- */
.wrapper {
    overflow: hidden;
    width: 100%;
    padding-top: 55px;
}
@media (min-width: 1025px) {
    .wrapper{
        padding-top: 65px;
    }
}

/* 背景画像 */
.feature-sub-bg{
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/feature-main.jpg) center center;
}
.movie-sub-bg{
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/movie-main.jpg) center center;
}
.faq-sub-bg{
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/faq-main.jpg) center center;
	
}
.company-sub-bg{
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/company-main.jpg) center center;
}
.case-study-sub-bg{
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/case-study-main.jpg) center center;
}
.restaurant-sub-bg{
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/restaurant-main.jpg) center center;
}
.factory-sub-bg{
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/factory-main.jpg) center center;
}
.livestock-sub-bg{
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/livestock-main.jpg) center center;
}
.system-sub-bg{
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/system-main.jpg) center center;
}
.contact-sub-bg{
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/contact-main.jpg) center center;
}


.sub-img{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
    width: 100%;
    height: 250px;
    background-size: cover;
}
@media (min-width: 1025px) {
	.sub-img{
        height: 620px;
    }
}

/* ----------------------------------------------------------------------
 feature
---------------------------------------------------------------------- */
.feature-bg-white {
	background: #fff;
	margin-top: 2.5rem;
	padding: 5rem 2.5rem;
}
@media (min-width: 1025px) {
.feature-bg-white {
	padding: 10rem 10rem;	
}
}
.feature-icon-women {
	width: 150px;
}
@media (min-width: 1025px) {
.feature-icon-women {
	width: 220px;
}
}


.fukidashi {
	position: relative;
	display: inline-block;
	box-sizing: border-box;
	
	border: 4px solid #ED6D2C;
	text-align: left;
	padding: 3rem 1.5rem;
	margin-top: 5rem;
	width: 100%;
}
@media (min-width: 768px) {
	.fukidashi {
		text-align: center;
		padding: 3rem;
	}
}
@media (min-width: 1025px) {
	.fukidashi {
		padding: 3rem;
	}
}
.fukidashi::before {
  content: "";
  position: absolute;
  top: -42px;
  left: calc(50% - 5px);
  margin-left: -12px;
  border: 18px solid transparent;
  border-bottom: 24px solid #fff;
  z-index: 2;
}
.fukidashi::after{
  content: "";
  position: absolute;
  top: -54px;
  left: calc(50% - 5px);
  margin-left: -18px;
  border: 24px solid transparent;
  border-bottom: 30px solid #ED6D2C;
  z-index: 1;
}


/* 横スクロール */
.scroll-area {
  overflow: auto;
  white-space: nowrap;
}
.scroll-area::-webkit-scrollbar {
  height: 7px;
}
.scroll-area::-webkit-scrollbar-track {
  background: #efefef；
}
.scroll-area::-webkit-scrollbar-thumb {
	background: #eee;
}
/*tb-type-01*/
.tb-type-01 {
	table-layout: fixed;
	width: 100%;
	min-width: 100%;
	border-top: 2px solid #ED6D2C;
    border-bottom: 2px solid #ED6D2C;
}


.tb-type-01 tr {
    border-top: 1px solid #ED6D2C;
    border-bottom: 1px solid #ED6D2Cc;
}

.tb-type-01 th {
	width: 11rem;
	vertical-align: middle;
	text-align: center;
	font-weight: 700;
	color: #ED6D2C;
	background: #FEEEE1;	
	font-size: 14px;
	padding: .5rem 0;
}
@media only screen and (min-width: 768px) {
.tb-type-01 th {
	width: 18rem;
	font-size: 16px;
}
}
@media only screen and (min-width: 1025px) {
.tb-type-01 th {
	width: 25rem;
	font-size: 18px;
	padding: 2rem 1rem;
}
}


.tb-type-01 td {
	width: 22rem;
	font-size: 12px;
	line-height: 2;
	padding: 2rem;
	text-align: center;
	vertical-align: middle;	
}
@media only screen and (min-width: 768px) {
	.tb-type-01 td {
		width: 25rem;
		font-size: 14px;
		padding: 3rem;
	}
}
@media only screen and (min-width: 1025px) {
	.tb-type-01 td {
		font-size: 18px;
	}
}


/* ----------------------------------------------------------------------
 company
---------------------------------------------------------------------- */
/*tb-type-03*/
.tb-type-03 {
	table-layout: auto;
	width: 100%;
	min-width: 100%;
	border-collapse: collapse;
	border-top: none;
    border-bottom: none;
}
@media only screen and (min-width: 768px) {
.tb-type-03 {
	table-layout: fixed;
	border-top: 2px solid #ED6D2C;
    border-bottom: 2px solid #ED6D2C;
}
}
.tb-type-03 tr {
    border-top: none;
    border-bottom: none;
}
@media only screen and (min-width: 768px) {
	.tb-type-03 tr {
    	border-top: 1px solid #ED6D2C;
    	border-bottom: 1px solid #ED6D2Cc;
	}
}
.tb-type-03 th {
	display: block;
	vertical-align: middle;
	text-align: center;
	font-weight: 700;
	color: #ED6D2C;
	background: #FEEEE1;	
	width: 100%;
	font-size: 15px;
	padding: 5px 0px;
}
@media only screen and (min-width: 768px) {
.tb-type-03 th {
	display: table-cell;
	width: 25%;
	font-size: 18px;
	padding: 20px 10px;
}
}
.tb-type-03 td {
	display: block;
	font-size: 15px;
	line-height: 2;
	padding: 10px 10px 30px 30px;
	text-align: left;
	vertical-align: middle;	
}
@media only screen and (min-width: 768px) {
.tb-type-03 td {
	font-size: 18px;
	padding: 20px 10px 20px 50px;
}
}



.map-area {
  display: flex;
  flex-direction: row;
  align-items: center;
}


.map-area iframe {
	min-width: 280px;
	width: 100%;
	height: 270px;
}
@media only screen and (min-width: 768px) {
  .map-area iframe {
	  max-width: 100%;
	  height: 412px;
	}
}


/* ----------------------------------------------------------------------
 faq
---------------------------------------------------------------------- */
.accordionbox{
	width: 100%;
	margin: 3rem auto 10rem;
}
/* 質問 */
.accordionlist dt{
    display: flex;
    align-items: center;
    background: #FEEEE1;
    margin: 3.5rem 0 2rem;
    padding: .5rem 0;
	cursor: pointer;
}
@media screen and (min-width: 768px) {
	.accordionlist dt{
		margin: 5rem 0 2rem;
	}
}

.accordionlist dt .title{
    padding-left: 1rem;
}

/* 回答 */
.accordionlist dd{
    display: none;
	background: #FEEEE1;
	padding: 1rem;
}
@media screen and (min-width: 768px) {
	.accordionlist dd{
		padding: 1rem 4rem 1rem 3rem;
	}
}

/* ＋ */
.accordion_icon,
.accordion_icon span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
    padding: 0 1rem;    
}
@media screen and (min-width: 768px) {
	.accordion_icon,
	.accordion_icon span {
		padding: 0 1.5rem;    
	}
}
.accordion_icon {
	position: relative;
	width: 50px;
    text-align: center;
    margin-left: auto;
    margin-right: 2rem;
}
@media screen and (min-width: 768px) {
	.accordion_icon {
		margin-right: 4rem;
	}	
}
.accordion_icon span {
	position: absolute;
    width: 15px;
    right: 5px;
	height: 2px;
    background-color: #ED6D2C; /* ＋の色 */
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-ms-border-radius: 4px;
	-moz-border-radius: 4px;
	-o-border-radius: 4px;
}
.accordion_icon span:nth-of-type(1) {
    top: 0px;
	transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}
.accordion_icon span:nth-of-type(2) {
    top: 0px;
	transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}

/*＋、－切り替え*/
.accordion_icon.active span:nth-of-type(1) {
	display:none;
}
.accordion_icon.active span:nth-of-type(2) {
	top: 0px;
	transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

/* Q&A画像 */
.question{
	background: url("../images/faq-q.png") 1.5rem center no-repeat;
    background-size: 25px;
	padding: 1.5rem 0rem 1.5rem 6rem;
    color: #ED6D2C;
    font-size: 16px;
	font-weight: 700;
    line-height: 1.8;	
}
@media screen and (min-width: 768px) {
	.question{
		background: url("../images/faq-q.png") 4rem center no-repeat;
		background-size: 35px;
		padding: 3rem 3rem 3rem 11rem;
		font-size: 25px;
	}
}

.answer{
	/*background: url("../images/faq-a.png") 0 center no-repeat;*/
    background-size: 25px;
	padding: 1rem 0 1rem .8rem;
    font-size: 14px;
    line-height: 1.8;
}
@media screen and (min-width: 768px) {
	.answer{
		background: url("../images/faq-a.png") 2rem center no-repeat;
		background-size: 35px;
		padding: 3rem 3rem 3rem 9rem;
		font-size: 18px;
	}
}

/* ----------------------------------------------------------------------
 case-study - restraunt...
---------------------------------------------------------------------- */
.evasi-point {
	display: flex;
	align-items: center;
	background: #fff;
	padding: 1.5rem 3rem;	
}
@media screen and (min-width: 768px) {
	.evasi-point {
		padding: 3rem 6rem;
	}
}


.evasi-point-check {
	background: url("../images/check-icon.png") 0rem center no-repeat;
	text-align: left;
	color: #fff;
	font-weight: 700;	

	font-size: 20px;
	line-height: 1.5;
	background-size: 40px;
	padding: 1rem 0 1rem 7rem;
	width: calc(100% - 7rem);
}
@media screen and (min-width: 768px) {
	.evasi-point-check {
		margin-left: auto;
		margin-right: auto;
		font-size: 25px;
		line-height: 1.7;
		background-size: 60px;
		padding: 1rem 0 1rem 10rem;
		width: 75%;
	}
}
@media screen and (min-width: 1025px) {
	.evasi-point-check {
		margin-left: auto;
		margin-right: auto;
		font-size: 30px;
		background-size: 70px;
		padding: 1rem 0 1rem 10rem;
		width: 60%;
	}
}





/* ----------------------------------------------------------------------
 movie
---------------------------------------------------------------------- */
.movie-3step {
	display: flex;
	align-items: center;
	background: #FEEEE1;
	padding: 1.5rem 3rem;
}
@media screen and (min-width: 768px) {
	.movie-3step {
		padding: 3rem 6rem;
	}
}

/* 注意書き */
.movie-attention {
	border: 4px solid #ED6D2C;
	text-align: left;
	padding: 3rem;
}
@media (min-width: 1025px) {
.movie-attention {
	padding: 6rem;
}
}


/* ----------------------------------------------------------------------
 contact-form
---------------------------------------------------------------------- */

/* tel-area */
.contact-tel-area {
	border: 4px solid #ED6D2C;
	text-align: left;
	padding: 3rem;
}
@media (min-width: 1025px) {
.movie-attention {
	padding: 6rem;
}
}

.contact-tel-area span {
	font-size: 15px;
	padding-top: 7px;
}
@media (min-width: 1025px) {
	.contact-tel-area span {
		font-size: 26px;
		padding-top: 15px;
	}
}

.c-con {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}
@media (min-width: 1025px) {
	.c-con {
		flex-direction: row;
	}
}

.c-tel {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 23px;
	color: #ED6D2C;
	font-weight: 700;
	width: 100%;
	}
@media (min-width: 1025px) {
	.c-tel {
		font-size: 46px;
		width: 48%;
		
	}
}

.c-fax {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 23px;
	color: #ED6D2C;
	font-weight: 700;	
}
@media (min-width: 1025px) {
	.c-fax {
		font-size: 46px;
		width: 49%;
		border-left: 2px solid #ED6D2C;
	}
}

.c-ex {
	color: #ED6D2C;
	font-weight: 700;
	text-align: center;
	font-size: 14px;
	border-top: 1px solid #ED6D2C;
	padding: 1rem;
}
@media (min-width: 1025px) {
	.c-ex {
		font-size: 20px;
		border-top: none;
	}
}

input, button, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input, textarea {
  padding: 15px 15px !important;
  background: none;
  border: 2px solid #ED6D2C;
  font-size: 16px;
}
textarea {
	min-width: 100%;
	min-height: 200px;
}
@media only screen and (min-width: 1025px) {
textarea {
	min-height: 400px;
}
}

input:focus,
textarea:focus {
  outline: none;
  background: #FEEEE1; }

input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #FEEEE1 inset; }

input::placeholder, textarea::placeholder {
  color: #999999;
  font-family: 'Noto Sans JP', sans-serif; }



input[type=radio] {
	padding: 4px !important;
	background: none;
	border: none;
}
@media only screen and (min-width: 1025px) {
input[type=radio] {
	padding: 6px !important;
	background: none;
}
}

.contact-head {
	display: flex;
	align-items: center;
	margin: 2em 0 1rem 0;
	font-weight: 700;
}
  @media only screen and (min-width: 1025px) {
    .contact-head {
      margin: 5rem 0 1.5rem 0;
	  }
}

.contact-name {
	font-size: 16px;
	color: #ED6D2C;
	font-weight: 700;
}
@media only screen and (min-width: 1025px) {
    .contact-name {
      font-size: 25px;
	 }
}

.required {
	margin-left: 15px;
	padding: 0px 15px 0 15px;
	border: 1px solid;
	color: #fff;
	background: #ED6D2C;
	font-size: 13px;
	font-weight: 400;
	vertical-align: middle;
	height: 25px;
}

.form-s {
  width: 48%;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
  @media only screen and (min-width: 1025px) {
    .form-s {
      width: 490px; } }

.form-m {
  width: 100%;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
  @media only screen and (min-width: 1025px) {
    .form-m {
      width: 490px; } }

.form-l, .form-xl {
  width: 100%;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.form-xl {
  height: 250px; }
  @media only screen and (min-width: 85.375em) {
    .form-xl {
      /*1366*/
      height: 300px; } }

.submit-btn {
	display: block;
	cursor: pointer;
	margin: 3rem auto 3rem;  
	font-size: 17px;
	min-width: 280px;
}
  @media only screen and (min-width: 1025px) {
    .submit-btn {
		margin: 7rem auto 0rem;
	  }
}


/* mailformpro okを削除するコード */
.mfp_ok {
	display: none!important;
}


/* radio */
.cp_ipradio05 {	
	margin: 0rem auto;
	text-align: left;
}
.cp_ipradio05 ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0.5rem 0.5rem 2rem 0.5rem;
	padding: 0.5rem 1rem;
	list-style: none;	
}
.cp_ipradio05 .list_item {
	margin: 0 3rem 0.5rem 0;
	padding: 0;
	font-size: 15px;
}
@media only screen and (min-width: 1025px) {
.cp_ipradio05 .list_item {
	font-size: 18px;
}
}
.cp_ipradio05 label {
	line-height: 135%;
	position: relative;
	margin: 0.5rem;
	cursor: pointer;
}
.cp_ipradio05 .option-input {
	position: relative;
	margin: 0 1rem 0 0;
	cursor: pointer;
}
.cp_ipradio05 .option-input:before {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0.125rem;
	width: 0.75rem;
	height: 0.75rem;
	content: '';
	-webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
	        transition:         transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
	-webkit-transform: scale(0, 0);
	        transform: scale(0, 0);
	border-radius: 50%;
	background: #ED6D2C;
}
.cp_ipradio05 .option-input:checked:before {
	-webkit-transform: scale(1, 1);
	        transform: scale(1, 1);
}
.cp_ipradio05 .option-input:after {
	position: absolute;
	top: -0.25rem;
	left: -0.125rem;
	width: 1rem;
	height: 1rem;
	content: '';
	border: 2px solid #f2f2f2;
	border-radius: 50%;
	background: #ffffff;
}

/* ----------------------------------------------------------------------
 link
---------------------------------------------------------------------- */
.link a {
	color: #ED6D2C;
}



/* ----------------------------------------------------------------------
 IE11
---------------------------------------------------------------------- */
@media all and (-ms-high-contrast: none){
body{
    font-family: "メイリオ", Meiryo, Osaka, "sans-serif";    
}
.grid{
    overflow: hidden;
}
	
	
.contact-area{
    width: 100%;
    padding: 7rem 0;
    background: url(../images/contact-area.jpg) center;
    background-size: cover;
	margin-top: 10rem;
	height: 400px;
}
@media (min-width: 1025px) {
    .contact-area{
		height: 400px;
		margin-top: 20rem;
    }
}	
}