@charset "UTF-8";
/* CSS Document */
.head_btn{
    background-color: #C60000;
    color: #fff!important;
    margin: -3px 20px 0 20px!important;
    padding: 2px 10px!important;
    display: block!important;
    border-radius: 20px;
}
.head_btn > a:visited{
    color:#fff!important;
}

html {
    /* ルートのフォントサイズを10pxに設定しておく */
    font-size: 62.5%;
    }
body{
	font-size: 1.4rem;
    
	font-family:-apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
	color:#000;
    background-color: #f7f7f7;
	width: 100%;
	position: relative;
	overflow-x: hidden!important;
    margin: 0;
    padding: 0;
}

p{
	font-size:1.4rem;
	line-height: 1.5em;
}
nav{
	font-family: english-grotesque, sans-serif;
	font-weight: 300;
	font-style: normal;
}
.i_ctt_copy span{
    display: inline;
    padding: 3px;
    font-size: 3rem;
    font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN W3",  "小塚明朝 Pro R";
    line-height: 1.3em;
    background-color: #ffffff!important;
}
.pg_border{
    border-bottom: solid 1px #c8c8c8;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}

.img_full{
    width:100%;
    height: auto;
}
.svg_full img{
    width:100%;
    max-width: 300px;
    height: auto;
}
.entry_btn{
    min-width: 200px;
    height: 56px;
    border-radius: 28px;
    padding: 18px 20px!important;
    text-align: center;
    font-weight: 700;
    color: #fff!important;
    margin-top: -10px;
    background: rgb(153,102,153);
background: linear-gradient(45deg, rgba(153,102,153,1) 0%, rgba(0,153,153,1) 50%, rgba(153,102,153,1) 100%);
     background-position: 1% 50%;
    background-size: 200% auto;
    /*アニメーションの指定*/
    transition: 0.3s ease-out!important;
    box-sizing: border-box!important;
    float: left;
    display: inline-block;
}
.entry_btn:hover{
    color: #fff!important;
     background-position: 99% 50%;
}
.entry_btn span{
    display:inline-block!important;
    transform: rotate(10deg);
    -moz-transform: rotate(10deg);
    -webkit-transform: rotate(10deg);
}
.img_border{
    border:solid 1px #c8c8c8;
    box-sizing: border-box;
}
/*-----------------アニメーション-----------------*/
#sun01{
  animation:20s linear infinite rotation1;
}
@keyframes rotation1{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(360deg); }
}
.top_c{
    transform-origin: center bottom;
    animation: yurayura 4s linear infinite;
}

@keyframes yurayura {
  0% , 100%{
      transform: rotate(2deg);
  }
  50%{
      transform: rotate(-2deg);
  }
}
/*-----------------header-----------------*/
#header{
    position:relative;
    width: 100%;
    height: 80px;
    top: 0;
    left: 0;
	font-size: 1.6rem;
	line-height: 1.5em;
}
.head_logo{
    max-width: 240px;
    height: auto;
    position:absolute;
    top: 20px;
    left: 16px;
}
.head_logo img{
    width:100%;
    height: auto;
}

.head_info ul {
  float: right;
  list-style: none;
}
.head_info li {
  float: left;
  font-weight: 700;
}
.head_info a {
  color: #000;
  display: block;
  padding: 8px 15px;
  text-align: center;
  width: 100%;
  transition: all .5s ease;
}
.head_info a:hover {
  transition: all .5s ease;
    color: #616161;
}

@media (min-width: 930px) {
    .head_info{
        position:absolute;
        top: 20px;
        right: 80px;
        width: auto;
        height: auto;
    }
}
@media (max-width: 929px) {
    .head_info{
        display: none;
    }
}
.head_info p{
    padding-top: 10px;
    font-size:11px;
}
.menu{
    width: 40px;
    height: 36px;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 99;
    cursor: pointer;
}
/*menu*/
.menu__line{
    width: 100%;
    height: 4px;
    background: #000;
    display: block;
    position: absolute;
    transition:transform .3s;
}
.menu__line.active{
    width: 100%;
    height: 4px;
    background: #000;
    display: block;
    position: absolute;
    transition:transform .3s;
}
.menu__line--top:nth-of-type(1) {
  top: 0;
}
.menu__line--center:nth-of-type(2) {
  top: 16px;
}
.menu__line--bottom:nth-of-type(3) {
  bottom: 0;
}

