@charset "utf-8";

/* 共通 */
#header_new a,
#footer_new a{
  display: inline-block;
}

/** ========================================
 * @header
 * ヘッダー
 * ====================================== */
#header_new{
  width: 100%;
  background-color: rgba(255, 255, 255, 1);
  z-index: 970;
  position: fixed;
  top: 0;
  left: 0;
}
#header_new .header_body{
  position: relative;
  height: 118px;
  background: var(--color-wt);
  z-index: 10;
}
#header_new .header_inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 978px;
  margin: 0 auto;
}
@media screen and (max-width:978px){
  #header_new .header_inner{
    padding: 0 10px 0 0;
  }
}
@media screen and (max-width:768px){
  #header_new .header_body{
    height: 68px;
  }
  #header_new .header_inner{
    width: 100%;
    height: 100%;
    padding: 10px 20px;
  }
}

#header_new .header_logo{
  width: 259px;
  display: inline-block;
}

#header_new .header_menu-inner{
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}
@media screen and (max-width:768px){
  #header_new .header_logo{
    width: 165px;
  }

  #header_new .header_menu-detail{
    display: none;
    position: fixed;
    top: 68px;
    bottom: 0;
    left: 0;
    right: 0;
  }

  #header_new .header_menu-inner{
    align-items: center;
    flex-direction: column-reverse;
    width: 100%;
    max-height: calc(100vh - 68px);
    padding: 40px 0;
    background: #F0F0F0;
    overflow: auto;
  }
}
@media screen and (max-width:430px){
  #header_new .header_menu-inner{
    padding: 20px;
  }
}

#header_new .header_contact{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 8px 10px 12px;
  border-radius: 0 0 8px 8px;
  background: var(--color-rd);
}
#header_new .header_contact-ttl{
  color: var(--color-wt);
  font-size: 15px;
  font-weight: 500;
}
#header_new .header_contact-link{
  display: flex;
  gap: 8px;
}
#header_new .header_contact-link .wt_btn span{
  position: relative;
  display: inline-block;
  padding-left: 24px;
}
#header_new .header_contact-link .wt_btn span::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: inline-block;
  width: 16px;
  height: 16px;
}
#header_new .header_contact-link .wt_btn--corporate span::before{
  background: url(/img/header_footer/icon_business.png) no-repeat center / contain;
}
#header_new .header_contact-link .wt_btn--personal span::before{
  background: url(/img/header_footer/icon_personal.png) no-repeat center / contain;
}
@media screen and (max-width:768px){
  #header_new .header_contact{
    display: block;
    width: 100%;
    max-width: 568px;
    margin: 30px 0 0;
    padding: 18px 20px;
    border-radius: 0;
  }
  #header_new .header_contact-ttl{
    font-size: 18px;
    font-weight: 700;
  }
  #header_new .header_contact-link{
    justify-content: center;
    margin: 12px 0 0;
  }
  #header_new .header_contact-link .wt_btn{
    width: 50%;
    padding: 20px;
    font-size: 14px;
  }
}
@media screen and (max-width:430px){
  #header_new .header_contact-link .wt_btn{
    padding: 10px;
  }
}

#header_new .tablist{
  display: flex;
  justify-content: flex-end;
  gap: 50px;
  margin: 18px 0 0;
}
#header_new .tab_btn{
  position: relative;
  padding: 0 0 10px 19px;
  border: none;
  border-bottom: 5px solid transparent;
  background: transparent;
  color: var(--color-bk);
  font-size: 15px;
  font-weight: 700;
}
#header_new .tab_btn::before{
  content: "";
  position: absolute;
  top: calc(50% - 2.5px);
  left: 0;
  transform: translateY(-50%);
  display: inline-block;
  width: 10px;
  height: 10px;
  background: url(/img/common/icon_arrow-down.png) no-repeat center / contain;
}
#header_new .tab_btn:hover{
  color: var(--color-rd);
  border-bottom: 5px solid var(--color-rd);
}
#header_new .tab_btn.is-active{
  border-bottom: 5px solid var(--color-rd);
}
#header_new .tab_btn.is-active::before{
  background: url(/img/common/icon_arrow-up.png) no-repeat center / contain;
}

#header_new .menu_btn{
  display: none;
}

#header_new .tab_panel{
  position: fixed;
  left: 0;
  right: 0;
  top: 118px;
  bottom: 0;
  display: none;
  overflow: auto;
  z-index: 15;
}
#header_new .tab_panel-inner{
  display: flex;
  gap: 30px;
  width: 100%;
  max-width: 968px;
  margin: auto;
  padding: 30px 40px;
  background: #F0F0F0;
  text-align: left;
}
#header_new .tab_panel[hidden]{
  display: none;
}

#header_new .tab_list-ttl{
  position: relative;
  padding: 0 0 11px;
  border-bottom: 1px solid var(--color-bk);
}
#header_new .tab_list-ttl .arrow_link{
  font-size: 16px;
  font-weight: 700;
}


