@charset "UTF-8";
/* ------------------------------
    clearfix
------------------------------ */

.cf:after{
  content: ".";
  display: block;
  height: 0;
  font-size:0;
  clear: both;
  visibility:hidden;
}

.cf {display: inline-block;}

/* Hides from IE Mac */
* html .cf {height: 1%;}
.cf {display:block;}
/* End Hack */

/* ----------------------------------------------------------------------------------------------------
*  基本情報
* --------------------------------------------------------------------------------------------------*/

html,body{	height:100%;}
html{
	font-size:62.5%;
    overflow-y: scroll;
}

body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, form {
	margin: 0;
	padding: 0;
	border: none;
	line-height: 100%;
	list-style-type: none;
	font-style: normal;
	font-weight: normal;
	font-weight: 400;
    font-family: "メイリオ", Meiryo, sans-serif;
	text-align: left;
	color:#282828;
	letter-spacing: 0;
}

input, button, textarea, select  {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	border-radius: 0;
	resize: none;
	outline: none;
	background: none;
  font-family: 'Noto Sans JP', sans-serif;
}
select::-ms-expand {
  display: none;
}
*, *:before, *:after {
	box-sizing: border-box;
}
a {
	color: #282828;
	text-decoration:none;
	transition: opacity 0.3s ease;
	outline: 1px solid transparent;
	-webkit-backface-visibility: hidden;
	backface-visibility:hidden;
}

img {
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}