.menu__line--top:nth-of-type(1) {
  animation: menu-bar01 .75s forwards;
}
@keyframes menu-bar01 {
  0% {
    transform: translateY(16px) rotate(45deg);
  }
  50% {
    transform: translateY(16px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.menu__line--center:nth-of-type(2) {
  transition: all .25s .25s;
  opacity: 1;
}
.menu__line--bottom:nth-of-type(3) {
  animation: menu-bar02 .75s forwards;
}
@keyframes menu-bar02 {
  0% {
    transform: translateY(-16px) rotate(-45deg);
  }
  50% {
    transform: translateY(-16px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.menu__line--top.active:nth-of-type(1) {
  animation: active-menu-bar01 .75s forwards;
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(16px) rotate(0);
  }
  100% {
    transform: translateY(16px) rotate(45deg);
  }
}
.menu__line--center.active:nth-of-type(2) {
  opacity: 0;
    background: #fff;
}
.menu__line--bottom.active:nth-of-type(3) {
  animation: active-menu-bar03 .75s forwards;
}
@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-16px) rotate(0);
  }
  100% {
    transform: translateY(-16px) rotate(-45deg);
  }
}

/*gnav*/
.gnav{
    background: rgba(255,255,255,0.9);
    display: none;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 98;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
}
.gnav__menu__item{
    margin: 30px 0;
}
.gnav__menu__item2{
    margin: 30px 0;
}
.gnav__menu__item a{
    font-size: 1.8rem;
    line-height: 3.6rem;
    font-weight: bold;
    text-decoration: none;
    transition: .5s;
    color: #000!important;
}
.gnav__menu__item a:link{
    color: #000!important;
}
.gnav__menu__item a:hover{
    color: #666!important;
}
.gnav__menu__item a:visited{
    color: #000!important;
}
.gnav__menu li{
    list-style:none;
    border-bottom: solid 1px #c8c8c8;
    padding-bottom: 30px;
    text-align: center;
} 
@media (min-width: 960px) {
    .gnav__wrap{
        width: 100%;
        height: 100%;
        align-items:center;
        display: flex;
        justify-content: center;
        position: absolute;
        box-sizing: border-box;
        padding:  10%;
        align-items: flex-start;
    }
    .gnav_box{
        width: calc(33.333333% - 30px);
        margin: 0 15px;
        box-sizing: border-box;
    }
}
@media (max-width: 959px) {
    .gnav__wrap{
        width: 100%;
        height: 100%;
        align-items:center;
        display: block;
        justify-content: center;
        position: absolute;
        padding: 50px 0;
    }
    .gnav_box{
        width: 100%;
        padding: 20px 40px;
        box-sizing: border-box;
    }
}
/*-----------------topimg-----------------*/
@media (min-width: 768px) {
    .top_ctt{
        width: 100%;
        height: 700px;
        margin: 0 auto;
        overflow: hidden!important;
        position:relative;
        top: 0;
        left: 0;
    }
    .top_i_ctt{
        width:50%;
        height: 700px;
        position: relative;
        left: 50%;
        background:url("../images/slide.jpg") top right -50px;
        background-size: cover;
        z-index: -2;
    }
    .top_i_txt_box{
        width: 50%;
        text-align: center;
        height: auto;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translate(0, -50%);
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        z-index: 2;
        padding: 0 30px;
        box-sizing: border-box;
    }
    .top_i_txt_box div{
        padding-bottom:50px;
    }
    .top_i_txt_box h2{
        display: inline-block!important;
        font-size:3.2rem;
        line-height: 1.5em;
        padding-bottom: 20px;
        font-weight: bold;
        text-align: left;
        margin: 0 auto;
    }
    .top_i_price{
        width: 420px;
        position:absolute;
        bottom: 60px;
        right: 30px;
        z-index: -2;
    }
}
@media (max-width: 767px) {
    .top_ctt{
        width: 100%;
        height: 550px;
        overflow: hidden!important;
        position:relative;
        top: 0;
        left: 0;
        z-index: -2;
    }
    .top_i_ctt{
        width:100%;
        height: 520px;
        position: relative;
        right: 0;
        background:url("../images/slide.jpg") center right -170px;
        background-color:rgba(255,255,255,0.5);
        background-blend-mode:lighten;
        background-size: cover;
    }
    .top_i_txt_box{
        width: 90%;
        height: auto;
        position: absolute;
        top: 25%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        text-align: center;
    }
    .top_i_txt_box div{
        width: 70%;
        max-width: 300px;
        margin: 0 auto;
        padding-top: 90px;
        padding-bottom:15px;
    }
    .top_i_txt_box h2{
        display: inline;
        font-size:2rem;
        line-height: 1.5em;
        font-weight: bold;
    }
    .top_i_price{
        width: 60%;
        max-width: 300px;
        position:absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
    }
}
/*img_animation*/
.objct_animation{
	animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-duration: 1.5s;
}
.i_animation_objct{
	animation-name: objct_anim_box;
}
@keyframes objct_anim_box {
  0% { transform: translate(0, 0px) }
  100% { transform: translate(0, -20px) }
}
/*-------------------共通ボタン-------------------*/

.bm_btn_ctt a {
  transition: .5s; }

.bm_btn {
    display: inline-block;
    border-radius: 25px;
    width: auto;
    padding: 15px 50px;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 10px;
    background-color: #000;
    color: #fff;
    cursor: pointer;
    position: relative;
    font-family: Helvetica, Arial, "sans-serif";
    transition: .5s all;}

.bm_btn:after {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 7px;
    content: url("../svg/arrow_r_w.svg");}

.bm_btn:hover {
    background-color: #f8d90e;
    color: #000;
    transition: .5s all;}

.box_btn {
    display: inline-block;
    width: auto;
    padding:  12px 25px;
    font-size: 1.6rem;
    line-height: 1em;
    font-weight: 700;
    margin-bottom: 20px;
    border-radius: 25px;
    border:solid 1px #000;
    cursor: pointer;
    position: relative;
    transition:0.5s all;
}

.box_btn:hover {
    border:solid 1px #000;
    background-color: #000;
    color: #fff;
    transition:0.5s all; }

.box_btn_gh {
    display: inline-block;
    width: 100%;
	max-width: 260px;
	box-sizing: border-box;
    padding:  7px 25px;
    font-size: 1.4rem;
    line-height: 1em;
    font-weight: 700;
    border-radius: 25px;
    border:solid 1px #000;
    cursor: pointer;
    position: relative;
    transition:0.5s all;
	text-align: center;
    margin: 5px 0;
}

.box_btn_gh:hover {
    border:solid 1px #000;
    background-color: #000;
    color: #fff;
    transition:0.5s all; }


.box_btn_r {
    display: inline-block;
    width: 100%;
	max-width: 260px;
	box-sizing: border-box;
    padding:  7px 25px;
    font-size: 1.4rem;
    line-height: 1em;
    font-weight: 700;
    border-radius: 25px;
    border:solid 1px #C60000;
	background-color: #C60000;
	color: #fff;
    cursor: pointer;
    position: relative;
    transition:0.5s all;
	text-align: center;
}

.box_btn_r:hover {
    border:solid 1px #C60000;
    background-color: #fff;
    color: #C60000;
    transition:0.5s all; }


.box_btn_w {
    display: inline-block;
    width: auto;
    height: 36px;
    padding:  10px 20px;
    font-size: 1.6rem;
    line-height: 1em;
    font-weight: 700;
    margin-bottom: 20px;
    border-radius: 18px;
    border:solid 1px #fff;
    color: #fff!important;
    cursor: pointer;
    position: relative;
    margin-top: 20px;
    transition:1s all;
}
.box_btn_w:hover {
  opacity: 0.7;
    transition:1s all; }

.z_img img{
    transition:1s all;
}
.z_img img:hover{
    transform:scale(1.1,1.1);
    transition:1s all;
}
.op7_img img{
    transition:1s all;
}
.op7_img img:hover{
    opacity: 0.7;
    transition:1s all;
}
/*-------------------index_ctt共通-------------------*/

.tri_top{
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 50px 100vw;
    border-color: transparent transparent #f8d90e transparent;
    position: absolute;
    top: -50px;
    left: 0;
}
.tri_bottom{
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 100vw 0 0;
    border-color: transparent transparent #f8d90e transparent;
    position: absolute;
    bottom: -50px;
    left: 0;
}

.mark_w {
    display: inline;
    font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN W3", "小塚明朝 Pro R";
    background-color: #ffffff!important;
}
.txt_w{
    color:#fff;
}
@media (min-width: 768px) {
    .pcbr{
        display: none;
    }
    .txt_wtob{
        color: #fff;
    }
}
@media (max-width: 767px) {
    .pcbr{
        display: block;
    }
    .txt_wtob{
        color: #000;
    }
}
.pdgb30{
    padding-bottom: 30px;
}
.pdgtb30{
    padding: 30px 0;
}
.pdgtb50{
    padding: 50px 0;
}
.pdgb50{
    padding-bottom: 50px;
}
.mgnb30{
    margin-bottom: 30px;
}
@media (min-width: 960px) {
    .i_ctt_sub{
        font-size: 1.6rem;
        line-height: 1.5em;
        margin-bottom: 30px;
        font-weight: 700;
    }
    .i_ctt_sub2{
        font-size: 1.6rem;
        line-height: 1.5em;
        margin-bottom: 30px;
        font-weight: 700;
    }
}
@media (max-width: 959px) {
    .i_ctt_sub{
        font-size: 1.6rem;
        line-height: 1.5em;
        text-align: center;
        margin-bottom: 30px;
        font-weight: 700;
    }
    .i_ctt_sub2{
        font-size: 1.6rem;
        line-height: 1.5em;
        margin-bottom: 30px;
        font-weight: 700;
        text-align: center;
        padding-top: 30px;
        display: block;
    }
}
.i_ctt_txt{
    font-size: 2rem;
    line-height: 4rem;
    font-weight: 700;
    padding-bottom: 20px;
}
.i_ctt_txt_sub{
    font-size: 1.6rem;
    line-height: 1.8em;
}
.i_ctt_img img{
    width: auto;
    max-height:340px;
    text-align: center;
    padding-top: 10%;
}
.i_ctt_img02 img{
    width: auto;
    max-width: 400px;
    max-height:340px;
    text-align: center;
}
@media (min-width: 960px) {
    .i_ctt_img03 img{
        width: auto;
        max-height:340px;
        text-align: center;
        padding-bottom: 20px;
    }
}
@media (max-width: 959px) {
    .i_ctt_img03 img{
        width: 100%;
        height: auto;
        text-align: center;
        padding-bottom: 20px;
    }
}
@media (min-width: 960px) {
    .ictt_one{
        width:  calc(100% - 100px);
        margin: 30px 50px;
        position: relative;
    }
    .ictt_cate{
        font-size:2.8rem;
        padding-bottom: 30px;
        font-weight: 700;
        font-family: Helvetica,Arial,  "sans-serif";
    }
    .ictt_cate_r_box{
        width: 50%;
        margin-left: 50%;
        padding: 0 50px;
        height: 100px;
        position: relative;
        box-sizing: border-box;
    }
}
@media (max-width: 959px) {
    .ictt_one{
        width: 100%;
    }
    .ictt_cate{
        font-size:2.8rem;
        padding-bottom: 30px;
        font-weight: 700;
        font-family: Helvetica,Arial,  "sans-serif";
        text-align: center;
    }
    .ictt_cate_r_box{
        width: 100%;
        position: relative;
    }
}
/*-------------------ictt01-------------------*/
.ictt01bar{
    background-color:#fff;
    border-radius: 15px;
    padding: 10px;
    margin-top: 10px;
    display: flex;
	font-size: 1.6rem;
	line-height: 1.5em;
}
.ictt01bar dt{
    width:60px;
    text-align: center;
}
.ictt01bar dd{
    padding-left: 10px;
    font-weight: 700;
    line-height: 1.4em;
}
@media (min-width: 960px) {
    .i_container01{
        width: 100%;
        height: auto;
        box-sizing: border-box;
        display: block;
        position: relative;
    }
    .i_container01::before{
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color:#f8d90e;
        transform: skewY(-7deg);
        z-index: -1;
    }
    .ictt01{
        width: 100%;
        max-width: 1100px;
        margin: 0 auto;
        padding: 0!important;
        display: flex;
        flex-direction: row;
        position: relative;
    }
    .ictt01r{
        width: 100%;
        max-width: 1100px;
        margin: 0 auto;
        padding: 0!important;
        display: flex;
        flex-direction: row-reverse;
        position: relative;
    }
    .ictt01_l{
        width: calc(50% - 100px);
        margin: 30px 100px 30px 0;
        position: relative;
    }
    .ictt01_r{
        width: 50%;
        min-height: 550px;
        position: absolute;
        top: 100px;
        right: 0;
    }
    .ictt01_ttl{
        font-size: 4rem;
        line-height: 4.5rem;
        font-weight: 700;
        margin-bottom: 30px;
    }
    .ictt01_img{
        width: calc(100% + 50px);
        height: 400px;
    }
    .ictt01r_img{
        width: auto;
        height:  550px;
        text-align: center;
    }
    .ictt01_point{
        position:absolute;
        right: 40px;
        top: 20px;
        width: 118px;
        height: 118px;
    }
    .ictt01_img_box{
        position:relative;
    }
    .ictt01_img01{
        width: 296px;
        height: 198px;
        border-radius: 15px;
        overflow: hidden;
        position: absolute;
        top: -50px;
        left: 0;
    }
    .ictt01_img02{
        width: 370px;
        height: 248px;
        border-radius: 15px;
        overflow: hidden;
        position: absolute;
        top: 130px;
        left: 138px;
    }
    .ictt01_img03{
        width: 226px;
        height: 152px;
        border-radius: 15px;
        overflow: hidden;
        position: absolute;
        top: 330px;
        left: 83px;
    }
}
@media (max-width: 959px) {
    .i_container01{
        width: 100%;
        box-sizing: border-box;
        display: block;
        position: relative;
    }
    .i_container01::before{
        content: '';
        position: absolute;
        top: -50px;
        bottom: 0;
        left: 0;
        right: 0;
        background-color:#f8d90e;
        transform: skewY(-7deg);
        z-index: -1;
    }
    .ictt01{
        width: 100%;
        margin: 0 auto;
        display: block;
        position: relative;
        padding: 100px 40px;
    }
    .ictt01r{
        width: 100%;
        margin: 0 auto;
        display: block;
        position: relative;
        padding-bottom: 80px;
    }
    .ictt01_l{
        width: 100%;
    }
    .ictt01_r{
        width: 100%;
    }
    .ictt01_ttl{
        font-size: 3.2rem;
        line-height: 4.2rem;
        font-weight: 700;
        margin-bottom: 40px;
    }
    .ictt01_img{
        width: 100%;
        height: 300px;
    }
    .ictt01r_img{
        width: 100%;
        height: auto;
        margin-top: 15px;
    }
    .ictt01_point{
        position:absolute;
        right: 15px;
        top: 0;
        width: 110px;
        height: 110px;
        margin:0 auto;
        padding-bottom: 15px;
        opacity: 0.5;
    }
    .ictt01_img_box{
        position:relative;
        display: flex;
    }
    .ictt01_img01{
        width: 33.333333%;
        padding: 0 1%;
        max-height: 198px;
        border-radius: 15px;
        overflow: hidden;
        box-sizing: border-box;
    }
    .ictt01_img02{
        width: 33.333333%;
        padding: 0 1%;
        max-height: 198px;
        border-radius: 15px;
        overflow: hidden;
        box-sizing: border-box;
    }
    .ictt01_img03{
        width: 33.333333%;
        padding: 0 1%;
        max-height: 198px;
        border-radius: 15px;
        overflow: hidden;
        box-sizing: border-box;
    }
    .ictt01_img01 img{
        width: 100%!important;
        height: auto!important;
    }
    .ictt01_img02 img{
        width: 100%!important;
        height: auto!important;
    }
    .ictt01_img03 img{
        width: 100%!important;
        height: auto!important;
    }
}


/*-------------------ictt02-------------------*/

.ictt02 h3 {
    width: 100%;
    display: block;
    font-size: 2.1rem;
    line-height: 1.4em;
    border-bottom: solid 1px #333;
    padding-bottom: 15px;
    margin-bottom: 15px;
    font-weight: 700;
}
.ictt02 span {
    display: block;
    font-size: 1.4rem;
    line-height: 1.4em;
}
.ictt02 p {
    font-size: 1.4rem;
    line-height: 1.5em;
    margin-bottom: 15px;
    min-height: 100px;
}
.ictt02_wrap .img_on_btn {
    width: 32px;
    height: 32px;
    position: absolute;
    bottom: 0;
    right: 0;
    background: url("../svg/arrow_r_w.svg") center center no-repeat;
    background-size: 6px;
    background-color: #000;
    transition: 0.5s all;
}

@media (min-width: 960px) {
    .i_container02{
        width: 100%;
        height: auto;
        padding: 100px 50px;
        box-sizing: border-box;
        display: block;
        position: relative;
    }
    .ictt02{
        width: 100%;
        max-width: 1130px;
        margin: 0 auto;
        padding: 0!important;
        display: flex;
        flex-direction: row;
        position: relative;
    }
    .ictt02_num{
        position:absolute;
        top: -20px;
        right: 15px;
        font-family: Arial, Helvetica, "sans-serif";
        font-size: 2.2rem;
    }
    .ictt02_wrap{
        position: relative;
    }
    .ictt02_img{
        position:relative;
    }
    .ictt02_img .img_on_btn:hover {
        background: url("../svg/arrow_r.svg") center center no-repeat;
        background-size: 6px;
        background-color: #fff;
        transition: 0.5s all;
    }
    .ictt02_img img{
        background-color: #fff;
        margin: 0 auto;
        text-align: center;
        vertical-align: bottom;
        border-radius: 15px;
        overflow: hidden;
        height: auto;
        box-sizing: border-box;
        padding: 30px;
    }
    .col3to1_box{
        width:33.333333%;
        padding: 15px;
        box-sizing: border-box;
        float: left;
        position: relative;
    }
}
@media (max-width: 959px) {
    .i_container02{
        width: 100%;
        padding: 100px 15px;
        box-sizing: border-box;
        display: block;
        position: relative;
        overflow: hidden!important;
    }
    .ictt02{
        width: 100%;
        margin: 0 auto;
        display: block;
        position: relative;
    }
    .ictt02_num{
        position:absolute;
        top: 15px;
        right: 15px;
        font-family: Arial, Helvetica, "sans-serif";
        font-size: 1.5rem;
        opacity: 0.5;
        z-index: 2;
    }
    .ictt02_wrap{
        background-color: #fff;
        border-radius: 15px;
        overflow: hidden;
        clear: both;
        padding: 15px;
    }
    .ictt02_img{
        width:50%;
        max-width: 250px;
        height: auto;
        float: right;
        position:relative;
    }
    .ictt02_img .img_on_btn:hover {
        background: url("../svg/arrow_r.svg") center center no-repeat;
        background-size: 6px;
        background-color: #fff;
        transition: 0.5s all;
    }
    .ictt02_img img{
        width: 100%!important;
        height: auto!important;
    }
    .col3to1_box{
        width:100%;
        overflow: hidden;
        padding: 10px 5px;
        box-sizing: border-box;
        float: none;
        position: relative;
        clear: both;
        border-bottom: solid 1px #AAAAAA;
        margin-bottom: 10px;
        
    }
    .col3to1_box img{
        width:40%;
        padding-left: 10px;
        padding-bottom: 10px;
        float: right;
    }
}



/*-------------------footer-------------------*/
.footer_bg{
    width: 100%;
    position:relative;
}
.footer_bg::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color:#f8d90e;
    transform: skewY(-7deg);
    z-index: -1;
}
#footer_ds{
    width: 100%;
    height: 300px;
    background-color:#f8d90e;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -3;
    
}
#foot_logo{
    max-width: 50%;
    width: 250px;
    height: auto;
    margin: 0 auto;
    text-align: center;
    position: relative;
    top: -40px;
}
#foot_image{
    max-width: 70%;
    width: 430px;
    height: auto;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding-bottom: 30px;
}

