このページの基本カラー

:root {
 --main-color: #133967;
 --sub-color: #C4C4C4;
}
  • テキストが入ります。テキストが入ります。
  • テキストが入ります。テキストが入ります。

HTML

  • テキストが入ります。テキストが入ります。
  • テキストが入ります。テキストが入ります。

CSS

.list_style01{
  padding: 0;
  list-style: none;
}
.list_style01 li{
  position: relative;
  padding: 10px 15px 10px 35px;
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: bold;
  border-bottom: 1px solid rgba(21,66,144, 0.5);
}

.list_style01 li:after,
.list_style01 li:before{
  content: "";
  position: absolute;
  border-radius: 50%;
}
.list_style01 li:before{
  top: 15px;
  left: 2px;
  width: 17px;
  height: 17px;
  background: rgba(21,66,144,0.5);

  transform: translateY(-50%);
}
.list_style01 li:after{
  top: 15px;
  left: 10px;
  width: 14px;
  height: 14px;
  background: rgba(21,66,144,0.3);
}
  • テキストが入ります。テキストが入ります。
  • テキストが入ります。テキストが入ります。

HTML

  • テキストが入ります。テキストが入ります。
  • テキストが入ります。テキストが入ります。

CSS

.list_style02 {
 counter-reset: number;
 list-style-type: none!important;
 padding: 35px 35px;
 border: solid 2px var(--main-color);
 margin: 0 0 40px;
 background: #fff;
 display: flex;
 flex-direction: column;
 gap: 20px 0;
}

.list_style02:last-child {
 margin-bottom: 0;
}

.list_style02 li {
 border-bottom: dashed 1px var(--main-color);
 padding: 10px 10px 20px 40px;
 position: relative;
}

.list_style02 li:before{
 position: absolute;
 counter-increment: number;
 content: counter(number);
 display: inline-block;
 background: var(--main-color);
 color: #fff;
 font-weight: bold;
 font-size: 14px;
 border-radius: 50%;
 left: 0;
 width: 25px;
 height: 25px;
 line-height: 25px;
 text-align: center;
 top: 10px;
}


@media (max-width : 810px){
.list_style02 {
 padding: 35px 20px;
}
 
}
  • テキストが入ります。テキストが入ります。テキストが入ります。
    • テキストが入ります。テキストが入ります。テキストが入ります。
    • テキストが入ります。テキストが入ります。テキストが入ります。
  • テキストが入ります。テキストが入ります。テキストが入ります。
    • テキストが入ります。テキストが入ります。テキストが入ります。
    • テキストが入ります。テキストが入ります。テキストが入ります。

HTML

  • テキストが入ります。テキストが入ります。テキストが入ります。
    • テキストが入ります。テキストが入ります。テキストが入ります。
    • テキストが入ります。テキストが入ります。テキストが入ります。
  • テキストが入ります。テキストが入ります。テキストが入ります。
    • テキストが入ります。テキストが入ります。テキストが入ります。
    • テキストが入ります。テキストが入ります。テキストが入ります。

CSS

.list_style03_first {
 margin: 0 0 20px;
}

.list_style03_first:last-child {
 margin: 0;
}

.list_style03_first > li{
 position: relative;
 padding: 0 0 0 15px;
 font-weight: bold;
 line-height: 2.0;
 margin: 0 0 20px;
}

.list_style03_first > li:last-child {
 margin: 0;
}

.list_style03_first > li:before {
 content: '';
 position: absolute;
 top: 15px;
 left: 0;
 background: var(--main-color);
 width: 8px;
 height: 3px;
}

.list_style03_first > li span.list_style03_parent {
 display: block;
 margin:0 0 15px;
}

.list_style03_first > li span.list_style03_parent:last-child {
 margin:0;
}

.list_style03_second> li{
 position: relative;
 padding: 0 0 0 15px;
 font-weight: normal;
 line-height: 2.0;
}

.list_style03_second:last-child {
 margin: 0;
}

.list_style03_second > li:before {
 content: '';
 position: absolute;
 top: 15px;
 left: 0;
 background: #707070;
 width: 6px;
 height: 6px;
 border-radius: 50%;
}
  • テキストが入ります。テキストが入ります。
  • テキストが入ります。テキストが入ります。
  • テキストが入ります。テキストが入ります。
  • テキストが入ります。テキストが入ります。

HTML

  • テキストが入ります。テキストが入ります。
  • テキストが入ります。テキストが入ります。
  • テキストが入ります。テキストが入ります。
  • テキストが入ります。テキストが入ります。

