/* ========================================

ヘッダー

======================================== */

header {
  height: 70px;
  position: fixed;
  z-index: 9999;
  width: 100%;
  transition: .3s;
  background: rgba(255, 255, 255, .9);
  margin: 0px;
  padding: 0px;
}

header label, header input {
  display: none;
}

header #header_inner {
  width: 100%;
  max-width: 960px;
  margin: 0px auto 0px auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px 0px 0px 0px
}

header #header_inner h1 {
  width: 134px;
  margin: 0px;
  padding: 11px 0px 0px 0px;

}

header #header_inner h1 img {}

header #header_inner h1 img:hover {
  opacity: 0.6
}

header #header_inner #nav-drawer {
  margin: 0px;
  padding: 0px;
  width: 826px;

}

#nav-content ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

#nav-content ul li {
  width: auto;
  margin-left: 30px;
}

#nav-content ul li a {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  padding-top: 12px;
}

#nav-content ul li:nth-child(6) {
  display: none
}

#nav-content ul li:nth-child(7) {
  display: none
}

#nav-content ul li:nth-child(8) {
  display: none
}

#nav-content ul li:nth-child(9) {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 194px;

    margin-left: 41px;
}

#nav-content ul li:nth-child(9) img {
  width: 22px;
  display: block;
  margin-top: 6px;
}

#nav-content ul li:nth-child(9) p {
  width: calc(100% - 30px);
  padding: 2px 0px 0px 0px;
  margin: 0px;
  font-size: 16px;
  line-height: 21px;
  font-weight: 600;
}

#nav-content ul li:nth-child(9) p span {
  color: #ea511f;
  font-size: 24px;
  font-weight: bold
}

@media print {
  /*印刷用CSSの定義を指定する*/
  header {
    height: 70px;
    position: absolute;
    z-index: 9999;
    width: 100%;
    transition: .3s;
    background: rgba(255, 255, 255, .9);
    margin: 0px;
    padding: 0px;
  }
}


/* SP表示 ▼▼▼▼===============================================*/

@media screen and (max-width: 1024px) {
    
/*ハンバーガーメニュー ======================================*/
    
  header {
    height: 60px;
    position: fixed;
    z-index: 9999;
    width: 100%;
    transition: .3s;
    background: rgba(255, 255, 255, .9);
    margin: 0px;
    padding: 0px;
  }
  header #header_inner h1 {
    width: 150px;
    margin: 0px;
    padding: 7px 0px 0px 20px;
    box-sizing: border-box;
  }
  header #header_inner #nav-drawer {
    margin: 0px;
    padding: 0px;
    width: calc(100% - 160px);
  }
  /*チェックボックス等は非表示に*/
  .nav-unshown {
    display: none;
  }
  /*アイコンのスペース*/
  #nav-open {
    display: block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    background-repeat: no-repeat;
    cursor: pointer;
    background-position: center center;
    padding: 10px 30px 15px 15px;
    margin-left: auto;
    z-index: 200;
  }
  /*ハンバーガーアイコンをCSSだけで表現*/
  #nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 3px;
    /*線の太さ*/
    width: 25px;
    /*長さ*/
    border-radius: 3px;
    display: block;
    content: '';
    cursor: pointer;
    background-color: #ea511f;
    z-index: 9999;
    transition: .3s ease-in-out;
  }
  #nav-open span:before {
    bottom: -8px;
  }
  #nav-open span:after {
    bottom: -16px;
  }
  .nav-unshown:checked+#nav-open span {
    transform: rotate(45deg);
    width: 30px;
    top: 30px;
    right: 20px
  }
  .nav-unshown:checked+#nav-open span:before {
    transform: rotate(-90deg);
    bottom: 0px;
    width: 30px;
  }
  .nav-unshown:checked+#nav-open span:after {
    transform: rotate(-90deg);
    bottom: -20px;
    width: 30px;
    display: none
  }
  /*閉じる用の薄黒カバー*/
  #nav-close {
    display: none;
    /*はじめは隠しておく*/
    position: fixed;
    z-index: 99;
    top: 0;
    /*全体に広がるように*/
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: .3s ease-in-out;
  }
  /*中身*/
  #nav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    /*最前面に*/
    width: 80%;
    /*右側に隙間を作る（閉じるカバーを表示）*/
    max-width: 330px;
    /*最大幅（調整してください）*/
    height: 100%;
    background: #FFF;
    /*背景色*/
    transition: .3s ease-in-out;
    /*滑らかに表示*/
    -webkit-transform: translateX(105%);
    transform: translateX(105%);
    /*左に隠しておく*/
  }
  /*チェックが入ったらもろもろ表示*/
  #nav-input:checked~#nav-close {
    display: block;
    /*カバーを表示*/
    opacity: .5;
  }
  #nav-input:checked~#nav-content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    /*中身を表示（右へスライド）*/
    box-shadow: 6px 0 25px rgba(0, 0, 0, .15);
  }
  #nav-content ul {
    display: block;
    padding-top: 50px;
  }
  #nav-content ul li {
    width: 100%;
    margin-left: 0px;
  }
  #nav-content ul li a {
    padding-top: 25px;
    padding-bottom: 27px;
    position: relative;
  }
  #nav-content ul li a::after {
    position: absolute;
    width: 10%;
    height: 1px;
    bottom: 0px;
    background-color: #CCC;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  #nav-content ul li:nth-child(6) {
    display: block
  }
  #nav-content ul li:nth-child(7) {
    display: block
  }
  #nav-content ul li:nth-child(8) {
    display: block
  }
  #nav-content ul li:nth-child(9) {
    display: none;
  }
    
/* SP表示 ▲▲▲▲ ===============================================*/
    
}


/* ========================================

メイン main

======================================== */


#main {
  background: rgba(255, 255, 255, 0.5);
  background-image: url(../img/main_bg.png);
  background-repeat: repeat;
  background-position: center bottom;
  background-size: cover;
  height: 103px;
  width: 100%;
  text-align: center;
  padding-top: 100px;
}

#main p {
  margin: 0px;
  padding: 0px;
}

#main h2 {
  color: #ea511f;
  font-size: 22px;
}


/* SP表示 ▼▼▼▼ ===============================================*/

@media screen and (max-width: 600px) {
  #main {
    height: 80px;
    padding-top: 70px;
      background-size: 1000px;
   background-position: left top;    
  }
  #main.privacy {
    height: 120px;
    padding-top: 80px;
  }
  #main h2 span::after {
    content: "\A";
    white-space: pre;
  }
}

