@charset "utf-8";
html,body{
	margin:0;
	padding:0;
    position: relative;
}
*{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-o-box-sizing:border-box;
	-ms-box-sizing:border-box;
	box-sizing:border-box;
    color: #222;
    font-family: 'M PLUS 1p', sans-serif;
    font-weight: 400;
    font-style: normal;
}
.mincho{
    font-family: 'Noto Serif JP', serif !important;
    font-weight: 900;
}
img{
	border:none;
	width:auto;
    max-width: 100%;
	height:auto;
	line-height:0;
	vertical-align:bottom;
}
img.full{
	width:100%;
}
a,
a i,
a small,
a img{
	color:#222;
	background:transparent;
	text-decoration:none;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
a:focus, *:focus {
	outline:none;
}
a:hover,
a:hover i,
a:hover small{
	opacity: 0.7;
}
a:hover img{
	text-decoration:none;
	opacity:0.6 !important;
	-webkit-opacity:0.6 !important;
	-moz-opacity:0.6 !important;
}

.fade {
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.fade:hover{
	opacity: 1;
	text-decoration:none;
}
.fadein {
    opacity : 0;
    transform : translate(0, 70px);
    transition : all 1000ms;
}
.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}
h1,h2,h3,h4,h5,h6{
	margin:0;
	padding:0;
}
p,dt,dd{
	line-height:1.7em;
	font-size:16px;
    margin:0 0 1.5em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
p:last-child{
	margin-bottom:0;
	padding-bottom:0;
}
ul.nolist,
ol.nolist{
	margin:0;
	padding:0;
}
ul.nolist li,
ol.nolist li{
	list-style:none;
	padding:0;
	margin:0;
}
th,td{
	padding:10px 20px;
	margin-bottom:1.5em;
	line-height:1.4em;
}
.right{
    text-align:right;
}
.left{
    text-align:left;
}
.center{
	text-align:center;
}
.pright{
	padding-right:8px;
}
.pleft{
	padding-left:8px;
}
.block{
    display: block;
}
.i_block{
    display: inline-block;
}
small,sub,sup{
	font-size:12px;
	line-height:1.4em;
}
.note{
	padding-left:0.8em;
	margin:0 0 10px !important;
}
.note span{
	font-size:14px;
	text-indent:-1em;
	display:block;
	line-height:1.5em;
}
.yt {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.yt iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
  border: none;
}
#bread{
    font-size: 14px;
    line-height: 1.5em;
    margin-top: 30px;
}
#bread a{
    text-decoration: underline;
    font-size: 14px;
    line-height: 1.5em;
}
#bread  small{
    display: inline-block;
    padding: 0 0.5em 0 1em;
}

.forsp{
	display:none !important;
}
@media screen and (max-width: 980px){
    p,th,td,dt,dd,li{
        line-height:1.5em;
        font-size:14px;
    }
    .note span{
        font-size:12px;
        line-height:1.4em;
    }
}
@media screen and (max-width: 680px){
    *{
        letter-spacing: 0;
    }
    .forsp{
        display:block !important;
    }
    .forpc{
        display:none !important;
    }
}


/*LINK*/
.link a,
.link button{
    background:#505050;
    display: inline-block;
    color: #fff;
    font-size: 18px;
    line-height: 1em;
    padding: 15px 30px 8px;
    position: relative;
    text-align: center;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
	border: none;
}
.link a span,
.link button span{
    color: #fff;
}
.link a:after,
.link button:after{
    width: calc(100% - 10px);
    height: 0;
    display: block;
    position: absolute;
    left: 0;
    content: "";
    border-top: solid 10px #505050;
    border-right: solid 10px transparent;
    top: 100%;
}
.link a:hover,
.link button:hover{
    opacity: 0.7;
}
@media screen and (max-width: 1380px){
    .link a{
        font-size: 18px;
        padding: 15px 20px 8px;
    }
}
@media screen and (max-width: 1280px){
    .link{
        display: block;
        width: 100%;
    }
    .link a{
        display: block;
        font-size: 16px;
    }
}
@media screen and (max-width: 680px){
    .link a{
        font-size: 14px !important;
        padding: 10px 10px 5px !important;
    }
}
/*FLEX*/
.flex_content{
	display:flex;
	display:-webkit-flex;
	flex-wrap:wrap;
	-webkit-flex-wrap:wrap;
}
.flex_justify{
	justify-content:space-between;
	-webkit-justify-content:space-between;
}
.flex_center{
	justify-content:center;
	-webkit-justify-content:center;
}
.flex_end{
	justify-content:flex-end;
	-webkit-justify-content:flex-end;
}
.flex_align{
	align-content:space-between;
	-webkit-align-content:space-between;
}
.flex_middle{
	align-items:center;
	-webkit-align-items:center;
}
.flex_bottom{
	align-items:flex-end;
	-webkit-align-items:flex-end;
}
.flex_all{
	display:flex;
	display:-webkit-flex;
	flex-wrap:wrap;
	-webkit-flex-wrap:wrap;
	justify-content:center;
	-webkit-justify-content:center;
	align-items:center;
	-webkit-align-items:center;
    height: 100%;
}
.flex_left,
.flex_right{
	flex-basis:48%;
	-webkit-flex-basis:48%;
	max-width:48%;
}
@media screen and (max-width: 680px){
    .flex_left,
    .flex_right{
        flex-basis:100% !important;
        -webkit-flex-basis:100% !important;
        max-width:100% !important;
    }
}

