/* oki_20220509 */
    .kanren {
        /* border: 3px solid #ff5252; */
        /* padding: 20px 30px ; */
        margin: 30px 0;
        position: relative;
        box-sizing: border-box;
        z-index: 0;
    }
    .midasi {
        font-size: 16px;
        font-weight: bold;
        text-align: center;
        margin-bottom: 15px;
    }
    .kanren br {
        display: none;
    }

    .kanren ul{
        margin: 0 0 4rem 1.5rem !important;
    }

    /* アコーディオンのときに下記追加 */
    .readmore-content {
        position: relative;
        overflow: hidden;
        height: 100px;
    }
    .readmore-content::before {
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        content: "";
        /*以下お好み グラデーションの色と高さ 高さはreadmoreのheight以下にすること*/
        height: 50px;
        z-index: 1;
        background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.8) 50%, #fff 100%);
        background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.8) 50%, #fff 100%);
    }

    /* 続きを読むボタン */
    .readmore-label{
        display: table;
        bottom: 5px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        margin: 5px auto;
        z-index: 2;
        padding: 6px 15px;
        /* background-color: #ff7777; */
        background-color: #0583ff;
        border-radius: 20px;
        color: #FFF;
        font-weight: bold;
    }
    .readmore-label:before{
        content: "\7D9A\304D\3092\8AAD\3080";
    }

    .readmore-check{
        display: none;
    }
    /*チェック時にボタンを非表示*/
    .readmore-check:checked ~ .readmore-label{
        position: static;
        transform: translateX(0);
        -webkit-transform: translateX(0);
        /* 「続きを読む」を押した後、元に戻す必要がない場合は、上のオプションを消してこの1行だけにする */
        /* display: none; */
    }
    .readmore-check:checked ~ .readmore-label:before{
        content: "\9589\3058\308B";
    }
    /*チェック時に高さを自動に戻す*/
    .readmore-check:checked ~ .readmore-content{
        height: auto;
    }
    /*チェック時グラデーション等を削除*/
    .readmore-check:checked ~ .readmore-content::before {
        display: none;
    }

    /* oki_20220509 */