/* SP表示 ▲▲▲▲ ===============================================*/




/* ========================================

コンテンツ ベースCSS

======================================== */

#contents {
  padding: 50px 0px 80px 0px;
}

/* SP表示 ▼▼▼▼ ===============================================*/
/*1024px 以下*/

@media screen and (max-width: 1024px) {
  #contents {
    padding: 30px 20px 0px 20px;
  }
}

/* SP表示 ▲▲▲▲ ===============================================*/





/* ========================================

/*会社概要 about*/

======================================== */

.about {}

.about h3 {
  font-size: 20px;
  padding: 0px 0px 0px 12px;
  margin: 0px 0px 20px 0px;
  position: relative;
  line-height: 20px;
}

.about h3::after {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 20px;
  width: 3px;
  background-color: #ea511f;
  content: ""
}


/*480px 以下*/

@media screen and (max-width: 480px) {
    
.about { margin-bottom: 100px;}
    
  .about h3 {
    font-size: 16px;
    padding: 0px 0px 0px 10px;
    margin: 0px 0px 30px 0px;
    position: relative;
    line-height: 18px;
  }
  .about h3::after {
    position: absolute;
    top: 1px;
    left: 0px;
    height: 18px;
    width: 3px;
    background-color: #ea511f;
    content: ""
  }
}

.about h4 {
  font-size: 18px;
  padding: 0px 0px 5px 0px;
  margin: 0px 0px 10px 0px;
  position: relative;
  line-height: 20px;
  display: inline-block;
}

.about section {
  margin-bottom: 0px
}

.about section>dl {
  margin: 0px 0px 0px 0px;
  padding: 0px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #cccccc;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about section>dl:first-of-type {
  margin-bottom: 50px
}

.about section>dl:nth-of-type(2) {
  margin-bottom: 30px
}

.about section>dl:nth-of-type(3) {
  margin-bottom: 0px
}

.about section>dl>dt {
  width: 6em;
  font-weight: bold;
  border-bottom: 1px solid #CCC;
  box-sizing: border-box;
  padding: 15px 0px 15px 0px;
  margin: 0px;
}

.about section>dl>dd {
  width: calc(100% - 6em);
  border-bottom: 1px solid #CCC;
  box-sizing: border-box;
  padding: 15px 0px 15px 0px;
  margin: 0px;
}

.about section>dl>dd>dl {
  margin: 0px 0px 0px 0px;
  padding: 0px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.about section>dl>dd>dl>dt {
  width: 4em;
  font-weight: bold;
  padding: 0px 0px 10px 0px;
  margin: 0px;
}

.about section>dl>dd>dl>dd {
  width: calc(100% - 4em);
  padding: 0px 0px 10px 0px;
  margin: 0px;
}
.about section>dl>dt.privacymark_dt{align-items: center;height: 100%;display: flex; height: 105px;padding: 0px 0px 0px 0px;}
.about section>dl>dd .privacymark{display: flex; justify-content: flex-start; align-items: center; height: 72px;}
.about section>dl>dd .privacymark .privacymark_text{ height: 25px; margin-right: 20px}
.about section>dl>dd .privacymark .privacymark_img{ width: 80px;}
.about section>dl>dd .privacymark .privacymark_img img{ width: 80px;}


/*480px 以下*/

@media screen and (max-width: 480px) {
  .about h4 {
    font-size: 14px;
    padding: 0px 0px 5px 0px;
    margin: 0px 0px 10px 0px;
    position: relative;
    line-height: 20px;
    display: inline-block;
  }
  .about section {
    margin-bottom: 60px
  }
  .about section>dl {
    display: block;
    font-size: 14px;
  }
  .about section>dl>dt {
    border-bottom: none;
    padding: 15px 0px 0px 0px;
  }
  .about section>dl>dd {
    width: 100%;
    padding: 5px 0px 15px 0px;
    margin: 0px;
  }
    
.about section>dl>dt.privacymark_dt{height: auto;display: flex; padding: 15px 0px 0px 0px;}
.about section>dl>dd .privacymark{display: flex; justify-content: flex-start; align-items: center; height: 90px}
.about section>dl>dd .privacymark .privacymark_text{ height: 25px;}
.about section>dl>dd .privacymark .privacymark_img{ width: 80px;}
.about section>dl>dd .privacymark .privacymark_img img{ width: 80px;}
    
    
}



/* ========================================

/*制作の進め方 flow*/

======================================== */


.flow {}

.flow ul {
  padding: 0px 0px 0px 0px;
  margin: 0px
}

.flow ul li {
  padding: 8px 0px 40px 0px;
  margin: 0px 0px 26px 0px;
  background-image: url(../img/main_btn.svg);
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: bottom center;
  position: relative;

}

.flow ul li:last-child {
  padding: 8px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
  background-image: none
}

.flow h3 {
  padding: 0px 15px 15px 0px;
  margin: 0px 0px 0px 0px;
  position: absolute;
  line-height: 20px;
  font-size: 22px;
  top: 5px;
  background-color: #FFF
}

.flow h3 span {
  color: #ea511f
}

.flow h3 span:first-of-type {
  color: #ea511f
}

.flow h3 span:nth-child(2) {
  font-size: 30px;
  line-height: 20px;
  margin-left: 5px;
  margin-right: 5px
}

.flow ul li p {
  font-size: 16px;
  padding: 30px 25px 25px 25px;
  background-color: #f7f7f7;
  width: calc(100% - 100px);
  margin-left: auto
}


/*600px 以下*/

@media screen and (max-width: 600px) {
    .flow {
        margin-bottom: 50px;
    }
  .flow ul li {
    padding: 0px 0px 40px 0px;
    margin: 0px 0px 20px 0px;
    background-image: url(../img/main_btn.svg);
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: bottom center;
    position: relative;
  }
  .flow ul li:last-child {
    padding: 0px 0px 40px 0px;
    margin: 0px 0px 0px 0px;
    background-image: none
  }
  .flow h3 {
    font-size: 18px;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
    position: relative;
    line-height: 26px;
    top: 0px;
  }
  .flow h3 span {
    color: #ea511f
  }
  .flow h3 span:first-of-type {
    color: #ea511f
  }
  .flow h3 span:nth-child(2) {
    font-size: 30px;
    line-height: 20px;
    margin-left: 5px;
    margin-right: 5px
  }
  .flow h3 span:nth-child(2)::after {
    content: "\A";
    white-space: pre;
  }
  .flow ul li p {
    font-size: 14px;
    padding: 16px 20px 16px 20px;
    background-color: #f7f7f7;
    width: calc(100% - 40px);
    margin-left: 0px;
  }
}



/* ========================================

お問い合わせ contact

======================================== */

.contact {
  margin-bottom: 0px
}

.contact dl {
  padding: 0px;
  margin: 0px 0px 0px 0px;
  flex-wrap: wrap;
  display: flex
}

.contact dl.form_style {
  border-top: 1px solid #CCC
}

.contact dl.form_style input[type="text"] ,
.contact dl.form_style input[type="email"] {
  border: 1px solid #4D4D4D;
  border-radius: 5px;
  padding: 10px
}

.contact dl.form_style select {
  border: 1px solid #4D4D4D;
  border-radius: 5px;
  padding: 10px;

      -moz-appearance: menulist;
  -webkit-appearance: menulist;
    background-color: #FFF;
}

.contact dl.form_style dt {
  padding: 25px 0px 15px 0px;
  margin: 0px;
  font-weight: bold;
  width: 15em;
  border-bottom: 1px solid #CCC
}

/*confirm=========================*/

.contact dl.form_style_confirm dt {
  padding: 15px 0px 17px 0px;
}


.contact dl.form_style dt .hissu {
  font-size: 12px;
  color: red;
  font-weight: normal
}

.contact dl.form_style dd {
  padding: 15px 0px 15px 0px;
  margin: 0px;
  width: calc(100% - 15em);
  border-bottom: 1px solid #CCC
}

/*confirm=========================*/

.contact dl.form_style dt {
  padding: 15px 0px 17px 0px;
}



.contact dl.form_style dd dl {
  margin: 0px 0px 0px 0px;
}

.contact dl.form_style dd dt {
  padding: 5px 0px 0px 0px;
  margin: 0px 0px 15px 0px;
  font-weight: bold;
  width: 7em;
  border-bottom: none;
}

.contact dl.form_style dd dd {
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 15px 0px;
  width: calc(100% - 7em);
  border-bottom: none;
}

.contact dl.form_style dd #name {
  max-width: 20em;
  width: 100%
}

