@charset "UTF-8";
/*--------------------------------------------------------------
			ヘッダー
--------------------------------------------------------------*/
header{
  width: 100%;
  position: absolute;
  top:0;
  left:0;
}
header .inner{
    padding:40px 40px 0 40px;
    max-width: 1324px;
    margin:0 auto;
    box-sizing: border-box;
    overflow:hidden;
}
header .inner .ttl_logo{
    float: left;
}
header .inner .pc_nav{
    float: right;
}
header .inner .pc_nav ul li{
    display: inline-block;
    margin:0 0 0 30px;
}
header .inner .pc_nav ul li a{
    color:#fff;
    font-weight: bold;
    padding:25px 0;
    line-height: 1;
    display: block;
}
.second header .inner .pc_nav ul li a{
    color:#000;
}
header .inner .pc_nav ul li a.line_btn{
    background-color: #fff;
    background-image: url(../img/base/line_icon.svg);
    background-position: 30px center;
    background-repeat: no-repeat;
    background-size: 40px auto;
    width: 277px;
    height: 65px;
    padding:20px 0 0 85px;
    box-sizing: border-box;
    border:3px solid #00CA41;
    border-radius:20px;
    color:#00CA41;
    font-size:18px;
    text-align: left;
    transition: 0.2s;    
}
header .inner .pc_nav ul li a.line_btn:hover{
    opacity: 0.8;
    text-decoration: none;
}

@media screen and (max-width: 1199px) {
header .inner{
    padding:40px 15px 0 15px;
}
header .inner .pc_nav ul li{
    display: inline-block;
    margin:0 0 0 15px;
}
header .inner .pc_nav ul li a.line_btn{
    width: 230px;
    height: 65px;
    padding:20px 0 0 60px;  
    background-image: url(../img/base/line_icon.svg);
    background-position: 15px center;    
    font-size:17px;    
}
}

