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


/* resetcss*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/* //resetcss*/
.mt05{margin-top: 5px !important;}
.mt10{margin-top: 10px !important;}
.mt15{margin-top: 15px !important;}
.mt20{margin-top: 20px !important;}
.mt25{margin-top: 25px !important;}
.mt30{margin-top: 30px !important;}
.mt35{margin-top: 35px !important;}
.mt40{margin-top: 40px !important;}







body{
    font-size: 14px;
    font-family: "Noto Sans Japanese","游ゴシック体", YuGothic,sans-serif;
    position: relative;
}
header{
    background: rgba(0,0,0,0.5);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}
header nav {
  height: 50px;
  padding: 0px 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
}
header nav .title {
  font-size: 110%;
  position: relative;
    text-align: center;
}
header nav .title:after{
    content: "";
    width: 80%;
    height: 1px;
    background-color: #ffffff;
    position: absolute;
    bottom: -2px;
    left: 10%;
}
header nav .title a{
    color: #ffffff;
    text-decoration: none;
}
header nav ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
header nav ul li {
  height: 50px;
  line-height: 50px;
  font-size: 0.8rem;
}
header nav ul li a {
  padding: 0px 1rem;
  display: inline-block;
  height: 100%;
  color: inherit;
  text-decoration: none;
  transition: 256ms;
}
header nav ul li a:hover {
    color: #7bb37b;
}
header nav ul li.now_page a{
    color: #7bb37b;
    position: relative;
}
header nav ul li.now_page a:after{
    content: "";
    width: 60%;
    height: 1px;
    background-color: #7bb37b;
    position: absolute;
    bottom: 10px;
    left: 20%;
}


/*----cta----*/
.cta_area{
	background-color: #7bb37b;
    padding: 30px 0;
}
.cta_area_inner{
	color: #ffffff;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	text-align: center;
	max-width: 768px;
	margin: 0 auto;
}
.cta_area dl{
	width: 363px;
}
.cta_area dl:nth-child(1){
    padding-right: 20px;
}
.cta_area dl:nth-child(2){
	border-left: 1px solid #ffffff;
    padding-left: 20px;
}
.cta_area dl dt{
	font-size: 160%;
	font-weight: 500;
}
.cta_area dl dd{
	font-size: 14px;
    font-weight: normal;
    margin: 5px 0;
    line-height: 180%;
}
.cta_area dl dd a{
    border: 1px solid #ffffff;
	border-radius: 30px;
	color: #ffffff;
	padding: 2px 40px;
	text-decoration: none;
	display: inline-block;
    margin: 10px;
	font-weight: 400;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    transition-duration: 0.3s;
    transition-property: box-shadow, transform;
    font-size: 120%;
}
.cta_area dl dd a:hover{
	box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
    transform: scale(1.1);
    background: rgba(255,255,255,0.1);
}
.cta_area dl dd a i.fa-angle-right{
	margin-left: 10px;
}
.cta_area dl dd span{
	display: block;
}
.cta_area dl dd span.sp_none{
	display: inline;
}
.cta_area dl dd.tel_text{
    font-size: 160%;
    font-weight: bold;
}
.cta_area dl dd.tel_text span{
    font-size: 70%;
    font-weight: normal;
}

.copywriter{
    text-align: center;
    padding: 20px;
}



/*----リンク矢印----*/
.arrow{
position: relative;
display: inline-block;
padding: 0 0 0 16px;
color: #000;
vertical-align: middle;
font-size: 15px;
}
.arrow::before,
.arrow::after{
position: absolute;
top: 2px;
bottom: 0;
left: 0;
margin: auto;
content: "";
vertical-align: middle;
}
/*----丸矢印----*/
.sample4-2::before{
width: 12px;
height: 12px;
-webkit-border-radius: 50%;
border-radius: 50%;
background: #7bb37b;
}
.sample4-2::after{
left: 5px;
box-sizing: border-box;
width: 3px;
height: 3px;
border: 3px solid transparent;
border-left: 3px solid #fff;
}




/*----media----*/
@media screen and (max-width: 1024px) {
/* 1024pxまでの幅の場合に適応される */

}
@media screen and (max-width: 768px) {
/* 768pxまでの幅の場合に適応される */

}
@media screen and (max-width: 480px) {
/* 480pxまでの幅の場合に適応される */
    header nav .title{
        font-size: 100%;
        padding-left: 5px;
    }
    header nav{
        padding: 0;
    }
    header nav ul{
        width: 76%;
        justify-content: space-around;
    }
    header nav ul li{
        font-size: 80%;
    }
    header nav ul li a{
        padding: 0 5px;
        font-size: 80%;
    }
    header nav ul li.now_page a:after{
        bottom: 15px;
    }
    body h2{
        font-size: 160%;
    }
    .cta_area dl:nth-child(1){
        padding-bottom: 15px;
        padding-right: 0;
    }
    .cta_area dl:nth-child(2){
        border-top: 1px solid #ffffff;
        padding-top: 20px;
        border-left: none;
        padding-left: 0;
    }
    .cta_area dl dd span.sp_none{
        display: none;
    }
    .cta_area dl dd.tel_text{
        font-size: 120%
    }
}