.contact dl.form_style dd #company {
  max-width: 30em;
  width: 100%
}

.contact dl.form_style dd #mailadd {
  max-width: 30em;
  width: 100%
}

.contact dl.form_style dd #url {
  max-width: 30em;
  width: 100%
}

.contact dl.form_style dd #tel01 {
  width: 5em;
  margin-right: 10px
}

.contact dl.form_style dd #tel02 {
  width: 5em;
  margin-right: 10px;
  margin-left: 10px
}

.contact dl.form_style dd #tel03 {
  width: 5em;
  margin-left: 10px
}

.contact dl.form_style textarea {
  border: 1px solid #4D4D4D;
  border-radius: 5px;
  padding: 10px;
  width: 90%
}


.contact .err{}
.contact .err input{ width: 180px; margin: 0px auto 0px auto;display: block}





/*600px 以下*/

@media screen and (max-width: 600px) {
.contact {
  margin-bottom: 80px
}
    
    
  .contact dl {
    display: block
  }
  .contact dl.form_style {
    border: none
  }
  .contact dl.form_style dt {
    width: 100%;
    border-bottom: none;
    padding: 0px 0px 0px 0px;
  }
  .contact dl.form_style dd {
    width: 100%;
    border-bottom: 1px solid #CCC;
    padding: 5px 0px 20px 0px;
    margin-bottom: 20px
  }
  .contact dl.form_style dd dl {
    margin-bottom: 0px
  }
  .contact dl.form_style dd dt {
    padding: 10px 0px 0px 0px;
    margin: 0px;
    font-weight: bold;
    width: 100%;
    border-bottom: none;
  }
  .contact dl.form_style dd dd {
    padding: 5px 0px 8px 0px;
    margin: 0px;
    width: 100%;
    border-bottom: none;
  }
  .contact dl.form_style textarea {
    border: 1px solid #4D4D4D;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
  }
  .contact dl.form_style dd #homeadd1 {
    max-width: 20em;
    width: 100%
  }
  .contact dl.form_style dd #homeadd2 {
    max-width: 20em;
    width: 100%
  }
  .contact dl.form_style dd #homeadd3 {
    max-width: 20em;
    width: 100%
  }
}

.contact p.text { padding: 30px 0px 30px 0px; margin: 0px;}

.contact p.text a {
  color: #ea511f;
  text-decoration: underline
}

.contact p.text a:hover {
  color: #333333;
  text-decoration: none
}

.contact #kojin {
  height: 280px;
  border: 1px solid #CCC;
  padding: 10px;
  overflow-y: scroll;
  margin: 0px auto 30px auto;
  width: 100%;
  max-width: 680px;
}


/*600px 以下*/

@media screen and (max-width: 600px) {
  .contact #kojin {
    width: calc(100% - 20px);
  }
}

.contact #kojin h3 {
  padding: 0px;
  margin: 0px 0px 15px 0px;
  text-align: center
}

.contact #kojin dl {
  padding: 0px;
  margin: 0px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap
}

.contact #kojin dl dt {
  padding: 0px 0px 15px 0px;
  margin: 0px;
  width: 60px;
  text-align: left;
  font-weight: bold
}

.contact #kojin dl dd {
  padding: 0px 0px 15px 0px;
  margin: 0px;
  width: calc(100% - 63px)
}

.contact #kojin dl dd .title {
  font-weight: bold
}

.contact #kojin dl dd table {
  margin-top: 10px;
  width: 100%;
  font-size: 14px;
}

.contact #kojin dl dd table th {
  text-align: left;
  width: 70px;
  background-color: #f0f0f0;
  border: 1px solid #CCC;
  vertical-align: top;
  padding: 10px
}

.contact #kojin dl dd table td {
  border: 1px solid #CCC !important;
  padding: 10px
}


/*480px 以下*/

@media screen and (max-width: 480px) {
  .contact #kojin h3 {
    padding: 0px;
    margin: 0px 0px 15px 0px;
    text-align: center;
    font-size: 14px;
  }
  .contact #kojin dl dt {
    padding: 0px 0px 0px 0px;
    margin: 0px;
    width: 100%;
    text-align: left;
    font-weight: bold
  }
  .contact #kojin dl dd {
    padding: 0px 0px 15px 0px;
    margin: 0px;
    width: 100%;
  }
}

.contact .contactAgree {
  padding: 0px 0px 0px 0px
}

.contact .contactAgree label {
  cursor: pointer;
  padding-left: 20px;
  position: relative;
  width: 120px;
  background-color: #FFF;
  border: 3px solid #ccc;
  display: block;
  margin: 0px auto 0px auto;
  height: 35px;
  padding-top: 10px;
  text-align: center;
}

