@charset "utf-8";

/* 
-------- CSS LIST -------
__COMMON
__HEADER
__FOOTER
__PARTS
__MAINVISUAL
__CONTENTS
__CONTENT_xxx
-------------------------
*/

/* ------------------ __COMMON ------------------ */

body{
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  position: relative;
  width: 100%;
  min-width: 320px;
}

/* 表示非表示設定 */

/* PCのみ表示（有効）にしたい場合は、classの「disp_pc」を使用してください。SPのみ表示（有効）にしたい場合は、「disp_sp」 */
/* disp_pcはPC時表示（有効） */
.disp_pc{ display: block; }
/* disp_spはPC時非表示（有効） */
.disp_sp{ display: none; }
.disp_tb{ display: none; }


/* モジュールTAB（共通） */
@media screen and (max-width: 1024px) {
  .disp_tb{ display: block; }
}

/* モジュールSP（共通） */
@media screen and (max-width: 768px) {
  /* disp_pcはSP時非表示（有効） */
  .disp_pc{ display: none; }
  /* disp_spはSP時表示（有効） */
  .disp_sp{ display: block; }
}

/* ------------------ __HEADER ------------------ */

.l-header {
  background-color: #FFF;
  border-bottom: 1px solid #ccc;
}
.l-header .l-header__wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 32px 0;
}
.l-header .l-header__logo {
  width: 140px;
}
.l-header .l-header__logo a {
  display: block;
}

/* TAB */
@media screen and (max-width: 1024px) {
  .l-header .l-header__wrap {
    margin: 0 3%;
  }
  .l-header .l-header__logo {
    width: 18%;
  }
  .l-header .l-header__logo a img {
    padding: 10% 0;
  }
}

/* SP */
@media screen and (max-width: 768px) {
  .l-header .l-header__logo {
    width: 20%;
  }
  .l-header .l-header__wrap {
    padding: 5px 0 0;
  }
  .l-header .l-header__logo {
    margin: 10px auto 10px 10px;
  }
}
@media screen and (max-width: 640px) {
  .l-header .l-header__logo {
    width: 24%;
  }
}

/* ------------------ __FOOTER ------------------ */

.footer{
  background-color: #f5f5f5;
  position: relative;
}

.footer_inner{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 0;
}

.footer_inner .footer_left{
  float: left;
  width: 20%;
}

.footer_inner .footer_right{
  float: right;
  width: 50%;
  margin: 20px auto 0;
}

.footer_inner .footer_right ul li{
  text-align: center;
  float: left;
  width: 33%;
}

.copy{
  font-size: 12px;
  padding: 20px 0;
  text-align: center;
}

/* TAB */
@media screen and (max-width: 1024px) {
  .footer_inner{
    width: 100%;
  }

  .footer_inner .footer_right{
    width: 60%;
  }

  .copy {
    display: none;
  }
}

/* SP */
@media screen and (max-width: 768px) {
  .footer_inner{
    width: 95%;
    padding: 50px 0;
  }

  .footer_inner .footer_left{
    width: 40%;
  }

  .footer_inner .footer_right{
    width: 40%;
    margin: 0 auto 0;
  }

  .footer_inner .footer_right ul li{
    text-align: left;
    float: none;
    width: 100%;
    margin-bottom: 10px;
  }

  .footer_inner .footer_right ul li:last-child{
    margin-bottom: 0;
  }

  .copy{
    padding: 21px 0;
  }

}

/* ------------------ __PARTS ------------------ */

/* __BUTTON */
.list_button li {
  width: 200px;
  height: 80px;
  display: inline-block;
  background-color: #FFF;
}

.list_button li:not(:first-child) {
  margin-left: 30px;
}

.list_button a {
  width: 200px;
  height: 80px;
  text-align: center;
  color: #FFF;
  background-color: #EB9300;
  display: inline-block;
  position: relative;
}

.list_button a p.button {
  font-size: 20px;
  display: inline-block;
  vertical-align: middle;
  width: 160px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 20px;
  margin-top: -30px;
}

.list_button a p.button::before {
  content: "";
  background: url(../images/icn_arrow_right_w.png)no-repeat 0/100% transparent;
  width: 6px;
  height: 10px;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -5px;
}