#sec03 .sec__inner {
  margin: 15rem auto 4rem;
}
@media screen and (max-width: 480px) {
  #sec03 .sec__inner {
    margin: 3.5rem auto 0;
  }
}
#sec03 .sec__inner .inner-head {
  max-width: 65rem;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 0;
}
#sec03 .sec__inner .inner-head .ttl {
  font-size: 3rem;
  background: url(img/line_ico.png) no-repeat bottom;
  padding: 0 0 2rem;
  margin: 0 auto 3rem;
  text-align: center;
}
@media screen and (max-width: 480px) {
  #sec03 .sec__inner .inner-head .ttl {
    font-size: 2rem;
  }
}
#sec03 .sec__inner .inner-head .subTtl {
  border: none;
  font-size: 3rem;
  background: url(img/line_ico.png) no-repeat bottom;
  padding: 0 0 2rem;
  margin: 0 auto 2rem;
}
@media screen and (max-width: 480px) {
  #sec03 .sec__inner .inner-head .subTtl {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  #sec03 .sec__inner .inner-head .subTtl a {
    display: inline-block;
  }
}
@media screen and (max-width: 480px) {
  #sec03 .sec__inner .inner-head .subTtl a::before {
    width: 2.5rem;
    height: 2.5rem;
  }
}
#sec03 .sec__inner .inner-head .subTtl a::after {
  right: 2.2%;
}
@media screen and (max-width: 480px) {
  #sec03 .sec__inner .inner-head .subTtl a::after {
    right: 1rem !important;
    width: 8px;
    height: 8px;
  }
}
#sec03 .sec__inner .point-explanation {
  text-align: center;
  font-weight: bold;
}
#sec03 .sec__inner .tab-parts {
  margin: 4rem auto;
}
#sec03 .sec__inner .tab-parts__box {
  max-width: 1020px;
  margin: 0 auto;
}
#sec03 .sec__inner .tab-parts__box .boxArea {
  max-width: 1000px;
  display: flex;
  margin: 0 auto;
  align-items: flex-end;
  min-height: 9rem;
}
#sec03 .sec__inner .tab-parts__box .boxArea.bottom {
  align-items: flex-start;
}
#sec03 .sec__inner .tab-parts__box .boxArea.bottom .tab-parts__tab {
  border-radius: 0 0 1rem 1rem;
}
#sec03 .sec__inner .tab-parts__tab {
  width: calc(25% - 1rem);
  margin: 0 2rem 0 0;
  font-weight: bold;
  font-size: 1.8rem;
  background: #efdcd5;
  border-radius: 1rem 1rem 0 0;
  text-align: center;
  color: #333;
}
@media screen and (max-width: 480px) {
  #sec03 .sec__inner .tab-parts__tab {
    width: calc(25% - 0.1rem);
    font-size: 1.5rem;
    margin: 0 0.2rem 0 0;
  }
}
#sec03 .sec__inner .tab-parts__tab:last-child {
  margin: 0 0 0 0;
}
#sec03 .sec__inner .tab-parts__contents {
  padding: 6rem;
  background: #fff;
  border-radius: 1rem;
}
@media screen and (max-width: 480px) {
  #sec03 .sec__inner .tab-parts__contents {
    padding: 3rem 2rem;
  }
}
#sec03 .sec__inner .tab-parts__contents .tab_main {
  display: none;
}
#sec03 .sec__inner .tab-parts__contents .tab_main.is_show {
  display: block;
}
#sec03 .sec__inner .tab-parts__contents .subTtl {
  margin: 0 auto;
  font-size: 2.4rem;
  border-top: 1px solid #f55f28;
  border-bottom: 1px solid #f55f28;
  text-align: center;
  color: #f55f28;
  font-weight: bold;
  padding: 3rem;
}
@media screen and (max-width: 480px) {
  #sec03 .sec__inner .tab-parts__contents .subTtl {
    font-size: 1.7rem;
    padding: 1.5rem;
  }
}
#sec03 .sec__inner .tab-parts__contents .tableArea table {
  border: none;
  border-spacing: 1rem;
  width: 100%;
}
@media screen and (max-width: 480px) {
  #sec03 .sec__inner .tab-parts__contents .tableArea table {
    margin-bottom: 0;
  }
}
#sec03 .sec__inner .tab-parts__contents .tableArea table tr th {
  border: none;
  border-left: 3px solid #eaa844;
  background: none;
  margin: 1rem;
  display: block;
  padding: 0 1rem;
  text-align: left;
  color: #3e3a39;
  font-size: 1.8rem;
  line-height: 1;
}
@media screen and (max-width: 480px) {
  #sec03 .sec__inner .tab-parts__contents .tableArea table tr th {
    margin: 1rem 0;
    font-size: 1.7rem;
  }
}
#sec03 .sec__inner .tab-parts__contents .tableArea table tr td {
  border: none;
  max-width: 58rem;
  text-align: left;
}
@media screen and (max-width: 480px) {
  #sec03 .sec__inner .tab-parts__contents .tableArea table tr td {
    display: block;
    padding: 0 0 2rem;
    font-size: 1.5rem;
  }
}
#sec03 .sec__inner .tab-parts__block {
  display: flex;
}
@media screen and (max-width: 480px) {
  #sec03 .sec__inner .tab-parts__block {
    flex-wrap: wrap;
    padding: 0;
  }
}
#sec03 .sec__inner .tab-parts__block .box {
  width: calc(50% - 2rem);
  margin: 0 4rem 0 0;
}
#sec03 .sec__inner .tab-parts__block .box:nth-child(2) {
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 480px) {
  #sec03 .sec__inner .tab-parts__block .box {
    width: 100%;
    padding: 0;
    margin: 0;
  }
}
#sec03 .sec__inner .tab-parts__block .box .subTtl {
  margin: 2rem auto;
  border: none;
  font-size: 2rem;
  padding: 0;
}
@media screen and (max-width: 480px) {
  #sec03 .sec__inner .tab-parts__block .box .subTtl {
    font-size: 1.7rem;
    margin: 1rem auto;
  }
}
#sec03 .sec__inner .tab-parts__block .box .text {
  margin: 2rem auto;
}
@media screen and (max-width: 480px) {
  #sec03 .sec__inner .tab-parts__block .box .text {
    margin: 1rem auto 2rem;
  }
}
#sec03 .sec__inner table {
  border: none;
}
#sec03 .sec__inner .caption_scroll table {
  border: none;
  width: 100%;
  table-layout: fixed;
}
#sec03 .sec__inner table ul {
  margin: 0;
}
#sec03 .sec__inner table ul li {
  text-align: left;
  font-size: 1.6rem;
  position: relative;
  padding: 0 0 0 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 480px) {
  _:-moz-any(x),
  #sec03 .sec__inner .caption_scroll table {
    width: 100%;
    table-layout: fixed;
    word-wrap: break-word;
  }
  #sec03 .sec__inner .caption_scroll table tbody tr td {
    white-space: normal;
    display: inline-block;
    width: 100%;
    max-width: 180px;
    height: 100%;
  }
  _:-moz-any(x),
  #sec03 .sec__inner .caption_scroll table tbody tr td {
    white-space: normal;
    display: table-cell;
  }
  #sec03 .sec__inner .caption_scroll table {
    width: auto;
  }
  #sec03 .sec__inner .caption_scroll table tr th:nth-child(2),
  #sec03 .sec__inner .caption_scroll table tr th:nth-child(3),
  #sec03 .sec__inner .caption_scroll table tr th:nth-child(4),
  #sec03 .sec__inner .caption_scroll table tr th:nth-child(5) {
    display: inline-block;
    min-width: 180px;
    width: 100%;
  }
  _:-moz-any(x),
  #sec03 .sec__inner .caption_scroll table tr th:nth-child(2),
  #sec03 .sec__inner .caption_scroll table tr th:nth-child(3),
  #sec03 .sec__inner .caption_scroll table tr th:nth-child(4),
  #sec03 .sec__inner .caption_scroll table tr th:nth-child(5) {
    display: table-cell;
  }

  #sec03 .sec__inner table ul li {
    font-size: 1.2rem;
    min-width: 13rem;
  }
}
#sec03 .sec__inner table ul li + li {
  margin-top: 0.5rem;
}
#sec03 .sec__inner table ul li::before {
  position: absolute;
  display: block;
  content: '';
  width: 11px;
  height: 11px;
  background: #ebe6df;
  border-radius: 50%;
  background-size: 8px auto;
  left: 0;
  top: 3px;
}
#sec03 .sec__inner table thead tr th:nth-child(1) {
  background: none;
  border: none;
}
#sec03 .sec__inner .caption_scroll table thead tr th:nth-child(1) {
  background: none;
  border: none;
  width: 66px;
}
#sec03 .sec__inner table tbody tr th {
  background: #666666;
  color: #fff;
}
@media screen and (max-width: 480px) {
  #sec03 .sec__inner table tbody tr td {
    font-size: 1.2rem;
  }
}
#sec03 .sec__inner table tr th:nth-child(2) {
  background: #2e9f73;
  color: #fff;
}
#sec03 .sec__inner table tr th:nth-child(3) {
  background: #e44d73;
  color: #fff;
}
#sec03 .sec__inner table tr th:nth-child(4) {
  background: #3695d9;
  color: #fff;
}
#sec03 .sec__inner table tr th:nth-child(5) {
  background: #fb7e51;
  color: #fff;
}
#sec03 .sec__inner table tr td:nth-child(2) ul li::before {
  background: #2e9f73;
}
#sec03 .sec__inner table tr td:nth-child(3) ul li::before {
  background: #e44d73;
}
#sec03 .sec__inner table tr td:nth-child(4) ul li::before {
  background: #3695d9;
}
#sec03 .sec__inner table tr td:nth-child(5) ul li::before {
  background: #fb7e51;
}
#sec03 .table-compare {
  position: relative;
  z-index: 2;
}
#sec03 .table-compare::after {
  content: '';
  position: absolute;
  display: block;
  background: url(img/shape29.png) no-repeat right bottom/contain;
  width: 250px;
  height: 300px;
  z-index: -1;
  right: -13%;
  bottom: -15%;
}
@media screen and (max-width: 480px) {
  #sec03 .table-compare::after {
    content: none;
  }
}
#sec03 .table-compare tbody tr:nth-of-type(even) td {
  background: #fcf9f4;
}
#sec03 .table-compare tbody th span {
  width: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 2px;
  font-family: 'Noto Sans JP Vertical';
  writing-mode: vertical-rl;
	background:none;
}
@media screen and (max-width: 480px) {
  #sec03 .table-compare tbody th {
    font-size: 1.3rem;
    padding: 0.5rem;
    position: sticky;
    left: 0;
    z-index: 10;
  }
}
#sec03 .inner-point {
  padding: 4rem 0 0;
  margin-bottom: 9.2rem;
  position: relative;
}
@media screen and (max-width: 480px) {
  #sec03 .inner-point {
    margin-bottom: -2.7rem;
    padding: 2.5rem 0 0;
  }
}
#sec03 .inner-point::before {
  position: absolute;
  content: '';
  display: inline-block;
  vertical-align: middle;
  color: #eaa844;
  line-height: 1;
  width: 0;
  height: 0;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-color: transparent;
  border-width: 2.5rem 2.5rem;
  border-top-color: currentColor;
  border-bottom: 0;
}
@media screen and (max-width: 480px) {
  #sec03 .inner-point::before {
    top: -0.5%;
  }
}
#sec03 .inner-point .sec__inner {
  margin: 4rem auto 2rem;
}
#sec03 .inner-point .subTtl {
  text-align: center;
  font-size: 3rem;
  line-height: 1.45;
}
@media screen and (max-width: 480px) {
  #sec03 .inner-point .subTtl {
    font-size: 2rem;
  }
}
#sec03 .inner-voice .float-wrap {
  max-width: 860px;
  margin: 3rem auto 3rem 0;
}
#sec03 .inner-voice .float-wrap.cf {
  min-height: 1px;
}
#sec03 .inner-voice .float-wrap .fl {
  max-width: 190px;
  margin: 0 3rem 1rem 0;
  text-align: center;
}
@media screen and (max-width: 480px) {
  #sec03 .inner-voice .float-wrap .fl {
    max-width: 93px;
    position: relative;
    z-index: 1;
    left: 6%;
    top: 0;
    transform: translateY(20%);
    float: left;
  }
}
#sec03 .inner-voice .float-wrap .fr {
  max-width: 190px;
  margin: 0 0 1rem 3rem;
}
@media screen and (max-width: 480px) {
  #sec03 .inner-voice .float-wrap .fr {
    max-width: 93px;
    position: relative;
    z-index: 1;
    right: 6%;
    top: 0;
    transform: translateY(20%);
    float: right;
	      background: none;
  }
}
@media screen and (max-width: 480px) {
  #sec03 .inner-voice .float-wrap .fr + .txtArea .catch {
    display: flow-root;
    margin: 0 auto 2rem 0;
  }
}
#sec03 .inner-voice .float-wrap.part02 {
  margin: 3rem 0 8rem auto;
}
#sec03 .inner-voice .float-wrap .float-img__flame {
  text-align: center;
  margin: 0 auto;
}
#sec03 .inner-voice .float-wrap .float-img__flame .img {
  width: 100%;
}
#sec03 .inner-voice .float-wrap .float-img__flame .caption {
  font-weight: bold;
  margin: 1rem auto 1rem;
}
#sec03 .inner-voice .float-wrap .txtArea {
  display: flow-root;
  background: #fff;
  padding: 3rem 4rem;
  border-radius: 1rem;
  max-width: 700px;
  position: relative;
}
@media screen and (max-width: 480px) {
  #sec03 .inner-voice .float-wrap .txtArea {
    display: block;
    padding: 2rem;
    border-radius: 0.5rem;
  }
}
#sec03 .inner-voice .float-wrap .txtArea .catch {
  font-size: 2rem;
  color: #f55f28;
  margin: 0 auto 2rem;
}
@media screen and (max-width: 480px) {
  #sec03 .inner-voice .float-wrap .txtArea .catch {
    display: flow-root;
    margin: 0 0 2rem auto;
    font-size: 1.7rem;
  }
}
#sec03 .inner-summary {
  margin: -2.7rem auto 0;
  padding: 2rem 0;
  position: relative;
  background: url(img/shape03.png) top center no-repeat;
  background-size: 100% auto;
  max-width: 1300px;
}
@media screen and (max-width: 480px) {
  #sec03 .inner-summary {
    background: url(img/shape03_sp.png) top center no-repeat;
    background-size: cover;
  }
	