@media (min-width: 960px) {
    footer{
        width: 100%;
        position:relative;
    }
    #foot-copy{
        width: 100%;
        background-color: #fff;
        padding: 40px 20px;
        font-size: 1rem;
        box-sizing: border-box;
        position: relative;
        color: #949494;
        clear: both;
    }
    .f_menu{
        float:right;
        padding-left: 20px;
    }
    .f_menu li{
        float:left;
        padding: 0 20px;
        font-size: 1.4em;
        position: relative;
    }
    .f_menu li:before{
        content:url("../svg/arrow_r.svg");
        width: 5px;
        height: 10px;
        position: absolute;
        left: 10px;
        top: 0;
    }
}

@media (max-width: 959px) {
    footer{
        width: 100%;
        position:relative;
        padding-top: 20px;
    }
    #foot-copy{
        width: 100%;
        background-color: #fff;
        padding: 0 30px 30px 30px;
        font-size: 1rem;
        box-sizing: border-box;
        position: relative;
        text-align: center;
        color: #949494;
        clear: both;
        overflow: hidden;
    }
    .f_menu{
        float:none;
    }
    .f_menu ul{
        margin:0;
        padding: 0;
    }
    .f_menu li{
        display: block;
        width: 100%;
        float:none;
        padding: 20px;
        margin: 20px 0;
        font-size: 1.4em;
        position: relative;
        text-align: left;
        border-bottom: solid 1px #AAAAAA;
        box-sizing: border-box;
    }
    .f_menu li:before{
        content:url("../svg/arrow_r.svg");
        width: 5px;
        height: 10px;
        position: absolute;
        left: 10px;
        top: 20px;
    }
}