.contact .contactAgree label:hover {
  color: #ea511f;
  border: 3px solid #ea511f;
}

.contact .contactAgree label::before, .contact .contactAgree label::after {
  content: "";
  display: block;
  position: absolute;
}

.contact .contactAgree label::before {
  background-color: #fff;
  border-radius: 0%;
  border: 1px solid #666;
  width: 15px;
  height: 15px;
  transform: translateY(-50%);
  top: 24px;
  left: 20px;
}

.contact .contactAgree label::after {
  border-bottom: 4px solid #ea511f;
  border-left: 4px solid #ea511f;
  opacity: 0;
  height: 8px;
  width: 16px;
  transform: rotate(-45deg);
  top: 13px;
  left: 18px;
}

.contact .contactAgree input.agr {
  display: none
}

.contact .contactAgree input:checked+label {
  border: 3px solid #ea511f;
  color: #ea511f;
  font-weight: bold
}

.contact .contactAgree input:checked+label::before {
  border: 1px solid #ea511f;
}

.contact .contactAgree input:checked+label::after {
  opacity: 1;
}

ul.two_btn {
  width: 400px;
  display: flex;
  justify-content: space-between;
  padding: 0px 0px 0px 0px;
  margin: 30px auto 0px auto;
}

ul.two_btn li {
  width: 180px
}


/*600px 以下*/

@media screen and (max-width: 600px) {
  ul.two_btn {
    width: calc(100% - 20px);
    display: block;
    justify-content: space-between;
    padding: 10px 0px 0px 0px;
    margin: 20px auto 0px auto
  }
  ul.two_btn li {
    width: 70%;
    margin: 0px auto 10px auto;
  }
}

.contact .reset {
  font-weight: bold;
  background-color: #DDDDDD;
  padding: 15px 0px 15px 0px;
  cursor: pointer;
  font-size: 15px;
  border: 1px solid #DDDDDD;
  width: 100%;
  color: #333;
  border-radius: 0px
}

.contact .reset:hover {
  background-color: #FFF;
}

.contact .is-active, .contact .confirm {
  font-weight: bold;
  background-color: #ea511f;
  padding: 16px 0px 16px 0px;
  cursor: pointer;
  border: 1px solid #ea511f;
  font-size: 15px;
  width: 100%;
  color: #FFF;
  box-sizing: border-box;
  border-radius: 0px
}

.contact .is-active:hover, .contact .confirm:hover {
  background-color: #FFF;
  color: #FF7C00;
}

.contact .is-inactive {
  padding: 17px 0px 17px 0px;
  width: 100%;
  font-weight: bold;
  border: 1px solid #CCC;
  border-radius: 0px
}

.contact .fin_btn {
  width: 200px;
  margin: 0px auto 0px auto;
}

.contact .fin_btn a {
  text-decoration: none;
  width: 100%;
  display: block;
  text-align: center;
  border-radius: 0px
}


/* ========================================

サービス内容 service

======================================== */

.service {}

.service_block {
  position: relative;
  margin-bottom: 100px
}

.service_block .title {
  position: absolute;
  background-color: #FFF;
    top: 0px;
    left: 0px;
}

.service_block .link{
    position: absolute;
    top: -110px;
    left: 0px;
display: block;
height: 30px;
width: 1px;
}

.service_block .title .title_inner {
  background-color: #FFF;
  color: #3498cb;
  text-align: left;
  font-size: 28px;
  background-repeat: no-repeat;
  font-weight: bold;
  display: block;
 position: relative;
left: -40%;
    opacity: 0;
}

.service_block .service_block_inner {
  border: 2px solid #ccc;
  padding: 30px 20px 20px 20px;
  width: calc(100% - 100px);
  margin-left: auto;
  height: auto;
  margin-top: 0px;
  font-size: 16px
}

.service_block .service_block_inner h3 {
  font-size: 18px;
  padding: 0px 0px 0px 8px;
  position: relative;
  margin: 0px;
  line-height: 18px;
  color: #ea511f;
}

.service_block .service_block_inner h3::after {
  position: absolute;
  height: 18px;
  width: 3px;
  content: "";
  background-color: #ea511f;
  display: block;
  top: 1px;
  left: 0px;
}


/* ========================================

ホームページ制作 .service_block.homepage 

======================================== */

.service_block.homepage {margin-top: 27px;  margin-bottom: 102px}

.service_block.homepage .title {
  height: auto;
  top: -30px;
  left: 0px;
  color: #3498cb;

}

.service_block.homepage .title .title_inner {
  height: 56px;
  padding: 0px 20px 20px 90px;
  background-image: url(../img/icon_homepage.svg);
  background-size: 110px;

  background-position: top -22px left -20px;
  text-align: left;
  font-size: 28px;
  background-repeat: no-repeat;
  font-weight: bold;
  display: block;
 
    line-height: 56px;

}


.service_block.homepage.ani .title .title_inner{
  animation-name: homepage;
  animation-duration: 1.0s;
    animation-delay: 0.1s;
  animation-fill-mode: forwards;
}


@keyframes homepage {
  0% {
opacity: 0;
  left: -40%;
  }
  100% {
  opacity: 1;
  left: 0px;
  }
}




.service_block.homepage .service_block_inner {
  padding: 22px 20px 20px 20px;
}


.service_block.homepage h3 {
  margin-top: 40px
}

.service_block.homepage ul {
  padding: 20px 0px 0px 20px;
  margin: 0px;
}

.service_block.homepage ul li {
  position: relative;
  display: block;
  margin-bottom: 10px;
  padding-left: 26px
}

.service_block.homepage ul li::before {
  position: absolute;
  height: 15px;
  width: 15px;
  content: "";
  background-color: #fff;
  display: block;
  top: 3px;
  left: 0px;
  border: 2px solid #ea511f;
}

.service_block.homepage ul li::after {
  position: absolute;
  height: 4px;
  width: 7px;
  content: "";
  display: block;
  top: 8px;
  left: 5px;
  border-left: 2px solid #ea511f;
  border-bottom: 2px solid #ea511f;
  transform: rotate(-45deg);
}



/* ========================================

ネットショップ制作 .service_block.ec

======================================== */

.service_block.ec { margin-bottom: 122px}


.service_block.ec .service_block_inner {
  padding: 15px 20px 20px 20px;
}

.service_block.ec .title {
  height: auto;
  top: -22px;
    
    
}

