/*
==========================================================================
  Object
    Component - grid / button / ...
    Utility - clearfix / display / margin / padding ...
========================================================================== */

/* Component
----------------------------------------------------------------- */
/*** Button */
.c-btn {
  width: 325px;
  margin: 0 auto;
}
.c-btn .c-btn_detail {
  position: relative;
  text-align: center;
  padding: 20px;
  border: 2px solid rgb(255, 255, 255);
  color: #fff;
  font-weight: bold;
}
.c-btn .c-btn_detail::after {
  position: absolute;
  /* font-family: "Font Awesome 5 Free";
  content: "\f101"; */
  content: "\0bb";
  -webkit-font-smoothing: antialiased;
  font-size: 24px;
  top: 20%;
  right: 10px;
  color: #fff;
}

.c-page-link {
  position: relative;
  padding: 20px;
  font-size: 16px;
  text-align: center;
}
.c-page-link::after {
  position: absolute;
  content: "\0bb";
  top: 20%;
  right: 5px;
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .c-btn {
    max-width: 100%;
    margin: 0 auto;
  }
  .c-btn .c-btn_detail {
    position: relative;
    padding: 15px;
    border: 2px solid rgb(255, 255, 255);
  }
  .c-btn .c-btn_detail::after {
    position: absolute;
    top: 10%;
    right: 10px;
  }
}

/*** Table */
.c-main-d-list {
  margin-bottom: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.c-main-d-list__ttl {
  width: 15%;
  padding: 0 0 15px;
  font-weight: bold;
}
.c-main-d-list__data {
  width: 85%;
  padding: 0 0 15px;
}

@media screen and (max-width: 768px) {
  .c-main-d-list__ttl {
    width: 100%;
    padding: 4% 0 2%;
    font-size: 3vw;
    border: none;
  }
  .c-main-d-list__data {
    width: 100%;
    padding: 2% 0;
    font-weight: 500;
    font-size: 3vw;
  }
}

/* position */
.c-left {
  left: 0;
  margin-left: auto;
  text-align: left;
}

.c-right {
  right: 0;
  margin-right: auto;
  text-align: right;
}

.c-center {
  text-align: center;
  margin: 0 auto;
}

/* color */
.c-mainColor_blue {
  color: #006cab;
}
.c-bg_mainColor_blue {
  background-color: #006cab;
}
.c-bg_lightgray {
  background-color: #eff3f7;
}
.bg-red {
  background-color: #da0011;
}
.c-yellow {
  color: #f2d03b;
}
.c-green {
  color: #009944;
}
.c-blue {
 color: #073190;
}
.c-red {
 color: #e60012;
}
.c-gray {
  color: #737373;
}
.c-red_grd {
  background-image: -moz-linear-gradient( -115deg, rgb(173,1,9) 0%, rgb(212,2,11) 100%);
  background-image: -webkit-linear-gradient(-115deg, rgb(173,1,9) 0%, rgb(212,2,11) 100%);
  background-image: -ms-linear-gradient( -115deg, rgb(173,1,9) 0%, rgb(212,2,11) 100%);
  background-image: linear-gradient( -115deg, rgb(173,1,9) 0%, rgb(212,2,11) 100%);
}
.c-orange_grd {
  background-image: -moz-linear-gradient( 115deg, rgb(245,161,0) 0%, rgb(244,189,83) 100%);
  background-image: -webkit-linear-gradient( 115deg, rgb(245,161,0) 0%, rgb(244,189,83) 100%);
  background-image: -ms-linear-gradient( 115deg, rgb(245,161,0) 0%, rgb(244,189,83) 100%);
  background-image: linear-gradient( 115deg, rgb(245,161,0) 0%, rgb(244,189,83) 100%);
}

.c-blue_grd {
  background-image: -moz-linear-gradient(136deg, rgb(45,98,134) 0%, rgb(0,117,180) 100%);
  background-image: -webkit-linear-gradient(136deg, rgb(45,98,134) 0%, rgb(0,117,180) 100%);
  background-image: -ms-linear-gradient(136deg, rgb(45,98,134) 0%, rgb(0,117,180) 100%);
  background-image: linear-gradient(136deg, rgb(45,98,134) 0%, rgb(0,117,180) 100%);
}

/*layer*/
.layer_blue {
  position: relative;
  z-index: -1;
}

.layer_blue::after {
  position: absolute;
  z-index: 0;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 71, 157, 0.8);
}

/* border */
.c-border-btm_gray {
  border-bottom: 1px solid #d2d2d2;
}

/* pattern */
.blend_softlight {
	mix-blend-mode: soft-light;
}
.pt_bgpattern {
	background-color: #006cab;
}
.pt_bgpattern::after {
	position: absolute;
	content: '';
	top: 0;
	height: 100%;
	width: 100%;
	display: block;
	background-image:
	-webkit-linear-gradient(transparent 80%, rgba(0, 108, 171, 0.3) 80%, rgba(0, 108, 171, 0.3) 100%),
	-webkit-linear-gradient(0deg, transparent 80%,rgba(0, 108, 171, 0.3) 80%, rgba(0, 108, 171, 0.3) 100%);
	background-image:
	linear-gradient(transparent 80%, rgba(0, 108, 171, 0.3) 80%, rgba(0, 108, 171, 0.3) 100%),
	linear-gradient(90deg, transparent 80%, rgba(0, 108, 171, 0.3) 80%, rgba(0, 108, 171, 0.3) 100%);
	-webkit-background-size: 5px 5px;
	background-size: 5px 5px;
}