/*-------------------下層ページcss-------------------*/
.radius15{
    width: 100%;
    height: 100%;
    position: relative;
    overflow:hidden;
    border-radius: 15px;
}

.page_bar{
	max-width: 960px;
	margin:  30px auto;
    background-color:#f9bc00;
    padding: 5px 10px;
    font-weight: 700;
	border-radius: 13px;
}
.page_bar_in{
	width: 100%;
	margin:  10px auto;
    background-color:#DDD;
    padding: 5px 10px;
    font-weight: 700;
    box-sizing: border-box;
}
.page_wrap_ttl{
	font-size:2.2rem;
	line-height: 1.5em;
	padding-bottom: 15px;
	font-weight: 700;
	border-bottom: solid 1px #AAAAAA;
	margin-bottom: 15px;
}
.page_wrap_sub{
	font-size:1.4rem;
	line-height: 1.5em;
}
.page_wrap_ttl span{
	font-size:1.5rem;
	line-height: 1.5em;
	display: block;
}
.base_ctt960 h4{
    font-size: 1.8rem;
    line-height: 1.4em;
	font-weight: 700;
	padding: 15px 0;
}
@media (min-width: 960px) {
    .base_ctt{
        width: 100%;
        max-width: 1100px;
        margin: 0 auto;
        display: flex;
        position: relative;
    }
    .base_ctt_r{
        width: 100%;
        max-width: 1100px;
        margin: 0 auto;
        padding: 0!important;
        display: flex;
        flex-direction: row-reverse;
        position: relative;
    }
    .base_ctt960{
        width: 100%;
        max-width: 960px;
        margin: 0 auto;
        display: flex;
        position: relative;
    }
    .base_ctt960_r{
        width: 100%;
        max-width: 960px;
        margin: 0 auto;
        padding: 0!important;
        display: flex;
        flex-direction: row-reverse;
        position: relative;
    }
    .base_ctt960_ncol{
        width: 100%;
        max-width: 960px;
        margin: 0 auto;
        display: block;
        position: relative;
    }
    .base_l{
        width: 50%;
        position: relative;
    }
    .base_r{
        width: 50%;
        position: relative;
        padding: 50px;
        box-sizing: border-box;
    }
    .base960_l{
        width: 50%;
        position: relative;
        padding: 20px;
        box-sizing: border-box;
    }
    .base960_r{
        width: 50%;
        position: relative;
        padding: 20px;
        box-sizing: border-box;
    }
}
@media (max-width: 959px) {
    .base_ctt{
        width: 100%;
        margin: 0 auto;
        padding: 0;
        flex-direction: row-reverse;
        position: relative;
    }
    .base_ctt_r{
        width: 100%;
        margin: 0 auto;
        display: block;
        position: relative;
    }
    .base_ctt960{
        width: 100%;
        margin: 0 auto;
        padding: 0;
        flex-direction: row-reverse;
        position: relative;
    }
    .base_ctt_r960{
        width: 100%;
        margin: 0 auto;
        display: block;
        position: relative;
    }
    .base_ctt960_ncol{
        width: 100%;
        margin: 0 auto;
        padding: 0;
        position: relative;
    }
    .base_l{
        width: 100%;
        position: relative;
        padding: 30px 15px;
        box-sizing: border-box;
    }
    .base_r{
        width: 100%;
        position: relative;
        padding: 30px 15px;
        box-sizing: border-box;
    }
    .base960_l{
        width: 100%;
        position: relative;
        padding: 15px;
        box-sizing: border-box;
    }
    .base960_r{
        width: 100%;
        position: relative;
        padding: 15px;
        box-sizing: border-box;
    }
}
.base_ttl{
    width:100%;
    font-size: 2.2rem;
    line-height: 1.5em;
    position: relative;
    font-weight: 700;
    padding-bottom: 20px;
}
#top_cate h2{
    font-size: 28px;
    font-weight: bold;
    font-family: Arial, Helvetica, "sans-serif";
    padding-bottom:  30px;
}
#top_cate p{
    font-size: 17px;
    font-weight: 700;
}
#top_cate{
    padding: 50px 0;
    position:relative;
    max-width: 1180px;
    box-sizing: border-box;
}
#top_image{
    width: 100%;
    max-height:500px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding-bottom: 50px;
    text-align: center;
}
#top_image img{
    width:100%;
    height: auto;
    margin: 0 auto;
}
@media (min-width: 960px) {
    .base_container{
        width: 100%;
        height: auto;
        padding: 30px;
        box-sizing: border-box;
        display: block;
        position: relative;
    }
    .bg_box_r{
        position: relative;
        width: calc(100% - 100px);
        padding: 40px 0;
        border-top-left-radius: 40px;
        border-bottom-left-radius: 40px;
        background-color: #ecf9f9;
        margin-left: 100px;
    }
    .bg_box_r_inner {
        width: 100%;
        padding-right: 100px;
        position: relative;
        box-sizing: border-box;
    }
}
@media (max-width: 959px) {
    .base_container{
        width: 100%;
        padding: 30px;
        box-sizing: border-box;
        display: block;
        position: relative;
    }
    .bg_box_r{
        position: relative;
        width: calc(100% - 10px);
        padding: 40px 30px;
        border-top-left-radius: 40px;
        border-bottom-left-radius: 40px;
        background-color: #ecf9f9;
        margin-left: 10px;
    }
    .bg_box_r_inner {
        width: 100%;
        padding-right: 10px;
        position: relative;
        box-sizing: border-box;
    }
}
@media (min-width: 960px) {
    .bg_box_l{
        position: relative;
        width: calc(100% - 100px);
        padding: 40px 0;
        border-top-right-radius: 40px;
        border-bottom-right-radius: 40px;
        background-color: #ecf9f9;
        margin-right: 100px;
    }
    .bg_box_l_inner {
        width: 100%;
        padding-left: 100px;
        position: relative;
        box-sizing: border-box;
    }
}
@media (max-width: 959px) {
    .bg_box_l{
        position: relative;
        width: calc(100% - 10px);
        padding: 40px 30px;
        border-top-right-radius: 40px;
        border-bottom-right-radius: 40px;
        background-color: #ecf9f9;
        margin-right: 10px;
    }
    .bg_box_l_inner {
        width: 100%;
        padding-left: 10px;
        position: relative;
        box-sizing: border-box;
    }
}
@media (min-width: 960px) {

    .table_ctt dl{
        width: 100%;
        padding-bottom: 10px;
        clear:both;
        overflow: hidden;
    }
    .table_ctt dt{
        width: calc(50% - 10px);
        margin-right: 10px;
        padding: 10px;
        background-color: #0052a5;
        color: #fff;
        font-weight: 700;
        float: left;
    }
    .table_ctt dd{
        width: calc(50% - 10px);
        margin-left: 10px;
        padding: 10px;
        float: left;
    }
}
@media (max-width: 959px) {
    .table_ctt dl{
        width: 100%;
        padding-bottom: 10px;
        clear:both;
        overflow: hidden;
    }
    .table_ctt dt{
        width: 100%;
        padding: 10px;
        background-color: #0052a5;
        color: #fff;
        font-weight: 700;
        float: left;
    }
    .table_ctt dd{
        width: 100%;
        padding: 10px;
        float: left;
    }
}
@media (min-width: 960px) {
    .caution_box{
        width: 80%;
        padding: 20px;
        margin: 30px 10%;
        box-sizing: border-box;
        background-color: #fff;
        border:solid 1px #0052a5;
        position: relative;
    }
}
@media (max-width: 959px) {
    .caution_box{
        width: 100%;
        padding: 20px;
        margin: 30px 0;
        box-sizing: border-box;
        background-color: #fff;
        border:solid 1px #0052a5;
        position: relative;
    }
}
.caution_box strong{
    color:#0052a5;
    font-weight: 700;
}
.qa_l{
    width: 35px;
    position: absolute;
    top: 15px;
    left: 15px;
}
.qa_r{
    width: 100%;
    position: relative;
    padding-left: 45px;
}
.txt_point{
    padding: 5px 10px;
    border-radius: 11px;
    background-color: #0052a5;
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
}
.txt_blue{
    color: #0052a5;
}


