@charset "utf-8";
/*---------------
  common
---------------*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body{
  font-family: 'Overpass', "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height:1.7;
  color: #333;
  font-weight: 500;
  letter-spacing: 0.01rem;
}

.fc_005295{ color: #005295 !important;}
.fc_d71920 { color: #d71920 !important;}
.fc_4d4d4d{ color: #4d4d4d !important;}
.bg_f6f6f6 { background: #f6f6f6 !important;}
.bb_b1b1b1 { border-bottom: 1px solid #B1B1B1 !important;}
@media screen and (max-width:768px) {
  .bg_fff_sp{ background: #fff !important;}
}

@media screen and (max-width:768px) {
  .fz22_sp{font-size: 2.2rem !important;}
}

/* Responsive */
.pc_dis { display: block !important;}
.pc_inline_block_dis { display: inline-block !important;}
.pc_inline_dis { display: inline !important;}
.sp_dis { display: none !important;}
.sp_inline_block_dis { display: none !important;}
@media screen and (max-width:768px) {
  .pc_dis { display: none !important;}
  .pc_inline_block_dis { display: none !important;}
  .pc_inline_dis { display: none !important;}
  .sp_dis { display: block !important;}
  .sp_inline_block_dis { display: inline-block !important;}
}


/*---------------
  header
---------------*/
header.shadow-header{
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}


/*---------------
  h2-txt, icon, button...
---------------*/
/*----- h2-txt -----*/
.h2-txt{
  padding-bottom: 8px;
  color: #4D4D4D;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.325;
  border-bottom: 1px solid #777;
}
.h2-txt--red{
  padding-bottom: 8px;
  color: #D71920;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.33;
  border-bottom: 1px solid #D71920;
}
@media screen and (max-width:768px){
  .h2-txt{
    font-size: 2.7rem;
    padding-bottom: 6px;
  }
  .h2-txt--red{
    font-size: 2.7rem;
    padding-bottom: 6px;
  }
}

/*----- h3-txt -----*/
.h3-txt{
  background-color: #333;
  border-radius: 6px;
  padding: 11px 20px 2px 20px;
  color: #fff;
  font-weight: 700;
  font-size: 2.7rem;
  line-height: 1.33;
}
.h3-txt-2col{
  display: flex;
  border-radius: 6px;
  border: 2px solid #333;
  font-weight: 700;
  font-size: 2.7rem;
  line-height: 1.33;
}
.h3-txt-2col .num{
  padding: 6px 12px 0 12px;
  background-color: #333;
  color: #fff;
  font-weight: 500;
}
.h3-txt-2col .num .procedure{
  font-size: 2.4rem;
}
.h3-txt-2col .txt{
  padding: 6px 18px 1px 18px;
  flex-grow: 1;
}
.h3-txt-bg-eaeaea{
  background-color: #eaeaea;
  border: solid 2px #333;
  padding: 10px 18px 1px 18px;
  color: #333;
}
@media screen and (max-width:768px){
  .h3-txt{
    padding: 12px 10px 8px 10px;
    font-size: 2.0rem;
  }
  .h3-txt-2col{
    flex-wrap: wrap;
    font-size: 2.0rem;
  }
  .h3-txt-2col .num{
    width: 100%;
    text-align: center;
  }
  .h3-txt-2col .num .procedure{
    font-size: 2.0rem;
  }
  .h3-txt-2col .num .order-num{
    font-size: 2.4rem;
  }
  .h3-txt-2col .txt{
    width: 100%;
    padding: 10px 6px 8px 6px;
    text-align: center;
  }
  .h3-txt-2col .txt .txt-inner{
    display: inline-block;
    text-align: left;
  }
}

/*----- cart-btn -----*/
.btn_radius_30{
  position: relative;
    display: block;
    margin-top: 6px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -o-border-radius: 30px;
    border-radius: 30px;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
}
.btn_radius_30:hover{
  margin: 6px auto 10px;
  -webkit-transform: translateY(6px);
  -moz-transform: translateY(6px);
  transform: translateY(6px);
  opacity: 0.8;
  color:#fff;
}
.btn_005295{
  background: #005295;
  box-shadow: 0px 6px 0px 0px #56a0d3;
  color:#fff;
  text-align:center;
  padding: 12px 0 10px 0;
  font-size:1.8rem;
  margin-bottom:10px;
}
.btn_005295:hover{
  box-shadow: 0px 1px 0px 0px #56a0d3;
}