#header_new .tab_list-ttl + .tab_list-detail{
  margin-top: 15px;
}
#header_new .tab_list{
  min-width: 200px;
}
#header_new .tab_list-detail--flex{
  display: flex;
  justify-content: space-between;
}

#header_new .tab_links-wrap{
  width: calc(100% - 225px);
}

#header_new .tab_links{
  padding: 0 26px 0 18px;
}

#header_new .tab_link + .tab_link{
  margin-top: 8px;
}
#header_new .tab_link a{
  color: var(--color-bk);
}
#header_new .tab_link a:hover{
  color: var(--color-rd);
  font-weight: 700;
}
#header_new .tab_link--col2 a{
  display: flex;
  gap: 20px;
}

#header_new .col2_heading{
  width: 180px;
  font-size: 15px;
}

#header_new .links_list{
  margin: 35px 0 0;
}
#header_new .links_item + .links_item{
  margin-top: 8px;
}

#header_new .border_box{
  width: 200px;
  margin: 0 auto;
}
#header_new .border_box-link{
  display: block;
  border: 3px solid var(--color-rd);
  border-radius: 12px;
  background: var(--color-wt);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
#header_new .border_box-link:hover{
  text-decoration: none;
}
#header_new .border_box-heading{
  padding: 5px 0 6px;
  background: var(--color-rd);
  color: var(--color-wt);
  line-height: 1;
}
#header_new .border_box-img{
  margin: 12px 0 0;
}
#header_new .border_box-img img{
  width: 102px;
}
#header_new .border_box-txt{
  margin: 12px 0 13px;
  color: var(--color-rd);
}

#header_new .wt_box{
  width: 180px;
  margin: 0 auto;
}
#header_new .wt_box-link{
  display: block;
  padding: 10px;
  border-radius: 12px;
  background: var(--color-wt);
  color: var(--color-bk);
  font-weight: 700;
  text-align: center;
}
#header_new .wt_box-link:hover{
  color: var(--color-rd);
}
#header_new .wt_box-img{
  width: 80px;
  margin: 12px auto 8px;
}
#header_new .wt_box-txt{
  font-size: 12px;
  font-weight: 400;
}

#header_new #panel02 .tab_list {
  width: 100%;
}
#header_new #panel02 .tab_links{
  padding-right: 0;
}
#header_new #panel02 .tab_link + .tab_link{
  margin-top: 20px;
}
#header_new #panel02 .links_list .arrow_link{
  font-size: 15px;
}

#header_new #panel03 .tab_list:nth-child(1){
  min-width: 190px;
}
#header_new #panel03 .tab_list:nth-child(2){
  max-width: calc(100% - 430px);
}

#header_new .open_bg{
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
}