.bar_blue{
    width: 100%;
    padding: 10px;
    background-color: #0052a5;
    color: #fff;
    font-weight: 700;
    margin-bottom: 30px;
}

.ittable{
    font-size: 12px;
}

    
.bg_about{
    background-color: #ffcc00;
    background: rgb(255,204,0);
}

@media (min-width: 960px) {
    .stack_box{
        width: 80%;
        padding: 20px;
        margin-top: -30px;
        box-sizing: border-box;
        position: relative;
        z-index: 10;
    }
}
@media (max-width: 959px) {
    .stack_box{
        width: 100%;
        padding: 10px;
        margin-top: 0;
        margin-bottom: 15px;
        box-sizing: border-box;
        position: relative;
    }
}
@media (min-width: 960px) {
    .col2to1_h_fix_ctt{
        display:flex;
    }
    .col2to1_h_fix_box{
        width: 50%;
        box-sizing: border-box;
        padding:  15px;
        position: relative;
    }
}
@media (max-width: 959px) {
    .col2to1_h_fix_ctt{
        display:block;
    }
    .col2to1_h_fix_box{
        width: 100%;
        box-sizing: border-box;
        padding:  5px;
        position: relative;
    }
}
.col2to1_h_fix_box a:hover{
    opacity:0.7;
    transition: 0.5s all;
}
.col2to1_h_fix_box a{
    transition: 0.5s all;
}