/*GMAP*/
#gmap{
    position: relative;
    padding-bottom: 36.25%;
    height: 0;
    overflow: hidden;
}
#gmap iframe,
#gmap object,
#gmap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	border:none;
}
@media screen and (max-width:680px) {
    #gmap{
        padding-bottom: 76.25%;
    }
}

/*MARGIN*/
.mb100{margin-bottom: 100px !important;}
.mb80{margin-bottom: 80px !important;}
.mb60{margin-bottom: 60px !important;}
.mb40{margin-bottom: 40px !important;}
.mb30{margin-bottom: 30px !important;}
.mb20{margin-bottom: 20px !important;}
.mb10{margin-bottom: 10px !important;}
.mb5{margin-bottom: 5px !important;}

.pd100{padding: 100px 0 !important;}
.pd80{padding: 80px 0 !important;}
.pd60{padding: 60px 0 !important;}
.pd40{padding: 40px 0 !important;}
.pd30{padding: 30px 0 !important;}
.pd20{padding: 20px 0 !important;}
.pd10{padding: 10px 0 !important;}

.pa100{padding: 100px !important;}
.pa80{padding: 80px !important;}
.pa60{padding: 60px !important;}
.pa40{padding: 40px !important;}
.pa30{padding: 30px !important;}
.pa20{padding: 20px !important;}
.pa10{padding: 10px !important;}

@media screen and (max-width: 1280px){
    .mb100{margin-bottom: 80px !important;}
    .mb80{margin-bottom: 60px !important;}
    .pd100{padding: 80px 0 !important;}
    .pd80{padding: 60px 0 !important;}
    .pa100{padding: 80px !important;}
    .pa80{padding: 60px !important;}
}
@media screen and (max-width: 980px){
    .mb100{margin-bottom: 60px !important;}
    .mb80{margin-bottom: 50px !important;}
    .mb60{margin-bottom: 40px !important;}
    .mb40{margin-bottom: 30px !important;}
    .mb30{margin-bottom: 20px !important;}
    .mb20{margin-bottom: 10px !important;}
    .pd100{padding: 60px 0 !important;}
    .pd80{padding: 50px 0 !important;}
    .pd60{padding: 40px 0 !important;}
    .pd40{padding: 30px 0 !important;}
    .pd30{padding: 20px 0 !important;}
    .pd20{padding: 10px 0 !important;}
    .pa100{padding: 60px !important;}
    .pa80{padding: 50px !important;}
    .pa60{padding: 40px !important;}
    .pa40{padding: 30px !important;}
    .pa30{padding: 20px !important;}
    .pa20{padding: 10px !important;}
}
@media screen and (max-width: 680px){
    .mb100{margin-bottom: 40px !important;}
    .mb80{margin-bottom: 30px !important;}
    .mb60{margin-bottom: 20px !important;}
    .mb40{margin-bottom: 20px !important;}
    .pd100{padding: 40px 0 !important;}
    .pd80{padding: 30px 0 !important;}
    .pd60{padding: 20px 0 !important;}
    .pd40{padding: 20px 0 !important;}
    .pa100{padding: 40px !important;}
    .pa80{padding: 30px !important;}
    .pa60{padding: 20px !important;}
    .pa40{padding: 20px !important;}
}

.wrapper{
    width: 90%;
    max-width: 1500px;
    margin:0 auto;
}
.mark{
    background: #fde800;
}
.baloon{
    max-width:340px !important;
}
@media screen and (max-width: 1280px){
    .baloon {
        width: 50% !important;
        margin: 0 auto;
    }
}
@media screen and (max-width: 780px){
    .baloon {
        width: 70% !important;
    }
}
/*HEADER*/
h1 {
    position: absolute;
    width: 100%;
    padding-top: 10px;
}
h1 img{
    width: 90%;
    max-width: 476px;
}
#main{
    background: url(../img/bk.gif) bottom left no-repeat;
    background-size: contain;
}
#main_wrapper{
    width: 90%;
    margin:0 auto;
    padding-top: 100px;
    overflow: hidden;
}
#main_left{
    flex-basis: 45%;
    -webkit-flex-basis:45%;
    max-width: 45%;
    padding-top: 5%;
}
#main_left p {
    font-size: 1.4vw;
    font-weight: 900;
    margin-bottom: 0;
}
#main_left p b{
    color: #cc0000;
    font-weight: 900;
    font-size: 1.8vw;
}
#main_left a{
    display: block;
    background: #222;
}
#main_right{
    flex-basis: 55%;
    -webkit-flex-basis:55%;
    max-width: 55%;
}
@media screen and (max-width: 1380px){
    #main_left p {
        font-size: 2vw;
    }
    #main_left p b{
        font-size: 2.2vw;
    }
}
@media screen and (max-width: 780px){
    #main_left,
    #main_right{
        flex-basis: 100%;
        -webkit-flex-basis:100%;
        max-width: 100%;
    }
    #main_left p {
        font-size: 3vw;
    }
    #main_left p b{
        font-size: 4vw;
    }
}
@media screen and (max-width: 680px){
    #main_left p {
        font-size: 3.9vw;
    }
    #main_left p b{
        font-size: 5vw;
    }
}
/*******************************************/
#sn01{
    text-align:center;
    position: relative;
}
#sn01 h2{
    position: relative;
    z-index: 2;
    display: inline-block;
    font-size: 54px;
    font-weight: 900;
    margin-top: 40px;
}
#sn01 h2 br{
    display: none;
}
#sn01_bk{
    position: absolute;
    top:10px;
    width: 100%;
    z-index: -1;
}
#sn01_bk span{
    flex-basis: 20%;
    -webkit-flex-basis: 20%;
    max-width: 20%;
}
#sn01_item::after{
    content: "";
    display: block;
    position: absolute;
    height: 200px;
    width: 78%;;
    background: url(../img/tri_bottom.png) no-repeat center center;
    background-size: 100% 200px;
    z-index: -1;
    bottom: -60px;
}
#sn01_item{
    margin-bottom: -120px;
    position: relative;
    z-index: 1;
}
#sn01_item span{
    flex-basis: 40%;
    -webkit-flex-basis: 40%;
    max-width: 40%;
    position: relative;
    z-index: 12;
}
@media screen and (max-width: 1580px){
    #sn01 h2{
        font-size: 3.4vw;
    }
    #sn01_bk span{
        flex-basis: 14%;
        -webkit-flex-basis: 14%;
        max-width: 14%;
    }
}
@media screen and (max-width: 1280px){
    #sn01_item span {
        flex-basis: 50%;
        -webkit-flex-basis: 50%;
        max-width: 50%;
    }
    #sn01_item::after {
        height: 150px;
        width: 90%;
        background: url(../img/tri_bottom.png) no-repeat center center;
        background-size: 100% 150px;
        bottom: -30px;
    }
}
@media screen and (max-width: 780px){
    #sn01 h2 br{
        display: block;
    }
    #sn01 h2 {
        font-size: 7.4vw;
        line-height: 1.1em;
    }
    #sn01_bk .wrapper{
        width: 98%;
    }
    #sn01_item span {
        flex-basis: 90%;
        -webkit-flex-basis: 90%;
        max-width: 90%;
    }
    #sn01_bk span{
        flex-basis: 22%;
        -webkit-flex-basis: 22%;
        max-width: 22%;
    }
    #sn01_item,
    #sn01_item::after {
        width: 100%;
    }
}
@media screen and (max-width: 680px){
    #sn01_item::after {
        height: 50px;
        background: url(../img/tri_bottom.png) no-repeat center center;
        background-size: 100% 50px;
        bottom: 70px;
    }
}
@media screen and (max-width: 680px){
    #sn01_bk {
        top: 20px;
    }
}