@media screen and (max-width: 999px) {
header .inner .pc_nav{
    display: none;
}
}
.drawar-icon-wrap{
    position: fixed;
    right:20px;
    top:40px;
    z-index: 52;
}
.drawar-icon {
  width: 36px;
  height: 21px;
  position: relative;
  z-index: 51;
  background: none;
  border:none;
  right:0;
  top:0;
}
@media screen and (min-width: 701px) {
  .drawar-icon {
    display: none;
  }
}
.drawar-icon.is-checked .drawar-icon_bar:nth-of-type(1) {
  top: 10px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.drawar-icon.is-checked .drawar-icon_bar:nth-of-type(2) {
  display: none;
}
.drawar-icon.is-checked .drawar-icon_bar:nth-of-type(3) {
  top: 10px;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

.drawar-icon_bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 29px;
  height: 2px;
  border-radius: 6px;
  background: #FFF;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
.drawar-icon_bar:nth-of-type(2) {
  top: 8px;
}
.drawar-icon_bar:nth-of-type(3) {
  top: 16px;
}

.drawer-content {
    width: 310px;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 50;
    box-sizing: border-box;
    padding:120px 15px 40px 15px;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s linear;
    transition: -webkit-transform 0.3s linear;
    transition: transform 0.3s linear;
    transition: transform 0.3s linear, -webkit-transform 0.3s linear;
    background: rgba(170, 166, 167, 0.9);
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-content_link {
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: right;
  font-weight: 700;
  letter-spacing: 0.48px;
  font-size: 22px;
  color:#000;
  margin:0 25px 0 0;
}

.drawer-content_menu .line_btn{
    background-color: #fff;
    background-image: url(../img/base/line_icon.svg);
    background-position: 30px center;
    background-repeat: no-repeat;
    background-size: 40px auto;
    width: 277px!important;
    height: 65px!important;
    padding:15px 0 0 85px!important;
    box-sizing: border-box;
    border:3px solid #00CA41;
    border-radius:20px;
    color:#00CA41;
    font-size:18px;
    text-align: left;
    transition: 0.2s;
    margin:20px 0 0 0;    
}

.fix_line_btn{
    display: none;
}
@media screen and (max-width: 999px) {
.fix_line_btn{
    background-color: #fff;
    width:100%;
    height: 65px!important;
    padding:0!important;
    box-sizing: border-box;
    border:3px solid #00CA41;
    text-align: center;
    transition: 0.2s;  
    display: block;
    position: fixed;
    bottom:0;
    left: 0;
    right:0;
    margin:0 auto;
    z-index: 99;
}
.fix_line_btn span{
    color:#00CA41;
    font-size:18px;    
    font-weight: bold;
    padding:20px 0  22px 55px!important;
    display: inline-block;
    background-image: url(../img/base/line_icon.svg);
    background-position: 0 center;
    background-repeat: no-repeat;
    background-size: 40px auto;    
}
}
/*--------------------------------------------------------------
			フッター
--------------------------------------------------------------*/
footer .foot_top{
    background: #F9ECEC;
    padding:135px 0 125px 0;
    border-bottom: 1px solid #C6000B;
}
footer .foot_top .inner{
    max-width: 944px;
    margin:0 auto;  
}
footer .foot_top .top_ttl{
    color:#fff;
    background: #C6000B;
    text-align: center;
    width: 256px;
    height: 54px;
    box-sizing: border-box;
    line-height: 1;
    font-size:22px;
    font-weight: bold;
    padding:15px 0 0 0;
    margin:0 0 30px 0;
}
footer .foot_top .top_txt01{
    font-size:46px;
    font-weight: 500;
}
footer .foot_top .top_txt02{
    font-size:18px;
    line-height: 2;
    margin:20px 0 0 0;
}
footer .foot_top .contact_list{
    text-align: center;
    font-size:0;
    margin:90px 0 0 0;
}
footer .foot_top .contact_list li{
    display: inline-block;
    width: 280px;
    height: 222px;
    background-color: #fff;
    border-radius: 10px;
    margin:0 0 0 20px;
    padding:25px 20px;
    box-sizing: border-box;
}
footer .foot_top .contact_list li:first-child{
    margin:0;
}
footer .foot_top .contact_list li .txt_box{
    padding:0 0 0 75px;
    text-align: left;
}
footer .foot_top .contact_list li .txt_box.line{
    background: url(../img/base/line_icon.svg) 0 0 no-repeat;
    background-size: 48px auto;
}
footer .foot_top .contact_list li .txt_box.icon01{
    background: url(../img/base/foot_icon01.svg) 0 0 no-repeat;
    background-size: 50px auto;
}
footer .foot_top .contact_list li .txt_box.icon02{
    background: url(../img/base/foot_icon02.svg) 0 0 no-repeat;
    background-size: 48px auto;
}
footer .foot_top .contact_list li .ttl01{
    font-size:22px;
    font-weight: bold;
    margin:0 0 10px 0;
}
footer .foot_top .contact_list li .txt01{
    line-height: 1.75;
}
footer .foot_top .contact_list li .btn01{
    display: inline-block;
    width: 240px;
    height: 55px;
    border-radius: 50px;
    background: #C6000B;
    margin:25px auto 0;
    padding:15px 0 0 0;
    box-sizing: border-box;
    color:#fff;
    font-size:18px;
    font-weight: bold;
    transition: 0.2s;
}
footer .foot_top .contact_list li .btn01:hover{
    text-decoration: none;
    opacity: 0.8;
}
footer .foot_top .contact_list li .btn01.line{
    background: #00CA41;
}
@media screen and (max-width: 999px) {
footer .foot_top{
    padding:120px 20px 140px 20px;
}
footer .foot_top .top_ttl{
    margin:0 0 20px 0;
}
footer .foot_top .top_txt01{
    font-size:32px;
    line-height: 1.45;
}
footer .foot_top .top_txt02{
    font-size:18px;
    margin:15px 0 0 0;
}
footer .foot_top .contact_list{
    margin:90px 0 0 0;
}
footer .foot_top .contact_list li{
    display:block;
    width: 280px;
    height: 222px;
    margin:20px auto 0;
}
footer .foot_top .contact_list li:first-child{
    margin:0 auto;
}
}
footer .foot_middle{
    padding:95px 0 75px 0;
    position: relative;
}
footer .foot_middle .inner{
    max-width:1324px;
    margin:0 auto;    
    padding:0 70px;
    box-sizing: border-box;
}
footer .foot_middle .inner .ttl01{
    font-weight: bold;
    margin:25px 0 5px 0;
}
footer .foot_middle .inner .txt01{
    line-height: 1.75;
}
footer .foot_middle .inner .r_btn{
    position: absolute;
    right:50px;
    bottom:45px;
}
@media screen and (max-width: 999px) {
footer .foot_middle{
    padding:265px 0 100px 0;
}
footer .foot_middle .inner{
    padding:0 20px;
}
footer .foot_middle .inner .ttl01{
    margin:25px 0 5px 0;
}
footer .foot_middle .inner .r_btn{
    position: absolute;
    right:0;
    left:0;
    bottom:auto;
    top:100px;
    margin:auto;
    display: block;
    width: 59px;
}
}
footer .foot_bottom{
    background: #C6000B;
    padding:55px 0 170px 0;    
}
footer .foot_bottom .copy{
    line-height: 1;
    max-width:1324px;
    margin:0 auto;    
    padding:0 70px;
    box-sizing: border-box;
    color:#fff;
    font-size:14px;
    font-weight: bold;    
}
/*--------------------------------------------------------------
			2階層共通
--------------------------------------------------------------*/
.second_ttl_wrap{
    margin:150px 0 100px 0;
    width: 100%;
    height: 219px;
    padding:90px 0 0 0;
    box-sizing: border-box;
    text-align: center;
    background: url(../img/base/second_bg.jpg) center center no-repeat;
    background-size: cover;
}
.second_ttl_wrap .second_ttl{
    font-size:38px;
    font-weight: bold;
    color:#fff;
}
@media screen and (max-width: 999px) {
.second_ttl_wrap{
    margin:0 0 100px 0;
    width: 100%;
    height: 310px;
    padding:220px 0 0 0;
    background: url(../img/base/second_bg_sp.jpg) center center no-repeat;
    background-size: cover;
}
}
.main_in{
    max-width: 1008px;
    box-sizing: border-box;
    padding:0 20px;
    margin:0 auto;
}
.area_ttl01 .t01{
    background: #C8000B;
    color:#fff;
    font-size:22px;
    font-weight: 500;
    padding:15px 35px;
    line-height: 1;
    text-align: center;
    display:inline-block;
}
.area_ttl01 .t02{
    font-size:46px;
    font-weight: 500;
    display: block;
    margin:10px 0 60px 0;
}
@media screen and (max-width: 999px) {
.area_ttl01 .t01{
    font-size:22px;
    line-height: 1.4;
    padding:13px 20px;    
}
.area_ttl01 .t02{
    font-size:28px;
    margin:10px 0 50px 0;
}
}
.second .bottom_txt01{
    background: #C8000B;
    padding:30px 15px;
    text-align: center;
    margin:150px 0 0 0;
}
.second .bottom_txt01 .txt01{
    color:#fff;
    font-size:24px;
    line-height: 1.45;
}
.second .bottom_txt01 .txt02{
    color:#fff;
    font-size:18px;
    line-height: 1.45;
    margin:7px 0 0 0;
}
@media screen and (max-width: 999px) {
.second .bottom_txt01{
    margin:100px 0 0 0;
}
.second .bottom_txt01 .txt02{
    text-align: left;
    margin:20px 0 0 0;
}    
}