/* ------------------------------
    base
------------------------------ */
body {
	min-width: 1100px;
  width: 100%;
}
section {
	position: relative;
}
p,dt,dd,th,td,li{
	font-size:1.4rem;
	line-height: 1.7;
}
.fade {
	transition: opacity 0.3s ease;
	-webkit-backface-visibility: hidden;
	backface-visibility:hidden;
}
.fade img {
	outline: 1px solid transparent;
	-webkit-backface-visibility: hidden;
	backface-visibility:hidden;
}
.fade:hover {
	opacity: .6;
	cursor: pointer;
}
.flex {
	display: flex;
  flex-wrap: wrap;
	justify-content: space-between;
}
.left{
	float: left;
}
.right{
	float: right;
}
.center{
	display: block;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
.a_right{
  text-align: right;
}
.a_center{
  text-align: center;
}
.txt_small{
  font-size: 1.2rem;
}
.txt_red{
  color: rgb(246, 7, 7);
}
.txt_gray{
   color: rgb(165, 160, 160);
}

.link_txt{
  text-decoration: underline;
  color: #c2003f;
}
.bold{
  font-weight: 700;
}
.underline{ text-decoration: underline;}


.wrap{
    width: 100%;
	margin: 0 auto;
}
.inner{
    width: 92%;
    max-width: 865px;
    margin: 0 auto;
}
.fixed {
  position: fixed;
  top: 0;
  padding: 0;
  width: 100%;
  z-index: 1000;
}

.bg01{ background: #14151b;}
.bg02{ background: rgba(238,230,251,1);}
.bg03{ background: rgba(242,237,250,1);}

.mt35{ margin-top: 35px !important;}
.mt45{ margin-top: 45px !important;}

.-pc{ display: block;}
.-sp{ display: none;}

@media only screen and (max-width: 767px){
    body {
        min-width: inherit;
    }

}
@media only screen and (max-width: 600px){
    .-pc{ display: none;}
    .-sp{ display: block;}
    .inner{
        width: 90%;
        max-width: 280px;
    }

    .mt35{ margin-top: 5.8% !important;}
    .mt45{ margin-top: 7.5% !important;}

    img{
        display: block;
        width: 100%;
        height: auto;
    }
}
/* ----------------------------------------------------------------------------------------------------
*  ヘッダー
* --------------------------------------------------------------------------------------------------*/
header{
	position: relative;
	z-index: 999999;
}

header .headline{
    text-align: center;
    background: #02092a;
    padding: 2px 0 0 0;
    border-bottom: 3px solid #f51d27;
    box-sizing: border-box;
}
header .headline p{
    text-align: center;
    color: #FFF;
    font-size: 2.2rem;
}
@media only screen and (max-width: 767px){
    header .headline p{
        font-size: 1.8rem;
    }
}
@media only screen and (max-width: 600px){
    header .headline p{
        font-size: 1.0rem;
        padding: 5px;
    }

}

/* ---------------------------------------------
  main
-----------------------------------------------*/
main{
	display: block;
	position: relative;
}


/* cta
-----------------------------*/
.cta_wrap{
    padding: 20px 0 87px 0;
    box-sizing: border-box;
}

.cta_wrap .cta-img{
    text-align: center;
    margin: 0 auto 20px auto;
}

.btn{
    position: relative;
    display: block;
    border-style:solid;
    border-radius:5px;
    margin: 0 auto;
    width:390px;
    height:84px;
    background:rgba(243,120,11,1);
    box-shadow:inset 0px 1px 0px #ffa658,inset 0 -1px 2px #c05e08;
    text-shadow:1px 1px #4f0e00;
    color:#FFFFFF;
    border-width:1px;
    border-color:#333333;
    font-style:normal;
    text-align:center;
    background-repeat:no-repeat;
}
.btn:hover {
  background:rgba(231,102,8,1);
  box-shadow:inset 0px 1px 0px #ff9c55,inset 0 -1px 2px #b34f06;
  color:#FFFFFF;
}
.btn:active {
  background:rgba(219,91,7,1);
  box-shadow:inset 0px 2px 4px #5b2602;
  color:#FFFFFF;
}
.btn span{
    position: relative;
    display:flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 0 8px 0 8px;
    font-size: 2.1rem;
    font-weight: bold;
}
.btn span:before{
    position: relative;
    top: -1px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    content: '▶';
    text-shadow: 1px 1px #4f0e00;
}

.btn_wrap{ position: relative;}
.btn_wrap:before{
    position: relative;
    display: block;
    content: '';
    margin: 0 auto 30px auto;
    background: url(../img/arrow.png) no-repeat center center;
    background-size: 100% auto !important;
    width: 248px;
    height: 92px;
}

.sec_ttl{
    display: block;
    background: rgba(2,9,43,1);
    border-style: solid none solid none;
    border-width: 1px;
    border-color: #F51D27;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    border-radius: 0px;
    width: 100%;
    height: 118px;
    position: relative;
}
.sec_ttl h2{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    font-size: 3.4rem;
    font-weight: bold;
    color: #FFF;
}
.sec_ttl h2 span{
    font-size: 1.4rem;
    font-weight: normal;
}

.note{
    font-size: 1.2rem;
    color: #FFF;
}
@media only screen and (max-width: 767px){
    .btn span{
        font-size: 1.5rem;
    }
    .btn span:before{
        font-size: 1.4rem;
        margin-right: 3px;
    }

    .sec_ttl{
        height: 84px;
    }
    .sec_ttl h2{
        font-size: 2.2rem;
    }
    .sec_ttl h2 span{
        font-size: 1.4rem;
    }

    .note{
        font-size: 1.2rem;
    }


}
@media only screen and (max-width: 600px){
    .cta_wrap{
        padding: 20px 0 40px 0;
    }
    .cta_wrap{
        padding: 4% 0 14% 0;
    }

    .cta_wrap .cta-img{
        margin: 0 auto 4% auto;
    }

    .btn{
        width:276px;
        height:68px;
    }

    .btn span{
        font-size: 1.5rem;
    }
    .btn span:before{
        font-size: 1.2rem;
        top: -1px;
        margin-right: 3px;
    }

    .btn_wrap:before{
        margin: 0 auto 10px auto;
        width: 120px;
        height: 50px;
    }

    .sec_ttl h2{
        font-size: 1.7rem;
    }
    .sec_ttl h2 span{
        font-size: 1.2rem;
    }

    .note{
        font-size: 1.1rem;
    }

}


/* mv
-----------------------------*/
.mv {
	position: relative;
    background: url(../img/bg_mv.png) no-repeat right top,#f2edfa;
}
.mv .wrap{
    max-width: 1000px;
    background: url(../img/mv_people.png) no-repeat right 80px top, url(../img/bg_inner_mv.png) no-repeat left top;
    padding: 22px 0 25px 0;
    box-sizing: border-box;
}

.mv .mv_txt{
    width: 60%;
    max-width: 450px;
    text-align: center;
}
.mv .mv_txt h1{
    text-align: center;
    font-size: 4.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
}
.mv .mv_txt h1 span{
    display: block;
    font-size: 4.0rem;
}
.mv .mv_txt p.lead{
    font-size: 2.6rem;
    font-weight: bold;
    line-height: 1.23;
    text-align: center;
    margin-bottom: 24px;
}

.mv_movie,
.mv_cta{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.mv_movie{ margin-bottom: 5px;}
.mv_movie .movie,
.mv_cta .cta-img{
    width: 52%;
    max-width: 443px;
}
.mv_movie .movie .width{
    width: 100%;
    padding-top: 56.25%;
    position: relative;
}
.mv_movie .movie .width iframe{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.mv_movie .mv_img{
    position: relative;
    bottom: -40px;
    width: 46%;
    max-width: 390px;
}
.mv_movie .mv_img p{
    text-align: center;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.25;
}

.mv .btn{
    width: 100%;
    height: 84px;
}

.mv_cta .cta-img{}
.mv_cta .btn_wrap{
    width: 46%;
    max-width: 390px;
}

.mv .btn_wrap:before{
    margin: 0 auto 10px auto;
    background: url(../img/mv_arrow.png) no-repeat center center;
    width: 104px;
    height: 38px;
}

@media only screen and (max-width: 767px){
    .mv .wrap{
        max-width: 1000px;
        background: url(../img/mv_people.png) no-repeat right 0 top -20px, url(../img/bg_inner_mv.png) no-repeat left top;
        background-size: 50% auto,auto auto;
    }
    .mv .mv_txt h1{
        font-size: 3.6rem;
    }
    .mv .mv_txt h1 span{
        font-size: 2.8rem;
    }
    .mv .mv_txt p.lead{
        font-size: 2.0rem;
    }
    .mv_movie .mv_img p{font-size: 2.0rem;}
    .mv_movie .mv_img{ bottom: 0;}
}

@media only screen and (max-width: 600px){
    .mv .wrap{
        width: 100%;
        max-width: inherit;
        background: url(../img/mv_people.png) no-repeat right -35px top, url(../img/bg_inner_mv.png) no-repeat left top;
        background-size: 40%,auto auto;
        padding: 22px 0 25px 0;
    }

    .mv .mv_txt{
        width: 100%;
        max-width: 450px;
        text-align: center;
    }
    .mv .mv_txt h1{
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    .mv .mv_txt h1 span{
        font-size: 2.0rem;
    }
    .mv .mv_txt p.lead{
        font-size: 1.6rem;
        margin-bottom: 24px;
    }

    .mv_movie,
    .mv_cta{
        display: block;
    }

    .mv_movie{ margin-bottom: 5px;}
    .mv_movie .movie,
    .mv_cta .cta-img{
        width: 100%;
        max-width: 443px;
    }
    .mv_movie .mv_img{
        position: relative;
        bottom: 0;
        margin-top: 20px;
        width: 100%;
        max-width: 348px;
    }
    .mv_movie .mv_img p{
        font-size: 1.8rem;
        margin-top: 10px;
    }

    .mv .btn{
        width: 100%;
        height: 64px;
    }

    .mv_cta .cta-img{}
    .mv_cta .btn_wrap{
        width: 100%;
        max-width: 390px;
    }

    .mv .btn_wrap:before{
        margin: 10px auto;
        width: 104px;
        height: 38px;
    }

}


/* sec01
-----------------------------*/
.sec01{
    padding-bottom: 25px;
    box-sizing: border-box;
}
.sec01 .sec_ttl{ margin-bottom: 8px;}
.sec01 .note{ margin-bottom: 12px;}

.secIn{
    background: rgba(242,237,250,1);
    border-style: solid;
    border-width: 5px;
    border-color: #F51D27;
    box-sizing: border-box;
    padding: 30px 36px;
}

.secIn p{
    font-size: 1.8rem;
    color: rgb(30, 28, 28);
    font-family: Arial, sans-serif;
    line-height: 1.8;
}
.secIn figure{}
.secIn p+p{ margin-top: 20px;}

.secIn figure{
    text-align: center;
    margin: 35px auto 45px auto;
}

@media only screen and (max-width: 767px){

    .secIn p{
        font-size: 1.4rem;
    }
}

@media only screen and (max-width: 600px){
    .sec01{
        padding-bottom: 25px;
    }
    .sec01 .sec_ttl{ margin-bottom: 8px;}
    .sec01 .note{ margin-bottom: 12px;}

    .secIn{
        padding: 5px 5px 10px 5px;
        display: flex;
        flex-direction: column;
    }

    .secIn p{
        font-size: 1.3rem;
        order:2;
    }

    .secIn figure{
        text-align: center;
        margin: 0 auto 35px auto;
        order:1;
    }


}

/* sec02
-----------------------------*/
.sec02{
    padding-bottom: 35px;
    box-sizing: border-box;
}
.sec02 .sec_ttl{ margin-bottom: 40px;}


/* sec03
-----------------------------*/
.sec03{
    padding-bottom: 60px;
    box-sizing: border-box;
}
.sec03 .inner{ max-width: 925px;}
.sec03 .sec_ttl{ margin-bottom: 70px;}

.difference_box{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.difference_box:nth-of-type(even){ flex-direction: row-reverse;}

.difference_box+.difference_box{ margin-top: 112px;}

.difference_box .img{
    width: 29%;
    max-width: 250px;
}
.difference_box .txt{
    background: rgba(242,237,250,1);
    border-style: solid;
    border-width: 3px;
    border-color: #FF0000;
    width: 71%;
    max-width: 582px;
    padding: 16px 15px;
    box-sizing: border-box;
}

.difference_box .txt h3{
    color: rgb(30, 28, 28);
    font-size: 18px;
    line-height: 42px;
    font-weight: bold;
    text-align: center;
}
.difference_box .txt p{
    font-size: 1.6rem;
    color: rgb(30, 28, 28);
    font-family: roboto;
    line-height: 1.8;
}
.difference_box:nth-of-type(1) .txt h3{ line-height: 28px;}
.difference_box:nth-of-type(3) .txt{
    padding: 16px 17px;
}
.difference_box:nth-of-type(2) .txt h3,
.difference_box:nth-of-type(3) .txt h3{ margin-bottom: 8px;}

@media only screen and (max-width: 767px){
    .difference_box .txt h3{
        font-size: 15px;
        line-height: 42px;
    }
    .difference_box .txt p{
        font-size: 1.3rem;
    }

}

@media only screen and (max-width: 600px){
    .sec03{
        padding-bottom: 40px;
    }
    .sec03 .inner{ max-width: 925px;}
    .sec03 .sec_ttl{ margin-bottom: 30px;}

    .difference_box{
        display: block;
    }
    .difference_box+.difference_box{ margin-top: 30px;}

    .difference_box .img{
        width: 100%;
        max-width:118px;
        margin: 0 auto;
    }
    .difference_box .txt{
        width: 100%;
        max-width: 280px;
        padding: 15px 15px;
        margin: 0 auto;
    }

    .difference_box .txt h3{
        font-size: 1.4rem;

    }
    .difference_box .txt p{
        font-size: 1.2rem;

    }
    .difference_box:nth-of-type(1) .txt h3{ line-height: 28px; margin-bottom: 15px;}
    .difference_box:nth-of-type(3) .txt{
        padding: 15px;
    }
    .difference_box:nth-of-type(2) .txt h3,
    .difference_box:nth-of-type(3) .txt h3{ margin-bottom: 8px;}
    .difference_box:nth-of-type(3) .txt h3{ font-size: 1.3rem;}


}
/* sec04
-----------------------------*/
.sec04{
    padding-bottom: 35px;
    box-sizing: border-box;
}
.sec04 .sec_ttl{ margin-bottom: 40px;}

.intro_box{
    display: flex;
    align-items: flex-start;
}
.intro_box+.intro_box{ margin-top: 70px;}

.intro_box .img{
    width: 29%;
    max-width: 243px;
}
.intro_box .img figure{
    margin: 0 auto 8px auto;
    padding: 0;
}

.intro_box.intro02 .img figure{
    border-radius: 100px;
    width: 220px;
    height: 204px;
    overflow: hidden;
}

.intro_box .img p{
    text-align: center;
    color: #000;
    font-size: 1.8rem;
}
.intro_box .img p span{
    display: block;
    margin-top: 5px;
}

.intro_box.intro01 .img p{ margin-top: 35px;}
.intro_box .txt{
    width: 68%;
    max-width: 583px;
    padding-left: 23px;
    box-sizing: border-box;
}

.intro_box h3{
    text-align: center;
    color: rgb(30, 28, 28);
    font-family: cabin;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 12px;
}
.intro_box .txt .text{
    border-top: 4px solid #1e1c1c;
    border-bottom: 4px solid #1e1c1c;
    padding: 20px 0 18px 0;
    box-sizing: border-box;
}
.intro_box .txt .text p{
    font-size: 1.4rem;
    line-height: 1.5;
    font-family: Arial, sans-serif;
}


@media only screen and (max-width: 767px){
    .intro_box .img p{
        font-size: 1.4rem;
    }
    .intro_box h3{
        font-size: 1.8rem;
    }
    .intro_box .txt .text p{
        font-size: 1.2rem;
    }
    .intro_box.intro02 .img figure{
        width: 160px;
        height: 146px;
    }

}

@media only screen and (max-width: 600px){
    .sec04 .sec_ttl{ margin-bottom: 20px;}

    .intro_box{
        display: block;
    }
    .intro_box .img{
        width: 100%;
        max-width: 203px;
        margin: 0 auto;
    }
    .intro_box .txt{
        width: 100%;
        max-width: 583px;
        margin: 0 auto;
        padding-left: 0;
    }
    .intro_box h3{
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    .intro_box.intro01 .img p{ margin-top: 0;}


}
/* sec05
-----------------------------*/
.sec05{
    padding-bottom: 30px;
    box-sizing: border-box;
}
.sec05 .sec_ttl{ margin-bottom: 52px;}

.sec05 .intro_box .img figure{
    width: 219px;
    height: 198px;
    overflow: hidden;
    border-radius: 100px;
}

.sec05 .intro_box .txt .text p{
    font-size: 1.6rem;
    color: rgb(30, 28, 28);
    line-height: 1.375;
}
.sec05 .intro_box .txt .text p+p{ margin-top: 14px;}

.sec05 .intro_box.intro01 .img p{ margin-top: 0;}

@media only screen and (max-width: 767px){
    .sec05 .intro_box .img figure{
        width: 160px;
        height: 146px;
    }
    .sec05 .intro_box .txt .text p{
        font-size: 1.2rem;
    }
}
@media only screen and (max-width: 600px){
    .sec05 .sec_ttl{ margin-bottom: 20px;}
    .sec05 .intro_box .txt{ margin-top: 15px;}

}
/* sec06
-----------------------------*/
.sec06{
    padding-bottom: 45px;
    box-sizing: border-box;
}
.sec06 .sec_ttl{ margin-bottom: 40px;}

.sec06 .secIn{ margin-bottom: 65px;}

.sec06 .inner02{
    width: 92%;
    max-width: 940px;
    margin:0 auto;
    display: flex;
    justify-content: space-between;
}

.sec06 .box{
    border: solid 4px rgba(245,29,39,1);
    border-radius: 3px;
    width: 31%;
    max-width: 285px;
    background: rgba(238,230,251,1);
    padding: 45px 3px 10px 3px;
    box-sizing: border-box;
}
.sec06 .box figure{
    margin: 0 auto 15px auto;
    text-align: center;
}
.sec06 .box h3{
    font-family: "Open Sans";
    font-weight: 700;
    font-style: normal;
    font-size: 2.0rem;
    line-height: 1.5;
    text-align: center;
    margin: 0 0 8px 0;
}
.sec06 .box p{
    font-size: 1.4rem;
    color: rgb(30, 28, 28);
    font-weight: 400;
    font-style: normal;
}

@media only screen and (max-width: 767px){
    .sec06 .inner02{
        width: 100%;
        max-width: 940px;
        margin:0 auto;
        display: flex;
        justify-content: space-between;
    }
    .sec06 .box figure{
        width: 98px;
    }
    .sec06 .box h3{
        font-size: 1.4rem;
    }
    .sec06 .box p{
        font-size: 1.2rem;
    }

}

@media only screen and (max-width: 600px){
    .sec06{
        padding-bottom: 30px;
    }
    .sec06 .sec_ttl{ margin-bottom: 20px;}

    .sec06 .secIn{ margin-bottom: 40px;}

    .sec06 .inner02{
        width: 90%;
        max-width: 280px;
        display: block;
    }

    .sec06 .box{
        width: 100%;
        max-width: inherit;
        margin: 0 auto;
        padding: 15px 10px 10px 10px;
    }
    .sec06 .box+.box{ margin-top: 40px;}
    .sec06 .box figure{
        margin: 0 auto 5px auto;
    }
    .sec06 .box h3{
        font-size: 1.9rem;
    }
    .sec06 .box p{
        font-size: 1.2rem;
    }

}

/* sec07
-----------------------------*/
.sec07{
    padding-bottom: 50px;
    box-sizing: border-box;
}
.sec07 .inner{ max-width: 888px;}

.sec07 .sec_ttl{
    margin-bottom: 62px;
    height: auto;
}
.sec07 .sec_ttl h2{
    display: block;
    padding: 25px 0;
    line-height: 1.5;
}
.sec07 .sec_ttl h2 span{
    font-size: 3.4rem;
    font-weight: bold;
}

.sec07 .box{
    display: flex;
    justify-content: space-between;
}
.sec07 .box+.box{ margin-top: 100px;}

.sec07 .box .img{
    width: 46%;
    max-width: 404px;
    border: 4px solid rgba(245,29,39,1);
    background: rgba(235,223,254,1);
    text-align: center;
    padding-top: 12px;
    box-sizing: border-box;
}

.sec07 .box .img p{
    color: rgb(30, 28, 28);
    font-family: cabin;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    margin-top: 15px;
}

.sec07 .box:nth-of-type(1) .img{ padding-top: 42px;}

.sec07 .box .txt{
    width: 52%;
    max-width: 450px;
    border-top: 4px solid rgba(245,29,39,1);
    border-bottom: 4px solid rgba(245,29,39,1);
    padding: 20px 0;
    box-sizing: border-box;
}
.sec07 .box .txt .txtIn{
    background: rgba(238,230,251,1);
    border-radius: 3px;
    padding: 7px 12px; 
    box-sizing: border-box;
}
.sec07 .box .txt .txtIn p{
    font-size: 1.6rem;
    line-height: 2;
    font-family: Roboto;
    font-weight: 400;
    font-style: normal;
}
.sec07 .box .txt .txtIn p+p{ margin-top: 10px;}


@media only screen and (max-width: 767px){
    .sec07 .inner{ width: 95%;}
    .sec07 .sec_ttl h2 span{
        font-size: 2.2rem;
    }
    .sec07 .box:not(:first-of-type) .img img{ width: 56%;}

    .sec07 .box .img{
        width: 42%;
        border: 2px solid rgba(245,29,39,1);
    }

    .sec07 .box .img p{
        font-size: 1.4rem;
    }

    .sec07 .box .txt{
        border-top: 2px solid rgba(245,29,39,1);
        border-bottom: 2px solid rgba(245,29,39,1);
        padding: 12px 0;
    }
    .sec07 .box .txt .txtIn p{
        font-size: 1.2rem;
    }

}

@media only screen and (max-width: 600px){
    .sec07{
        padding-bottom: 20px;
    }
    .sec07 .inner{ max-width: 306px;}
    .sec07 .sec_ttl{
        margin-bottom: 10px;
    }
    .sec07 .sec_ttl h2 span{
        font-size: 1.7rem;
    }
    .sec07 .box{
        display: block;
    }
    .sec07 .box+.box{ margin-top: 30px;}

    .sec07 .box .img{
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
        max-width: 404px;
        border: 4px solid rgba(245,29,39,1);
        margin: 0 auto;
        padding: 5px 3px 15px 3px;
        box-sizing: border-box;
    }

    .sec07 .box:not(:first-of-type) .img{ max-width: 237px;}
    .sec07 .box:not(:first-of-type) .img img{
        width: 80%;
        margin: 10px auto 0 auto;
    }
    .sec07 .box .img p{
        font-size: 1.3rem;
        text-align: left;
        box-sizing: border-box;
    }
    .sec07 .box:nth-of-type(1) .img{ padding-top: 0;}
    .sec07 .box:nth-of-type(2) .img p{ padding: 0 0 0 15px;}
    .sec07 .box:nth-of-type(1) .img p{ margin-bottom: 30px; text-align: center; font-size: 1.6rem;}
    .sec07 .box:nth-of-type(3) .img p{ letter-spacing: -0.07rem;}

    .sec07 .box .txt{
        max-width: 285px;
        width: 100%;
        margin: 30px auto 0 auto;
        border-top: 4px solid rgba(245,29,39,1);
        border-bottom: 4px solid rgba(245,29,39,1);
        padding: 10px 0;
    }
    .sec07 .box .txt .txtIn{
        background: rgba(238,230,251,1);
        border-radius: 3px;
        padding: 7px 12px; 
        box-sizing: border-box;
    }
}


/* sec08
-----------------------------*/
.sec08{
    padding-bottom: 65px;
    box-sizing: border-box;
}
.sec08 .sec_ttl{ margin-bottom: 60px;}

.text_yellow{ color: #fddf00;}

.sec08 table{
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    border-collapse: collapse;
    border-spacing: 0;
    box-sizing: border-box;
}
.sec08 table th,
.sec08 table td{
    text-align: center;
    vertical-align: middle;
    color: #14151b;
    font-size: 1.8rem;
    font-weight: 500;
    box-sizing: border-box;
    background: #FFF;
    padding: 15px 25px;
    border: 1px solid #02092a;
}
.sec08 table th{ text-align: center;}

.sec08 thead th{
    background: #02092a;
    color: #FFF;
    font-size: 2.2rem;
    font-weight: bold;
    padding: 7px 25px;
    text-align: left;
}

.sec08 table th.price01{
    font-size: 2.2rem;
    text-align: right;
}
.sec08 table td.price02{
    color: #FFF;
    background: #f51d27;
    font-size: 2.8rem;
    font-weight: bold;
    text-align: center;
}

.pt5{ padding-top: 5px !important;}
.pb5{ padding-bottom: 5px !important;}
.sec08 .sec_ttl h2 br{ display: none;}

@media only screen and (max-width: 767px){
    .sec08 table th,
    .sec08 table td{
        font-size: 1.4rem;
        padding: 15px;
    }
    .sec08 thead th{
        font-size: 1.6rem;
        padding: 7px 15px;
    }

    .sec08 table th.price01{
        font-size: 1.6rem;
    }
    .sec08 table td.price02{
        font-size: 1.8rem;
    }
}
@media only screen and (max-width: 600px){
    .sec08{
        padding-bottom: 30px;
    }
    .sec08 .sec_ttl{ margin-bottom: 20px;}
    .sec08 .sec_ttl h2{ font-size: 1.5rem;}
    .sec08 .inner{
        width: 96%;
        max-width: 360px;
    }
    .sec08 table th,
    .sec08 table td{
        font-size: 1.1rem;
        padding: 10px 3px;
    }
    .sec08 thead th{
        font-size: 1.1rem;
        padding: 10px 3px;
    }
    .sec08 thead th:nth-of-type(1){ width: 128px;}

    .sec08 table th.price01{
        font-size: 1.3rem;
    }
    .sec08 table td.price02{
        font-size: 1.4rem;
    }
}

@media only screen and (max-width: 360px){
    .sec08 .sec_ttl h2{ line-height: 1.5;}
    .sec08 .sec_ttl h2 br{ display: block;}
}

/* sec09
-----------------------------*/
.sec09{
    padding-bottom: 38px;
    box-sizing: border-box;
}
.sec09 .sec_ttl{ margin-bottom: 38px;}
@media only screen and (max-width: 600px){
    .sec09{
        padding-bottom: 30px;
        box-sizing: border-box;
    }
    .sec09 .sec_ttl{ margin-bottom: 20px;}

}

/* sec10
-----------------------------*/
.sec10{
    padding-bottom: 38px;
    box-sizing: border-box;
}
.sec10 .sec_ttl{ margin-bottom: 38px;}

@media only screen and (max-width: 600px){
    .sec10{
        padding-bottom: 30px;
        box-sizing: border-box;
    }
    .sec10 .sec_ttl{ margin-bottom: 20px;}

}

/* last_cta
-----------------------------*/
.last_cta{
    padding: 30px 0 42px 0;
    border-top: 4px solid #FB3B03;
    border-bottom: 4px solid #FB3B03;
    box-sizing: border-box;
}
.last_cta .inner{
    max-width: 940px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.last_cta .img{
    width: 59%;
    max-width: 551px;
}

.last_cta .img .img01{
    text-align: center;
}
.last_cta .img .img02{
    display: flex;
    justify-content: space-between;
    margin-top: -16px;
    padding: 0 17px;
    box-sizing: border-box;
}
.last_cta .img .img03{
    text-align: center;
    margin-top: 8px;
}

.last_cta .txt{
    width: 41%;
    max-width: 377px;
    background: rgba(243,241,241,1);
    border-style: solid;
    border-width: 3px;
    border-color: #FB3B03;
    padding: 15px 0 65px 0;
    box-sizing: border-box;
}
.last_cta .txt h2{
    text-align: center;
    font-weight: 400;
    font-family: Roboto;
    font-size: 2.2rem;
    color: rgb(20, 21, 27);
    line-height: 1.6;
}
.last_cta .txt h2 .small{ font-size: 1.2rem;}

.last_cta .txt p.price{
    text-align: center;
    font-family: Roboto;
    font-size: 2.8rem;;
    color: rgb(251, 59, 3);
}
.last_cta .txt p.price span{ font-size: 1.4rem;}
.last_cta .txt ul{
    margin-top: 20px;
    margin-left: 20px;
}
.last_cta .txt li{
    list-style: disc outside;
    color: rgb(20, 21, 27);
    line-height: 1.5;
    font-size: 1.4rem;
}
.last_cta .txt li+li{ margin-top: 5px;}

.last_cta .btn_wrap{
    margin-top: 15px;
    margin-bottom: 7px;
    padding: 0 8px;
    box-sizing: border-box;
}
.last_cta .btn_wrap:before{ display: none;}

.last_cta .btn{
    width: 100%;
    font-size: 1.9rem;
    height: 77px;
}
.last_cta .btn span{ font-size: 1.9rem;}

.last_cta .txt img{
    display: block;
    width: 100%;
    height: auto;
    padding: 0 9px;
    box-sizing: border-box;
}
@media only screen and (max-width: 767px){

    .last_cta .img{ width: 55%;}
    .last_cta .txt{ width: 45%;}
    .last_cta .txt h2{ font-size: 1.6rem;}
    .last_cta .txt h2 .small{ font-size: 1.0rem;}
    .last_cta .txt p.price{
        font-size: 1.8rem;
    }
    .last_cta .txt p.price span{ font-size: 1.1rem;}
    .last_cta .btn span{
        font-size: 1.3rem;
    }
    .btn span:before{ font-size: 1.3rem;}
    .last_cta .txt li{ font-size: 1.0rem;}
}

@media only screen and (max-width: 600px){
    .last_cta{
        padding: 30px 0;
    }
    .last_cta .inner{
        display: block;
        max-width: 298px;
    }

    .last_cta .img{
        width: 100%;
        max-width: 551px;
        margin: 0 auto 20px auto;
    }

    .last_cta .img .img02{
        align-items: flex-start;
        margin-top: -21px;
        padding: 0 17px;
        box-sizing: border-box;
    }
    .last_cta .img .img02 img{
        max-width: inherit;
        width: 80px;
        height: auto;
    }
    .last_cta .img .img03{
        text-align: center;
        width: 70%;
        margin: 8px auto 0 auto;
    }

    .last_cta .txt{
        width: 100%;
        max-width: 377px;
        margin: 0 auto;
    }
    .last_cta .txt h2{
        font-size: 2.0rem;
    }
    .last_cta .txt h2 .small{ font-size: 1.1rem;}

    .last_cta .txt p.price{
        font-size: 2.4rem;
    }
    .last_cta .txt p.price span{ font-size: 1.3rem;}
    .last_cta .txt ul{
        margin-top: 20px;
        margin-left: 20px;
    }
    .last_cta .txt li{
        font-size: 1.3rem;
    }

    .last_cta .btn_wrap{
        margin-top: 15px;
        margin-bottom: 7px;
        padding: 0 8px;
        box-sizing: border-box;
    }
    .last_cta .btn_wrap:before{ display: none;}

    .last_cta .btn{
        width: 100%;
        height: 77px;
    }
    .last_cta .btn span{ font-size: 1.4rem;}

}

/* footer
-----------------------------*/
footer{
    background: rgba(0,2,4,1);
    padding: 12px 0 15px 0;
    box-sizing: border-box
}
footer p{
    color: #FFF;
    font-size: 1.4rem;
    line-height: 1.57;
    letter-spacing: -0.05rem;
}
.f_nav{
    margin-top: 30px;
    text-align: center;
}
.f_nav a{
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-size: 12.7272720336914px;
    line-height: 16.6400012969971px;
    text-align: center;
    margin: 0px;
    padding: 0px;
    vertical-align: top;
    color: rgb(255, 255, 255);
    text-decoration: none;
}
.f_nav .border{
    color: rgb(255, 255, 255);
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-size: 12.7272720336914px;
    line-height: 16.6400012969971px;
    text-align: center;
}

.copy{
    margin: 25px 0px 0px;
    padding: 0px;
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 10.9090909957886px;
    line-height: 14.5599985122681px;
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

@media only screen and (max-width: 767px){
    footer p{
        font-size: 1.2rem;
    }
    .f_nav a{ font-size: 11px;}
}


@media only screen and (max-width: 600px){
    footer .inner{ max-width: 304px;}
    footer p{
        font-size: 1.0rem;
    }
    .f_nav a{ font-size: 10px;}
    .copy{ font-size: 10px;}
}




