/*** ----------------------------------------------------------------------------- 

reset

-----------------------------------------------------------------------------  ***/
.clearfix:after {
	content:".";
	display:block;
	visibility:hidden;
	clear:both;
	height:0.1px;
	font-size:0.1em;
	line-height:0;
}
.clearfix {
	display:inline-table;
	zoom:1;
}
/*Hides from IE-mac \*/
* html .clearfix {
	height:1%;
}
.clearfix {
	display:block;
}


:root {
    /*
	--main_color: #024FA2;
    */
	--color_black: #333;
    /*
	--color_yellow: #FFAF00;
	--color_yellow01: #FFE870;
	--color_blue: #F2F9FF;
	--color_gray01: #8F8F8F;
	--color_gray02: #f3f3f3;
    */
}


/* End hide from IE-mac */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
	margin:0px;
	padding:0px;
}　
table {
	border-collapse:collapse;
	border-spacing:0;
}
fieldset, img {
	border:0;
}
address, caption, cite, code, dfn, em, th, var {
	font-style:normal;
	font-weight:normal;
}
ul {
	list-style:none;
}
ol li{
	list-style:none;
}
caption, th {
	text-align:left;
}
h1, h2, h3, h4, h5, h6 {
	font-size:100%;
	font-weight:normal;
}
q:before, q:after {
	content:'';
}
abbr, acronym {
	border:0;
	font-variant:normal;
}
sup {
	vertical-align:top;
}
sub {
	vertical-align:text-bottom;
}
input, textarea, select {
	font-family:inherit;
	font-size:inherit;
	font-weight:inherit;
}
input, textarea, select {
 *font-size:100%;
}
legend {
	color:#000000;
}
img {
	vertical-align:bottom;
    image-rendering: -webkit-optimize-contrast;
}
table caption {
	font-weight: bold;
	margin:0 0 5px;
}
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}
/*** ------------------------------------------------------------------------------ 

HTML5

-----------------------------------------------------------------------------  ***/
#header, footer, nav, section, article, figure, aside {
	display:block;
}
* {
	box-sizing:border-box;
}
i{
	margin: 0 5px 0 0;
}
img{
	max-width: 100%;
}

/*** ------------------------------------------------------------------------------ 

common

-----------------------------------------------------------------------------  ***/
html {
	font-size: 62.5%;
	overflow-x: hidden;
	height: 100%;
}
body {
    overflow-x: hidden;
	color: var(--color_black);
	line-height: 1.875;
	letter-spacing: 0.05em;
	font-size: 1.6rem;
	font-family: "Noto Sans JP", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", MS PGothic, "ＭＳ Ｐゴシック", Osaka, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
@media (max-width:768px){
	body {
		font-size: 1.4rem;
	}	
}
.inner{
	max-width: 1240px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}
.inner_in{
	max-width: 1040px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}
.pc{ display: block;}
.sp{ display: none;}
@media (max-width:768px){
	.pc{ display: none;}
	.sp{ display: block;}
}


/*** ------------------------------------------------------------------------------ 

リンク

-----------------------------------------------------------------------------  ***/
/* 基本 */
a{
	color: var(--color_black);
	outline:none;
	-webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
}
a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
a:active {
	text-decoration: none;
}
a img {
	transition: 0.3s;
}

input[type=text],
textarea {
  -webkit-appearance: none;
}


/*** ------------------------------------------------------------------------------ 

header

-----------------------------------------------------------------------------  ***/
header{
	position: fixed;
	z-index: 10;
	left: 0;
	top: 0;
	width: 100%;
	height: auto;
}
header .header-cont{
	position: relative;
	width: 100%;
	height: 80px;
	background: #fff;
}
header .header-cont .logo{
	position: absolute;
	left: 20px;
	top: 50%;
	transform: translateY(-50%);
}
header .header-cont .logo img{
    max-width: 263px;
}
header .header-cont ul{
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
    max-width: 670px;
    width: 100%;
}
header .header-cont ul li{
	margin: 0 0 0 1px;
}
header .header-cont ul li a{
	display: inline-block;
	padding: 7px 20px 9px;
	background: #F09602;
    border: 1px solid #F09602;
	color: #fff;
	font-size: clamp(1.4rem, 1.5vw, 1.6rem);
	font-weight: bold;
	text-decoration: none;
    border-radius: 6px;
	transition: 0.3s;
    box-sizing: border-box;
}
header .header-cont ul li a .material-symbols-outlined{
	position: relative;
	top: 6px;
	margin: 0 5px 0 0;
}
header .header-cont ul li a .txt br{
	display: none;
}
header .header-cont ul li.tel{
    max-width: 270px;
    width: 100%;
    line-height: 1.0;
    margin: 0 20px 0 0;
}
header .header-cont ul li.tel a{
    background: none;
    color: #333;
    padding: 0;
    display: block;
    font-size: 3.3rem;
    font-weight: bold;
    line-height: 1.0;
    margin: 0 0 5px;
    border: none;
}
@media (min-width:768px){
    header .header-cont ul li.tel a{
        pointer-events: none;
    }
}
header .header-cont ul li.tel a img{
    position: relative;
    margin: 0 5px 0 0;
    top: -5px;
}
header .header-cont ul li.tel span{
    display: block;
    font-size: 1.2rem;
    text-align: center;
    background: #F4F4F4;
    padding: 2px 0;
    letter-spacing: 0.1vw;
}
header .header-cont ul li.btn-download{
    max-width: 190px;
    width: 100%;
    margin: 0 20px 0 0;
}
header .header-cont ul li.btn-download a{
    display: block;
    padding: 9px 8px 11px 15px;
}
header .header-cont ul li.btn-download a svg{
    margin: 0 5px 0 0;
    position: relative;
    top: 5px;
    transition: 0.3s;
}
header .header-cont ul li.btn-contact{
    max-width: 156px;
    width: 100%;
}
header .header-cont ul li.btn-contact a{
    display: block;
    padding: 9px 8px 11px 15px;
}
header .header-cont ul li.btn-contact a svg{
    margin: 0 5px 0 0;
    position: relative;
    top: 5px;
    transition: 0.3s;
}
#menu{
    display: none;
}

@media (min-width:768px){
    header .header-cont ul li.btn-download a:hover,
	header .header-cont ul li.btn-contact a:hover{
		background: #fff;
		color: #F09602;
	}
    header .header-cont ul li a:hover svg{
		fill: #F09602;
	}
}
@media (max-width:1000px){
    header .header-cont .logo{
        left: 10px;
    }
    header .header-cont ul{
        display: none;
    }
}
@media (max-width:767px){
	header .header-cont{
		height: 75px;
	}
	header .header-cont .logo{
		left: 10px;
	}
    header .header-cont .logo img{
        max-width: 220px;
    }
	header .header-cont ul{
		right: 0;
		top: 0;
		transform: translateY(0%);
	}
	header .header-cont ul li{
		width: 70px;
		height: 60px;
		margin: 0 0 0 1px;
	}
	header .header-cont ul li a{
		width: 100%;
		height: 100%;
		display: block;
		padding: 7px 2px 9px;
		font-size: 1.0rem;
		font-weight: normal;
		text-align: center;
		line-height: 1.2;
	}
	header .header-cont ul li:nth-child(1) a .material-symbols-outlined{
		padding: 4px 0 2px;
		margin: 0;
	}
	header .header-cont ul li:nth-child(2) a .material-symbols-outlined{
		padding: 0 0 2px;
		margin: 0;
	}
	header .header-cont ul li a .txt{
		display: block;
	}
	header .header-cont ul li a .txt br{
		display: block;
	}
	header .header-cont ul li a .material-symbols-outlined{
		position: static;
		display: block;
	}
    
    #menu{
        display: block;
		position: fixed;
		right:15px;
		top:14px;
		z-index:9999;
		color:#FFFFFF;
		font-size:0.76em;
		height:46px;
		overflow:hidden;
        background: #F09602;
        border-radius: 5px;
	}
	#menu:before{
		content:"";
		display:block;
		position:absolute;
		left:0;
		top:37px;
		width:50px;
		text-align: center;
		font-size:1.167em;
		z-index:999;
	}
	#menu a{
	  display: inline-block;
	  position: relative;
	  width: 50px;
	  height:46px;
	  overflow:hidden;
	}
	#menu a span{
	  display: block;
	  position: absolute;
	  top: 50%;
	  left: 50%;
	  width: 34px;
	  height: 3px;
	  margin: -2px 0 0 -17px;
	  background: #FFF;
	  transition: .2s;
	  text-indent:-9999px;
	}
	#menu a span:before,
    #menu a span:after{
	  display: block;
	  content: "";
	  position: absolute;
	  top: 50%;
	  left: 0;
	  width: 34px;
	  height: 3px;
	  background: #FFF;
	  transition: .3s;
	}
	#menu a span:before{
	  margin-top: -10px;
	}
	#menu a span:after{
	  margin-top: 6px;
	}
	#menu a .close{
	  background: transparent;
	}
	#menu a .close:before,
    #menu a .close:after{
	  margin-top: 0;
	}
	#menu a .close:before{
	  transform: rotate(-45deg);
	  -webkit-transform: rotate(-45deg);
	}
	#menu a .close:after{
	  transform: rotate(-135deg);
	  -webkit-transform: rotate(-135deg);
	}
	
}