@media screen and (max-width:768px){
  #header_new .tablist{
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 568px;
    margin: 0;
  }
  #header_new .tab_btn{
    padding: 0 38px 20px 0;
    border-bottom: 1px solid var(--color-bk);
    font-size: 16px;
    text-align: left;
  }
  #header_new .tab_list{
    min-width: auto;
  }
  #header_new .tab_btn::before,
  #header_new .tab_btn::after,
  #header_new .tab_list-ttl::before,
  #header_new .tab_list-ttl::after{
    content: "";
    position: absolute;
    display: inline-block;
    top: calc(50% - 10px);
    left: auto;
    background: #454545;
  }
  #header_new .tab_list-ttl::before{
    top: calc(50% - 4px);
  }
  #header_new .tab_list-ttl::after{
    top: calc(50% - 2px);
  }
  #header_new .tab_btn::before,
  #header_new .tab_list-ttl::before{
    width: 17px;
    height: 3px;
    right: 10px;
  }
  #header_new .tab_btn::after,
  #header_new .tab_list-ttl::after{
    width: 3px;
    height: 17px;
    right: 17px;
    transform: translateY(-50%);
  }

  #header_new .tab_btn:hover{
    color: var(--color-bk);
    border-bottom: 1px solid var(--color-bk);
  }
  #header_new .tab_btn.is-active{
    border-bottom: 1px solid var(--color-bk);
  }
  #header_new .tab_btn.is-active::before,
  #header_new .tab_list-ttl.is-active::before{
    background: #454545;
  }
  #header_new .tab_btn.is-active::after,
  #header_new .tab_list-ttl.is-active::after{
    display: none;
  }

  #header_new .tab_list-ttl .arrow_link{
    font-size: 14px;
  }

  #header_new .menu_btn{
    position: relative;
    display: block;
    padding: 0;
    border: none;
    background: transparent;
  }
  #header_new .menu_btn::after {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    background: url(/img/header_footer/menu_img-open.png) no-repeat center / contain;
  }
  #header_new .menu_btn.is-open::after {
    background: url(/img/header_footer/menu_img-close.png) no-repeat center / contain;
  }

  #header_new .tab_panel{
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    padding: 0 0 20px;
    border-bottom: 1px solid #000;
  }
  #header_new .tab_panel-inner{
    display: block;
    padding: 0 20px;
  }

  #header_new .tab_list-ttl{
    padding: 0 38px 8px 20px;
  }

  #header_new .tab_list + .tab_list{
    margin-top: 10px;
  }
  #header_new .tab_list-detail{
    border-bottom: 1px solid var(--color-bk);
  }
  #header_new .tab_list-detail--sp_panel{
    display: none;
  }
  #header_new .tab_list-detail--flex{
    display: block;
  }

  #header_new .tab_links-wrap{
    width: 100%;
  }

  #header_new .tab_links{
    padding: 0 0 20px 34px;
  }

  #header_new .col2_heading{
    width: 35.5%;
  }
  #header_new .col2_txt{
    width: 64.5%;
  }

  #header_new .links_list{
    margin-top: 10px;
    padding-left: 20px;
  }

  #header_new .border_box{
    margin-top: 28px;
  }

  #header_new .wt_box{
    margin-top: 28px;
  }

  #header_new #panel02 .links_list{
    margin-top: 35px;
    padding-left: 0;
  }
  #header_new #panel02 .tab_list-ttl{
    display: none;
  }
  #header_new #panel02 .tab_list-detail{
    margin: 0;
    border: none;
  }
  #header_new #panel02 .tab_links{
    padding: 0;
  }

  #header_new #panel03.tab_panel{
    padding: 0;
    border: none;
  }
  #header_new #panel03 .tab_list-detail{
    border: none;
  }
  #header_new #panel03 .tab_links{
    padding: 0;
  }
  #header_new #panel03 .tab_list:nth-child(2){
    max-width: unset;
  }

}
@media screen and (max-width:430px){
  #header_new .tab_link + .tab_link{
    margin-top: 15px;
  }

  #header_new .tab_link--col2 a{
    display: block;
  }
  #header_new .col2_heading{
    width: 100%;
  }
  #header_new .col2_txt{
    width: 100%;
    margin: 2px 0 0;
    padding-left: 18px;
  }

  #header_new .border_box{
    margin-top: 25px;
  }

  #header_new #panel02 .links_list{
    margin-top: 35px;
  }
  #header_new #panel02 .tab_list-detail{
    padding-left: 0;
    border: none;
  }
}




/** ========================================
 * @footer
 * フッター
 * ====================================== */
#footer_new{
  display: block;
}
#footer_new .footer_inner{
  max-width: 968px;
  margin: 0 auto;
}

/* 背景灰色ブロック */
#footer_new .footer_service{
  position: relative;
  background: #ECECEC;
}
#footer_new .footer_service .footer_inner{
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 0 140px;
}
#footer_new .footer_logo{
  width: 180px;
}
#footer_new .footer_service-menu{
  display: flex;
  gap: 30px;
  text-align: left;
}
#footer_new .footer_service-menu + .footer_service-menu{
  margin-top: 40px;
}
#footer_new .footer_list-ttl .arrow_link{
  font-size: 16px;
  font-weight: 700;
}
#footer_new .footer_link a{
  color: var(--color-bk);
}
#footer_new .footer_link a:hover{
  color: var(--color-rd);
  font-weight: 700;
}
#footer_new .footer_list-detail{
  display: flex;
  gap: 30px;
  margin: 16px 0 0;
  padding-left: 20px;
}
#footer_new .footer_link + .footer_link{
  margin-top: 12px;
}

#footer_new .footer_list-block--01,
#footer_new .footer_list-block--04 .footer_links{
  min-width: 230px;
}


/* 背景黒色ブロック */
#footer_new .footer_btm{
  background: #333;
}
#footer_new .footer_btm .footer_inner{
  padding: 30px 0;
}
#footer_new .footer_btm-links{
  display: flex;
  justify-content: center;
  gap: 50px;
}
#footer_new .footer_btm-link a{
  color: var(--color-wt);
}
#footer_new .copyright{
  margin: 20px 0 0;
}
#footer_new .copyright a{
  color: var(--color-wt);
  font-size: 12px;
}

#footer_new .pagetop{
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 10;
}

@media screen and (max-width:768px){
  #footer_new {
    padding: 0;
  }

  #footer_new .footer_logo{
    margin: 0 auto;
  }

  #footer_new .footer_service-menu_wrap{
    display: none;
  }
  #footer_new .footer_btm .footer_inner{
    padding: 33px 0;
  }
  #footer_new .footer_btm-links{
    gap: 40px;
  }
  #footer_new .copyright{
    margin-top: 20px;
  }
}
@media screen and (max-width:430px){
  #footer_new .footer_btm .footer_inner{
    padding: 31px 0;
  }
  #footer_new .footer_btm-links{
    flex-direction: column;
    gap: 20px;
  }
  #footer_new  .copyright{
    margin-top: 40px;
  }
  #footer_new .pagetop img{
    width: 60px;
    height: 60px;
  }
}