@charset "utf-8";

dl, ol, ul {
  margin-bottom: 0;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a:hover {
  opacity: 0.5;
}

.page-break-before  {
  page-break-before:always
}

/* --------------------

extension

--------------------*/
.fw_400 { font-weight: 400;}
.fw_500 { font-weight: 500;}
.fw_700 { font-weight: 700;}

.big { font-size: 1.1em;}
.small { font-size: 0.9em;}

.lh-2 { line-height: 2;}

.pointer { cursor: pointer;}

.align-l { text-align: left;}
.align-c { text-align: center;}
.align-r { text-align: right;}

.b_shadow { box-shadow: 0 3px 3px rgba(0,0,0,0.15);}
.t_shadow { text-shadow: 0 3px 3px rgba(69,69,147,0.15);}

.u_line { text-decoration: underline;}

.red { color: #FF0000;}


/* flex設定 */
.flex {
  display: flex;
  justify-content: space-between;
}
.ai_center {
  align-items: center;
}
.ai_end {
  align-items: end;
}
.flex_start {
  display: flex;
  justify-content: flex-start;
}
.flex_end {
  display: flex;
  justify-content: flex-end;
}
.reverse {
  flex-direction: row-reverse;
}


/* position設定 */
.po-r {
  position: relative;
}
.po-a {
  position: absolute;
}


/* width設定 */
.wd10 { width: 10%;}
.wd15 { width: 15%;}
.wd20 { width: 20%;}
.wd25 { width: 25%;}
.wd30 { width: 30%;}
.wd35 { width: 35%;}
.wd40 { width: 40%;}
.wd45 { width: 45%;}
.wd50 { width: 50%;}
.wd55 { width: 55%;}
.wd60 { width: 60%;}
.wd65 { width: 65%;}
.wd70 { width: 70%;}
.wd75 { width: 75%;}
.wd80 { width: 80%;}
.wd85 { width: 85%;}
.wd90 { width: 90%;}
.wd395 { width: 95%;}
.wd100 { width: 100%;}

.mb5 { margin-bottom: 5px;}
.mb10 { margin-bottom: 10px;}
.mb20 { margin-bottom: 20px;}
.mb30 { margin-bottom: 30px;}
.mb40 { margin-bottom: 40px;}
.mb50 { margin-bottom: 50px;}

/* --------------------

  dl_table　基本

--------------------*/
.dl_table {
  display:flex;
  flex-wrap: wrap;
  border-top: none;
  flex-flow: column nowrap;
}
.dl_table dt{
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  border-top: 1px solid #ccc;
}
.dl_table dd {
  padding: 10px;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}
.dl_table dd:last-of-type {
  border-bottom: 1px solid #ccc;
}
@media (min-width: 600px) { /* Tablet */
  .dl_table {
    flex-flow: inherit;
    flex-wrap: wrap;
    border-bottom: 1px solid #ccc;
  }
  .dl_table dt{
    width: 25%;
  }
  .dl_table dd{
    width: 75%;
    border-top: 1px solid #ccc;
    border-bottom: none; 
  }
  .dl_table dd:last-of-type {
    border-bottom: none;
  }
}