.list_button a .text_emphasis {
  display: inline-block;
}

.list_button a .disp_pc {
  font-size: 16px;
}

/* __DEVICE */

/* PC */
/* TAB */
@media screen and (max-width: 1024px) {
  .list_button a {
    box-shadow: 0 0 20px rgba(255, 255, 255, 1);
  }
}

/* SP */
@media screen and (max-width: 768px) {
  .list_button li {
    display: block;
    width: 260px;
    height: 60px;
    margin: 0 auto;
    background-color: #FFF;
  }
  .list_button li:not(:first-child) {
   margin-left: auto;
   margin-top: 30px;
  }
  .list_button a {
    width: 260px;
    height: 60px;
  }
  .list_button a p.button {
    width: 220px;
    line-height: 26px;
  }
  .list_button a .text_emphasis {
    font-size: 26px;
    line-height: 60px;
  }
}

/* ------------------ __MAINVISUAL ------------------ */

.wrap {
  width: 100%;
}

.mainvisual {
  margin: 0 auto;
  width: 100%;
  background: url(../images/bg_mv_01_pc.jpg)no-repeat top center/cover #f5f5f5;
}
.mainvisual .title_area {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.mainvisual .title_area .block_text {
  text-align: left;
  position: absolute;
  top: 50%;
  left: 0;
}
.mainvisual .subtext {
  font-size: 20px;
}
.mainvisual h1.headline {
  margin-top: 30px;
  font-size: 36px;
  font-weight: bold;
}
.mainvisual .list_button {
  margin-top: 20px;
}

/* __DEVICE */

/* PC */
@media screen and (min-width: 1025px) {
  .mainvisual {
    height: 400px;
  }
  .mainvisual .title_area {
    max-width: 1000px;
  }
  .mainvisual .title_area .block_text {
    margin-top: -140px;
  }
  .mainvisual .subtext {
    font-size: 24px;
  }
  .mainvisual h1.headline {
    font-size: 38px;
  }
}

/* TAB */
@media screen and (max-width: 1024px) {
  .mainvisual {
    height: 400px;
  }
  .mainvisual .title_area {
    max-width: 1000px;
  }
  .mainvisual .title_area .block_text {
    margin-top: -110px;
    left: 3%;
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .mainvisual {
    height: 480px;
    padding-bottom: 40%;
    background: url(../images/bg_mv_01_sp.jpg)no-repeat center bottom/100% #fff;
  }
  .mainvisual .title_area {
    width: 100%;
  }
  .mainvisual .title_area .block_text {
    width: 90%;
    margin: -214px 5% 0;
    left: 0;
  }
}

/* ------------------ __CONTENTS ------------------ */

/* content共通スタイル */

[class^="content_"] {
  padding: 60px 0;
}

[class^="content_"]:not(.content_bg_n) {
  background-color: #F8F8F8;
}

[class^="content_"]:not(.content_bg_list_n) li {
  background-color: #FFF;
}

[class^="content_"]:nth-child(2n):not(.content_bg_n) {
  background-color: #FFF;
}

[class^="content_"]:nth-child(2n):not(.content_bg_list_n) li {
  background-color: #F8F8F8;
}

[class^="content_"] .inner {
  margin: 0 auto;
}

[class^="content_"] h1.headline {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
}
[class^="content_"] .text_desc {
  margin-top: 40px;
  font-size: 18px;
  text-align: center;
}

[class^="content_"] [class^="text_attention"] {
  font-size: 14px;
}
/* 米印がついている場合のインデント */
[class^="content_"] .text_attention_kome {
  text-indent: -1em;
  margin-left: 1em;
}

[class^="content_"] .text_highlight {
  margin-top: 40px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

[class^="content_"] .inner:not(.content_attention .inner) {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
[class^="content_"] .text_headline_sub {
  font-size: 22px;
}
[class^="content_"] .text_headline_sub span {
  display: inline-block;
}
[class^="content_"] .text_sentence {
  font-size: 16px;
}

/* 見出し背景 */
[class^="content_"].content_bg_headline {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100%;
}

/* __DEVICE */



/* PC */
@media screen and (min-width: 1025px) {
  [class^="content_"] [class^="block_"] ,
  [class^="content_"] [class^="list_"] {
    margin-top: 40px;
  }
  /* 見出し背景 */
  [class^="content_"].content_bg_headline {
    background-image: url(../images/bg_headline_01_pc.png);
  }
}

/* TAB */
@media screen and (max-width: 1024px) {
  [class^="content_"] [class^="block_"] ,
  [class^="content_"] [class^="list_"] {
    margin-top: 40px;
  }
  [class^="content_"] .inner:not(.content_attention .inner) {
    max-width: 80%;
  }
  [class^="content_"] h1.headline {
    font-size: 30px;
  }
  [class^="content_"] .text_desc {
    font-size: 18px;
  }
  [class^="content_"] .text_highlight {
    font-size: 20px;
  }
  [class^="content_"] [class^="text_attention"] {
    font-size: 16px;
  }
  [class^="content_"] .text_headline_sub {
    font-size: 24px;
  }
  [class^="content_"] .text_headline_sub span {
    display: inline-block;
  }
  [class^="content_"] .text_sentence {
    font-size: 20px;
  }
    /* 見出し背景 */
    [class^="content_"].content_bg_headline {
      background-image: url(../images/bg_headline_01_sp.png);
    }

}
/* SP */
@media screen and (max-width: 768px) {
  [class^="content_"] [class^="block_"] ,
  [class^="content_"] [class^="list_"] {
    margin-top: 20px;
  }

  [class^="content_"] .inner:not(.content_attention .inner) {
    max-width: 90%;
  }
  [class^="content_"] h1.headline {
    font-size: 26px;
  }
  [class^="content_"] .text_desc {
    font-size: 20px;
  }
  [class^="content_"] .text_highlight {
    font-size: 20px;
  }
  [class^="content_"] .text_headline_sub {
    font-size: 26px;
  }
  [class^="content_"] .text_sentence {
    font-size: 20px;
  }
  [class^="content_"] [class^="text_attention"] {
    font-size: 14px;
  }
}

/* ------------------ __CONTENT_ABOUT ------------------ */

.content_about {
  padding: 80px 0;
}

.content_about .text_desc {
  line-height: 2em;
}

/* __DEVICE */

/* PC */
@media screen and (min-width: 1025px) {
  .content_about {
    background: url(../images/bg_lead_01_pc.jpg)no-repeat top center/100% auto;
  }
}
/* TAB */
@media screen and (max-width: 1024px) {
  .content_about {
    background: url(../images/bg_lead_01_sp.jpg)no-repeat top center/cover;
  }

  .content_about .text_highlight .text_emphasis {
    font-size: 26px;
  }
  .list_about li .text_headline_sub {
    font-size: 20px;
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .content_about .text_highlight .text_emphasis {
    font-size: 20px;
    padding: 0;
  }
  .list_about li {
    width: 100%;
  }
  .list_about li:not(:first-child) {
    margin-top: 60px;
    margin-left: 0;
  }
  .list_about li:not(:first-child)::before {
    top: -30px;
    left: 50%;
    margin-top: -15px;
    margin-left: -15px;
  }
  .list_about li dl {
    margin: 0 auto;
    width: 300px;
    display: inline-block;
  }
  .list_about li dt {
    display: inline-block;
    width: 30%;
    height: 100%;
    vertical-align: middle;
  }
  .list_about li dd {
    margin-top: 0;
    margin-left: 4%;
    min-width: 66%;
    display: inline-block;
    text-align: left;
    font-size: 20px;
    vertical-align: middle;
  }

}

/* ------------------ __CONTENT_VIDEO ------------------ */
.content_video {
  text-align: center;
  background: url(../images/bg_video_01.png)no-repeat center/cover #F8F8F8;
}

.content_video h1.headline + .text_highlight {
  margin-top: 40px;
  text-align: center;
}

.content_video .block_video ,
.content_video [class^="text_attention"] {
  text-align: center;
}

.content_video iframe {
  width: 100%;
}

/* __DEVICE */

/* PC */
/* TAB */
@media screen and (max-width: 1024px) {
  .content_video {
    background: url(../images/bg_video_01_sp.png)no-repeat top center/100% #F8F8F8;
  }
  .content_video iframe {
    height: 400px;
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .content_video {
    background: url(../images/bg_video_01_sp.png)no-repeat top center/100%  #F8F8F8;
  }
  .content_video iframe {
    height: auto;
  }
}

/* ------------------ __CONTENT_SERVICE ------------------ */

/* list */
.list_service ul {
  margin: 0 auto;
  width: 100%;
  font-size: 0;
}
.list_service li {
  padding: 0 0 20px;
  display: inline-block;
  font-size: 16px;
  text-align: center;
  position: relative;
  vertical-align: top;
}

.list_service dt {
  display: inline-block;
}
.list_service dt img {
  margin: 5%;
  width: 90%;
  height: auto;
  display: inline-block;
}
.list_service dd {
  display: inline-block;
  padding: 10px 20px;
  text-align: left;
  vertical-align: top;
  line-height: 1.8em;
}

.list_service .text_headline_sub {
  padding: 10px 0;
  color: #FFF;
  background-color: #719DDB;
  font-weight: bold;
}

.list_service dd [class^="text_"] + .text_sentence,
.list_service dd [class^="text_"] + .text_small {
  margin-top: 10px;
}
.list_service dd .text_small {
  line-height: 1.8em;
  display: inline-block;
}
.list_service dd a {
  color: #719DDB;
  text-decoration: underline;
}

/* __DEVICE */

/* PC */
@media screen and (min-width: 1025px) {
  .list_service ul {
    /* FLEX */
    display:-webkit-box;
    display:-moz-box;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
  }
  .list_service li {
    width: 31.333%;
  }
  .list_service li:not(:first-child) {
    margin-left: 3%;
  }
  .list_service .text_headline_sub .text_small {
    font-size: 18px;
  }
  .list_service dd .text_small {
    font-size: 12px;
  }
}

/* TAB */
@media screen and (max-width: 1024px) {
  .list_service li {
    width: 100%;
  }
  .list_service li:not(:first-child) {
    margin-top: 3%;
  }
}

/* SP */


/* ------------------ __CONTENT_SCENE ------------------ */


/* list */
.list_scene.list_rightimage ul {
  margin: 0 auto;
  width: 100%;
  font-size: 0;
}
.list_scene.list_rightimage li {
  padding: 0;
  width: 100%;
  display: inline-block;
  font-size: 16px;
  position: relative;
}
.list_scene.list_rightimage li:not(:first-child) {
  margin-top: 20px;
}
.list_scene.list_rightimage dt {
  display: inline-block;
  text-align: left;
  line-height: 1.8em;
}

.list_scene.list_rightimage dt .text_headline_sub {
  color: #333;
  font-weight: bold;
}

.list_scene.list_rightimage dt .text_sentence {
  margin-top: 20px;
}

.list_scene.list_rightimage dd {
  display: inline-block;
  text-align: left;
  vertical-align: top;
}
.list_scene.list_rightimage dd img {
  width: 100%;
  height: auto;
  display: inline-block;
  background-color: #ccc;
}

/* __DEVICE */

/* PC */
@media screen and (min-width: 1025px) {
  .list_scene.list_rightimage dt .text_headline_sub {
    font-size: 18px;
    padding: 0px 0 10px 10px;
    border-bottom: 2px solid #719DDB;  
  } 

  .list_scene.list_rightimage dt {
    width: 70%;
    padding: 2%;
  }
  .list_scene.list_rightimage dd {
    width: 26%;
  }

  .list_scene.list_rightimage dd img.disp_sp {
    display: none;
  }
}

/* TAB */
@media screen and (max-width: 1024px) {
  .list_scene.list_rightimage li {
    width: 100%;
  }
  .list_scene.list_rightimage dl {
    position: relative;
  }
  .list_scene.list_rightimage dt {
    margin-top: 56%;
    width: 96%;
    padding: 2%; 
  }
  .list_scene.list_rightimage dt .text_headline_sub {
    font-size: 26px;
  }
  .list_scene.list_rightimage dt .text_sentence {
    line-height: 1.6em;
  }
  .list_scene.list_rightimage dd {
    width: 100%;
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
  }
  .list_scene.list_rightimage dd img.disp_pc {
    display: none;
  }
  .list_scene.list_rightimage dd img.disp_sp {
    display: inline-block;
  }
}

/* SP */
/* @media screen and (max-width: 768px) {
} */

/* ------------------ __CONTENT_POINT ------------------ */

/* list */
.list_point ul {
  margin: 0 auto;
  width: 100%;
  font-size: 0;
}
.list_point li {
  padding: 20px 0;
  width: 100%;
  display: inline-block;
  font-size: 16px;
  text-align: center;
  position: relative;
}
.list_point li:not(:first-child) {
  margin-top: 20px;
}
.list_point dl {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.list_point dt {
  display: inline-block;
  width: 20%;
  height: auto;
  color: #FFF;
  background-color: #719DDB;
}
.list_point dt img {
  width: 100%;
  height: auto;
  display: inline-block;
  background-color: #ccc;
}
.list_point dd {
  display: inline-block;
  width: 76%;
  text-align: left;
  vertical-align: top;
}
.list_point .text_headline_sub {
  color: #333;
  font-weight: bold;
  padding-bottom: 20px;
  border-bottom: 2px solid #719DDB;
}
.list_point .text_sentence {
  margin-top: 20px;
  line-height: 1.8em;
}
.content_point [class^="text_attention"] {
  margin-top: 40px;
}

/* __DEVICE */

/* PC */
@media screen and (min-width: 1025px) {
  .list_point dt {
    position: relative;
  }
  .list_point dd {
    margin-left: 4%;
  }
  .list_point .text_number {
    font-size: 80px;
    position: absolute;
    top: 0;
    left: 10px;
  }
}
/* TAB */
@media screen and (max-width: 1024px) {
  .list_point dl {
    display: block;
    position: relative;
  }
  .list_point dt {
    width: 16%;
    font-size: 40px;
    color: #FFF;
    text-align: center;
    background-color: #719DDB;
    display: inline-block;
    position: absolute;
  }
  .list_point .text_number {
    margin: 1em auto;
  }
  .list_point dd {
    width: 100%;
    font-size: 0;
    display: inline-block;
  }
  .list_point .text_headline_sub {
    font-size: 34px;
    display: inline-block;
    border-bottom: 0;
    margin-left: 18%;
    width: 86%;
    height: 3.5em;
    min-height: 100px;
    position: relative;
    border-bottom: 2px solid #719DDB;
  }
  .list_point .text_headline_sub .inner {
    position: absolute;
    bottom: 0;
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .list_point dt {
    width: 20%;
    font-size: 38px;
  }
  .list_point .text_headline_sub {
    margin-left: 22%;
    width: 76%;
    height: 4.2em;
    font-size: 26px;
  }
}

/* ------------------ __CONTENT_FLOW ------------------ */

.block_flow > .text_headline_sub {
  font-weight: bold;
  font-size: 26px;
}

/* list */
.list_flow ul {
  margin: 0 auto;
  width: 100%;
  font-size: 0;
}
.list_flow li {
  width: 100%;
  display: inline-block;
  font-size: 16px;
  text-align: center;
  position: relative;
}
.list_flow li:not(:first-child) {
  margin-top: 20px;
}
.list_flow li:not(:first-child)::before {
  content: "";
  display: block;
  margin: 10px auto 20px;
  width: 20px;
  border-top: 15px solid #333;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
}
.list_flow .text_headline_wrap {
  padding: 10px;
  text-align: left;
  width: 100%;
  border: 1px solid #719DDB;
}

.list_flow .list_ul {
  vertical-align: top;
  font-size: 0;
}

.list_flow .text_number {
  padding: 10px 20px;
  display: inline-block;
  font-size: 30px;
  text-align: center;
  vertical-align: middle;
  color: #FFF;
  background-color: #719DDB;
  width: 3%;
}
.list_flow .text_headline_sub {
  display: inline-block;
  color: #333;
  font-weight: bold;
  margin-left: 20px;
  position: relative;
  vertical-align: middle;
  width: 72%;
}
.list_flow .text_attention_kome {
  text-align: left;
  font-weight: normal;
}

.list_flow li:nth-child(2n+1) .text_headline_wrap {
  background-color: #F4F9FF;
}
.list_flow li:nth-child(2n+1):not(:first-child)::before {
  border-top: 15px solid #F4C243;
}

.list_flow li:nth-child(2n) .text_headline_wrap {
  border: 1px solid #F4C243;
}
.list_flow li:nth-child(2n) .text_number {
  background-color: #F4C243;
}
.list_flow li:nth-child(2n):not(:first-child)::before {
  border-top: 15px solid #719DDB;
}

.list_flow li [class^="text_label"] {
  margin-left: 2%;
  text-align: center;
  width: 160px;
  font-size: 18px;
  font-weight: bold;
  vertical-align: middle;
  display: inline-block;
}
.list_flow li .text_label_customer {
  color: #719DDB;
  border: 1px solid #719DDB;
  border-radius: 50px;
}

.list_flow li .text_label_hc {
  color: #F4C243;
  border: 1px solid #F4C243;
  border-radius: 50px;
}

/* __DEVICE */

/* PC */
@media screen and (min-width: 1025px) {
  .list_flow .text_headline_sub.text_rightspace {
    margin-right: 10px;
  }
}

/* TAB */
@media screen and (max-width: 1024px) {
  .list_flow .text_headline_wrap {
    padding: 0;
    position: relative;
  }
  .list_flow .text_headline_wrap {
    /* FLEX */
    display:-webkit-box;
    display:-moz-box;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
  }

  .list_flow .text_number {
    padding: 4%;
    width: 8%;
  }
  .list_flow li [class^="text_label"] {
    position: absolute;
    padding: 0 20px;
    top: 20px;
    left: 18%;
    width: auto;
    height: 28px;
  }
  .list_flow .text_headline_sub {
    margin: 60px 4% 4%;
    width: 76%;
    font-size: 20px;
  }
}
/* SP */
@media screen and (max-width: 768px) {
  
}

/* ------------------ __CONTENT_VOICE ------------------ */

/* list */
.list_voice ul {
  width: 100%;
  font-size: 0;
}
.list_voice li {
  width: calc(100% / 3 - 4%);
  display: inline-block;
  font-size: 16px;
  text-align: center;
  position: relative;
  vertical-align: top;
}
.list_voice li:not(:first-child) {
  margin-left: 4%;
}

.list_voice .img_icon img {
  background-color: #E1EDF8;
  border-radius: 50%;
  width: 140px;
}
.list_voice li .text_headline_sub {
  color: #333;
  font-weight: bold;
  margin-top: 20px;
  display: block;
}
.list_voice li .text_sentence {
  display: inline-block;
  margin-top: 10px;
  text-align: left;
  line-height: 1.8em;
}
/* __DEVICE */

/* PC */
/* TAB */
@media screen and (max-width: 1024px) {
  .list_voice li {
    width: 70%;
    text-align: left;
    position: relative;
    padding-left: 30%;
  }
  .list_voice li:not(:first-child) {
    margin-top: 60px;
    margin-left: 0;
  }
  .list_voice .img_icon {
    width: 140px;
    height: 140px;
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 80%;
    margin-top: -70px;
  }
  .list_voice li .text_headline_sub {
    margin-top: 0;
  }
}

/* SP */
@media screen and (max-width: 768px) {
  .list_voice li {
    width: 100%;
    text-align: center;
    position: relative;
    padding: 0;
  }
  .list_voice li:not(:first-child) {
    margin-top: 40px;
    margin-left: 0;
  }
  .list_voice li .text_headline_sub {
    margin-top: 20px;
  }
  .list_voice li .img_icon {
    width: 140px;
    height: 140px;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 50%;
    margin-top: 0;
    margin-left: -70px;

  }
  .list_voice .text_voice {
    margin-top: 160px;
  }
}

/* ------------------ __CONTENT_INTERVIEW ------------------ */

/* list */
.content_interview .list_profile ul {
  background: url(../images/bg_lead_01_pc.jpg)no-repeat top center/100% auto #FFF;
  padding: 2%;
  font-size: 0;
}
.content_interview .list_profile li {
  background-color: transparent;
  display: inline-block;
  font-size: 0;
}
.content_interview .text_name_block {
  margin-top: 3%;
  padding-left: 2%;
  width: 78%;
}
.content_interview .text_name_block span {
  display: block;
  font-weight: bold;
}
.content_interview .text_copy {
  font-size: 20px;
}
.content_interview .text_name {
  margin-top: 10px;
  font-size: 26px;
}
.content_interview .img_profile {
  width: 20%;
  vertical-align: top;
}

.content_interview .list_interview {
  margin-top: 0;
  padding: 2%;
  background-color: #FFF;
}
.content_interview .list_interview li:nth-child(2n+1):not(:first-child) .text_headline_sub {
  margin-top: 20px;
}
.content_interview .list_interview li:nth-child(2n+1) .text_headline_sub {
  padding: 10px 20px;
  color: #FFF;
  font-size: 18px;
  font-weight: bold;
  background-color: #C4CAD1;
}

.content_interview .list_interview li:nth-child(2n) {
  padding: 20px 10px;
}
.content_interview .list_interview li:nth-child(2n) .text_name {
  color: #C4CAD1;
  font-weight: bold;
  font-size: 16px;
}
.content_interview .list_interview li:nth-child(2n) .text_sentence {
  color: #333;
  line-height: 2em;
}

.content_interview .block_profile {
  margin-top: 60px;
  padding: 2%;
  color: #333;
  background-color: #FFF;
}

.content_interview .block_profile .text_sentence {
  line-height: 2em;
}

/* SP */
@media screen and (max-width: 768px) {
  .content_interview .list_profile ul {
    background: url(../images/bg_lead_01_sp.jpg)no-repeat top left/cover #FFF;
  }
  .content_interview .list_profile .img_profile {
    width: 100%;
    text-align: center;
    margin: 10px auto;
  }
  .content_interview .list_profile .img_profile img {
    max-width: 200px;
  }
}

/* ------------------ __CONTENT_FAQ ------------------ */

/* list */
.list_faq ul {
  font-size: 0;
}
.list_faq li {
  padding: 40px 4%;
  font-size: 16px;
}
.list_faq li:nth-child(2n+1) {
  background-color: #F8F8F8;
}
.list_faq li:nth-child(2n) {
  background-color: #FFF;
}

.list_faq li .text_number {
  width: 4%;
  padding: 4px 2%;
  color: #FFF;
  background-color: #C4CAD1;
  text-align: center;
  display: inline-block;
  vertical-align: top;
}
.list_faq li:nth-child(2n) .text_number {
  color: #C4CAD1;
  background-color: #F8F8F8;
}
.list_faq .text_headline_sub {
  font-weight: bold;
}

.list_faq .text_headline_sub ,
.list_faq .text_sentence {
  display: inline-block;
  margin-left: 5%;
  width: 86%;
}

.list_faq .text_sentence {
  line-height: 1.8em;
}

/* __DEVICE */

/* PC */
/* TAB */
/* SP */
@media screen and (max-width: 768px) {
  .list_faq li {
    padding: 20px 4%;
  }
  .list_faq li .text_number {
    padding: 4px 0;
    width: 80px;
    text-align: center;
  }
  .list_faq .text_headline_sub, .list_faq .text_sentence {
    margin-top: 20px;
    margin-left: 0;
    width: 100%;
    font-size: 20px;
  }
}

/* ------------------ __CONTENT_CONTACT ------------------ */
.content_contact {
  background: url(../images/bg_contact_01.png)repeat-x 0 center/auto 150% #FFF;
}
.content_contact .list_button {
  text-align: center;
}

/* __DEVICE */

/* PC */
/* TAB */
@media screen and (max-width: 1024px) {
  .content_contact {
    background: url(../images/bg_contact_01.png)repeat-x 0 center/auto 140% #FFF;
  }
  .content_contact .list_button {
    margin-top: 30px;
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .content_contact {
    background: url(../images/bg_contact_01.png)repeat-x 0 center/auto 130% #FFF;
  }
}

/* ------------------ __CONTENT_ATTENTION ------------------ */
.content_attention {
  padding: 0;
  background-color: #FFF;
}
.content_attention .inner {
  padding: 30px 0;
  border-top: 1px solid #ccc;
}
.content_attention [class^="text_attention"] {
  margin-top: 0;
  text-align: center;
  font-size: 12px;
  line-height: 1.8em;
}

/* __DEVICE */

/* PC */
/* TAB */
/* SP */
@media screen and (max-width: 768px) {
  .content_attention [class^="text_attention"] {
    text-align: left;
    padding: 0 10px;
  }
}