/*----- ordered/unordered list -----*/
ul.ul-steps li{
  color: #4d4d4d;
  font-size: 20px;
  line-height: 1.65;
}
ol.ol-steps li{
  position: relative;
  padding-left: 28px;
  color: #4d4d4d;
  font-size: 20px;
  line-height: 1.65;
}
ol.ol-steps li:not(:first-of-type),
ul.ul-steps li:not(:first-of-type){
  margin-top: 20px;
}
ol.ol-steps li::before{
  content: "\02776";
  position: absolute;
  top: 0;
  left: 0;
  color: #005295;
  font-size: 1.1em;
}
ol.ol-steps li:nth-child(2)::before{
  content: "\02777";
}
ol.ol-steps li:nth-child(3)::before{
  content: "\02778";
}
ol.ol-steps li:nth-child(4)::before{
  content: "\02779";
}
ol.ol-steps li:nth-child(5)::before{
  content: "\0277a";
}
ol.ol-steps li:nth-child(6)::before{
  content: "\0277b";
}
@media screen and (max-width: 768px) {
  ol.ol-steps li{
    padding-left: 24px;
  }
  ol.ol-steps li::before{
    font-size: 1em;
  }
  ol.ol-steps li:not(:first-of-type),
  ul.ul-steps li:not(:first-of-type){
    margin-top: 12px;
  }
}


/*---------------
  modal
---------------*/
.modal-visible-area{
  position: relative;
}
.modal-visible-area .btn{
  position: absolute;
  top: 5px;
  right: 5px;
  width: 32px;
  height: 32px;

  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  border-radius: 50%;
  background-color: #fff;
}
.modal-hide-area{
  display: none;
}
.modal-hide-area-only-img{
  max-width: 95vw; /*dvw未対応の機種の代理スタイル*/
  max-width: 95dvw;
  max-height: 95vh; /*dvh未対応の機種の代理スタイル*/
  max-height: 95dvh;
}
@media screen and (max-width: 768px) {
  .modal-visible-area .btn{
    display: none;
  }
}
/*modaalのデフォルトcss 打ち消し*/
.modaal-container:has(.modal-hide-area-only-img){
  width: auto;
}
.modaal-content-container:has(.modal-hide-area-only-img){
  padding: 0;
}


/*---------------
  humberger menu
---------------*/
.header_menu_area_gray_bg {display: none;}
.over960_dis {display: block;}
.under960_dis {display: none;}

@media screen and (max-width: 960px) {
  .header_sp_fixed {
    position: fixed;
    top: 0;
    background-color: #fff;
    z-index: 999;
    border-bottom: 1px solid #aaa;
  }
  .over960_dis {display: none;}
  .under960_dis {display: inline;}
  .header_menu_area_gray_bg {
    position: fixed;
    top: 5px;
    right: 0;
    display: block;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background-image: url(/assets/images/icon/btn-hambuger.png);
    background-size: 32px 28px;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
  }
  .header_menu_area_gray_bg.on {
    background-image: url(/assets/images/icon/btn-close.png);
    background-size: 28px 28px;
  }
  .header_menu_area_gray_bg.on .gray {
    background-image: url(/assets/images/icon/btn-close.png);
    background-size: 28px 28px;
  }
}

.hamburger_menu {
  z-index: 999;
  position: fixed;
  width: 100%;
  top: 0;
}

.hamburger_menu input {
  display: none;
}

.hamburger_menu .hidden_nav, .header_nav_area .buy_dropdown, .header_nav_area .product_dropdown {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.5s;
}

.hamburger_menu input:checked + .hidden_nav {
  box-sizing: border-box;
  height: auto;
  margin-top: 55px;
  opacity: 1;
  background: #fff;
}