.service_block.ec .title .title_inner {
  padding: 0px 20px 20px 60px;
  background-image: url(../img/icon_cart.svg);
  background-size: 100px;
  background-position: -26px -35px;
    height: 38px;
  text-align: left;
  font-size: 28px;
  background-repeat: no-repeat;
  font-weight: bold;
  display: block;
    width: 260px;
}

.service_block.ec.ani .title .title_inner{
  animation-name: ec;
  animation-duration: 1.0s;
  animation-fill-mode: forwards;
}


@keyframes ec {
  0% {
opacity: 0;
  left: -40%;
  }
  100% {
  opacity: 1;
  left: 0px;
  }
}



.service_block.ec h3 {
  margin-top: 40px
}

.service_block.ec .ec_work_content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 0px;
}

.service_block.ec .ec_work_content:last-child {
  padding-bottom: 0px;
}

.service_block.ec .ec_work_content h4 {
  padding: 0px;
  margin: 0px;
  width: 4em
}

.service_block.ec .ec_work_content ul {
  padding: 0px;
  margin: 0px;
  width: calc(100% - 4.5em)
}

.service_block.ec .ec_work_content ul li {
  display: inline-block;
  background-color: #fff8dc;
  font-size: 14px;
  padding: 3px 6px 3px 6px;
  margin-right: 10px;
  margin-bottom: 10px
}



/* ========================================

WordPress .service_block.wp

======================================== */

.service_block.wp {  margin-bottom: 100px}

.service_block .link{
    position: absolute;
    top: -120px;
    left: 0px;
display: block;
height: 30px;
width: 1px;
}

.service_block.wp .title {
  height: auto;
  top: -42px;
}

.service_block.wp .title .title_inner {
  padding: 0px 20px 20px 80px;
  background-image: url(../img/icon_wp.svg);
  background-size: 100px;
  background-color: #FFF;
  background-position: -15px -5px;
height: 67px;
    line-height: 72px;
  text-align: left;
  font-size: 28px;
  background-repeat: no-repeat;
  font-weight: bold;
  display: block;
  position: relative;
}

.service_block.wp.ani .title .title_inner{
  animation-name: ec;
  animation-duration: 1.0s;
  animation-fill-mode: forwards;
}

@keyframes wp {
  0% {
opacity: 0;
  left: -40%;
  }
  100% {
  opacity: 1;
  left: 0px;
  }
}

.service_block.wp .service_block_inner {
  padding: 21px 20px 20px 20px;
}

.service_block.wp h3 {
  margin-top: 40px
}

.service_block.wp ul {
  padding: 20px 0px 0px 20px;
  margin: 0px;
}

.service_block.wp ul li {
  position: relative;
  display: block;
  margin-bottom: 10px;
  padding-left: 26px
}

.service_block.wp ul li::before {
  position: absolute;
  height: 15px;
  width: 15px;
  content: "";
  background-color: #fff;
  display: block;
  top: 3px;
  left: 0px;
  border: 2px solid #ea511f;
}

.service_block.wp ul li::after {
  position: absolute;
  height: 4px;
  width: 7px;
  content: "";
  display: block;
  top: 8px;
  left: 5px;
  border-left: 2px solid #ea511f;
  border-bottom: 2px solid #ea511f;
  transform: rotate(-45deg);
}



/* ========================================

SEO対策 .service_block.seo

======================================== */

.service_block.seo {  margin-bottom: 107px}

.service_block.seo h3 {
  margin-top: 40px
}

.service_block.seo .title {
  height: auto;
  top: -22px;
}

.service_block.seo .service_block_inner {
  padding: 20px 20px 20px 20px;
}


.service_block.seo .title .title_inner {
  padding: 0px 20px 20px 55px;
  background-image: url(../img/icon_seo.svg);
  background-size: 100px;
  background-color: #FFF;
  background-position: -27px -27px;
height: 44px;
  text-align: left;
  font-size: 28px;
  background-repeat: no-repeat;
  font-weight: bold;
  display: block;
  position: relative;
}

.service_block.seo.ani .title .title_inner{
  animation-name: seo;
  animation-duration: 1.0s;
  animation-fill-mode: forwards;
}


@keyframes seo {
  0% {
opacity: 0;
  left: -40%;
  }
  100% {
  opacity: 1;
  left: 0px;
  }
}


.service_block.seo .seo_point_list {
  padding-top: 20px;
}

.service_block.seo .seo_point_list li {
  background-repeat: no-repeat;
  background-position: top:0px;
  left: 0px;
  padding-left: 80px;
  margin-bottom: 20px;
  background-size: 60px;
}

.service_block.seo .seo_point_list li:first-of-type {
  background-image: url(../img/seo_001.png);
}

.service_block.seo .seo_point_list li:nth-child(2) {
  background-image: url(../img/seo_002.png);
}

.service_block.seo .seo_point_list li:nth-child(3) {
  background-image: url(../img/seo_003.png);
}

.service_block.seo .seo_point_list li:last-child {
  margin-bottom: 0px;
  padding-bottom: 15px;
  background-image: url(../img/seo_004.png);
}

.service_block.seo .seo_point_list li h4 {
  padding: 0px;
  margin: 0px
}

.service_block.seo .seo_service_list {
  padding: 15px 0px 0px 0px;
  margin: 0px;
  width: calc(100% - 4.5em)
}

.service_block.seo .seo_service_list li {
  display: inline-block;
  background-color: #fff8dc;
  font-size: 14px;
  padding: 3px 6px 3px 6px;
  margin-right: 10px;
  margin-bottom: 10px
}


/* ========================================

マルチデバイス対応 .service_block.device

======================================== */

.service_block.device {  margin-bottom: 105px}

.service_block.device .title {
  height: auto;
  top: -27px;
}

.service_block.device .service_block_inner {
  padding: 20px 20px 20px 20px;
}

.service_block.device .title .title_inner {
  padding: 0px 20px 20px 80px;
  background-image: url(../img/icon_mobile.svg);
  background-size: 90px;
  background-color: #FFF;
  background-position: -8px -17px;
height: 49px;
  text-align: left;
  font-size: 28px;
  background-repeat: no-repeat;
  font-weight: bold;
  display: block;
  position: relative;
    line-height: 50px;
}



.service_block.device.ani .title .title_inner{
  animation-name: device;
  animation-duration: 1.0s;
  animation-fill-mode: forwards;
}


@keyframes device {
  0% {
opacity: 0;
  left: -40%;
  }
  100% {
  opacity: 1;
  left: 0px;
  }
}