/*******************************************/
#sn02{
    background: url(../img/sn02bk.jpg) no-repeat center;
    background-size: cover;
    padding: 200px 0 100px;
    position: relative;
}
#sn02:after {
    content: "";
    display: block;
    position: absolute;
    height: 200px;
    width: 100%;
    background: url(../img/tri_down.png) no-repeat center center;
    background-size: 100% 200px;
    z-index: 1;
    bottom: 0;
}
#sn02 h3 strong.mincho {
    color: #fde800;
    font-size: 3vw;
}
#sn02 h3{
    font-size: 3.2vw;
    font-weight: 900;
    color: #fff;
}
#sn02 h3 b {
    font-size: 5.6vw;
    color: #fff;
    font-weight: 900;
}
.point{
    width: 90%;
    max-width: 1280px;
    margin:100px auto 200px;
    background: #fff;
    position: relative;
}
.point:before{
    content: "";
    display: block;
    position: absolute;
    top: -150px;
    height: 150px;
    width: 100%;;
    background: url(../img/tri_down.png) no-repeat center center;
    background-size: 100% 150px;
    z-index: 0;
}
.point:after{
    content: "";
    display: block;
    position: absolute;
    bottom: -150px;
    height: 150px;
    width: 100%;;
    background: url(../img/tri_bottom.png) no-repeat center center;
    background-size: 100% 150px;
    z-index: 0;
}
.point_item{
    padding: 0 5%;
}
.point_item .flex_left,
.point_item .flex_right{
    margin-bottom: 20px;
}
.point_item span.pright{
    flex-basis: 180px;
    -webkit-flex-basis: 180px;
    max-width: 180px;
}
.point_item span.point_title{
    flex: 1;
    -webkit-flex: 1;
    font-size: 58px;
    font-weight: 900;
    line-height: 1.3em;
}
.point_item span.point_title b{
    color: #cc0000;
    font-weight: 900;
}
#sn02 .flex_right span{
    flex-basis: 49%;
    -webkit-flex-basis: 49%;
    max-width: 49%;
}
#sn02 .flex_right span img{
    border: 1px solid #ccc;
}
#sn02 #p02 .flex_right span:last-child img,
#sn02 #p03 .flex_right span img{
    border:none;
}
@media screen and (max-width: 1580px){
    .point_item span.point_title{
        font-size: 3.6vw;
    }
}
@media screen and (max-width: 1280px){
    #sn02 {
        padding-top: 180px;
    }
    #sn02 h3 strong.mincho {
        font-size: 4vw;
    }
    #sn02 h3{
        font-size: 4.2vw;
    }
    #sn02 h3 b {
        font-size: 6.6vw;
    }
}
@media screen and (max-width: 980px){
    #sn02 {
        padding: 200px 0 30px;
    }
    #sn02:after {
        height: 80px;
        background: url(../img/tri_down.png) no-repeat center center;
        background-size: 100% 80px;
    }
    .point {
        margin: 50px auto 100px;
    }
    .point:before {
        top: -80px;
        height: 80px;
        background: url(../img/tri_down.png) no-repeat center center;
        background-size: 100% 80px;
    }
    .point:after {
        bottom: -80px;
        height: 80px;
        background: url(../img/tri_bottom.png) no-repeat center center;
        background-size: 100% 80px;
    }
    .point_item span.pright{
        flex-basis: 20%;
        -webkit-flex-basis: 20%;
        max-width: 20%;
    }
}
@media screen and (max-width: 780px){
    .point_item .flex_left,
    .point_item .flex_right{
        flex-basis: 100%;
        -webkit-flex-basis: 100%;
        max-width: 100%;
    }
}
@media screen and (max-width: 680px){
    #sn02 {
        padding-top: 130px;
    }
    #sn02:after {
        height: 50px;
        background: url(../img/tri_down.png) no-repeat center center;
        background-size: 100% 50px;
    }
    .point {
        margin: 40px auto 70px;
    }
    .point:before {
        top: -50px;
        height: 50px;
        background: url(../img/tri_down.png) no-repeat center center;
        background-size: 100% 50px;
    }
    .point:after {
        bottom: -50px;
        height: 50px;
        background: url(../img/tri_bottom.png) no-repeat center center;
        background-size: 100% 50px;
    }
    .point_item h4 span {
        flex-basis: 100% !important;
        -webkit-flex-basis: 100% !important;
        max-width: 100% !important;
        text-align: center;
    }
    .point_item span.point_title {
        font-size: 4.7vw;
    }
    .point_item h4 span.pright{
        margin: 20px 0;
    }
    .point_item h4 span img{
        width: 100px;
    }
    #sn02 h3 strong.mincho {
        font-size: 6vw;
    }
    #sn02 h3{
        font-size: 6.2vw;
    }
    #sn02 h3 b {
        font-size: 8.6vw;
    }
}
/*******************************************/
#sn03{
    text-align:center;
    position: relative;
    z-index: 10;
}
#sn03 h2{
    position: relative;
    z-index: 2;
    display: inline-block;
    font-size: 54px;
    font-weight: 900;
    margin-top: 40px;
}
#sn03_bk{
    position: absolute;
    top:0;
    width: 100%;
    z-index: -1;
}
#sn03_bk span{
    flex-basis: 25%;
    -webkit-flex-basis: 25%;
    max-width: 25%;
}
#sn03 h3 br{
    display: none;
}
#sn03_item{
    margin-top: 40px;
}
#sn03 .flex_left h3{
    position: relative;
    padding: 20px;
    background: linear-gradient(to bottom, #7ebcdd 0%,#1b76a6 100%);
    font-size: 2vw;
    font-weight: 900;
    color: #fff;
}
#sn03 .flex_left h3::before{
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: 50%;
    margin-left: -7.5px;
    bottom: -15px;
    border-top: 15px solid #1b76a6;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
}
#sn03 .flex_right h3{
    position: relative;
    padding: 20px;
    background: linear-gradient(to bottom, #67cdc2 0%,#118175 100%);
    font-size: 2vw;
    font-weight: 900;
    color: #fff;
}
#sn03 .flex_right h3::before{
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: 50%;
    margin-left: -7.5px;
    bottom: -15px;
    border-top: 15px solid #118175;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
}
#sn03 h4{
    font-size: 2vw;
    font-weight: 900;
}
#sn03 li p {
    position: relative;
    margin: 5px 0 25px;
    padding:1em;
    max-width:100%;
    text-align:center;
    color: #333;
    background: #eee;
    background: #FFF;
    border: solid 3px #1b76a6;
    box-sizing: border-box;
}
#sn03 li p:before{
   content: "";
   position: absolute;
   bottom: -24px;
   left: 50%;
   margin-left: -15px;
   border: 12px solid transparent;
   border-top: 12px solid #FFF;
   z-index: 2;
}
#sn03 li p:after{
 content: "";
 position: absolute;
 bottom: -30px;
 left: 50%;
 margin-left: -17px;
 border: 14px solid transparent;
 border-top: 14px solid #1b76a6;
 z-index: 1;
}
#sn03 .flex_right li p {
    border: solid 3px #118175;
}
#sn03 .flex_right li p:after{
    border-top: 14px solid #118175;
}
#sn03 li p br{
    display: block;
}
#sn03 ol{
    margin-left: auto !important;
    margin-right: auto !important;
}
#sn03_fin li h4{
    background: linear-gradient(to bottom, #6a90ce 0%,#234c90 100%);
    color: #fff;
    padding:10px;
}
#sn03_fin li p{
    margin-top: 0;
    border: solid 3px #234c90;
    text-align: center !important;
}
#sn03_fin li:last-child h4{
    background: linear-gradient(to bottom, #9dca8e 0%,#518f3b 100%);
}
#sn03_fin li:last-child p{
    border: solid 3px #518f3b;
}
#sn03_fin li:last-child p:before,
#sn03_fin li:last-child p:after{
    display: none;
}
@media screen and (max-width: 1380px){
    #sn03 li p{
        text-align: left;
     }
     #sn03 li p br{
        display: none;
    }
}
@media screen and (max-width: 980px){
    #sn03_bk {
        position: relative;
        top: 0;
    }
    #sn03_bk span {
        flex-basis: 49%;
        -webkit-flex-basis: 49%;
        max-width: 49%;
    }
    #sn03 .flex_left,
    #sn03 .flex_right{
        flex-basis: 48% !important;
        -webkit-flex-basis: 48% !important;
        max-width: 48% !important;
    }
    #sn03_item {
        margin-top: 0;
    }
    #sn03_fin li p {
        text-align: left !important;
    }}