/*-------------------service--------------------*/
.page_sub_ttl{
	font-size:1.4rem;
	line-height: 1.5em;
	font-weight: 700;
	padding-top: 15px;
}
.list_d ul li{
	list-style: disc!important;
	margin-left: 20px;
}
/*-------------------interview--------------------*/
.interview_q{
    padding-top:30px;
    color: #cc9900;
    font-size: 2.4rem;
    line-height: 1.5em;
    font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN W3",  "小塚明朝 Pro R";
}
.interview_a{
    padding-top:30px;
    line-height:1.5em;
}
.message_ctt_ttl{
    position: absolute;
    left: 40px;
    top:-30px;
    width:200px;
    z-index: 10;
}

@media (min-width: 960px) {
    .message_ctt{
        max-width: 1100px;
        margin: 50px auto;
        display: flex;
        position: relative;
        background-color: #f2f2f2;
        flex-direction: row-reverse;
    }
    .message_l{
        width: 50%;
        position: relative;
        padding: 40px;
        box-sizing: border-box;
    }
    .message_r{
        width: 50%;
        position: relative;
        box-sizing: border-box;
        padding: 40px;
    }
    .message3to1_ctt{
        width: 100%;
        max-width: 1130px;
        margin: 0 auto;
        padding: 0!important;
        display: flex;
        flex-direction: row;
        position: relative;
    }
    .message3to1_box{
        width:100%;
        padding:  0 15px;
        box-sizing: border-box;
        position: relative;
    }
    .i_iv_on_m{
        max-width: 50%!important;
        position:absolute;
        bottom: 25px ;
        left: 40px;
    }
    .i_iv_on_m h3{
        font-size: 2.0rem;
        line-height: 1.5em;
        display: inline-block;
    }
    .i_iv_on_m_c{
        width: 100%;
        font-size: 1.4rem;
        line-height: 1.5em;
        display: block;
    }
    .i_iv_on_m_n{
        width: 100%;
        font-size: 2.0rem;
        line-height: 1.5em;
        display: block;
    }
}

 @media (max-width: 959px) {
    .message_ctt{
        width: 100%;
        height: auto;
        margin: 50px auto;
        display: block;
        position: relative;
        background-color: #f2f2f2;
    }
    .message_l{
        width: 100%;
        position: relative;
        padding: 20px;
        box-sizing: border-box;
    }
    .message_r{
        width: 100%;
        position: relative;
        box-sizing: border-box;
        padding: 20px;
    }
    .message3to1_ctt{
        width: 100%;
        margin: 0 auto;
        padding: 0!important;
        display: block;
        flex-direction: row;
        position: relative;
    }
    .message3to1_box{
        width:100%;
        overflow: hidden;
        padding:  5px 0;
        box-sizing: border-box;
        float: none;
        position: relative;
    }
    .i_iv_on_m{
        max-width: 55%!important;
        position:absolute;
        left: 15px;
        bottom: 15px;
    }
    .i_iv_on_m h3{
        font-size: 1.6rem;
        line-height: 1.5em;
        display: inline-block;
    }
    .i_iv_on_m_c{
        width: 100%;
        font-size: 1.2rem;
        line-height: 1.5em;
        display: block;
    }
    .i_iv_on_m_n{
        width: 100%;
        font-size: 1.6rem;
        line-height: 1.5em;
        display: block;
    }
}





