@charset "utf-8";


.koe span {
    font-weight: bold;
}



.koe .kbox .box {
    display: flex;
    padding: 2rem 10rem;
}

.koe .kbox .box p.fk {
    border: solid 2px;
    border-radius: 4rem;
    padding: 3rem;
    width: 70%;
    position: relative;
    line-height: 1.8;
}

.koe .kbox .box p.ic {text-align: center;width: 30%;font-weight: bold;}

.koe .kbox .box p.ic img {
    display: block;
    margin: 0 auto 1rem;
    border: solid 2px;
    border-radius: 10rem;
    height: 13rem;
    width: 13rem;
}

.koe .kbox .box:nth-child(2n) {}

.koe .kbox .box:nth-child(2n) .fk {
    order: 2;
}

.koe .kbox .box:nth-child(2n) .ic {
    order: 1;
}

.koe .kbox .box p.fk:after {
    content: "";
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 20px solid #ffffff;
    position: absolute;
    right: -20px;
    top: 50%;
    right: -3%;
}

.koe .kbox .box p.fk:before {
    content: "";
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 20px solid #212121;
    position: absolute;
    right: -20px;
    top: 50%;
}

.koe .kbox .box:nth-child(2n) .fk:after {
    content: "";
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 20px solid #ffffff;
    border-left: unset;
    position: absolute;
    left: -20px;
    top: 50%;
    left: -3.5%;
    right: unset;
}

.koe .kbox .box:nth-child(2n) .fk:before {
    content: "";
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 20px solid #000000;
    border-left: unset;
    position: absolute;
    left: -20px;
    top: 50%;
    left: -4%;
    right: unset;
}
.koe .conclusion-box-frame img {
    display: block;
    margin: 0 auto 2rem;
}

.caption_scroll {
    margin: 10px 0;
    overflow: auto;
    white-space: nowrap;
    margin-top: 0.8em;
    color: #919191;
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: center;
    word-break: break-all;
    scrollbar-width: thin;
    scrollbar-color: #C0C0C0 #eee;/*一つ目はスクロールバーのつまみ、二つ目はトラックに適用される。 */
}
/* for chrome, safari */
.caption_scroll::-webkit-scrollbar {
    height: 5px;
}
.caption_scroll::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #C0C0C0;
}
.caption_scroll::-webkit-scrollbar-track {
    border-radius: 2px;
    background: #eee;
}



.double-img-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px; /* 画像間の余白 */
  margin: 30px 0;
  flex-wrap: wrap; /* 狭い画面では縦並びにする */
}

.double-img {
  width: calc(50% - 10px); /* 2枚で100%に収まるよう調整 */
}

.double-img img {
  width: 100%;
  height: auto;
  border-radius: 0;
  display: block;
}

.caption {
  font-size: 0.85em;
  color: #666;
  margin-top: 8px;
  line-height: 1.5;
}


/*----------------------------------------------------
    PCサイトcss
----------------------------------------------------*/
@media screen and (min-width: 768px) {
/*/////////////PC用のCSSをここに作成してください。/////////////*/
/*/////////////必ず中括弧の中に作成してください。/////////////*/
  .sp-scroll-table.sp {
    display: none;
  }

}



/*----------------------------------------------------
    SPサイトcss
----------------------------------------------------*/
@media screen and (max-width: 767px) {
/*/////////////SP用のCSSをここに作成してください。/////////////*/
/*/////////////必ず中括弧の中に作成してください。/////////////*/
.koe {
    /* width: 94%; */
    /* margin: 0 auto; */
    /* display: block; */
}
.koe .kbox .box {
    padding: 1rem 0;
}
.koe .kbox {
    width: 96%;
    margin: 0 auto;
}
.koe .kbox .box p.fk {
    padding: 2rem;
}

.koe .kbox .box p.ic img {
    width: 8rem;
    height: 8rem;
}

.koe .kbox .box p.fk:after {
    right: -7%;
}

.koe .kbox .box p.fk:before {right: -9%;}

.koe .kbox .box:nth-child(2n) .fk:after {
    left: -7%;
}

.koe .kbox .box:nth-child(2n) .fk:before {
    left: -8.5%;
}
}