/*** ------------------------------------------------------------------------------ 

footer

-----------------------------------------------------------------------------  ***/
footer .copyright{
    padding: 20px 10px;
    background: #024FA2;
	text-align: center;
	font-size: 1.2rem;
    color: #fff;
}





/*** ------------------------------------------------------------------------------ 

sp-menu

-----------------------------------------------------------------------------  ***/
.sp-menu{
    display: none;
}
@media (max-width: 1000px){
    .sp-menu{
        display: block;
        width: 100%;
        height: 100vh;
        background: #fff;
        position: fixed;
        right: -200%;
        top: 0;
        z-index: 1000;
        padding: 80px 20px;
        box-sizing: border-box;
        transition: 0.3s;
    }
    .sp-menu.current{
        right: 0;
    }
    .sp-menu .tel{
        margin: 0 0 20px;
    }
    .sp-menu .tel a{
        display: block;
        text-align: center;
        color: #333;
        padding: 0;
        font-size: 3.3rem;
        font-weight: bold;
        line-height: 1.0;
        margin: 0 0 10px;
        text-decoration: none;
    }
    .sp-menu .tel a img{
        position: relative;
        margin: 0 5px 0 0;
        top: -3px;
    }
    .sp-menu .tel span{
        display: block;
        font-size: 1.4rem;
        text-align: center;
        padding: 2px 10px;
        background: #F4F4F4;
    }
    .sp-menu .contact-list{
        display: block;
        margin: 0 auto 0;
    }
    .sp-menu .contact-list .contact-list__item{
        position: relative;
    }
    .sp-menu .contact-list .contact-list__item--form{
        width: 100%;
        margin: 0 0 40px;
    }
    .sp-menu .contact-list .contact-list__item--download{
        width: 100%;
    }
    .sp-menu .contact-list .contact-list__item .ballon{
        position: absolute;
        z-index: 2;
        transform: translateY(-75%);
        text-align: center;
        width: 100%;
    }
    .sp-menu .contact-list .contact-list__item .ballon span{
        background: #024FA2;
        display: inline-block;
        padding: 5px 25px;
        font-size: 1.8rem;
        font-weight: bold;
        color: #fff;
        border-radius: 25px;
        position: relative;
    }
    .sp-menu .contact-list .contact-list__item .ballon span::after{
        position: absolute;
        left: 50%;
        bottom: 0;
        content: '';
        transform: translate(-50%,85%);
        width:0;
        height:0;
        border-style:solid;
        border-width: 15px 15px 0 15px;
        border-color: #024FA2 transparent transparent transparent;
    }
    .sp-menu .contact-list .contact-list__item a{
        display: block;
        background: #F09602;
        border-radius: 12px;
        text-decoration: none;
        padding: 22px 10px;
        text-align: center;
        font-size: 1.8rem;
        font-weight: bold;
        color: #fff;
        transition: 0.3s;
    }
    .sp-menu .contact-list .contact-list__item a span{
        font-size: 1.6rem;
    }
    .sp-menu .contact-list .contact-list__item a svg{
        position: relative;
        left: -8px;
        top: 5px;
    }
    .sp-menu .contact-list .contact-list__item--form,
    .sp-menu .contact-list .contact-list__item--download{
        max-width: 100%;
        margin: 75px 0 0;
    }
    .sp-menu .contact-list .contact-list__item .ballon{
        transform: translateY(-115%);
    }
}
@media (max-width: 400px){
    .sp-menu .contact-list .contact-list__item .ballon span{
        font-size: 1.6rem;
    }
    .sp-menu .contact-list .contact-list__item a{
        font-size: 1.6rem;
    }
    .sp-menu .contact-list .contact-list__item a span{
        font-size: 1.4rem;
    }
}


/*** ------------------------------------------------------------------------------ 

maker

-----------------------------------------------------------------------------  ***/
.maker{
background:linear-gradient(transparent 60%, #FFE870 60%);
}


/*** ------------------------------------------------------------------------------ 

visual

-----------------------------------------------------------------------------  ***/
#visual{
    margin: 80px auto 0;
}
#visual h2{
    font-size: 4.8rem;
    font-weight: bold;
    color: #fff;
    padding: 0 10px;
    text-align: center;
    letter-spacing: 0.1vw;
    box-sizing: border-box;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#2780e0+0,044c99+40,00346c+100 */
    background: linear-gradient(to bottom,  rgba(39,128,224,1) 0%,rgba(4,76,153,1) 40%,rgba(0,52,108,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
#visual .visual-cont{
    padding: 50px 0;
    background: url("../img/visual-bg.jpg") no-repeat center center / cover;
}
#visual .visual-cont .fl-box{
    max-width: 1540px;
    width: 100%;
    margin: 0 auto 0;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}
#visual .visual-cont .fl-box .img-cont{
    width: 40%;
}
#visual .visual-cont .fl-box .text-cont{
    width: 60%;
    padding: 0 3% 0 0;
    box-sizing: border-box;
}