@media (min-width: 907px) {
    #top_image_interview{
        width: 100%;
        max-height:600px;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
        padding-bottom: 50px;
    }
    #top_image_interview img{
        width: 100%;
        height: auto;
    }
    #top_image_interview_on{
        position:absolute;
        bottom: 130px;
        left: 100px;
        font-size: 200%;
    }
}
@media (max-width: 906px) {
    #top_image_interview{
        width: 100%;
        height:400px;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
        padding-bottom: 50px;
    }
    #top_image_interview img{
        width: auto;
        height: 400px;
        position: absolute;
        top: 50%;
        left: 70%;
        transform: translate(-70%, -50%);
        -webkit-transform: translate(-70%, -50%);
        -ms-transform: translate(-70%, -50%);
    }
    #top_image_interview_on{
        width: 80%;
        position:absolute;
        bottom: 100px;
        left: 15px;
        font-size: 140%;
    }
}





/*---------------------------company-----------------------------*/



@media (min-width: 960px) {
    .c_info dl{
        width:100%;
        margin-bottom: 15px;
        padding-bottom: 15px;
        clear: both;
        overflow: hidden;
        border-bottom: solid 1px #c8c8c8;
    }
    .c_info dt{
        width:170px;
        padding:5px 10px;
        margin-right: 20px;
        color: #AAAAAA;
        font-weight: 700;
        float: left;
    }
    .c_info dd{
        width:calc(100% - 190px);
        padding: 5px 0;
        float: left;
        display: block;
    }
}
@media (max-width: 959px) {
    .c_info dl{
        width:100%;
        margin-bottom: 15px;
        padding-bottom: 15px;
        clear: both;
        overflow: hidden;
        border-bottom: solid 1px #c8c8c8;
    }
    .c_info dt{
        width:auto;
        min-width: 170px;
        padding:5px 0;
        color: #AAAAAA;
        font-weight: 700;
        float: none;
        display: inline-block;
    }
    .c_info dd{
        width:100%;
        padding: 5px 0;
        float: none;
        display: block;
    }
}
.c_info ul > li{
    margin-left: 20px;
    list-style:disc;
}
/*--------------img_animation-----------------*/
.img_animation{
	animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-duration: 1.5s;
}
.i_animation_img{
	animation-name: img_anim_box;
}
@keyframes img_anim_box {
  0% { transform: translate(0, 0px) }
  100% { transform: translate(0, -10px) }
}

/*---------------------------PRIVACY-----------------------------*/
.privacy_ctt p {
    line-height: 2em;
    padding-bottom: 20px;
}



/*---------------------------post-----------------------------*/
@media (min-width: 960px) {
    .i_container_post{
        width: 100%;
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 50px 100px 50px;
        box-sizing: border-box;
        display: block;
        position: relative;
    }
}
@media (max-width: 959px) {
    .i_container_post{
        width: 100%;
        margin: 0 auto;
        padding: 0 30px 30px 30px;
        box-sizing: border-box;
        display: block;
        position: relative;
    }
}
.i_container_post p{
    line-height: 2em;
}






/*---------------------------プライパシーポリシー-----------------------------*/

.priv_content {
    font-size:1.4rem;
    line-height: 1.5em;
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
}

.priv_content dl{
	padding: 15px 0;
}

.priv_content dt{
	font-weight: bold;
	color: #333;
}


table {
	width: 100%;
	text-align: center;
	background-color: transparent;
	border-spacing: 0;
	border-collapse: collapse;
    font-size: 85%;
}

td,
th {
  padding: 0;
}