.service_block.device .dvice_table {
  padding-top: 15px
}

.service_block.device h3:first-of-type {
  margin-top: 20px
}

.service_block.device h3:nth-of-type(2) {
  margin-top: 40px
}

.service_block.device .dvice_merit {
  background-image: url(../img/main_btn.svg);
  background-size: 40px;
  background-position: bottom 15px center;
  background-repeat: no-repeat;
  padding-bottom: 65px;
}

.service_block.device .dvice_table h4 {
  padding: 0px;
  margin: 0px;
  font-size: 18px
}

.service_block.device .dvice_merit div {
  background-color: #F5F5F5;
  padding: 5px 15px 5px 15px;
}

.service_block.device .dvice_merit div ul {
  padding-top: 10px;
}

.service_block.device .dvice_merit div ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px
}

.service_block.device .dvice_merit div ul li::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 9px 15.6px 9px;
  border-color: transparent transparent #333 transparent;
  display: block;
  position: absolute;
  content: "";
  top: 4px;
  left: 0px;
  z-index: 9998;
}

.service_block.device .dvice_merit div ul li::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 5px 8.7px 5px;
  border-color: transparent transparent #EEEEEE transparent;
  display: block;
  position: absolute;
  content: "";
  top: 8px;
  left: 4px;
  z-index: 9999;
}

.service_block.device .dvice_merit h4 {
  color: #333333;
  border-bottom: 1px solid #333333;
  padding: 10px 10px 10px 0px
}

.service_block.device .dvice_merit2 div {
  background-color: #F0F8FF;
  padding: 5px 15px 5px 15px;
}

.service_block.device .dvice_merit2 h4 {
  color: #4169E1;
  border-bottom: 1px solid #4169E1;
  padding: 10px 10px 10px 0px
}

.service_block.device .dvice_merit2 div ul {
  padding-top: 10px;
}

.service_block.device .dvice_merit2 div ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-weight: bold
}

.service_block.device .dvice_merit2 div ul li::before {
  width: 13px;
  height: 13px;
  border-style: solid;
  border-width: 2px;
  border-radius: 10px;
  border-color: #4169E1;
  display: block;
  position: absolute;
  content: "";
  top: 4px;
  left: 0px;
  z-index: 9998;
}

.service_block.device .dvice_merit2 div ul li::after {
  width: 5px;
  height: 5px;
  border-style: solid;
  border-width: 2px;
  border-radius: 10px;
  border-color: #4169E1;
  display: block;
  position: absolute;
  content: "";
  top: 8px;
  left: 4px;
  z-index: 9998;
}


/* ========================================

WEBデザイン .service_block.webdesign

======================================== */

.service_block.webdesign {margin-bottom: 80px}

.service_block.webdesign .title {
  height: auto;
  top: -23px;
}

.service_block.webdesign .service_block_inner {
  padding: 20px 20px 20px 20px;
}

.service_block.webdesign .title .title_inner {
  padding: 0px 20px 20px 70px;
  background-image: url(../img/icon_webdesign.svg);
  background-size: 90px;
  background-color: #FFF;
  background-position: -19px -20px;
height: 45px;
  text-align: left;
  font-size: 28px;
  background-repeat: no-repeat;
  font-weight: bold;
  display: block;
  position: relative;
}

.service_block.webdesign.ani .title .title_inner{
  animation-name: webdesign;
  animation-duration: 1.0s;
  animation-fill-mode: forwards;
}


@keyframes webdesign {
  0% {
opacity: 0;
  left: -40%;
  }
  100% {
  opacity: 1;
  left: 0px;
  }
}



.service_block.webdesign h3:first-of-type {
  margin-top: 20px
}

.service_block.webdesign h3:nth-of-type(2) {
  margin-top: 40px
}

.service_block.webdesign h3:nth-of-type(3) {
  margin-top: 40px
}







/* SP表示 ▼▼▼▼ ===============================================*/
/*600px 以下*/