#visual .visual-cont .fl-box .text-cont .contact-list{
    display: flex;
    margin: 100px auto 0;
}
#visual .visual-cont .fl-box .text-cont .contact-list .contact-list__item{
    position: relative;
}
#visual .visual-cont .fl-box .text-cont .contact-list .contact-list__item--form{
    width: 45%;
    margin: 0 5% 0 0;
}
#visual .visual-cont .fl-box .text-cont .contact-list .contact-list__item--download{
    width: 50%;
}
#visual .visual-cont .fl-box .text-cont .contact-list .contact-list__item .ballon{
    position: absolute;
    z-index: 2;
    transform: translateY(-75%);
    text-align: center;
    width: 100%;
}
#visual .visual-cont .fl-box .text-cont .contact-list .contact-list__item .ballon span{
    background: #024FA2;
    display: inline-block;
    padding: 5px 25px;
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    border-radius: 25px;
    position: relative;
    letter-spacing: 0.05vw;
}
#visual .visual-cont .fl-box .text-cont .contact-list .contact-list__item .ballon span::after{
    position: absolute;
    left: 50%;
    bottom: 0;
    content: '';
    transform: translate(-50%,85%);
    width:0;
    height:0;
    border-style:solid;
    border-width: 15px 15px 0 15px;
    border-color: #024FA2 transparent transparent transparent;
}
#visual .visual-cont .fl-box .text-cont .contact-list .contact-list__item a{
    display: block;
    background: #F09602;
    border-radius: 12px;
    text-decoration: none;
    padding: 22px 10px;
    text-align: center;
    font-size: 2.2rem;
    font-weight: bold;
    color: #fff;
    transition: 0.3s;
    letter-spacing: 0.05vw;
}
#visual .visual-cont .fl-box .text-cont .contact-list .contact-list__item a span{
    font-size: 1.8rem;
}
#visual .visual-cont .fl-box .text-cont .contact-list .contact-list__item a svg{
    position: relative;
    left: -8px;
    top: 5px;
}
@media (min-width:768px){
    #visual .visual-cont .fl-box .text-cont .contact-list .contact-list__item a:hover{
        opacity: 0.8;
    }   
}
@media (max-width:1270px){
    #visual .visual-cont .fl-box .text-cont .contact-list .contact-list__item .ballon span{
        font-size: 1.4rem;
    }
    #visual .visual-cont .fl-box .text-cont .contact-list .contact-list__item a{
        font-size: 1.6rem;
    }
}
@media (max-width:1000px){
    #visual h2{
        font-size: 3.2rem;
    }
    #visual .visual-cont .fl-box .text-cont .contact-list{
        display: block;
        margin: 0;
    }
    #visual .visual-cont .fl-box .text-cont .contact-list .contact-list__item--form,
    #visual .visual-cont .fl-box .text-cont .contact-list .contact-list__item--download{
        max-width: 320px;
        width: 100%;
        margin: 40px 0 0;
    }
}
@media (max-width:767px){
    #visual h2{
        padding: 10px;
        font-size: 2.4rem;
    }
    #visual .visual-cont{
        background: none;
        padding: 0;
    }
    #visual .visual-cont .fl-box{
        flex-wrap: wrap;
        padding: 0;
    }
    #visual .visual-cont .fl-box .img-cont{
        width: 100%;
        background: url("../img/visual-bg-sp.jpg") no-repeat center center / cover;
        padding: 40px 20px;
        box-sizing: border-box;
        position: relative;
    }
    #visual .visual-cont .fl-box .img-cont::after{
        position: absolute;
        left: 0;
        bottom: -15px;
        z-index: 2;
        content: '';
        width: 100%;
        height: 146px;
        background: url("../img/visual-img02-sp.png") no-repeat center center / 370px auto;
    }
    
    #visual .visual-cont .fl-box .text-cont{
        width: 100%;
        padding: 20px 20px 40px;
        order: 2;
        background: url("../img/visual-bg01-sp.jpg") no-repeat center center / cover;
        box-sizing: border-box;
    }
    #visual .visual-cont .fl-box .text-cont .img-txt{
        display: none;
    }
    #visual .visual-cont .fl-box .text-cont .contact-list .contact-list__item--form,
    #visual .visual-cont .fl-box .text-cont .contact-list .contact-list__item--download{
        max-width: 100%;
        margin: 50px 0 0;
    }
    #visual .visual-cont .fl-box .text-cont .contact-list .contact-list__item a{
        background: #fff;
        color: #024FA2;
        font-size: 2.1rem;
    }
    #visual .visual-cont .fl-box .text-cont .contact-list .contact-list__item a span{
        font-size: 1.7rem;
    }
    #visual .visual-cont .fl-box .text-cont .contact-list .contact-list__item a svg{
        fill: #024FA2;
    }
    #visual .visual-cont .fl-box .text-cont .contact-list .contact-list__item .ballon{
        transform: translateY(-115%);
    }
    #visual .visual-cont .fl-box .text-cont .contact-list .contact-list__item .ballon span{
        background: #F09602;
    }
    #visual .visual-cont .fl-box .text-cont .contact-list .contact-list__item .ballon span::after{
        border-color: #F09602 transparent transparent transparent;
    }
}
@media (max-width:400px){
    #visual h2{
        font-size: 6.0vw;
    }
}
@media (max-width:370px){
    #visual .visual-cont .fl-box .text-cont .contact-list .contact-list__item a{
        font-size: 1.9rem;
    }
    #visual .visual-cont .fl-box .text-cont .contact-list .contact-list__item a span{
        font-size: 1.5rem;
    }
}
@media (max-width:340px){
    #visual .visual-cont .fl-box .text-cont .contact-list .contact-list__item a{
        font-size: 1.8rem;
    }
    #visual .visual-cont .fl-box .text-cont .contact-list .contact-list__item a span{
        font-size: 1.3rem;
    }
}

/*** ------------------------------------------------------------------------------ 

contact-box

-----------------------------------------------------------------------------  ***/
.contact-box{
    max-width: 1200px;
    width: 100%;
    padding: 10px 390px 33px 80px;
    box-sizing: border-box;
    background: url("../img/contact-box-bg.png") no-repeat center center / cover;
    position: relative;
}
.contact-box .img{
    position: absolute;
    right: 50px;
    bottom: 0;
}
.contact-box .box-in .ttl{
    text-align: center;
    font-size: 3.5rem;
    font-weight: bold;
    color: #fff;
    margin: 0 0 40px;
}
.contact-box .box-in .ttl strong{
    font-size: 4.6rem;
}
.contact-box .box-in .ttl span{
    position: relative;
}
.contact-box .box-in .ttl span::before{
    position: absolute;
    left: -40px;
    bottom: 15px;
    content: '';
    width: 33px;
    height: 2px;
    background: #fff;
    transform: rotate(55deg);
}
.contact-box .box-in .ttl span::after{
    position: absolute;
    right: -40px;
    bottom: 15px;
    content: '';
    width: 33px;
    height: 2px;
    background: #fff;
    transform: rotate(-55deg);
}

.contact-box .box-in .contact-list{
    display: flex;
    justify-content: center;
}
.contact-box .box-in .contact-list .contact-list__item{
    position: relative;
}
.contact-box .box-in .contact-list .contact-list__item--form{
    width: 45%;
    margin: 0 5% 0 0;
}
.contact-box .box-in .contact-list .contact-list__item--download{
    width: 50%;
}
.contact-box .box-in .contact-list .contact-list__item .ballon{
    position: absolute;
    z-index: 2;
    transform: translateY(-75%);
    text-align: center;
    width: 100%;
}
.contact-box .box-in .contact-list .contact-list__item .ballon span{
    background: #F09602;
    display: inline-block;
    padding: 3px 25px;
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    border-radius: 25px;
    position: relative;
    letter-spacing: 0.05vw;
}
.contact-box .box-in .contact-list .contact-list__item .ballon span::after{
    position: absolute;
    left: 50%;
    bottom: 0;
    content: '';
    transform: translate(-50%,85%);
    width:0;
    height:0;
    border-style:solid;
    border-width: 15px 15px 0 15px;
    border-color: #F09602 transparent transparent transparent;
}
.contact-box .box-in .contact-list .contact-list__item a{
    display: block;
    background: #fff;
    border-radius: 5px;
    text-decoration: none;
    padding: 22px 10px;
    text-align: center;
    font-size: 2.2rem;
    font-weight: bold;
    color: #024FA2;
    transition: 0.3s;
    letter-spacing: 0.05vw;
}
.contact-box .box-in .contact-list .contact-list__item a span{
    font-size: 1.8rem;
}
.contact-box .box-in .contact-list .contact-list__item a svg{
    position: relative;
    left: -5px;
    top: 3px;
}
@media (min-width:768px){
    .contact-box .box-in .contact-list .contact-list__item a:hover{
        opacity: 0.8;
    }   
}
@media (max-width:1200px){
    .contact-box .box-in .contact-list{
        display: block;
    }
    .contact-box .box-in .contact-list .contact-list__item--form,
    .contact-box .box-in .contact-list .contact-list__item--download{
        max-width: 500px;
        width: 100%;
        margin: 0 0 50px;
    }
    .contact-box .box-in .contact-list .contact-list__item--download{
        margin: 0;
    }
}
@media (max-width:1000px){
    .contact-box{
        padding: 10px 350px 33px 40px;
    }
    .contact-box .box-in .ttl{
        font-size: 2.4rem;
        margin: 0 0 50px;
    }
    .contact-box .box-in .ttl strong{
        font-size: 3.2rem;
    }
    .contact-box .img{
        right: 20px;
    }
    .contact-box .box-in .contact-list .contact-list__item a{
        font-size: 2.0rem;
    }
    .contact-box .box-in .contact-list .contact-list__item a span{
        font-size: 1.6rem;
    }
}
@media (max-width:767px){
    .contact-box{
        width: calc(100% + 40px);
        padding: 60px 20px 25px;
        box-sizing: border-box;
        background: url("../img/contact-box-bg.png") no-repeat center center / cover;
        position: relative;
    }
    .contact-box .box-in .ttl{
        font-size: 2.0rem;
    }
    .contact-box .box-in .ttl strong{
        font-size: 2.8rem;
    }
    .contact-box .box-in .ttl span::before{
        left: -30px;
    }
    .contact-box .box-in .ttl span::after{
        right: -30px;
    }
    .contact-box .box-in .contact-list .contact-list__item--form,
    .contact-box .box-in .contact-list .contact-list__item--download{
        max-width: 100%;
    }
    .contact-box .img{
        width: 133px;
        right: inherit;
        bottom: inherit;
        left: 50%;
        top: -60px;
        transform: translateX(-50%);
    }
    .contact-box .box-in .contact-list .contact-list__item .ballon span{
        font-size: 1.6rem;
    }
    .contact-box .box-in .contact-list .contact-list__item a{
        font-size: 2.1rem;
    }
    .contact-box .box-in .contact-list .contact-list__item a span{
        font-size: 1.7rem;
    }
}
@media (max-width:370px){
    .contact-box .box-in .contact-list .contact-list__item a{
        font-size: 1.9rem;
    }
    .contact-box .box-in .contact-list .contact-list__item a span{
        font-size: 1.5rem;
    }
}
@media (max-width:340px){
    .contact-box .box-in .contact-list .contact-list__item a{
        font-size: 1.8rem;
    }
    .contact-box .box-in .contact-list .contact-list__item a span{
        font-size: 1.3rem;
    }
}