#chapter-5 .big {
    font-size: xx-large;
    color: #FF9800;

  }

}
/*2023.10.12*/
.custom-l-parts03{
	margin-top:8rem;
}

/*----------------------------------------------------
    PCサイトcss
----------------------------------------------------*/

@media screen and (min-width:600px) {
    /*/////////////PC用のCSSをここに作成してください。/////////////*/
    /*/////////////必ず中括弧の中に作成してください。/////////////*/
.forSP, .sp_br, .sp {
    display: none !important;
}


.big {
    font-size: xx-large;
    color: #ff7060;
}





    
}
    .category_links{
     position: relative;
     font-family: "Noto Sans JP", sans-serif;
     font-weight: 700;
     line-height: 1.4;
     margin: 4rem 0 2rem 0;
     padding: 1.5rem 2rem;
     background: #095599;
     color: #fff;
     font-size: 3rem;
    }





    
    /*----------------------------------------------------
        SPサイトcss
    ----------------------------------------------------*/
    
    @media screen and (max-width:599px) {
    /*/////////////SP用のCSSをここに作成してください。/////////////*/
    /*/////////////必ず中括弧の中に作成してください。/////////////*/
    .category_links{
      margin: 3rem 0 2rem 0;
      padding: 1.2rem;
      font-size: 2.1rem;
     }
        #sec03 .sec__inner .point-explanation {
  text-align: center;
  font-weight: bold;
}
	
	.caption_scroll {
    overflow: auto;
    white-space: nowrap;
    scrollbar-width: thin;
    scrollbar-color: #c0c0c0 #eee;
    /*一つ目はスクロールバーのつまみ、二つ目はトラックに適用される。 */
    cursor: grab;
    /* for chrome, safari */
  }
  .caption_scroll .caption_scroll:active {
    cursor: grabbing;
  }
  .caption_scroll .caption_scroll::-webkit-scrollbar {
    height: 5px;
  }
  .caption_scroll .caption_scroll::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #c0c0c0;
  }
  .caption_scroll .caption_scroll::-webkit-scrollbar-track {
    border-radius: 2px;
    background: #eee;
  }