@media screen and (max-width: 600px) {
  .service_block {
    position: relative;
    margin-bottom: 70px
  }
  .service_block .title {
    position: absolute;
   /* border: 1px solid #CCC;*/
    font-size: 18px;
  }
    .service_block .title .title_inner{/*border: 1px solid red;*/}

  .service_block .service_block_inner {
    padding: 20px 20px 20px 20px;
    width: calc(100% - 40px);
      
    margin-left: none;
  }
  /*ホームページ制作 =========================================================================*/
    
    
  .service_block.homepage .title {
    width: 255px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
    
  .service_block.homepage .title .title_inner {
    padding: 0px 0px 0px 85px;
    background-image: url(../img/icon_homepage.svg);
    background-size: 100px;
    background-position: -15px -17px;
    text-align: left;
    font-size: 18px;
    background-repeat: no-repeat;
    font-weight: bold;
    display: block;
    position: relative;
    margin: 0px auto 0px auto;
    width: 146px;

  }
    
.service_block.homepage.ani .title .title_inner{
  animation-name: homepage;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
    
    
@keyframes homepage {
  0% {
opacity: 0;
  top:-30px;
  left: 0%;
  }
  100% {
  top:0px;
  opacity: 1;
  left: 0px;
  }
}

  .service_block.homepage ul {
    padding: 20px 0px 0px 0px;
    margin: 0px;
  }
    
    
    
    
  /*ネットショップ制作 =========================================================================*/
  .service_block.ec {}
  .service_block.ec .title {
    width: 250px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .service_block.ec .title .title_inner {
    padding: 10px 0px 20px 60px;
    background-image: url(../img/icon_cart.svg);
    background-size: 100px;
    background-color: #FFF;
    background-position: -25px -30px;
    font-size: 18px;
    text-align: left;
    background-repeat: no-repeat;
    font-weight: bold;
    display: block;
      height: 15px;
    position: relative;
    margin: 0px auto 0px auto;
    width: 170px;
  }
    
.service_block.ec.ani .title .title_inner{
  animation-name: ec;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
    
    
@keyframes ec {
  0% {
opacity: 0;
  top:-30px;
  left: 0%;
  }
  100% {
  top:0px;
  opacity: 1;
  left: 0px;
  }
}
    
    
  .service_block.ec .ec_work_content {
    display: block
  }
  .service_block.ec .ec_work_content:last-child {
    padding-bottom: 0px;
  }
  .service_block.ec .ec_work_content h4 {
    padding: 0px 0px 10px 0px;
    margin: 0px;
    width: 4em
  }
  .service_block.ec .ec_work_content ul {
    padding: 0px;
    margin: 0px;
    width: 100%
  }
  .service_block.ec .ec_work_content ul li {
    display: inline-block;
    background-color: #fff8dc;
    font-size: 14px;
    padding: 3px 6px 3px 6px;
    margin-right: 10px;
    margin-bottom: 10px
  }
  /*WordPress  =========================================================================*/
  .service_block.wp {}
  .service_block.wp .title {
    width: 200px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .service_block.wp .title .title_inner {
    padding: 0px 20px 20px 80px;
    background-image: url(../img/icon_wp.svg);
    background-size: 90px;
    background-color: #FFF;
    background-position: -12px 0px;
    font-size: 18px;
    text-align: left;
    background-repeat: no-repeat;
    font-weight: bold;
    display: block;
      height: 50px;
    position: relative;
    margin: 0px auto 0px auto;
    width: 80px;
  }
    
.service_block.wp.ani .title .title_inner{
  animation-name: wp;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
    
    
@keyframes wp {
  0% {
opacity: 0;
  top:-30px;
  left: 0%;
  }
  100% {
  top:0px;
  opacity: 1;
  left: 0px;
  }
}
        
  .service_block.wp h3 {
    margin-top: 40px
  }
  .service_block.wp ul {
    padding: 20px 0px 0px 0px;
    margin: 0px;
  }
  /*SEO対策  =========================================================================*/
  .service_block.seo {}
  .service_block.seo .title {
    width: 160px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .service_block.seo .title .title_inner {
    padding: 16px 0px 20px 50px;
    background-image: url(../img/icon_seo.svg);
    background-size: 70px;
    background-color: #FFF;
    background-position: -15px -5px;
    font-size: 18px;
    text-align: left;
    background-repeat: no-repeat;
    font-weight: bold;
    display: block;
      height: 20px;
    position: relative;
    margin: 0px auto 0px auto;
    width: 80px;
  }
.service_block.ec.ani .title .title_inner{
  animation-name: seo;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
   
@keyframes seo {
  0% {
opacity: 0;
  top:-30px;
  left: 0%;
  }
  100% {
  top:0px;
  opacity: 1;
  left: 0px;
  }
}
    
    
    
    
  .service_block.seo .seo_point_list li {
    background-repeat: no-repeat;
    background-position: top:0px;
    left: 0px;
    padding-left: 0px;
    margin-bottom: 30px;
    background-size: 60px;
  }
  .service_block.seo .seo_point_list li h4 {
    padding: 17px 0px 17px 70px;
    margin: 0px 0px 10px 0px;
    color: #ea511f;
  }
  /*マルチデバイス対応  =========================================================================*/
  .service_block.device {}
  .service_block.device .title {
    width: 260px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .service_block.device .title .title_inner {
    padding: 0px 0px 38px 70px;
    background-image: url(../img/icon_mobile.svg);
    background-size: 80px;
    background-color: #FFF;
    background-position: -7px -10px;
    font-size: 18px;
    text-align: left;
    background-repeat: no-repeat;
    font-weight: bold;
    display: block;
      height: 15px;
    position: relative;
    margin: 0px auto 0px auto;
    width: 170px;
  }
    
.service_block.device.ani .title .title_inner{
  animation-name: device;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
    
@keyframes device {
  0% {
opacity: 0;
  top:-30px;
  left: 0%;
  }
  100% {
  top:0px;
  opacity: 1;
  left: 0px;
  }
}
    
    
    
    
    
  .service_block.device h3 {
    margin-top: 40px
  }
  /*WEBデザイン  =========================================================================*/
  .service_block.webdesign {}
  .service_block.webdesign .title {
    width: 200px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .service_block.webdesign .title .title_inner {
    padding: 15px 0px 38px 60px;
    background-image: url(../img/icon_webdesign.svg);
    background-size: 80px;
    background-color: #FFF;
    background-position: -15px -9px;
    font-size: 18px;
    text-align: left;
    background-repeat: no-repeat;
    font-weight: bold;
    display: block;
      height: 5px;
    position: relative;
    margin: 0px auto 0px auto;
    width: 120px;
  }
    
    
.service_block.webdesign.ani .title .title_inner{
  animation-name: webdesign;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
    
@keyframes webdesign {
  0% {
opacity: 0;
  top:-30px;
  left: 0%;
  }
  100% {
  top:0px;
  opacity: 1;
  left: 0px;
  }
}
    
    
    
    
    
    
    
  .service_block.webdesign h3:first-of-type {
    margin-top: 20px
  }
  .service_block.webdesign h3:nth-of-type(2) {
    margin-top: 40px
  }
  .service_block.webdesign h3:nth-of-type(3) {
    margin-top: 40px
  }
}
/* SP表示 ▲▲▲▲ ===============================================*/


/* ========================================

その他サービス

======================================== */

.other_service_block { margin-bottom: 0px;position: relative}

.other_service_block ul {
  width: 100%;
  padding: 40px 0px 0px 0px;
  margin: 0px 0px 0px auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap
}

.other_service_block ul li {
  width: 225px;
  padding: 0px;
  margin: 0px 0px 16px 0px;
}

.other_service_block ul li:nth-of-type(5){margin: 0px 0px 0px 0px;}

.other_service_block ul li:nth-of-type(6){margin: 0px 0px 0px 0px;}

.other_service_block ul li:nth-of-type(7){margin: 0px 0px 0px 0px;}

.other_service_block ul li:nth-of-type(8){margin: 0px 0px 0px 0px;}

.other_service_block ul li div {
  border: 2px solid #ccc;
  padding: 10px 20px 10px 20px;
  width: calc(100% - 40px);
  margin-left: auto;
  height: auto;
  font-size: 16px;
  position: relative;
}

.other_service_block h3 {
  font-size: 22px;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 20px 0px;
  line-height: 18px;
  color: #3498cb;
    position: absolute;
    top: 0px;
    left: 0px;
}

.other_service_block.ani h3{
  animation-name: other;
  animation-duration: 1.0s;
  animation-fill-mode: forwards;
}


@keyframes other {
  0% {
opacity: 0;
  left: -40%;
  }
  100% {
  opacity: 1;
  left: 0px;
  }
}
/*
.other_service_block h3::after {
  position: absolute;
  height: 22px;
  width: 3px;
  content: "";
  background-color: #3498cb;
  display: block;
  top: 1px;
  left: 0px;
}
*/

/*1024px 以下*/

@media screen and (max-width: 600px) {
    
.other_service_block h3 {
  font-size: 18px;
  padding: 0px 0px 0px 8px;
  margin: 0px 0px 20px 0px;
  line-height: 18px;
  color: #3498cb;
    position: absolute;
    top: 0px;
    left: 0px;
}

    
    
    
@keyframes other {
  0% {
opacity: 0;
  top:-30px;
  left: 0%;
  }
  100% {
  top:0px;
  opacity: 1;
  left: 0px;
  }
}
    
  .other_service_block ul {
    display: block;
      padding-bottom: 50px;
  }
  .other_service_block ul li {
    width: auto;
    padding: 0px;
    margin: 0px 0px 10px 10px;
    display: inline-block;
  }
    
.other_service_block ul li div {
  border: 2px solid #ccc;
  padding: 5px 10px 5px 10px;
  width: calc(100% - 20px);
  margin-left: auto;
  height: auto;
    font-size: 14px;
  position: relative;
}    
    
.other_service_block ul li:nth-of-type(5){margin: 0px 0px 10px 10px;}

.other_service_block ul li:nth-of-type(6){margin: 0px 0px 10px 10px;}

.other_service_block ul li:nth-of-type(7){margin: 0px 0px 10px 10px;}

.other_service_block ul li:nth-of-type(8){margin: 0px 0px 10px 10px;}
    
    
}


/* ========================================

個人情報保護方針

======================================== */

.kojin {}

.kojin p {
  font-size: 16px;
padding: 0px;
    margin: 0px 0px 30px 0px;
}

.kojin dl {
    padding: 0px;
    margin: 0px 0px 30px 0px;
  font-size: 16px
}

.kojin dl dt {
  padding: 0px 0px 0px 8px;
  position: relative;
  margin: 0px 0px 5px 0px;
  line-height: 18px;
  color: #333;
  font-weight: bold;
}

.kojin dl dt::after {
  position: absolute;
  height: 15px;
  width: 2px;
  content: "";
  background-color: #ea511f;
  display: block;
  top: 2px;
  left: 0px;
}

.kojin dl dd {
  padding: 0px 0px 25px 8px;
  margin: 0px;
}

.kojin #kojin_bottom_text {
  text-align: right;
}





/* SP表示 ▼▼▼▼ ===============================================*/
/*480px 以下*/

@media screen and (max-width: 480px) {
.kojin {margin-bottom: 80px}
}
/* SP表示 ▲▲▲▲ ===============================================*/







/* ========================================

個人情報について

======================================== */


.policy {}

.policy h3 {
  padding: 0px;
  margin: 0px 0px 15px 0px;
  text-align: center
}

.policy dl {
  padding: 0px;
  margin: 0px;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap
}

.policy dl dt {
  padding: 0px 0px 15px 0px;
  margin: 0px 0px 0px -8px;
  width: 45px;
  text-align: left;
  font-weight: bold;
}

.policy dl dd {
  padding: 0px 0px 15px 0px;
  margin: 0px;
  width: calc(100% - 50px)
}


.policy dl dd:last-of-type{  padding: 0px 0px 0px 0px;}

.policy dl dd .title {
  font-weight: bold
}

.policy dl dd .contents_ex_table_area {
  padding-top: 20px
}

.policy dl dd .contents_ex_table_area .contents_ex_table_title {
  font-weight: bold;
  padding-bottom: 6px
}

.policy dl dd .contents_ex_table_area table {
  margin-top: 0px;
  width: 100%;
  font-size: 16px;
}

.policy dl dd .contents_ex_table_area table th {
  text-align: center;
  background-color: #f0f0f0;
  border: 1px solid #CCC;
  vertical-align: top;
  padding: 10px
}

.policy dl dd .contents_ex_table_area table td {
  border: 1px solid #CCC;
  padding: 10px;
  vertical-align: top;
}

.policy dl dd .contents_ex_table_area .contents_ex_table_text {
  padding: 10px 0px 10px 0px
}

.policy dl dd .inquiry_table {
  padding-top: 20px
}

.policy dl dd .inquiry_table .inquiry_table_title {
  font-weight: bold;
  padding-bottom: 6px
}

.policy dl dd .inquiry_table table {
  margin-top: 0px;
  width: 100%;
  font-size: 14px
}

.policy dl dd .inquiry_table table th {
  text-align: left;
  width: 70px;
  background-color: #f0f0f0;
  border: 1px solid #CCC;
  vertical-align: top;
  padding: 10px
}

.policy dl dd .inquiry_table table td {
  border: 1px solid #CCC;
  padding: 10px
}



/* SP表示 ▼▼▼▼ ===============================================*/
/*480px 以下*/

@media screen and (max-width: 480px) {

.policy {margin-bottom: 80px}
    
  .policy dl dt {
    padding: 0px 0px 5px 0px;
    margin: 0px;
    width: 100%;
    text-align: left;
    font-weight: bold
  }
  .policy dl dd {
    padding: 0px 0px 15px 0px;
    margin: 0px;
    width: 100%
  }
}
/* SP表示 ▲▲▲▲ ===============================================*/



/* ========================================

個人情報について

======================================== */

.privacy {}

.privacy h3 {
  padding: 0px;
  margin: 0px 0px 15px 0px;
  text-align: center
}

.privacy dl {
  padding: 0px;
  margin: 0px;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap
}

.privacy dl dt {
  padding: 0px 0px 15px 0px;
  margin: 0px 0px 0px -8px;
  width: 70px;
  text-align: left;
  font-weight: bold
}

.privacy dl dd {
  padding: 0px 0px 15px 0px;
  margin: 0px;
  width: calc(100% - 75px)
}

.privacy dl dd:last-of-type{padding: 0px 0px 0px 0px;}

.privacy dl dd .title {
  font-weight: bold
}

.privacy dl dd table {
  margin-top: 10px;
  width: 100%;
  font-size: 14px
}

.privacy dl dd table th {
  text-align: left;
  width: 70px;
  background-color: #f0f0f0;
  border: 1px solid #CCC;
  vertical-align: top;
  padding: 10px
}

.privacy dl dd table td {
  border: 1px solid #CCC;
  padding: 10px
}


/* SP表示 ▼▼▼▼ ===============================================*/
/*480px 以下*/

@media screen and (max-width: 480px) {
    
#contents.privacy {margin-bottom: 80px}
    
  .privacy dl dt {
    padding: 0px 0px 5px 0px;
    margin: 0px;
    width: 100%;
    text-align: left;
    font-weight: bold
  }
  .privacy dl dd {
    padding: 0px 0px 15px 0px;
    margin: 0px;
    width: 100%
  }
}
/* SP表示 ▲▲▲▲ ===============================================*/