/*** ------------------------------------------------------------------------------ 

sec01

-----------------------------------------------------------------------------  ***/
.sec01{
    padding: 65px 0 90px;
}
.sec01 h2{
    text-align: center;
    font-size: 4.3rem;
    font-weight: bold;
    color: #333;
    position: relative;
    z-index: 1;
    letter-spacing: 0.1vw;
}
.sec01 h2 span{
    font-size: 5.0rem;
    color: #024FA2;
}
.sec01 .fl-box{
    display: flex;
    margin: -40px 0 80px;
    padding: 0 0 130px;
    position: relative;
}
.sec01 .fl-box::after{
    position: absolute;
    left: 50%;
    bottom: 0;
    content: '';
    transform: translateX(-50%);
    width:0;
    height:0;
    border-style:solid;
    border-width: 65px 80px 0 80px;
    border-color: #F09602 transparent transparent transparent;
}
.sec01 .fl-box .fl-box__box{
    width: 50%;
    padding: 70px 25px 60px 100px;
    box-sizing: border-box;
    position: relative;
}
.sec01 .fl-box .fl-box__box--blue{
    background: #F2F9FF;
}
.sec01 .fl-box .fl-box__box--orange{
    background: #FFFBE3;
}
.sec01 .fl-box .fl-box__box ul li{
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 1.0em;
    padding: 0 0 0 22px;
    letter-spacing: 0.05vw;
}
.sec01 .fl-box .fl-box__box ul li:last-child{
    margin: 0;
}
.sec01 .fl-box .fl-box__box--blue ul li{
    background: url("../img/sec01-check-blue.svg") no-repeat left top 9px;
}
.sec01 .fl-box .fl-box__box--blue ul li span{
    font-size: 2.0rem;
    color: #024FA2;
}
.sec01 .fl-box .fl-box__box--orange ul li{
    background: url("../img/sec01-check-orange.svg") no-repeat left top 9px;
}
.sec01 .fl-box .fl-box__box--orange ul li span{
    font-size: 2.0rem;
    color: #F09602;
}
.sec01 .fl-box .fl-box__box--blue .img{
    position: absolute;
    right: 5px;
    bottom: -30px;
}
.sec01 .fl-box .fl-box__box--orange .img{
    position: absolute;
    left: 5px;
    bottom: -30px;
}