.product_label input:checked + .product_dropdown{
  box-sizing: border-box;
  height: auto;
  opacity: 1;
}

.buy_label input:checked + .buy_dropdown{
  box-sizing: border-box;
  height: auto;
  opacity: 1;
}

.hidden_nav .header_nav_area {
  left: 0;
  width: 100%;
  background: #fff;
  height: fit-content;
  max-height: calc(100vh - 55px); /*dvh未対応の機種の代理スタイル*/
  max-height: calc(100dvh - 55px);
  overflow: auto;
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
}

.hidden_nav .header_nav_area ul {
  width: 100%;
  margin: 0;
  padding: 0;
}

/*-----style tri-----*/
.hidden_nav .header_nav_area ul .tri{
  margin: 0;
  display: block;
  background-color: #F6F6F6;
  border: 1px solid #D1D1D1;
  
}
.hidden_nav .header_nav_area ul .tri a{
  display: block;
  padding: 10px 35px 8px 35px;
  color: #333;
  font-size: 1.8rem;
  text-decoration: none;

  background-image: url(/assets/images/icon/icon-side-menu-b-t-sp.png);
  background-size: 10px 18px;
  background-repeat: no-repeat;
  background-position: 10px center;
}

/*-----style red-bg-----*/
.hidden_nav .header_nav_area ul .red-bg{
  margin: 0;
  display: block;
  background-color: #D71920;
}
.hidden_nav .header_nav_area ul .red-bg a{
  display: block;
  padding: 10px 10px 8px 10px;
  color: #fff;
  font-weight: 700;
  font-size: 2.0rem;
  text-decoration: none;
}

/*-----style arrow-----*/
.hidden_nav .header_nav_area ul .arrow{
  margin: 0;
  display: block;
  background-color: #D1D1D1;
}
.hidden_nav .header_nav_area ul .arrow a{
  display: block;
  padding: 10px 10px 8px 10px;
  color: #333;
  font-weight: 700;
  font-size: 2.0rem;
  text-decoration: none;

  background-image: url(/assets/images/icon/icon-side-menu-r-y-sp.png);
  background-size: 8px 18px;
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
}

/*----- style skyblue-bg -----*/
.hidden_nav .header_nav_area ul .skyblue-bg{
  margin: 0;
  padding: 12px 40px;
  display: block;
  background-color: #F0FAFC;
  color: #005295;
  font-weight: 700;
  font-size: 2.0rem;
  text-decoration: none;
}
.hidden_nav .header_nav_area ul .skyblue-bg .ttl{
  border-bottom: 2px solid #005295;
}
.hidden_nav .header_nav_area ul .skyblue-bg .phone{
  font-size: 3.0rem;
}

.gray_bg.on{
  position: fixed;
  z-index: 998;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  pointer-events: none;
}


/*---------------
  sidebar-and-main
---------------*/
.sidebar-and-main{
  display: flex;
  gap: 10px;
}
.sidebar{
  width: 270px;
  flex-shrink: 0;
}
.main-area{
  width: 100%;
}


/*---------------
  sidebar
---------------*/
.sidebar{
  font-size: 2.2rem;
  font-weight: 600;
}
.sidebar-inner{
  position: sticky;
  top: 80px;
}
@media screen and (max-width:1110px) {
  .sidebar{
    margin-left: 10px;
  }
}
.sidebar .btn-side{
  text-decoration: none;
}

/* 白い島の設定 */
.sidebar .island{
  background-color: #fff;
  border-radius: 6px;
  padding: 20px 13px;
  box-shadow: 0 0 9px rgba(0,0,0,0.16);
}
.sidebar .island.main-guidance{
  border: 1px solid #D71920;
}
.sidebar .island.sub-guidance{
  border: 1px solid #D1D1D1;
}