/* label */
.u-label {
  display: inline-block;
  margin: 0 10px 0 0;
  padding: 10px 25px;
  border: 1px solid #00479d;
  color: #00479d;
}

@media screen and (max-width: 768px) {
  .u-label {
    padding: 5px 15px;
    font-size: 14px;
  }
}

/* circre */
.c-circle::before {
	position: absolute;
	content: "";
  border-width: 5px;
  border-color: rgb(0, 108, 171);
  border-style: solid;
  border-radius: 50%;
  position: absolute;
  left: 333px;
  top: 4360px;
  width: 10px;
  height: 10px;
  z-index: 10;
}

/* traiangle */
.c-traiangle::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 17.3px 10px 0 10px;
  border-color: #e60012 transparent transparent transparent;
}

/* underline */
.c-underline {
  background: -webkit-linear-gradient(transparent 70%, #f8e79d 0%);
  background: -moz-linear-gradient(transparent 70%, #f8e79d 0%);
  background: -ms-linear-gradient(transparent 70%, #f8e79d 0%);
  background: linear-gradient(transparent 70%, #f8e79d 0%);
}

/* arrow*/
.icon-arrow-radius {
  position: relative;
}

.icon-arrow-radius::after {
  position:absolute;
  content: "";
  z-index: 2;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  width: 24px;
  height: 24px;
  background: url(../image/materials/icon-arrow-radius.png) no-repeat;
}

@media screen and (max-width: 768px) {
  .icon-arrow-radius::after {
    bottom: -25px;
  }
}


/* Utility
----------------------------------------------------------------- */
/*** Display */
.u-dp-pc {
  display: block;
}
.u-dp-sp {
  display: none;
}
.u-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .u-dp-sp {
    display: block;
  }
  .u-dp-pc {
    display: none;
  }
}

/*** Margin */
 .u-mb10 {
    margin-bottom: 10px;
  }
  .u-mb20 {
    margin-bottom: 20px;
  }
  .u-mb30 {
    margin-bottom: 30px;
  }
  .u-mb40 {
    margin-bottom: 40px;
  }
  .u-mb50 {
    margin-bottom: 50px;
  }
  .u-mb60 {
    margin-bottom: 60px;
  }
  .u-mb70 {
    margin-bottom: 70px;
  }
  .u-mb80 {
    margin-bottom: 80px;
  }
  .u-mb90 {
    margin-bottom: 90px;
  }
  .u-mb100 {
    margin-bottom: 100px;
  }

@media screen and (max-width: 768px) {
  .u-mb10,
  .u-mb20 ,
  .u-mb30,
  .u-mb40,
  .u-mb50,
  .u-mb60,
  .u-mb70,
  .u-mb80,
  .u-mb90,
  .u-mb100 {
    margin-bottom: 0;
  }
   .u-mb10_sp {
    margin-bottom: 10px;
  }
  .u-mb20_sp {
    margin-bottom: 20px;
  }
  .u-mb30_sp {
    margin-bottom: 30px;
  }
  .u-mb40_sp {
    margin-bottom: 40px;
  }
  .u-mb50_sp {
    margin-bottom: 50px;
  }
  .u-mb60_sp {
    margin-bottom: 60px;
  }
  .u-mb70_sp {
    margin-bottom: 70px;
  }
  .u-mb80_sp {
    margin-bottom: 80px;
  }
  .u-mb90_sp {
    margin-bottom: 90px;
  }
  .u-mb100_sp {
    margin-bottom: 100px;
  }
}

/*** Padding */
 .u-pb10 {
    padding-bottom: 10px;
  }
  .u-pb20 {
    padding-bottom: 20px;
  }
  .u-pb30 {
    padding-bottom: 30px;
  }
  .u-pb40 {
    padding-bottom: 40px;
  }
  .u-pb50 {
    padding-bottom: 50px;
  }
  .u-pb60 {
    padding-bottom: 60px;
  }
  .u-pb70 {
    padding-bottom: 70px;
  }
  .u-pb80 {
    padding-bottom: 80px;
  }
  .u-pb90 {
    padding-bottom: 90px;
  }
  .u-pb100 {
    padding-bottom: 100px;
  }

  @media screen and (max-width: 768px) {
  .u-pb10,
  .u-pb20 ,
  .u-pb30,
  .u-pb40,
  .u-pb50,
  .u-pb60,
  .u-pb70,
  .u-pb80,
  .u-pb90,
  .u-pb100 {
    margin-bottom: 0;
  }
  .u-pb10_sp {
    margin-bottom: 10px;
  }
  .u-pb20_sp {
    margin-bottom: 20px;
  }
  .u-pb30_sp {
    margin-bottom: 30px;
  }
  .u-pb40_sp {
    margin-bottom: 40px;
  }
  .u-pb50_sp {
    margin-bottom: 50px;
  }
  .u-pb60_sp {
    margin-bottom: 60px;
  }
  .u-pb70_sp {
    margin-bottom: 70px;
  }
  .u-pb80_sp {
    margin-bottom: 80px;
  }
  .u-pb90_sp {
    margin-bottom: 90px;
  }
  .u-pb100_sp {
    margin-bottom: 100px;
  }
}