@media (min-width: 768px) {
	table tr th{
		background-color: #f2f2f2;
		padding: 5px;
		border: 1px solid #DDD;
		vertical-align: middle;
		max-width: 30%!important;}
	
	table tr td {
		padding: 5px;
		border: 1px solid #DDD;
		vertical-align: middle;
		
	}
}
@media (max-width: 767px) {
	table tr th{
		background-color: #f2f2f2;
		padding: 5px;
		border: 1px solid #DDD;
		vertical-align: middle;
		display: block;
		box-sizing: border-box;}
	
	table tr td {
		padding: 5px;
		border: 1px solid #DDD;
		vertical-align: middle;
		display: block;
		box-sizing: border-box;
	}
}

@media (min-width: 768px) {
	.fix_table tr th, .fix_table tr td{
		display:table-cell!important;
	}
}
@media (max-width: 767px) {
	.fix_table tr th, .fix_table tr td{
		display:table-cell!important;
		min-width: auto!important;
	}
}
.fix_table th{
	color: #333;
}

thead  th{
	 background-color: #808080!important;
	color: #fff!important;
}

    .fix_table tr, th {
        max-width:30%!important;
    }


.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}


/*******************FAQ**********************/

.i_faq_list{
	width: 100%;
	border-bottom: solid 1px #AAAAAA;
	padding: 13px;
	margin-bottom: 15px;
	position: relative;
	box-sizing: border-box;
}
.i_faq_ico{
	width: 30px;
	height: 30px;
	border-radius: 22px;
	background-color: #333;
	color: #fff;
	font-weight: bold;
	font-size: 1.8rem;
	text-align: center;
	box-sizing: border-box;
	padding: 2px 5px;
	margin-right: 10px;
	display: inline-block;
}
.i_faq_q{
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%); /* Safari用 */
  transform: translateY(-50%);
	display: inline-block;
}
.i_faq_a{
	padding-left: 40px;
}
.faq_list{
	width: 100%;
	border: solid 1px #e6e6e6;
	padding: 13px;
	margin-bottom: 15px;
	position: relative;
	box-sizing: border-box;
    color: #333;
    font-weight: bold;
}
.faq_list b{
	color:#DF0011;
}
.faq_list p{
	font-weight: normal;
}
.i_faq_more{
	position:absolute;
	bottom:25px;
	right: 25px;
}

.details_ctt{
    display:block;
    padding-top: 20px;
}
/* オープン時にアニメーションを設定 */
details[open] .b_p_inner {
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
  0% {
    opacity: 0; /* 透明 */
    transform: translateY(-10px); /* 上から表示 */
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
details summary {
  list-style: none;
  cursor: pointer;
  color: #333;
  font-weight: bold;
}
/**
 * Chrome用のデフォルト三角削除
**/
details summary::-webkit-details-marker {
	font-size: 22px;
  display: none;
}
/**
 * Font Awesomeのプラスアイコン使用
**/
details summary::after {
  font-family: FontAwesome;
  content: '\f067';
	position: absolute;
	top: 15px;
	right: 11px;
	font-size: 22px;
}
/**
 * アコーディオンがオープン時はマイナスアイコンに変更
**/
details[open] summary::after {
  content: '\f068';
	position: absolute;
	top: 15px;
	right: 10px;
}

/*************************form**************************/

#formWrap {
	width:100%;
	margin:0 auto;
	margin-bottom:40px;
	line-height:120%;
	font-size:95%;
}
table.formTable{
	width:100%;
	margin:0 auto;
	border-collapse:collapse;
}
table.formTable td,table.formTable th{
	border:1px solid #fff;
	padding:10px;
    box-sizing: border-box;
}
table.formTable th{
	font-weight:normal;
	background:#efefef;
	text-align:left;
}

@media (min-width: 960px) {
    .formTable td, th{
        width:auto;
    }
}
@media (max-width: 959px) {
    .formTable td, th{
    }
}
.formTable input, textarea{
	border-radius: 5px;
	padding:15px!important;
	border: solid 1px #efefef;
	width: 100%;
    box-sizing: border-box;
}
.bm_btn{
    border: 0!important;}
.table_spec  tr th{
}


/*************************cbbox**************************/

.cbbox p{
    padding-bottom:10px;
}
.cbbox{
    width: 80%;
    margin: 30px auto;
    position: relative;
    padding: 20px;
    background-color: #fff;
    text-align: center;
    border-radius: 13px;
    border:solid 2px #F5A200;
}
@media (min-width: 960px) {
    .cbbox_ttl{
        font-size: 2.5rem;
        line-height: 1.5em;
        font-weight: 700;
        color: #F5A200;
    }
    .cbbox_sub{
        font-size: 2rem;
        line-height: 1.5em;
        font-weight: 700;
    }
    .cbbox_txt{
        line-height: 1.5em;
    }
}
@media (max-width: 959px) {
    .cbbox_ttl{
        font-size: 1.5rem;
        line-height: 1.5em;
        font-weight: 700;
        color: #F5A200;
    }
    .cbbox_sub{
        font-size: 1.5rem;
        line-height: 1.5em;
        font-weight: 700;
    }
    .cbbox_txt{
        font-size: 1.2rem;
        line-height: 1.5em;
    }
}
.cbbox_ca{
    background-color:#FFFAD5;
    padding: 20px;
    text-align: center;
    border-radius: 7px;
}
.cbbox_ca p{
    font-size:1.2rem;
    line-height: 1.5em;
    color: #808080;
    padding: 5px 0;
}

.cb_btn_r {
    display: inline-block;
    width: 100%;
	max-width: 350px;
    min-width: 240px;
	box-sizing: border-box;
    padding:  15px 25px;
    font-size: 2rem;
    line-height: 1em;
    font-weight: 700;
    border-radius: 30px;
    border:solid 1px #C60000;
	background-color: #C60000;
	color: #fff;
    cursor: pointer;
    position: relative;
    transition:0.5s all;
	text-align: center;
    margin-bottom:10px;
}

.cb_btn_r:hover {
    border:solid 1px #C60000;
    background-color: #fff;
    color: #C60000;
    transition:0.5s all; }