.sec01 .catch-box{
    max-width: 833px;
    margin: 0 auto 70px;
    background: #FFFBE3;
    position: relative;
}
.sec01 .catch-box .catch{
    font-size: 2.6rem;
    font-weight: bold;
    color:#333;
    padding: 30px 180px 30px 40px;
    letter-spacing: 0.05vw;
}
.sec01 .catch-box .catch span{
    font-size: 3.4rem;
    color:#F09602;
}
.sec01 .catch-box .img{
    position: absolute;
    right: 20px;
    bottom: 0;
}
.sec01 .catch-box .txt-ballon{
    position: absolute;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
}
.sec01 .catch-box .txt-ballon span{
    background: #024FA2;
    display: inline-block;
    padding: 5px 25px;
    border-radius: 25px;
    font-size: 2.2rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.05vw;
}
.sec01 .growth-box{}
.sec01 .growth-box .img{
    text-align: center;
}
.sec01 .growth-box h3{
    text-align: center;
    font-size: 3.0rem;
    font-weight: bold;
    margin: 0 0 50px;
    letter-spacing: 0.05vw;
}
.sec01 .growth-box .txt01{
    font-size: 1.8rem;
    text-align: center;
    line-height: 2.22;
    margin: 0 auto 60px;
    letter-spacing: 0.05vw;
}
.sec01 .growth-box .list{
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.sec01 .growth-box .list .list__item{
    width: calc(100% / 3 - 20px);
}
.sec01 .growth-box .list .list__item a{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 70px;
    align-items: center;
    background: #F09602;
    border: 1px solid #F09602;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    padding: 0 30px;
    box-sizing: border-box;
    transition: 0.3s;
    position: relative;
}
.sec01 .growth-box .list .list__item a .material-symbols-outlined{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.8rem;
}
.sec01 .growth-box .list .list__item a strong{
    width: 100%;
    font-weight: 600;
}
/*
.sec01 .growth-box .list .list__item a span{
    font-size: 2.2rem;
    font-weight: bold;
}
*/
.sec01 .contact-box{
    margin: 110px auto 0;
}
@media (min-width:768px){
    .sec01 .growth-box .list .list__item a:hover{
        background: #fff;
        color: #F09602;
    }
}
@media (max-width:1160px){
    .sec01 .fl-box .fl-box__box{
        padding: 70px 25px 120px 25px;
    }
    .sec01 .fl-box .fl-box__box--blue .img img{
        width: 100px;
    }
    .sec01 .fl-box .fl-box__box--orange .img img{
        width: 110px;
    }
}
@media (max-width:880px){
    .sec01 .fl-box .fl-box__box ul li br{
        display: none;
    }
}
@media (max-width:767px){
    .sec01 h2{
        line-height: 1.4;
        font-size: 3.15rem;
    }
    .sec01 h2 span{
        font-size: 3.6rem;
    }
    .sec01 .fl-box{
        display: block;
        margin: 120px -20px 50px;
        padding: 0 0 65px;
    }
    .sec01 .fl-box::after{
        position: absolute;
        left: 50%;
        bottom: 0;
        content: '';
        transform: translateX(-50%);
        width:0;
        height:0;
        border-style:solid;
        border-width: 35px 40px 0 40px;
        border-color: #F09602 transparent transparent transparent;
    }
    .sec01 .fl-box .fl-box__box{
        width: 100%;
        margin: 120px 0 0;
        padding: 60px 25px 40px;
    }
    .sec01 .fl-box .fl-box__box--blue .img{
        right: inherit;
        bottom: inherit;
        left: 50%;
        top: 0;
        transform: translate(-50%, -65%);
    }
    .sec01 .fl-box .fl-box__box--orange .img{
        right: inherit;
        bottom: inherit;
        left: 50%;
        top: 0;
        transform: translate(-50%, -65%);
    }
    .sec01 .fl-box .fl-box__box ul li{
        font-size: 1.6rem;
    }
    .sec01 .fl-box .fl-box__box ul li span{
        font-size: 1.8rem;
    }
    .sec01 .catch-box{
        margin: 0 -20px 70px;
    }
    .sec01 .catch-box .catch{
        font-size: 1.8rem;
        padding: 50px 110px 30px 20px;
        line-height: 1.5;
    }
    .sec01 .catch-box .catch span{
        font-size: 2.4rem;
    }
    .sec01 .catch-box .img{
        width: 105px;
    }
    .sec01 .catch-box .txt-ballon{
        padding: 0 10px;
    }
    .sec01 .catch-box .txt-ballon span{
        font-size: 1.8rem;
        padding: 3px 20px 5px;
        line-height: 1.5;
        border-radius: 35px;
    }
    .sec01 .growth-box h3{
        line-height: 1.5;
        margin: 0 0 30px;
    }
    .sec01 .growth-box .txt01{
        text-align: left;
        font-size: 1.6rem;
        margin: 0 auto 30px;
    }
    .sec01 .growth-box .list{
        display: block;
        padding: 0 20px;
    }
    .sec01 .growth-box .list .list__item{
        width: 100%;
        margin: 0 0 20px;
    }
    .sec01 .growth-box .list .list__item a{
        font-size: 1.6rem;
        padding: 0 25px 0 20px;
    }
    .sec01 .growth-box .list .list__item a span{
/*        font-size: 2.0rem;*/
    }
    .sec01 .growth-box .list .list__item a .material-symbols-outlined{
        right: 5px;
    }
    .sec01 .contact-box{
        margin: 110px -20px 0;
    }
}
@media (max-width: 400px){
    .sec01 .growth-box .list{
        padding: 0;
    }
}



/*** ------------------------------------------------------------------------------ 

sec02

-----------------------------------------------------------------------------  ***/
.sec02{}
.sec02 h2{
    background: #024FA2;
    text-align: center;
    font-size: 4.0rem;
    font-weight: bold;
    color: #fff;
    padding: 40px 10px;
    position: relative;
}
.sec02 h2::after{
    position: absolute;
    left: 50%;
    bottom:0;
    content: '';
    transform: translate(-50%,100%);
    width:0;
    height:0;
    border-style:solid;
    border-width: 27px 33.5px 0 33.5px;
    border-color: #024FA2 transparent transparent transparent;
}
.sec02 .point01{
    background: #F2F9FF;
    padding: 75px 0 65px;
}
.sec02 .point02{
    padding: 90px 0 80px;
}
.sec02 .point03{
    background: #F2F9FF;
    padding: 80px 0 75px;
}
.sec02 .fl-box{
    display: flex;
    align-items: flex-end;
}
.sec02 .fl-box .img{
    width: 41.5%
}
.sec02 .fl-box .text{
    width: 58.5%;
    padding: 0 5% 0 0;
    box-sizing: border-box;
}
.sec02 .fl-box .text h3{
    font-size: 4.0rem;
    font-weight: bold;
    color: #024FA2;
    line-height: 1.5;
    margin: 0 0 20px;
    letter-spacing: 0.1vw;
}
.sec02 .fl-box .text .en{
    font-size: 2.5rem;
    font-weight: bold;
    color: #024FA2;
    line-height: 1.0;
    letter-spacing: 0.1vw;
}
.sec02 .fl-box .text .en span{
    font-size: 4.0rem;
    margin: 0 0 0 5px;
}
.sec02 .fl-box .text .txt01{
    font-size: 1.6rem;
    line-height: 1.75;
    letter-spacing: 0.05vw;
    margin: 0 0 1.0em;
}
.sec02 .fl-box .text .txt02{
    font-size: 1.6rem;
    line-height: 1.75;
    letter-spacing: 0.05vw;
    margin: 0 0 1.0em;
}
.sec02 .fl-box .text .list01{
    background: #fff;
    border: 2px solid #0D57A7;
    padding: 20px;
    border-radius: 10px;
    margin: 0 0 1.0em;
}
.sec02 .fl-box .text .list01 li{
    margin: 0 0 0.5em;
    padding: 0 0 0 25px;
    font-size: 1.6rem;
    background: url("../img/sec02-check-blue.svg") no-repeat left top 8px;
    letter-spacing: 0.05vw;
}
.sec02 .fl-box .text .list01 li:last-child{
    margin: 0;
}
.sec02 .fl-box .text .list01 li span{
    font-weight: bold;
    color: #024FA2;
}

.sec02 .point02 .fl-box .img{
    order: 1;
}
.sec02 .point02 .fl-box .text{
    order: 2;
    padding: 0 0 0 5%;
}

.sec02 .fl-box .text .list02{
    display: flex;
    flex-wrap: wrap;
}
.sec02 .fl-box .text .list02 li{
    width: calc(91% / 4);
    margin: 0 3% 2% 0;
    padding: 10px 0;
    border-radius: 6px;
    background: #F2F9FF;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    color: #024FA2;
    letter-spacing: 0.05vw;
}
.sec02 .fl-box .text .list02 li:nth-child(4n){
    margin: 0 0 2% 0;
}
.sec02 .contact-box{
    margin: 100px auto 0;
}
@media (max-width:1200px){
    .sec02 .fl-box{
        align-items: center;
    }
}
@media (max-width:767px){
    .sec02 h2{
        font-size: 2.4rem;
        line-height: 1.5;
        padding: 25px 15px;
    }
    .sec02 .fl-box .text h3{
        font-size: 2.4rem;
    }
    .sec02 .fl-box .text .en{
        font-size: 1.8rem;
    }
    .sec02 .fl-box .text .en span{
        font-size: 2.4rem;
    }
    .sec02 .fl-box{
        display: block;
    }
    .sec02 .fl-box .text,
    .sec02 .point02 .fl-box .text{
        width: 100%;
        padding: 0;
        margin: 0 0 50px;
    }
    .sec02 .fl-box .img{
        width: 70%;
        margin: 0 auto;
    }
    .sec02 .fl-box .text .list02 li{
        width: 49%;
        margin: 0 2% 2% 0;
    }
    .sec02 .fl-box .text .list02 li:nth-child(2n){
        margin: 0 0 2% 0;
    }
    .sec02 .fl-box .text .txt01{
        margin: 0 0 1.5em;
    }
    .sec02 .point03{
        padding: 80px 0 0;
    }
    .sec02 .contact-box{
        margin: 100px -20px 0;
    }
}


/*** ------------------------------------------------------------------------------ 

sec03

-----------------------------------------------------------------------------  ***/
.sec03{
    padding: 90px 0 100px;
}
.sec03 h2{
    text-align: center;
    font-size: 3.0rem;
    font-weight: 900;
    color: #333;
    letter-spacing: 0.05vw;
    margin: 0 0 50px;
}
.sec03 h2 span{
    display: block;
    text-align: center;
}
.sec03 .msg{
    text-align: center;
    font-size: 1.8rem;
    line-height: 2.22;
    letter-spacing: 0.05vw;
    margin: 0 0 50px;
}
.sec03 .list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto 30px;
}
.sec03 .list .list__item{
    width: calc(100% / 5 - 25px);
    margin: 0 0 30px;
    background: #F2F9FF;
    text-align: center;
    padding: 30px 10px;
    box-sizing: border-box;
    border-radius: 10px;
}
.sec03 .list .list__item .ttl{
    font-size: 1.8rem;
    font-weight: bold;
    color: #024FA2;
    letter-spacing: 0.05vw;
}

.sec03 .btn a{
    display: block;
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
    padding: 15px 0;
    border: 1px solid #F09602;
    border-radius: 5px;
    background: #F09602;
    font-size: 1.9rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
    letter-spacing: 0.05vw;
}
.sec03 .btn a span{
    font-size: 2.2rem;
}
@media (min-width:768px){
    .sec03 .btn a:hover{
        background: #fff;
        color: #F09602;
    }
}


@media (max-width:767px){
    .sec03{
        padding: 60px 0 80px;
    }
    .sec03 h2{
        font-size: 2.4rem;
        margin: 0 0 30px;
    }
    .sec03 .msg{
        font-size: 1.6rem;
        text-align: left;
        margin: 0 0 30px;
    }
    .sec03 .list .list__item{
        width: calc(100% / 3 - 5px);
        margin: 0 0 10px;
        padding: 20px 10px;
    }
    .sec03 .list .list__item .ttl{
        font-size: 1.6rem;
        line-height: 1.5;
    }
    .sec03 .btn a{
        font-size: 1.5rem;
    }
    .sec03 .btn a span{
        font-size: 1.8rem;
    }
}