.big {
    font-size: xx-large;
    color: #ff7060;
}



}
.caption_scroll table {
  border: none;
  display: table;
}
.caption_scroll table ul {
  margin: 0 0 0 1rem;
}
.caption_scroll table ul li {
  text-align: left;
  font-size: 1.6rem;
  position: relative;
  padding: 0 0 0 2rem;
  line-height: 1.5;
  white-space: normal;
}
.caption_scroll table ul li::before {
  position: absolute;
  display: block;
  content: '';
  width: 8px;
  height: 8px;
  background: #ebe6df;
  border-radius: 50%;
  background-size: 8px auto;
  left: 0;
  top: 15%;
  transform: translateY(50%);
}
    }
    @media screen and (max-width: 480px) {
  .caption_scroll table thead {
    width: 100%;
    display: contents;
  }
}
.caption_scroll table thead th {
  display: table-cell;
}
.caption_scroll table thead th:nth-child(1) {
  background: none;
  border: none;
}
@media screen and (max-width: 480px) {
  .caption_scroll tbody {
    width: 100%;
    display: contents;
  }
}
.caption_scroll tbody tr th {
  background: #666666;
  color: #fff;
  writing-mode: vertical-rl;
  display: table-cell;
}
@media screen and (max-width: 480px) {
  .caption_scroll tbody tr th {
    writing-mode: horizontal-tb;
  }
}
.caption_scroll tbody tr td {
  display: table-cell;
  word-wrap: normal;
  vertical-align: top;
}
.caption_scroll tbody tr td .btn-internal {
  margin: 1rem auto;
}
.caption_scroll tbody tr td .btn-internal a {
  padding: 2rem 5rem 2rem 4rem;
}
@media screen and (max-width: 480px) {
  .caption_scroll tbody tr td .btn-internal {
    width: 14rem;
  }
  .caption_scroll tbody tr td .btn-internal a {
    padding: 1rem;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 480px) {
  .caption_scroll tr {
    width: auto;
    display: table-row;
  }
}
.caption_scroll tr th {
  font-size: 1.8rem;
  line-height: 1.3888888889;
  padding: 1.25rem 1rem;
}
@media screen and (max-width: 480px) {
  .caption_scroll tr th {
    max-width: 145px;
    font-size: 1.3rem;
  }
}
.caption_scroll tr th:nth-child(2) {
  background: #2e9f73;
  color: #fff;
}
.caption_scroll tr th:nth-child(3) {
  background: #e44d73;
  color: #fff;
}
.caption_scroll tr th:nth-child(4) {
  background: #3695d9;
  color: #fff;
}
.caption_scroll tr th:nth-child(5) {
  background: #fb7e51;
  color: #fff;
}
.caption_scroll tr td:nth-child(2) ul li::before {
  background: #2e9f73;
}
.caption_scroll tr td:nth-child(3) ul li::before {
  background: #e44d73;
}
.caption_scroll tr td:nth-child(4) ul li::before {
  background: #3695d9;
}
.caption_scroll tr td:nth-child(5) ul li::before {
  background: #fb7e51;
}
.caption_scroll .btn-internal a::before {
  right: 4.5%;
  width: 17px;
  height: 17px;
}
.caption_scroll .btn-internal a::after {
  right: 8%;
}