@media screen and (max-width: 680px){
    #sn03 h2 {
        font-size: 6vw !important;
    }
    #sn03 h3{
        font-size: 4vw !important;
        padding: 15px 5px !important;
    }
    #sn03 h3 br{
        display: block;
    }
    #sn03 h4{
        font-size: 3.6vw !important;
    }
    #sn03 li p {
        padding: 10px !important;
    }
    #sn03_fin li p{
        text-align: left !important;
    }
}
@media screen and (max-width: 480px){
    #sn03 h2 {
        font-size: 10vw !important;
    }
    #sn03 h3{
        font-size: 4.2vw !important;
    }
    #sn03 h4{
        font-size: 4vw !important;
    }
}
/*******************************************/
#sn04{
    background:url(../img/map_bk.gif);
    background-size: cover;
    padding-bottom: 400px !important;
}
#sn04_item{
    position: relative;
}
#sn04 h2 {
    font-weight: 900;
    font-size: 54px;
    margin-bottom: 10px;
}
#sn04 h2 .baloon{
    text-align: left;
    margin: 0;
}
#sn04 h2{
    font-weight: 900;
}
#sn04 #kanto,
#sn04 #kansai{
    flex-basis: 53% !important;
    -webkit-flex-basis: 53% !important;
    max-width: 53% !important;
    position: relative;
}
#sn04 #kanto img,
#sn04 #kansai img{
    border: 5px solid #fff;
    box-shadow:0 5px 5px rgba(0,0,0,0.3);
}
#sn04 #kanto{
    z-index: 1;
}
#sn04 #kansai{
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}
#sn04 #kansai p{
    background: #45679d;
    color:#fff;
    padding: 10px;
    border-radius: 5px;
    font-size: 18px;
    width: 100%;
    margin: 0 0 10px;
    line-height: 1.3em;
}
@media screen and (max-width: 1580px){
    #sn04 h2 {
        font-size: 4vw;
    }
}
@media screen and (max-width: 880px){
    #sn04 h2{
        font-size: 6vw;
        text-align: center;
    }
    #sn04 h2 .baloon{
        margin: 0 auto;
    }
    #sn04 #kanto,
    #sn04 #kansai{
        flex-basis: 100% !important;
        -webkit-flex-basis: 100% !important;
        max-width: 100% !important;
        position: relative;
    }
    #sn04 #kansai p{
        font-size: 3vw;
        width: 100%;
        margin: 10px 0;
    }
    #sn04 {
        padding-bottom: 100px !important;
    }
}
@media screen and (max-width: 680px){
    #sn04 h2 {
        font-size: 8vw;
    }
}
/*******************************************/
.cv{
    position: relative;
    top:-50px;
    z-index: 1;
}
.cv_item {
    position: relative;
    padding-bottom: 170px !important;
    padding: 70px 0 !important;
}
.cv_item::after{
    position: absolute;
    content: '';
    left:0;
    bottom: -50px;
    width: 100%;
    height: 100%;
    background: rgb(157,202,142);
    background: -moz-linear-gradient(top,  rgba(157,202,142,1) 0%, rgba(81,143,59,1) 100%);
    background: -webkit-linear-gradient(top,  rgba(157,202,142,1) 0%,rgba(81,143,59,1) 100%);
    background: linear-gradient(to bottom,  rgba(157,202,142,1) 0%,rgba(81,143,59,1) 100%);
    transform: skewY(-5deg);
    transform-origin: bottom left;
    z-index: -1;
  }