/*** ------------------------------------------------------------------------------ 

sec04

-----------------------------------------------------------------------------  ***/
.sec04{
    background: #F2F9FF;
    padding: 80px 0 235px;
}
.sec04 h2{
    text-align: center;
    margin: -115px auto 70px;
}
.sec04 h2 span{
    position: relative;
    display: inline-block;
    max-width: 420px;
    width: 100%;
    background: #024FA2;
    font-size: 3.2rem;
    font-weight: bold;
    color: #fff;
    padding: 5px 10px;
    text-align: center;
    letter-spacing: 0.1vw;
}
.sec04 h2 span::after{
    position: absolute;
    left: 50%;
    bottom: 0;
    content: '';
    transform: translate(-50%, 100%);
    width:0;
    height:0;
    border-style:solid;
    border-width: 30px 50px 0 50px;
    border-color: #024FA2 transparent transparent transparent;
}
.sec04 .msg{
    text-align: center;
    font-size: 1.8rem;
    letter-spacing: 0.05vw;
    margin: 0 0 50px;
    line-height: 2.22;
}
.sec04 .fl-box{
    display: flex;
    background: #fff;
    margin: 0 0 40px;
    padding: 40px;
    border-radius: 10px;
}
.sec04 .fl-box .img{
    width: 290px;
}
.sec04 .fl-box .text{
    width: calc(100% - 290px);
    padding: 0 0 0 40px;
    box-sizing: border-box;
}
.sec04 .fl-box .text .ttl{
    font-size: 2.6rem;
    font-weight: bold;
    color: #024FA2;
    letter-spacing: 0.05vw;
    margin: 0 0 0.75em;
}
.sec04 .fl-box .text .txt01{
    font-size: 1.6rem;
    letter-spacing: 0.05vw;
    margin: 0 0 1.5em;
    line-height: 1.75;
}
.sec04 .fl-box .text .txt01:last-of-type{
    margin: 0;
}
@media (max-width:767px){
    .sec04{
        padding: 80px 0 180px;
    }
    .sec04 h2{
        margin: -110px auto 50px;
    }
    .sec04 h2 span{
        font-size: 2.4rem;
    }
    .sec04 .msg{
        text-align: left;
        font-size: 1.6rem;
        margin: 0 0 30px;
    }
    .sec04 .fl-box{
        display: block;
        padding: 25px;
    }
    .sec04 .fl-box .img{
        width: 100%;
        margin: 0 0 20px;
    }
    .sec04 .fl-box .text{
        width: 100%;
        padding: 0;
    }
    .sec04 .fl-box .text .ttl{
        font-size: 2.0rem;
    }
    .sec04 .fl-box .text .txt01{
        font-size: 1.6rem;
    }
}



/*** ------------------------------------------------------------------------------ 

sec05

-----------------------------------------------------------------------------  ***/
.sec05{
    padding: 220px 0 100px;
}
.sec05 h2{
    text-align: center;
    margin: 0 auto 70px;
}
.sec05 h2 span{
    position: relative;
    display: inline-block;
    max-width: 420px;
    width: 100%;
    background: #024FA2;
    font-size: 3.2rem;
    font-weight: bold;
    color: #fff;
    padding: 5px 10px;
    text-align: center;
    letter-spacing: 0.1vw;
}
.sec05 h2 span::after{
    position: absolute;
    left: 50%;
    bottom: 0;
    content: '';
    transform: translate(-50%, 100%);
    width:0;
    height:0;
    border-style:solid;
    border-width: 30px 50px 0 50px;
    border-color: #024FA2 transparent transparent transparent;
}
.sec05 .fl-box{
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 50px;
}
.sec05 .fl-box h3{
    width: 100%;
    font-size: 3.0rem;
    font-weight: bold;
    color: #024FA2;
    margin: 0 0 30px;
    padding: 5px 0;
    border-bottom: 1px solid #024FA2;
}
.sec05 .fl-box .img{
    width: 330px;
}
.sec05 .fl-box .text{
    width: calc(100% - 330px);
    padding: 0 0 0 40px;
    box-sizing: border-box;
}
.sec05 .fl-box .text .ttl{
    font-size: 2.0rem;
    font-weight: bold;
    margin: 0 0 1.0em;
    letter-spacing: 0.1vw;
}
.sec05 .fl-box .text .txt01{
    font-size: 1.6rem;
    margin: 0 0 1.5em;
    letter-spacing: 0.05vw;
    line-height: 1.75;
}
.sec05 .fl-box .text .txt01:last-of-type{
    margin: 0;
}
@media (max-width:767px){
    .sec05 {
        padding: 180px 0 60px;
    }
    .sec05 h2 span{
        font-size: 2.4rem;
    }
    .sec05 .fl-box{
        display: block;
    }
    .sec05 .fl-box h3{
        line-height: 1.5;
        font-size: 2.0rem;
    }
    .sec05 .fl-box .img{
        width: 80%;
        margin: 0 auto 20px;
    }
    .sec05 .fl-box .text{
        width: 100%;
        padding: 0;
    }
    .sec05 .fl-box .text .ttl{
        font-size: 1.8rem;
    }
    .sec05 .fl-box .text .txt01{
        font-size: 1.6rem;
    }
}