/* 白い島の設定 ul>liの形のもの独自スタイル */
.sidebar ul.island{
  padding: 0;
}
.sidebar ul.island li{
  padding-right: 20px;
  padding-left: 20px;

  pointer-events: none;
}
.sidebar ul.island li:not(:has(.now-page)):hover{
  background-color: #FFEFEF;
}
.sidebar ul.island>li .btn-side{
  display: block;
  padding-top: 12px;
  padding-bottom: 8px;

  pointer-events: auto;
}
.sidebar ul.island>li .btn-side.now-page{
  color: #d71920;
}
.sidebar ul.island>li:first-of-type{
  padding-top: 8px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}
.sidebar ul.island>li:last-of-type{
  padding-bottom: 8px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.sidebar ul.island>li:not(:last-of-type) .btn-side{
  border-bottom: 1px solid #B1B1B1;
}
.sidebar ul.island>li:not(:last-of-type) .btn-side.now-page{
  border-color: #d71920;
}

/* アイコン */
.sidebar .icon-right-triangle{
  padding-left: 22px;

  background-image: url(/assets/images/icon/icon-side-menu-b-t-pc.png);
  background-size: 8px 12px;
  background-repeat: no-repeat;
  background-position: center left;
}
.sidebar .icon-right-triangle.btn-side.now-page{
  background-image: url(/assets/images/icon/icon-side-menu-b-t-pc-1.png);
}
.sidebar .icon-right-triangle:hover{
  background-image: url(/assets/images/icon/icon-side-menu-b-t-pc-1.png);
}

.sidebar .icon-right-arrow{
  background-image: url(/assets/images/icon/icon-side-menu-b-y-pc.png);
  background-size: 6px 15px;
  background-repeat: no-repeat;
  background-position: center right;
}
.sidebar .icon-right-arrow:hover{
  background-image: url(/assets/images/icon/icon-side-menu-r-y-pc.png);
}


/*---------------
  procedures
---------------*/
.procedures-wrapper{
  z-index: 2;
  position: sticky;
  top: 50px;
  background-color: #f6f6f6;
  padding-top: 30px !important;
  padding-bottom: 10px !important;
}
.procedures{
  display: flex;
  row-gap: 15px;
}
.procedures .procedure{
  width: 50%;
  background-color: #D1D1D1;
  clip-path: polygon(calc(100% - 23px) 0 , 100% 50%, calc(100% - 23px) 100%, 0 100%, 23px 50%, 0 0);
}
.procedures .procedure:has(a):hover{
  opacity: 0.5;
}
.procedures .procedure > a{
  text-decoration: none;
}
.procedures .procedure > a:hover{
  color: inherit;
}
.procedures .procedure:first-of-type{
  clip-path: polygon(calc(100% - 23px) 0 , 100% 50%, calc(100% - 23px) 100%, 0 100%, 0 0);
  border-radius: 6px;
}
.procedures .procedure:first-of-type .txt{
  padding-left: 0;
}
.procedures .procedure.black{
  background-color: #333;
  color: #fff;
}
.procedures .procedure.dark-gray{
  background-color: #777;
  color: #fff;
}
.procedures .procedure .txt{
  padding: 9px 23px 7px 23px;
  text-align: center;
  font-weight: 500;
  line-height: 1.2;
  font-size: 2.4rem;
}
.procedures .procedure .txt .num{
  font-size: 3.0rem;
}

@media screen and (max-width: 768px) {
  .procedures-wrapper{
    box-shadow: 0 5px 10px rgba(0,0,0,0.15);
    background-color: #fff;
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .procedures{
    flex-wrap: wrap;
  }
  .procedures .procedure{
    position: relative;
    margin-right: 14px;
    margin-left: 14px;
  }
  .procedures .procedure,
  .procedures .procedure:first-of-type{
    width: calc(33% - 28px);
    clip-path: none;
    border-radius: 0;
  }
  .procedures .procedure::before{
    content: "";
    width: 18px;
    height: 100%;
    position: absolute;
    top: 0;
    left: -18px;
    background-color: #d1d1d1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 14px 50%);
  }
  .procedures .procedure::after{
    content: "";
    width: 18px;
    height: 100%;
    position: absolute;
    top: 0;
    right: -18px;
    background-color: #d1d1d1;
    clip-path: polygon(0 0, 4px 0, 18px 50%, 4px 100%, 0 100%);
  }
  .procedures .procedure:first-of-type .txt,
  .procedures .procedure:nth-of-type(4) .txt,
  .procedures .procedure:nth-of-type(7) .txt{
    padding-right: 8px;
  }
  .procedures .procedure:first-of-type::before,
  .procedures .procedure:nth-of-type(4)::before,
  .procedures .procedure:nth-of-type(7)::before{
    clip-path: none;
  border-radius: 6px 0 0 6px;
  }
  .procedures .procedure.black::before,
  .procedures .procedure.black::after{
    background-color: #333;
  }
  .procedures .procedure.dark-gray::before,
  .procedures .procedure.dark-gray::after{
    background-color: #777;
  }
  .procedures .procedure .txt{
    padding: 9px 0 7px 0;
    font-size: 1.6rem;
  }
  .procedures .procedure .txt .num{
    font-size: 2.0rem;
  }
}


/*---------------
  guide-area
---------------*/
.guide-cards{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.guide-cards .card{
  position: relative;
  width: calc(33% - 2px);
  min-height: 175px;
  border: 1px solid #D71920;
  border-radius: 6px;
  background-color: #fff;
  padding: 20px 40px;
  text-decoration: none;

  background-image: url(/assets/images/icon/icon-menu-b-t.png);
  background-size: 30px auto;
  background-repeat: no-repeat;
  background-position: right 10px bottom 10px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.guide-cards .card:hover{
  background-color: #FFEFEF;
  background-image: url(/assets/images/icon/icon-menu-r-t.png);
}
.guide-cards .card.now-page{
  background-color: #fff;
  background-image: url(/assets/images/icon/icon-menu-r-t.png);
}
/*.guide-cards .card::before{
  position: absolute;
  content: url(/assets/images/icon/icon-menu-b-t.png);
  width: 30px;
  bottom: 10px;
  left: 10px;
}*/
.guide-cards .card .txt{
  text-align: center;
  color: #6F0000;
  font-size: 2.2rem;
  line-height: 1.14;
  font-weight: 700;
}
.guide-cards .card:hover .txt,
.guide-cards .card.now-page .txt{
  color: #D71920;
}
/*各種アイコンデザイン設定 ここから*/
.guide-cards .card::after{
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
}
.guide-cards .card.card--cart::after{
  background-image: url(/assets/images/icon/icon-cart.svg);
  width: 80px;
  height: 65px;
}
.guide-cards .card.card--cart:hover::after,
.guide-cards .card.card--cart.now-page::after{
  background-image: url(/assets/images/icon/icon-cart-red.svg);
}
.guide-cards .card.card--jpy::after{
  background-image: url(/assets/images/icon/icon-jpy.svg);
  width: 70px;
  height: 70px;
}
.guide-cards .card.card--jpy:hover::after,
.guide-cards .card.card--jpy.now-page::after{
  background-image: url(/assets/images/icon/icon-jpy-red.svg);
}
.guide-cards .card.card--track::after{
  background-image: url(/assets/images/icon/icon-track.svg);
  width: 75px;
  height: 57px;
}
.guide-cards .card.card--track:hover::after,
.guide-cards .card.card--track.now-page::after{
  background-image: url(/assets/images/icon/icon-track-red.svg);
}
.guide-cards .card.card--cancel::after{
  background-image: url(/assets/images/icon/icon-cacel.svg);
  width: 75px;
  height: 75px;
}
.guide-cards .card.card--cancel:hover::after,
.guide-cards .card.card--cancel.now-page::after{
  background-image: url(/assets/images/icon/icon-cacel-red.svg);
}
.guide-cards .card.card--product::after{
  background-image: url(/assets/images/icon/icon-product.svg);
  width: 70px;
  height: 70px;
}
.guide-cards .card.card--product:hover::after,
.guide-cards .card.card--product.now-page::after{
  background-image: url(/assets/images/icon/icon-product-red.svg);
}
/*各種アイコンデザイン設定 ここまで*/
@media screen and (max-width: 768px) {
  .guide-cards{
    gap: 10px
  }
  /*各種アイコンデザイン設定 ここから*/
  .guide-cards .card{
    width: calc(50% - 5px);
    min-height: 150px;
    background-position: right 5px bottom 5px;
    padding: 18px 20px 17px 20px;
  }
  .guide-cards .card .txt{
    font-size: 20px;
  }
  .guide-cards .card.card--cart::after{
    width: 60px;
    height: 52px;
  }
  .guide-cards .card.card--jpy::after{
    width: 60px;
    height: 60px;
  }
  .guide-cards .card.card--track::after{
    width: 60px;
    height: 46px;
  }
  .guide-cards .card.card--cancel::after{
    width: 60px;
    height: 60px;
  }
  .guide-cards .card.card--product::after{
    width: 55px;
    height: 55px;
  }
  /*各種アイコンデザイン設定 ここまで*/
}


/*---------------
  inquiry
---------------*/
.inquiry-wrapper{
  display: flex;
  background-color: #fff;
  border: 1px solid #777;
  border-radius: 6px;
  padding: 30px 0;
}
.inquiry-wrapper .ttl-area{
  width: 33%;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
.inquiry-wrapper .ttl-area .icon{
  margin-top: 22px;
}
.inquiry-wrapper .txt-area{
  width: 67%;
  padding-right: 40px;
  padding-left: 10px;
  font-size: 2.0rem;
}
.inquiry-wrapper .txt-area .business-hour{
  letter-spacing: -0.04em;
}
.inquiry-wrapper .txt-area .label{
  background-color: #777777;
  border-radius: 6px;
  margin-right: 15px;
  padding: 3px 10px 0;
  font-size: 2.0rem;
  font-weight: 500;
  color: #fff;
}
.inquiry-wrapper .txt-area .mail{
  color: #005295;
  font-size: 3.0rem;
}
@media screen and (max-width: 768px) {
  .inquiry-wrapper{
    flex-direction: column;
    padding: 22px 26px 20px;
  }
  .inquiry-wrapper .ttl-area{
    width: 100%;
  }
  .inquiry-wrapper .txt-area{
    width: 100%;
    text-align: center;
    margin-top: 10px;
    padding: 0;
  }
  .inquiry-wrapper .txt-area .label{
    margin-right: 5px;
    padding: 4px 8px 2px;
    font-size: 1.6rem;
  }
  .inquiry-wrapper .txt-area .mail{
    font-size: 2.0rem;
  }
}


/*---------------
  procedure-table
---------------*/
.procedure-table .tr{
  display: flex;
}
.procedure-table .tr .th{
  position: relative;
  width: 15%;
  background-color: #D1D1D1;
  border-right: solid 1px #333333;
  border-left: solid 1px #333333;

  display: flex;
  justify-content: center;
  align-items: center;
}
.procedure-table .tr:not(:last-of-type) .th::after{
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  z-index: 1;
  content: "";
  width: 100%;
  height: 18px;
  background-color: #333;
  clip-path: polygon(0 0, 50% calc(100% - 1px), 100% 0, 100% 1px, 50% 100%, 0 1px);
}
.procedure-table .tr:nth-of-type(n+2):not(:last-of-type) .th .ttl{
  position: relative;
  top: 14px;
}
.procedure-table .tr:first-of-type .th{
  border-top: solid 1px #333333;
  border-top-left-radius: 6px;
}
.procedure-table .tr:last-of-type .th{
  border-bottom: solid 1px #333333;
  border-bottom-left-radius: 6px;
}
.procedure-table .tr .td{
  width: 85%;
  background-color: #fff;
  border-right: solid 1px #333333;
  border-bottom: solid 1px #333333;
  padding: 15px;
}
.procedure-table .tr:first-of-type .td{
  border-top: solid 1px #333333;
  border-top-right-radius: 6px;
}
.procedure-table .tr:last-of-type .td{
  border-bottom-right-radius: 6px;
}
@media screen and (max-width: 768px) {
  .procedure-table .tr .th{
    width: 30%;
  }
  .procedure-table .tr .td{
    width: 70%;
  }
}