.cv_item .wrapper{
    position: relative;
}
.cv_left small{
    font-size: 28px;
    font-weight: 900;
}
.cv_left a{
    font-size: 78px;
    color: #fff;
    font-weight: 900;
    text-shadow: 1px 1px 1px rgba(0,0,0,1);
    display: block;
    border-bottom: 5px dotted #fff;
}
.cv_left p{
    font-size: 44px;
    color: #fff;
    font-weight: 900;
    text-shadow: 1px 1px 1px rgba(0,0,0,1);
}
.cv_right{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
}
#cv02{
    top:50px;
}
#cv02 .cv_item{
    padding: 70px 0 !important;
}
@media screen and (max-width: 1480px){
    .cv_item {
        padding-bottom: 100px !important;
    }
    .cv_left small {
        font-size: 1.9vw;
    }
    .cv_left a {
        font-size: 5.3vw;
    }
    .cv_left p {
        font-size: 3vw;
    }
}
@media screen and (max-width: 1280px){
    .cv_item {
        padding-bottom: 70px !important;
    }
}
@media screen and (max-width: 980px){
    .cv_item {
        padding-bottom: 50px !important;
    }
}
@media screen and (max-width: 780px){
    .cv_right {
        position: relative;
        width: 100%;
    }
    .cv_tel{
        text-align:center;
    }
    .cv_left small {
        font-size: 3.9vw;
    }
    .cv_left a {
        font-size: 11vw;
    }
    .cv_left p {
        font-size: 6.3vw;
    }
    .cv_right img {
        display: block;
        margin-bottom: -10px;
    }
}
@media screen and (max-width: 680px){
    .cv_item {
        padding: 70px 0 20px!important;
    }
    #cv02{
        top:0;
    }
    #cv02 .cv_item {
        padding: 70px 0 20px!important;
    }    
}
/*******************************************/
#sn05{
    background: #45679d;
    position: relative;
}
#sn05::before{
    content: "";
    position:absolute;
    top:-230px;
    width: 100%;
    height: 230px;
    background: #45679d;
}
#sn05 h2{
    font-size: 78px;
    font-weight: 900;
    color: #fff;
}
#sn05 li{
	flex-basis:31%;
	-webkit-flex-basis:31%;
    max-width:31%;
    position: relative;
    border: 5px solid #fff;
    margin-bottom: 30px;
    box-shadow: 5px 5px 1px rgba(0,0,0,0.3);
}
#sn05 li p {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: url(../img/bk_yello.png) no-repeat bottom;
    background-size: 100% 100%;
    font-size: 28px;
    padding: 5px 20px;
    font-weight: 900;
    text-align: right;
}
#sn05 li:nth-last-child(2) p{
    font-size: 24px;
}
@media screen and (max-width: 1580px){
    #sn05 li p {
        font-size: 2vw;
    }
    #sn05 li:nth-last-child(2) p{
        font-size: 1.7vw;
        line-height: 1.2em;
    }
}
@media screen and (max-width: 980px){
    #sn05 h2{
        font-size: 8vw;
    }
}
@media screen and (max-width: 680px){
    #sn05 h2 {
        font-size: 10vw;
        margin-bottom: 5px !important;
    }
    #sn05_item{
        padding: 20px 0;
    }
    #sn05 li{
        margin-bottom: 10px;
    }
    #sn05 li p {
        padding: 10px 5px 0;
    }
    #sn05 li p {
        font-size: 2.7vw;
    }
}
/*******************************************/
#sn06,
#sn07{
    background: #45679d;
    position: relative;
}
#sn06 h3{
    margin-bottom: -10px;
}
#sn06 ul,
#sn07 ul{
    background: #eee;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 20px;
}
#sn06 li,
#sn07 li{
	flex-basis:24%;
	-webkit-flex-basis:24%;
    max-width:24%;
    position: relative;
    border: 5px solid #fff;
    margin-bottom: 10px;
    box-shadow: 5px 5px 1px rgba(0,0,0,0.3);
}
#sn06 li p,
#sn07 li p{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: url(../img/bk_blue.png) no-repeat bottom;
    background-size: 100% 100%;
    font-size: 21px;
    padding: 25px 10px 2px;
    font-weight: 900;
    text-align: right;
}
#sn07:after{
    content: "";
    display: block;
    height: 200px;
    width: 100%;
    background: url(../img/tri_down.png) no-repeat center center;
    background-size: 100% 200px;
    z-index: -1;
    bottom: -50px;
}
@media screen and (max-width: 1580px){
    #sn06 li p,
    #sn07 li p {
        font-size: 2vw;
    }
}
@media screen and (max-width: 980px){
    #sn07::after {
        height: 150px;
        background: url(../img/tri_down.png) no-repeat center center;
        background-size: 100% 150px;
        bottom: -30px;
    }
}
@media screen and (max-width: 680px){
    #sn06{
        padding: 0 0 20px;
    }
    #sn06 li,
    #sn07 li{
        flex-basis:49%;
        -webkit-flex-basis:49%;
        max-width:49%;
    }
    #sn06 li p,
    #sn07 li p {
        font-size: 3vw;
    }
    #sn07::after {
        height: 50px;
        background: url(../img/tri_down.png) no-repeat center center;
        background-size: 100% 50px;
        bottom: 70px;
    }
}
/*******************************************/
#sn08 h2{
    color: #45679d;
    font-size: 78px;
    font-weight: 900;
}
#sn08 li {
    padding: 0 10px;
}
#sn08 li img{
    border: 5px solid #ccc;
    margin-bottom: 10px;
}
#sn08 li p{
    background: #222;
    padding: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    text-align: left;
}
#sn08 li p small{
    font-weight: 500;
    display: block;
    font-size: 16px;
    color: #fff;
}
#sn08 li p b{
    font-weight: 900;
    color: #fff;
}
@media screen and (max-width: 1580px){
    #sn08 li p{
        font-size: 1.1vw;
    }
    #sn08 li p small{
        font-size: 1vw;
    }
}
@media screen and (max-width: 1280px){
    #sn08 h2{
        font-size: 8vw;
        margin-top: 20px;
    }
    #sn08 li p{
        font-size: 1.3vw;
    }
    #sn08 li p small{
        font-size: 1.2vw;
    }
}
@media screen and (max-width: 1180px){
    #sn08 li p{
        font-size: 1.7vw;
    }
}
@media screen and (max-width: 780px){
    #sn08 li p{
        font-size: 2.5vw;
    }
    #sn08 li p small{
        font-size: 2vw;
    }
}
@media screen and (max-width: 680px){
    #sn08 h2{
        font-size: 10vw;
    }
    #sn08 li p{
        font-size: 4vw;
    }
    #sn08 li p small{
        font-size: 3.4vw;
    }
}
/*******************************************/
#sn09 h4{
    font-size: 48px;
    font-weight: 900;
}
#sn09 h4 br{
    display: none;
}
#sn09 dl{
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}
#sn09 dt{
	flex-basis:30%;
	-webkit-flex-basis:30%;
    max-width:30%;
    background: #45679d;
    color: #fff;
    font-size: 21px;
    line-height: 1.2em;
    font-weight: 400;
    margin: 0;
}
#sn09 dd{
	flex:1;
	-webkit-flex:1;
    background: #eee;
    font-size: 18px;
    line-height: 1.2em;
    margin: 0;
}
@media screen and (max-width: 1580px){
    #sn09 h4{
        font-size: 4vw;
    }
    #sn09 dt{
        font-size: 1.3vw;
    }
    #sn09 dd{
        font-size: 1.2vw;
    }
}
@media screen and (max-width: 1280px){
    #sn09 dt{
        font-size: 2vw;
    }
    #sn09 dd{
        font-size: 1.8vw;
    }
}
@media screen and (max-width: 980px){
    #sn09 dt{
        font-size: 2.4vw;
    }
    #sn09 dd{
        font-size: 2vw;
    }
}
@media screen and (max-width: 680px){
    #sn09 dt{
        font-size: 18px;
    }
    #sn09 dd{
        font-size: 14px;
    }
    #sn09 h4 {
        font-size: 8vw;
    }
    #sn09 h4 br{
        display: block;
    }
}
@media screen and (max-width: 480px){
    #sn09 dt,
    #sn09 dd{
        flex-basis:100%;
        -webkit-flex-basis:100%;
        max-width:100%;
    }
}
/*******************************************/
#sn10 h4{
    margin-top: 40px;
    font-size: 48px;
    font-weight: 900;
}
#sn10 h4 br{
    display: none;
}
#sn10 li{
	flex-basis:48%;
	-webkit-flex-basis:48%;
    max-width:48%;
    border: 5px solid #ccc;
    margin-bottom: 20px;
}
#sn10 li h5{
    font-size: 38px;
    font-weight: 900;
    line-height: 1.2em;
}
#sn10 li .voice_left{
	flex-basis:30%;
	-webkit-flex-basis:30%;
    max-width:30%;
}
#sn10 li .voice_right{
	flex:1;
    -webkit-flex:1;
    padding-left: 20px;
}
#sn10 li .voice_right h6{
    font-weight: 900;
    font-size: 21px;
    line-height: 1.3em;
    border-bottom: 1px solid #999;
    padding-bottom: 10px;
}
#sn10 li .voice_right h6 small{
    font-size: 18px;
    font-weight: 900;
}
@media screen and (max-width: 1580px){
    #sn10 h4{
        font-size: 58px;
    }
    #sn10 li .voice_right h6{
        font-size: 21px;
    }
    #sn10 li h5{
        font-size: 28px;
    }
}
@media screen and (max-width: 1280px){
    #sn10{
        margin-top: 50px !important;
    }
    #sn10 h4 {
        font-size: 5vw;
    }
    #sn10 h4 br{
        display: block;
    }
    #sn10 li h5{
        font-size: 2vw;
    }
    #sn10 li .voice_right h6 {
        font-size: 18px;
    }
}
@media screen and (max-width: 980px){
    #sn10 li h5{
        font-size: 3vw;
    }
    #sn10 li{
        flex-basis:100%;
        -webkit-flex-basis:100%;
        max-width:100%;
        margin-bottom: 20px;
    }
    #sn10 li:nth-child(even) .voice_left{
        order: 1;
        -webkit-order:1;
        padding: 0 20px 0 0;
    }
    #sn10 li:nth-child(even) .voice_right{
        padding: 0 20px 0 0;
    }
}
@media screen and (max-width: 680px){
    #sn10 h4 {
        font-size: 7vw;
        margin-top: 0;
    }
    #sn10 li .voice_left,
    #sn10 li .voice_right{
        flex-basis:100%;
        -webkit-flex-basis:100%;
        max-width:100%;
        padding: 0;
    }
    #sn10 li .voice_left{
        text-align: center;
        margin-bottom: 20px;
    }
    #sn10 li .voice_left img,
    #sn10 li .voice_right img{
        max-width:280px;
    }
    #sn10 li:nth-child(even) .voice_left{
        order: 0;
        -webkit-order:0;
        padding: 0;
    }
    #sn10 li h5,
    #sn10 li .voice_right h6{
        text-align: center;
        font-size:21px;
    }
}
/*******************************************/
#sn11{
    background: #eee;
    position: relative;
}
#sn11:after{
    content: "";
    display: block;
    position: absolute;
    background: #eee;
    bottom: auto;
    width: 100%;
    height: 0px;
}
#sn11 .info_point div{
    flex-basis:200px;
    -webkit-flex-basis:200px;
    max-width: 200px;
    display:table;
}
#sn11 .info_point p{
    display: table-cell;
    vertical-align: middle;
    font-size: 1.7em;
    text-align: center;
    /* line-height: 1em; */
    width: 200px;
    height: 200px;
    /* background: #ccc; */
    background-image: url(../img/sn1104.png);
    background-size: contain;
}
#sn11 .info_point p small, #sn11 .info_point p span ,#sn11 .info_point p b{
    color: #fff;
}
#sn11 .info_point p small {
    font-size: .65em;
    display: block;
    line-height: 1.25em;
}
#sn11 .info_point p span {
    line-height: 1.6em;
}
#sn11 .info_point p b {
    font-size: 1.5em;
}
#sn11 .info_point span{
    display:block;
}
#sn11 table{
    border-collapse: separate;
    border-spacing: 5px;
}
#sn11 th{
    width: 20%;
    background: #45679d;
    color: #fff;
}
#sn11 td{
    background: #fff;
}
#sn11 td ol{
    padding-left: 1em;
}
#sn11 td ol li{
    list-style: disc;
    margin-bottom: 1em;
}
.ceo_left{
    flex-basis:30%;
    -webkit-flex-basis:30%;
    max-width:30%;
}
.ceo_right{
    flex:1;
    -webkit-flex:1;
    padding-left: 50px;
}
@media screen and (max-width: 1280px){
    #ceo{
        align-items: flex-start;
        -webki-align-items: flex-start;
    }
    .ceo_left{
        flex-basis:40%;
        -webkit-flex-basis:40%;
        max-width:40%;
    }
}
@media screen and (max-width: 980px){
    #sn11 .info_point span {
        flex-basis: 30%;
        -webkit-flex-basis: 30%;
    }
    #sn11 table{
        flex-basis:100%;
        -webkit-flex-basis:100%;
        max-width:100%;
    }
}
@media screen and (max-width: 680px){
    #sn11 table,
    #sn11 tbody,
    #sn11 tr,
    #sn11 th,
    #sn11 td{
        display: block;
        width: 100%;
    }
    #sn11 tr{
        margin-bottom: 5px;
    }
    #sn11 th{
        margin-bottom: 2px;
    }
    .ceo_left,
    .ceo_right{
        flex-basis:100%;
        -webkit-flex-basis:100%;
        max-width:100%;
        padding-left: 0;
        margin-bottom: 20px;
    }
    .ceo_left img{
        width: 80%;
        max-width: 380px;
    }
}
/*******************************************/
#enquiry h2{
    font-size: 58px;
    font-weight: 900;
}
#form_tel{
    background: linear-gradient(to bottom, #6a90ce 0%,#234c90 100%);
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0,0,0,1);
}
#form_tel a{
    color: #fff;
    font-size: 48px;
    font-weight: 900;
}
#form_tel small{
    color: #fff;
    font-size: 18px;
}
#form{
	width:100%;
	max-width:980px;
	margin:0 auto 80px;
}
#form table{
	width:100%;
}
#form th,
#form td{
    padding-bottom: 10px;
    position: relative;
    text-align: left;
    font-size: 16px;
    border-bottom: 2px dotted #ccc;
    padding: 10px 0;
}
#form th {
    background: transparent;
    font-weight: 400;
    width: 30%;
}
#form th .nd{
	color:rgba(204,0,0,1);
	padding-right:1em;
}
#form td input{
	padding:10px;
	border:none;
	vertical-align:middle;
	font-size:16px;
	background:rgba(255,255,255,1);
	box-shadow:none;
	width:100%;
}
#form td #mail{
	font-size:21px;
	letter-spacing:2px;
	font-weight:900;
}
#form td p{
    margin:5px 0 0 !important;
}
#enquiry input,
#enquiry textarea{
	border:1px solid #ccc !important;
}
#form td textarea{
	width:100%;
	background:rgba(255,255,255,0.7);
	border:none;
	box-shadow:none;
	font-size:16px;
    padding: 10px;
    height: 100px;
}
#form td input.ck,
#form td input#agree{
	background:transparent;
	width:20px;
}
.inner{
    padding: 0;
}
table.inner{
    width: 100%;
}
.inner th,
.inner td{
    border:none !important;
    margin: 0 !important;
    padding: 0 !important;
}
.inner select{
    padding: 6px 0 5px;
    height: 2.5em;
    border: 1px solid #ccc;
    vertical-align: middle;
}
.ti10{
    width: 10% !important;
}
.ti20{
    width: 20% !important;;
}
.ti30{
    width: 20% !important;;
}
.ti70{
    width: 70% !important;
}
.linkbox button{
    width: 120px !important;
    height: 120px;
    border-radius: 50%;
	border:0 !important;
    background: linear-gradient(to bottom, #666 0%,#222 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor:pointer;
    margin:0 auto;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.linkbox button:hover{
	background: linear-gradient(to bottom, #67cdc2 0%,#118175 100%);
}
@media screen and (max-width: 1280px){
    #enquiry h2{
        font-size: 5vw;
        padding-top: 50px;
    }
}
@media screen and (max-width: 680px){
    #enquiry h2 {
        font-size: 8vw;
    }
    #form p{
        text-align:left;
    }
    #form p br{
        display: none;
    }
    #form_tel a {
        font-size: 8vw;
    }
    #form_tel small {
        font-size: 3vw;
    }
    #form table,
    #form tbody,
    #form tr,
    #form th,
    #form td{
        display:block;
        width:100%;
        border-bottom: none;
    }
    .ti10,
    .ti20,
    .ti30,
    .ti70{
        width: auto !important;
    }
    #form th{
        margin-bottom:0 !important;
        padding:10px;
        background: #eee;
    }
    #inner_ma tr{
        margin-bottom: 10px;
    }
    #inner_ma th{
        display: none;
    }
    #inner_ma td input{
        display: inline-block;
        width: calc(100% - 4em);
        margin: 0 0 2px auto;
    }
    #inner_ma td::before{
        display: inline-block;
        width: 4em !important;
    }
    #inner_ma tr:nth-child(2) .ti20::before{
        content: "品番1";
    }
    #inner_ma tr:nth-child(3) .ti20::before{
        content: "品番2";
    }
    #inner_ma tr:nth-child(4) .ti20::before{
        content: "品番3";
    }
    #inner_ma .ti10::before{
        content: "数量";
    }
    #inner_ma .ti70::before{
        content: "備考";
    }
    #visit_asses td input.ti70{
        display: inline-block;
        width: 100% !important;
        margin: 0 0 2px;
    }
    #visit_asses td select{
        width: 100% !important;
        margin-bottom: 2px;
    }
}
/*******************************************/
footer{
    background: linear-gradient(to bottom, #666 0%,#222 100%);
    color: #fff;
}
#totop{
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index:999999;
    text-align: center;
}
#totop a i{
    font-size: 21px;
    color: #118175;  
}
#totop a small{
    display: block;
    font-size: 13px;
    color:#118175;
}
@media screen and (max-width: 980px) {
    footer{
        font-size:10px;
    }
    #totop{
        bottom:20px;
    }
    #totop a i{
        font-size:40px;
    }
}