/*** ------------------------------------------------------------------------------ 

sec06

-----------------------------------------------------------------------------  ***/
.sec06{
    background: #FFFBE3;
    padding: 90px 0 235px;
}
.sec06 h2{
    text-align: center;
    margin: -125px auto 70px;
}
.sec06 h2 span{
    position: relative;
    display: inline-block;
    max-width: 420px;
    width: 100%;
    background: #F09602;
    font-size: 3.2rem;
    font-weight: bold;
    color: #fff;
    padding: 5px 10px;
    text-align: center;
    letter-spacing: 0.1vw;
}
.sec06 h2 span::after{
    position: absolute;
    left: 50%;
    bottom: 0;
    content: '';
    transform: translate(-50%, 100%);
    width:0;
    height:0;
    border-style:solid;
    border-width: 30px 50px 0 50px;
    border-color: #F09602 transparent transparent transparent;
}
.sec06 .msg{
    text-align: center;
    font-size: 1.8rem;
    line-height: 2.22;
    letter-spacing: 0.05vw;
    margin: 0 0 55px;
}
.sec06 .list{
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.sec06 .list li{
    width: calc(100% / 3 - 30px);
    border: 2px solid #F09602;
    background: #fff;
    border-radius: 10px;
    padding: 25px 5px 20px;
    box-sizing: border-box;
    text-align: center;
    font-size: 3.0rem;
    font-weight: bold;
    line-height: 1.5;
    position: relative;
    letter-spacing: 0.1vw;
}
.sec06 .list li:nth-child(1) .sec06__pos-img01{
    position: absolute;
    left: -30px;
    top: -40px;
}
.sec06 .list li::after{
    position: absolute;
    right: -40px;
    top: 50%;
    content: '';
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: url("../img/icon-plus.svg") no-repeat center center / 30px 30px;
}
.sec06 .list li:last-child::after{
    content: none;
}



.sec06 .list li .span01{
    display: block;
    line-height: 1.0;
    font-size: 1.8rem;
    font-weight: 400;
}
.sec06 .list li .span02{
    font-size: 1.8rem;
}
.sec06 .list li .span03{
    font-size: 1.1rem;
}
.sec06 .txt-s{
    max-width: 880px;
    margin: 20px auto 50px;
    font-size: 1.4rem;
    letter-spacing: 0.05vw;
}
.sec06 .btn{}
.sec06 .btn a{
    display: block;
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
    padding: 15px 0;
    border: 1px solid #F09602;
    border-radius: 5px;
    background: #F09602;
    font-size: 1.9rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
    letter-spacing: 0.05vw;
}
.sec06 .btn a span{
    font-size: 2.2rem;
}
@media (min-width:768px){
    .sec06 .btn a:hover{
        background: #fff;
        color: #F09602;
    }
}
@media (max-width:767px){
    .sec06{
        padding: 90px 0 200px;
    }
    .sec06 h2{
        margin: -118px auto 50px;
    }
    .sec06 h2 span{
        font-size: 2.4rem;
    }
    .sec06 .msg{
        font-size: 1.6rem;
        margin: 0 0 30px;
        text-align: left;
    }
    .sec06 .list{
        display: block;
    }
    .sec06 .list li{
        width: 100%;
        margin: 45px 0 0;
    }
    .sec06 .list li::after{
        position: absolute;
        right: inherit;
        top: 100%;
        left: 50%;
        content: '';
        transform: translate(-50%, 10px);
        width: 30px;
        height: 30px;
        background: url("../img/icon-plus.svg") no-repeat center center / 30px 30px;
    }
    .sec06 .list li:nth-child(1) .sec06__pos-img01{
        position: absolute;
        left: -20px;
        top: -40px;
    }
    .sec06 .btn a{
        font-size: 1.5rem;
    }
    .sec06 .btn a span{
        font-size: 1.8rem;
    }
}



/*** ------------------------------------------------------------------------------ 

sec07

-----------------------------------------------------------------------------  ***/
.sec07{
    background: #F2F9FF;
    padding: 235px 0 60px;
}
.sec07 h2{
    text-align: center;
    margin: 0 auto 70px;
}
.sec07 h2 span{
    position: relative;
    display: inline-block;
    max-width: 420px;
    width: 100%;
    background: #024FA2;
    font-size: 3.2rem;
    font-weight: bold;
    color: #fff;
    padding: 5px 10px;
    text-align: center;
    letter-spacing: 0.1vw;
}
.sec07 h2 span::after{
    position: absolute;
    left: 50%;
    bottom: 0;
    content: '';
    transform: translate(-50%, 100%);
    width:0;
    height:0;
    border-style:solid;
    border-width: 30px 50px 0 50px;
    border-color: #024FA2 transparent transparent transparent;
}
.sec07 .box{
    background: #fff;
    margin: -110px auto 0;
    padding: 100px 60px 50px;
}
.sec07 .box .msg{
    max-width: 850px;
    margin: 0 auto 60px;
    font-size: 1.8rem;
    line-height: 2.11;
    letter-spacing: 0.05vw;
}
.sec07 .box .flow-list{
    display: flex;
    justify-content: space-between;
    margin: 20px auto 40px;
}
.sec07 .box .flow-list .flow-list__item{
    width: calc(100% / 5 - 20px);
}
.sec07 .box .flow-list .flow-list__item .img{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140px;
}
.sec07 .btn{}
.sec07 .btn a{
    display: block;
    max-width: 370px;
    width: 100%;
    margin: 0 auto;
    padding: 15px 0;
    border: 1px solid #F09602;
    border-radius: 5px;
    background: #F09602;
    font-size: 1.9rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
}
.sec07 .btn a span{
    font-size: 2.2rem;
}
.sec07 .btn a svg{
    position: relative;
    top: 3px;
    transition: 0.3s;
}
.sec07 .contact-box{}
@media (min-width:768px){
    .sec07 .btn a:hover{
        background: #fff;
        color: #F09602;
    }
    .sec07 .btn a:hover svg{
        fill: #F09602;
    }
}
@media (max-width:767px){
    .sec07{
        padding: 180px 0 0;
    }
    .sec07 h2 span{
        font-size: 2.4rem;
    }
    .sec07 .box{
        margin: -110px auto 0;
        padding: 90px 25px 30px;
    }
    .sec07 .box .flow-img{
        display: none;
    }
    .sec07 .box .msg{
        margin: 0 auto 30px;
        font-size: 1.6rem;
    }
    .sec07 .box .flow-list{
        display: block;
        padding: 0 0 0 120px;
    }
    .sec07 .box .flow-list .flow-list__item{
        width: 100%;
        margin: 0;
        padding: 20px 0 20px;
        position: relative;
    }
    .sec07 .box .flow-list .flow-list__item.step01::before{
        position: absolute;
        left: -120px;
        top: 0;
        content: '';
        width: 110px;
        height: 100%;
        background: url("../img/step01.svg") no-repeat center center / 85px auto, #6E9ED2;
    }
    .sec07 .box .flow-list .flow-list__item.step01::after{
        position: absolute;
        left: -120px;
        bottom: -20px;
        z-index: 2;
        content: '';
        width:0;
        height:0;
        border-style:solid;
        border-width: 20px 55px 0 55px;
        border-color: #6E9ED2 transparent transparent transparent;
    }
    .sec07 .box .flow-list .flow-list__item.step02::before{
        position: absolute;
        left: -120px;
        top: 0;
        content: '';
        width: 110px;
        height: 100%;
        background: url("../img/step02.svg") no-repeat center center / 95px auto, #538DCD;
    }
    .sec07 .box .flow-list .flow-list__item.step02::after{
        position: absolute;
        left: -120px;
        bottom: -20px;
        z-index: 2;
        content: '';
        width:0;
        height:0;
        border-style:solid;
        border-width: 20px 55px 0 55px;
        border-color: #538DCD transparent transparent transparent;
    }
    .sec07 .box .flow-list .flow-list__item.step03::before{
        position: absolute;
        left: -120px;
        top: 0;
        content: '';
        width: 110px;
        height: 100%;
        background: url("../img/step03.svg") no-repeat center center / 80px auto, #3378C3;
    }
    .sec07 .box .flow-list .flow-list__item.step03::after{
        position: absolute;
        left: -120px;
        bottom: -20px;
        z-index: 2;
        content: '';
        width:0;
        height:0;
        border-style:solid;
        border-width: 20px 55px 0 55px;
        border-color: #3378C3 transparent transparent transparent;
    }
    .sec07 .box .flow-list .flow-list__item.step04::before{
        position: absolute;
        left: -120px;
        top: 0;
        content: '';
        width: 110px;
        height: 100%;
        background: url("../img/step04.svg") no-repeat center center / 60px auto, #2169B7;
    }
    .sec07 .box .flow-list .flow-list__item.step04::after{
        position: absolute;
        left: -120px;
        bottom: -20px;
        z-index: 2;
        content: '';
        width:0;
        height:0;
        border-style:solid;
        border-width: 20px 55px 0 55px;
        border-color: #2169B7 transparent transparent transparent;
    }
    .sec07 .box .flow-list .flow-list__item.step05::before{
        position: absolute;
        left: -120px;
        top: 0;
        content: '';
        width: 110px;
        height: 100%;
        background: url("../img/step05.svg") no-repeat center center / 90px auto, #0D57A7;
    }
    .sec07 .box .flow-list .flow-list__item.step05::after{
        position: absolute;
        left: -120px;
        bottom: -20px;
        z-index: 2;
        content: '';
        width:0;
        height:0;
        border-style:solid;
        border-width: 20px 55px 0 55px;
        border-color: #0D57A7 transparent transparent transparent;
    }
    
    .sec07 .btn a{
        font-size: 1.6rem;
    }
    .sec07 .btn a span{
        font-size: 1.8rem;
    }
}
@media (max-width:420px){
    .sec07 .btn a{
        font-size: 1.3rem;
    }
    .sec07 .btn a span{
        font-size: 1.5rem;
    }
}


/*** ------------------------------------------------------------------------------ 

contact-box--fix01

-----------------------------------------------------------------------------  ***/
.contact-box--fix01{
    margin: -130px auto -130px;
}
@media (max-width:767px){
    .contact-box--fix01{
        margin: -130px -20px -130px;
    }
    .contact-box--fix01 .box-in .contact-list .contact-list__item--form,
    .contact-box--fix01 .box-in .contact-list .contact-list__item--download{
        width: calc(100% - 40px);
        margin: 0 auto 50px;
    }
    .contact-box--fix01 .box-in .contact-list .contact-list__item--download{
        margin: 0 auto;
    }
}


/*** ------------------------------------------------------------------------------ 

sec08

-----------------------------------------------------------------------------  ***/
.sec08{
    background: #F2F9FF;
    padding: 60px 0 0;
}
.sec08 h2{
    text-align: center;
    margin: 0 auto 70px;
}
.sec08 h2 span{
    position: relative;
    display: inline-block;
    max-width: 420px;
    width: 100%;
    background: #024FA2;
    font-size: 3.2rem;
    font-weight: bold;
    color: #fff;
    padding: 5px 10px;
    text-align: center;
    letter-spacing: 0.1vw;
}
.sec08 h2 span::after{
    position: absolute;
    left: 50%;
    bottom: 0;
    content: '';
    transform: translate(-50%, 100%);
    width:0;
    height:0;
    border-style:solid;
    border-width: 30px 50px 0 50px;
    border-color: #024FA2 transparent transparent transparent;
}
.sec08 .box{
    background: #fff;
    margin: -110px auto 0;
    padding: 90px 60px 50px;
}
.sec08 .box .fl-box{
    display: flex;
}
.sec08 .box .fl-box .img{
    order: 2;
    width: 34.5%;
}
.sec08 .box .fl-box .text{
    order: 1;
    width: 65.5%;
    padding: 0 4% 0 0;
    box-sizing: border-box;
}
.sec08 .box .fl-box .text .ttl{
    font-size: 3.0rem;
    font-weight: bold;
    letter-spacing: 0.05vw;
    color: #024FA2;
    margin: 0 0 0.5em;
}
.sec08 .box .fl-box .text .txt01{
    font-size: 1.6rem;
    letter-spacing: 0.05vw;
    margin: 0 0 2.0em;
}
.sec08 .box .fl-box .text table{
    width: 100%;
    background: #ccc;
    border-spacing: 1px;
    border-collapse: separate;
}
.sec08 .box .fl-box .text table tr th{
    width: 150px;
    background: #024FA2;
    color: #fff;
    padding: 10px 15px;
    box-sizing: border-box;
}
.sec08 .box .fl-box .text table tr td{
    width: calc(100% - 150px);
    background: #fff;
    padding: 10px 15px;
    box-sizing: border-box;
}


.sec08 .btn{
    margin: 40px auto 0;
}
.sec08 .btn a{
    display: block;
    max-width: 370px;
    width: 100%;
    margin: 0 auto;
    padding: 15px 0;
    border: 1px solid #F09602;
    border-radius: 5px;
    background: #F09602;
    font-size: 2.2rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
    letter-spacing: 0.05vw;
}
.sec08 .contact-box{
    margin: 100px auto 0;
}
@media (min-width:768px){
    .sec08 .btn a:hover{
        background: #fff;
        color: #F09602;
    }
}
@media (max-width:767px){
    .sec08 h2 span{
        font-size: 2.4rem;
    }
    .sec08 .box{
        margin: -100px auto 0;
        padding: 90px 25px 25px;
    }
    .sec08 .box .fl-box{
        display: block;
    }
    .sec08 .box .fl-box .text{
        width: 100%;
        padding: 0;
    }
    .sec08 .box .fl-box .text .ttl{
        font-size: 2.0rem;
    }
    .sec08 .box .fl-box .text .txt01{
        font-size: 1.4rem;
    }
    .sec08 .box .fl-box .img{
        width: 80%;
        margin: 0 auto 20px;
    }
    .sec08 .box .fl-box .text table tr th{
        width: 100px;
        font-size: 1.4rem;
    }
    .sec08 .box .fl-box .text table tr td{
        width: calc(100% - 100px);
        font-size: 1.4rem;
    }
    .sec08 .btn a{
        font-size: 1.8rem;
    }
    .sec08 .contact-box{
        margin: 100px -20px 0;
    }
}




/*** ------------------------------------------------------------------------------ 

sec09

-----------------------------------------------------------------------------  ***/
.sec09{
    background: #F2F9FF;
    padding: 60px 0 110px;
}
.sec09 h2{
    text-align: center;
    font-size: 3.2rem;
    font-weight: bold;
    color: #024FA2;
    margin: 0 0 45px;
    letter-spacing: 0.1vw;
}
.sec09 .qa-list{
    max-width: 1000px;
    margin: 0 auto;
}
.sec09 .qa-list .qa-list__item{
    background: #fff;
    margin: 0 0 30px;
    border-radius: 10px;
    position: relative;
}
.sec09 .qa-list .qa-list__item::before{
    position: absolute;
    left: 35px;
    top: 15px;
    content: 'Q';
    font-size: 2.4rem;
    font-weight: bold;
    color:#024FA2;
}
.sec09 .qa-list .qa-list__item .ttl{
    padding: 25px 80px 25px 70px;
    font-size: 1.6rem;
    font-weight: bold;
    position: relative;
    cursor: pointer;
}
.sec09 .qa-list .qa-list__item .ttl:before{
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	right: 30px;
	margin: -1px 0 0 -11px;
	width: 22px;
	height: 2px;
	background-color: #024FA2;
	transition: .2s;
	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	border-right: none;
}
.sec09 .qa-list .qa-list__item .ttl:after{
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	right: 30px;
	margin: -1px 0 0 -11px;
	width: 22px;
	height: 2px;
	background-color: #024FA2;
	transition: .3s;
}
.sec09 .qa-list .qa-list__item .ttl.on:before{
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
}
.sec09 .qa-list .qa-list__item .ttl.on:after{
	background-color: transparent;
}

.sec09 .qa-list .qa-list__item .text{
    padding: 0 80px 25px 70px;
    font-size: 1.6rem;
    line-height: 1.875;
    position: relative;
    display: none;
}
.sec09 .qa-list .qa-list__item .text::before{
    position: absolute;
    left: 35px;
    top: -8px;
    content: 'A';
    font-size: 2.4rem;
    font-weight: bold;
    color:#F09602;
}
@media (max-width:767px){
   .sec09{
        padding: 60px 0;
    }
    .sec09 h2{
        font-size: 2.4rem;
        margin: 0 0 30px;
    }
    .sec09 .qa-list .qa-list__item::before{
        left: 15px;
    }
    .sec09 .qa-list .qa-list__item .ttl{
        padding: 25px 40px 25px 40px;
    }
    .sec09 .qa-list .qa-list__item .text{
        padding: 0 25px 25px 40px;
        font-size: 1.6rem;
    }
    .sec09 .qa-list .qa-list__item .text::before{
        left: 15px;
    }
    .sec09 .qa-list .qa-list__item .ttl:before{
        right: 20px;
    }
    .sec09 .qa-list .qa-list__item .ttl:after{
        right: 20px;
    }
}




/*** ------------------------------------------------------------------------------ 

sec10

-----------------------------------------------------------------------------  ***/
.sec10{
    padding: 0;
}
.sec10 .inner{
    padding: 80px 20px 120px;
}
.sec10 h2{
    background: #024FA2;
    text-align: center;
    font-size: 4.0rem;
    font-weight: bold;
    color: #fff;
    padding: 40px 10px;
    position: relative;
}
.sec10 h2::after{
    position: absolute;
    left: 50%;
    bottom:0;
    content: '';
    transform: translate(-50%,100%);
    width:0;
    height:0;
    border-style:solid;
    border-width: 27px 33.5px 0 33.5px;
    border-color: #024FA2 transparent transparent transparent;
}
.sec10 #crmWebToEntityForm{
    max-width: 800px !important;
}
.sec10 #crmWebToEntityForm .zcwf_col_lab{
    font-size: 1.6rem !important;
    padding: 10px !important;
}
.sec10 #crmWebToEntityForm .zcwf_col_fld input[type=text]{
    padding: 10px !important;
    font-size: 1.7rem !important;
}
.zcwf_lblLeft .zcwf_col_fld input[type=text],
input[type=password],
.zcwf_lblLeft .zcwf_col_fld textarea{
    width: 100% !important;
}
.zcwf_lblLeft .zcwf_button{
    font-size: 1.6rem !important;
    padding: 10px 20px !important;
    max-width: 140px !important;
}
.formsubmit.zcwf_button{
transition: 0.3s;
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#024fa2+0,024882+100 */
background: linear-gradient(to bottom,  rgba(2,79,162,1) 0%,rgba(2,72,130,1) 100%) !important; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.zcwf_lblLeft .zcwf_button{
    transition: 0.3s;
    margin: 25px 10px 0;
}
@media (min-width:768px){
    .formsubmit.zcwf_button:hover,
    .zcwf_lblLeft .zcwf_button:hover{
        opacity: 0.6;
    }
}

@media (max-width:767px){
    .sec10 .inner{
        padding: 50px 20px 60px;
    }
    .sec10 h2{
        font-size: 2.4rem;
        line-height: 1.5;
        padding: 25px 15px;
    }
    #crmWebToEntityForm.zcwf_lblLeft {
        padding: 0 !important;
    }
    .sec10 #crmWebToEntityForm .zcwf_col_lab{
        padding: 10px 10px 0 !important;
    }
}