CSS

.list_style04{
}

.list_style04 li{
 padding: 0 0 10px 30px;
 position: relative;
 left: 0;
 box-sizing: border-box;
 margin: 0 0 10px;
}

.list_style04 li:last-child{
 margin: 0;
}

.list_style04 li:before{
content: '';
position: absolute;
background: url(../img/common/check.png) left top 5px no-repeat;
width: 20px;
height: 100%;
left: 0;
background-size: 20px;
}
  • テキストが入ります。テキストが入ります。
  • テキストが入ります。テキストが入ります。

HTML

  • テキストが入ります。テキストが入ります。
  • テキストが入ります。テキストが入ります。

CSS

.list_style05{
 counter-reset: number;
 list-style-type: none!important;
 margin: 0 0 40px;
}

.list_style05:last-child {
 margin-bottom: 0;
}

.list_style05 li {
 padding: 10px 10px 10px 50px;
 position: relative;
 margin: 0 0 20px;
}

.list_style05 li:last-child {
 margin: 0;
}

.list_style05 li:before{
 position: absolute;
 counter-increment: number;
 content: counter(number);
 display: inline-block;
 background: var(--main-color);
 color: #fff;
 font-weight: 500;
 font-size: 20px;
 font-size: 2.0rem;
 left: 0;
 width: 35px;
 height: 35px;
 border-radius: 5px;
 line-height: 35px;
 text-align: center;
 top: 5px;
}
.list_style05 li:last-of-type {
  border-bottom: none;
}
  • テキストが入ります。
  • テキストが入ります。
  • テキストが入ります。
  • テキストが入ります。

HTML

  
  • テキストが入ります。
  • テキストが入ります。
  • テキストが入ります。
  • テキストが入ります。

CSS

.list_style06 li {
  position: relative;
  padding: 0 0 0 15px;
  font-weight: bold;
  line-height: 2.0;
}

.list_style06 li:before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  background: var(--main-color);
  width: 10px;
  height: 10px;
  border-radius:50%;
}
  • タイトルが入ります。

    テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。

  • タイトルが入ります。

    テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。

  • タイトルが入ります。

    テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。

  • タイトルが入ります。

    テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。

  • タイトルが入ります。

    テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。

  • タイトルが入ります。

    テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。

HTML

  • タイトルが入ります。

    テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。

  • タイトルが入ります。

    テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。

  • タイトルが入ります。

    テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。

  • タイトルが入ります。

    テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。

  • タイトルが入ります。

    テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。

  • タイトルが入ります。

    テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。テキストが入ります。

CSS

.list_style08 {
 counter-reset: number;
 display: flex;
 flex-direction: column;
}
 
.list_style08:last-child {
 margin-bottom: 0;
}
 
.list_style08 > * {
  position: relative;
  padding: 25px 30px;
  border-width: 1px 0 0 0;
  border-style: solid;
  border-color: #B9B9B9;
}
 
.list_style08 > *:last-child {
  border-width: 1px 0 1px 0;
}
 
.list_style08_box {
 position: relative;
 padding: 0 0 0 80px
}

.list_style08_box:before{
 content: counter(number);
 counter-increment: number;
 position: absolute;
 top: 50%;
 left: 0;
 transform: translateY(-50%);
 display: flex;
 align-items: center;
 justify-content: center;
 background: var(--main-color);
 color: #fff;
 font-weight: bold;
 font-size: 24px;
 font-size: 2.4rem;
 border-radius: 50%;
 width: 50px;
 height: 50px;
 text-align: center;
}

.list_style08_tit {
 font-size: 24px;
 font-size: 2.4rem;
 margin: 0 0 10px;
 color: var(--main-color); 
}

.list_style08_tit:last-child {
 margin: 0;
}

.list_style08_txt {
 font-size: 18px;
 font-size: 1.8rem;
}
 
@media (max-width : 810px){

.list_style08_tit {
 font-size: 22px;
 font-size: 2.2rem;
}  
 
.list_style08_txt {
 font-size: 16px;
 font-size: 1.6rem;
}
 
}

@media (max-width : 640px){

.list_style08 > * {
  padding: 25px 10px;
} 
 
.list_style08_box {
  padding: 0 0 0 50px;
} 
 
.list_style08_box:before {
 width: 40px;
 height: 40px;
 font-size: 20px;
 font-size: 2.0rem;
 top: 0;
 transform: none;
}
 
.list_style08_tit {
 font-size: 20px;
 font-size: 2.0rem;
}  
}