/*** ------------------------------------------------------------------------------ 

sec-thanks

-----------------------------------------------------------------------------  ***/
.sec-thanks{
    /*
    padding: 200px 0 215px;
    */
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 80px - 90px - 62px);
}
.sec-thanks .sec-thanks__title{
    font-size: 3.0rem;
    font-weight: bold;
    color: var(--color_black);
    text-align: center;
    margin: 0 0 45px;
    letter-spacing: 0.05vw;
}
.sec-thanks .sec-thanks__text{
    font-size: 1.8rem;
    color: var(--color_black);
    letter-spacing: 0.05vw;
    text-align: center;
    line-height: 1.94;
    margin: 0 0 45px;
}
.sec-thanks .btn a{
    display: block;
    max-width: 190px;
    width: 100%;
    margin: 0 auto;
    padding: 7px 0;
    border: 1px solid #F09602;
    border-radius: 5px;
    background: #F09602;
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
    letter-spacing: 0.05vw;
}
@media (min-width:768px){
    .sec-thanks .btn a:hover{
        background: #fff;
        color: #F09602;
    }
}
@media (max-width:767px){
    .sec-thanks{
        display: block;
        height: auto;
        padding: 80px 0 100px;
    }
    .sec-thanks .sec-thanks__title{
        font-size: min(2.4rem, 7.0vw);
        font-weight: bold;
        color: var(--color_black);
        text-align: center;
        margin: 0 0 25px;
    }
    .sec-thanks .sec-thanks__text{
        font-size: 1.6rem;
        text-align: left;
        line-height: 1.94;
        margin: 0 0 30px;
    }
}




