@charset "UTF-8";
/*================================================
 *  ベース
 ================================================*/
/* font-size
ベース：62.5%
1rem=10px
*/
/* サイズ表
-s-small < -small < -middle < -large < -x-large
*/
/*================================================
 *  ベース定義
 ================================================*/
/* font-family */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
/*================================================
 *  関数の定義
 ================================================*/
/*
マップ型で定義されていない値が呼び出された時はエラーを返す
@include responsive(pc) {}
*/
/*
桁数（デフォルト0)
round-decimal(0.333)    => 0
round-decimal(0.333, 1) => 0.3
round-decimal(0.333, 2) => 0.33
round-decimal(0.666)    => 1
round-decimal(0.666, 1) => 0.7
round-decimal(0.666, 2) => 0.67
*/
/*
第1引数に指定したいピクセル値を指定
font-size: px(16);
*/
/*
第1引数に指定したいピクセル値を指定、第2引数に基準となるルートのfont-size値（デフォルトでは10px）を指定
font-size: rem(36);
font-size: rem(36, 12);
*/
/*
第1引数に指定したいピクセル値を指定、第2引数に基準となる画面幅（デザインカンプの横幅）を指定
width: vw(40);
width: vw(40, 375);
*/
/*
第1引数に最小文字サイズ、第2引数に最大文字サイズ、第3引数に最小文字の画面幅
round-decimal（小数点以下の桁数と丸め）で桁数と丸め処理
font-size: clampRem(14, 18, 1024);
font-size: clampPx(14, 18, 1024);
*/
/*
引数に何行で省略するかを指定
@include line-clamp(1);
*/
/*
第1引数に「wrap」「column」を指定、空なら初期値
@include flexbox(wrap);
*/
/*
第1引数に「disc」「square」「number」「asterisk」を指定、空なら初期値
@include liststyle(disc);
*/
/*================================================
 *  カスタムプロパティ
 ================================================*/
@media (min-width: 768px) {
  :root {
    --max-width: 1160px;
    --max-width-small: 1024px;
    --max-width-x-small: 768px;
    --padding: 0 32px;
    --padding-value: 32px;
    --margin: 0 auto;
  }
}
@media (max-width: 767px) {
  :root {
    --max-width: 100%;
    --max-width-small: 100%;
    --max-width-x-small: 100%;
    --padding: 0 16px;
    --padding-value: 16px;
    --margin: 0 auto;
  }
}

/*================================================
 *  上書き＆調整用 Prefix：
 ================================================*/
a[href] {
  overflow-wrap: anywhere;
}


/*================================================
 *  ヘッダー Prefix：
 ================================================*/
@media (min-width: 768px) {
  #header {
    position: static;
  }
}
@media (min-width: 768px) {
  .add-header__option {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
  }
}
@media (max-width: 767px) {
  .add-header__option {
    display: none;
  }
}

@media (min-width: 768px) {
  .add-header__menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
  }
  .add-header__menu > li {
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  .add-header__menu > li > .-icon {
    width: 12px;
    min-width: 12px;
  }
  .add-header__menu > li > .-icon::before {
    content: "\e168";
    display: inline-block;
    color: #E6E6E6;
    font-family: "eparkfont";
    font-size: 12px;
  }
  .add-header__menu > li > .-label {
    font-size: 1.6rem;
    font-weight: 400;
    color: #109EBB;
  }
  .add-header__menu > li > .-label a {
    font-size: 1.6rem;
    font-weight: 400;
    color: #109EBB;
  }
  .add-header__menu > li > .-label a:hover {
    opacity: 0.8;
  }
}
/*================================================
 *  ファーストビュー Prefix：
 ================================================*/
@media (min-width: 768px) {
  .add-first-view {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    line-height: 0;
  }
  .add-first-view video {
    width: 100%;
    aspect-ratio: 16/9;
  }
}
@media (max-width: 767px) {
  .add-first-view {
    width: 100%;
    line-height: 0;
  }
  .add-first-view video {
    width: 100%;
    aspect-ratio: 16/9;
  }
}

/*================================================
 *  検索エリアコンテンツ Prefix：
 ================================================*/
@media (min-width: 768px) {
  .add-search-area__wrapper {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .add-search-area__wrapper {
    width: 100%;
    padding: 16px 10px 0;
  }
}

@media (min-width: 768px) {
  .add-search-area__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
    max-width: 1160px;
    margin: 0 auto 30px;
    padding: 24px 32px;
    border: 1px solid #109EBB;
  }
  .add-search-area__container > *:first-child {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .add-search-area__container > *:last-child {
    grid-column: 2/4;
    grid-row: 1/2;
  }
}
@media (max-width: 767px) {
  .add-search-area__container {
    width: 100%;
    padding: 16px;
    border: 1px solid #109EBB;
  }
}

@media (min-width: 768px) {
  .add-search-area__search {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .add-search-area__search {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .add-search-area__column {
    display: block !important;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .add-search-area__column {
    display: none;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .add-search-area__search-list {
    width: 100%;
  }
  .add-search-area__search-list > div {
    width: 100%;
    margin-bottom: 24px;
  }
  .add-search-area__search-list > div > dt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    margin-bottom: 4px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #109EBB;
  }
  .add-search-area__search-list > div > dt > .-label {
    flex: 1;
    font-size: 1.8rem;
    font-weight: 700;
    color: #109EBB;
  }
  .add-search-area__search-list > div > dt > .-column-toggle {
    display: none;
  }
  .add-search-area__search-list > div > dt > .-column-toggle:empty {
    display: none;
  }
  .add-search-area__search-list > div > dd {
    width: 100%;
  }
  .add-search-area__search-list > div:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .add-search-area__search-list {
    width: 100%;
  }
  .add-search-area__search-list > div {
    width: 100%;
    margin-bottom: 16px;
  }
  .add-search-area__search-list > div > dt {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    margin-bottom: 4px;
    font-size: 1.6rem;
    font-weight: 700;
    color: #109EBB;
  }
  .add-search-area__search-list > div > dt > .-label {
    flex: 1;
    font-size: 1.6rem;
    font-weight: 700;
    color: #109EBB;
  }
  .add-search-area__search-list > div > dt > .-column-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.6rem;
    font-weight: 400;
    color: #109EBB;
  }
  .add-search-area__search-list > div > dt > .-column-toggle::after {
    display: block;
    content: "\e154";
    font-family: "eparkfont";
    font-size: 1.1rem;
    line-height: 1;
    color: #109EBB;
  }
  .add-search-area__search-list > div > dt > .-column-toggle.-active::after {
    content: "\e152";
  }
  .add-search-area__search-list > div > dt > .-column-toggle:empty {
    display: none;
  }
  .add-search-area__search-list > div > dd {
    width: 100%;
  }
  .add-search-area__search-list > div:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .add-search-area__search-input {
    position: relative;
    width: 100%;
    border-radius: 2px;
    border: 1px solid #C2C6CE;
  }
  .add-search-area__search-input input {
    width: 100%;
    min-height: 38px;
    padding: 0 8px;
    border: none;
    background-color: #FFFFFF;
  }
  .add-search-area__search-input button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    right: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    outline: none;
    width: 38px;
    height: 100%;
  }
  .add-search-area__search-input button::before {
    display: block;
    content: "\e010";
    font-family: "eparkfont";
    font-size: 1.6rem;
    color: #DCDCDC;
  }
  .add-search-area__search-input button:hover::before {
    color: #109EBB;
  }
  .add-search-area__search-input button:focus {
    outline: none;
  }
}
@media (max-width: 767px) {
  .add-search-area__search-input {
    position: relative;
    width: 100%;
    border-radius: 2px;
    border: 1px solid #C2C6CE;
  }
  .add-search-area__search-input input {
    width: 100%;
    min-height: 38px;
    padding: 0 8px;
    border: none;
    background-color: #FFFFFF;
  }
  .add-search-area__search-input button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    right: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    outline: none;
    width: 38px;
    height: 100%;
  }
  .add-search-area__search-input button::before {
    display: block;
    content: "\e010";
    font-family: "eparkfont";
    font-size: 1.6rem;
    color: #DCDCDC;
  }
  .add-search-area__search-input button:hover::before {
    color: #109EBB;
  }
  .add-search-area__search-input button:focus {
    outline: none;
  }
}

@media (min-width: 768px) {
  .add-search-area__label {
    margin-bottom: 4px;
    font-weight: 700;
  }
  .add-search-area__label:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .add-search-area__label {
    display: none;
  }
}

@media (min-width: 768px) {
  .column-list-area {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 18px;
    width: 100%;
    margin-bottom: 0;
  }
  .column-list-area > li a {
    font-size: 1.4rem;
    color: #4d4d4d;
    text-decoration: underline;
  }
}
@media (max-width: 767px) {
  .column-list-area {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 12px;
    width: 100%;
    margin-bottom: 0;
  }
  .column-list-area > li a {
    padding: 4px 8px;
    border-radius: 4px;
    background-color: #109EBB;
    font-size: 1.4rem;
    color: #FFFFFF;
  }
}

/*================================================
 *  コンテンツ Prefix：
 ================================================*/
@media (min-width: 768px) {
  #content {
    margin: 0;
  }
}
@media (min-width: 768px) {
  .add-prefectures__wrapper {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .add-prefectures__wrapper {
    width: 100%;
  }
  .add-prefectures__wrapper .footer-title {
    background-color: transparent;
    color: #00a9c8;
  }
  .add-prefectures__wrapper .footer-pref-list {
    border-top: 1px solid #E6E6E6;
    border-left: 1px solid #E6E6E6;
    border-right: 1px solid #E6E6E6;
  }
  .add-prefectures__wrapper .footer-pref-list:has(+ .footer-pref-list):not(.open) .region-title {
    border-bottom: none;
  }
  .add-prefectures__wrapper .footer-pref-list:has(+ .footer-pref-list) .area-list .pref-item:last-child .pref-link {
    border-bottom: none;
  }
}

/*================================================
*  サイド Prefix：
================================================*/
@media (max-width: 767px) {
  .column-menu-list.-add-connect:not(:last-child) {
    padding-bottom: 0;
  }
}

/*================================================
*  この記事を書いた人 Prefix：
================================================*/
@media (min-width: 768px) {
  .editor-profile {
    width: 100%;
    margin-bottom: 40px;
  }
  .editor-profile:last-child {
    margin-bottom: 1em;
  }
}
@media (max-width: 767px) {
  .editor-profile {
    width: 100%;
    margin-bottom: 40px;
  }
  .editor-profile:last-child {
    margin-bottom: 1em;
  }
}

@media (min-width: 768px) {
  .editor-profile-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    padding: 20px 0 40px;
  }
  .editor-profile-inner:first-child {
    padding-top: 0;
  }
  .editor-profile-inner:last-child {
    padding-bottom: 0;
  }
  .editor-profile-inner:only-child {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .editor-profile-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding: 20px 0 40px;
  }
  .editor-profile-inner:first-child {
    padding-top: 0;
  }
  .editor-profile-inner:last-child {
    padding-bottom: 0;
  }
  .editor-profile-inner:only-child {
    padding: 0;
  }
}

@media (min-width: 768px) {
  .editor-profile-image {
    width: 100px;
    min-width: 100px;
    height: 100%;
    border-radius: 1000px;
    overflow: clip;
  }
}
@media (max-width: 767px) {
  .editor-profile-image {
    width: 80px;
    min-width: 80px;
    height: 100%;
    border-radius: 1000px;
    overflow: clip;
  }
}

@media (min-width: 768px) {
  .editor-profile-text {
    position: relative;
    flex: 1;
  }
}
@media (max-width: 767px) {
  .editor-profile-text {
    position: relative;
    flex: 1;
  }
}

@media (min-width: 768px) {
  .editor-profile-name {
    margin-bottom: 6px;
    font-weight: 500;
  }
  .editor-profile-name:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .editor-profile-name {
    margin-bottom: 6px;
    font-weight: 500;
  }
  .editor-profile-name:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .editor-profile-bio {
    position: relative;
    display: -webkit-box;
    min-height: 60px;
    margin-bottom: 0;
    padding-bottom: 8px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4; /* 開く前に見せたい行数を指定 */
  }
  .editor-profile-bio::after {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(180deg, hsla(0deg, 0%, 100%, 0) 0, hsla(0deg, 0%, 100%, 0.9) 50%, hsla(0deg, 0%, 100%, 0.9) 0, #fff);
    content: "";
  }
  .editor-profile-text:has(:checked) .editor-profile-bio {
    display: block;
  }
  .editor-profile-text:has(:checked) .editor-profile-bio::after {
    content: none;
  }
}
@media (max-width: 767px) {
  .editor-profile-bio {
    position: relative;
    display: -webkit-box;
    min-height: 60px;
    margin-bottom: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4; /* 開く前に見せたい行数を指定 */
  }
  .editor-profile-bio::after {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(180deg, hsla(0deg, 0%, 100%, 0) 0, hsla(0deg, 0%, 100%, 0.9) 50%, hsla(0deg, 0%, 100%, 0.9) 0, #fff);
    content: "";
  }
  .editor-profile-text:has(:checked) .editor-profile-bio {
    display: block;
  }
  .editor-profile-text:has(:checked) .editor-profile-bio::after {
    content: none;
  }
}

@media (min-width: 768px) {
  .editor-profile-read-more {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0 4px;
    width: 100%;
    margin: 0;
    font-size: 1.4rem;
    color: #00a9c9;
  }
  .editor-profile-read-more > .-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  .editor-profile-read-more > .-more::after {
    display: inline-block;
    width: 12px;
    height: 8px;
    background-color: #00a9c9;
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
            clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: "";
  }
  .editor-profile-read-more > .-close {
    display: none;
  }
  .editor-profile-read-more > .-close::after {
    display: inline-block;
    width: 12px;
    height: 8px;
    background-color: #00a9c9;
    -webkit-clip-path: polygon(50% 0, 0 100%, 100% 100%);
            clip-path: polygon(50% 0, 0 100%, 100% 100%);
    content: "";
  }
  .editor-profile-read-more:hover {
    color: #00a9c9;
    opacity: 0.8;
    cursor: pointer;
  }
  .editor-profile-read-more input {
    display: none;
  }
  .editor-profile-text:has(:checked) .editor-profile-read-more {
    position: unset;
    justify-content: flex-end;
  }
  .editor-profile-text:has(:checked) .editor-profile-read-more > .-more {
    display: none;
  }
  .editor-profile-text:has(:checked) .editor-profile-read-more > .-close {
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
}
@media (max-width: 767px) {
  .editor-profile-read-more {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0 4px;
    width: 100%;
    margin: 0;
    font-size: 1.4rem;
    color: #00a9c9;
  }
  .editor-profile-read-more > .-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  .editor-profile-read-more > .-more::after {
    display: inline-block;
    width: 12px;
    height: 8px;
    background-color: #00a9c9;
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
            clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: "";
  }
  .editor-profile-read-more > .-close {
    display: none;
  }
  .editor-profile-read-more > .-close::after {
    display: inline-block;
    width: 12px;
    height: 8px;
    background-color: #00a9c9;
    -webkit-clip-path: polygon(50% 0, 0 100%, 100% 100%);
            clip-path: polygon(50% 0, 0 100%, 100% 100%);
    content: "";
  }
  .editor-profile-read-more:hover {
    color: #00a9c9;
    opacity: 0.8;
    cursor: pointer;
  }
  .editor-profile-read-more input {
    display: none;
  }
  .editor-profile-text:has(:checked) .editor-profile-read-more {
    position: unset;
    justify-content: flex-end;
  }
  .editor-profile-text:has(:checked) .editor-profile-read-more > .-more {
    display: none;
  }
  .editor-profile-text:has(:checked) .editor-profile-read-more > .-close {
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
}

@media (min-width: 768px) {
  .editorial-comment-box {
    width: 100%;
    margin: 30px 0 0;
  }
  .editorial-comment-box:first-child {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .editorial-comment-box {
    width: 100%;
    margin: 30px 0 20px;
  }
  .editorial-comment-box:first-child {
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .editorial-comment-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 20px;
    min-height: 40px;
    padding: 4px 15px;
    background-color: #00A9C9;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    color: #FFFFFF;
  }
  .editorial-comment-title:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .editorial-comment-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 20px;
    min-height: 30px;
    padding: 4px 15px;
    background-color: #00A9C9;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
    color: #FFFFFF;
  }
  .editorial-comment-title:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .editorial-comment-body {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
  }
  .editorial-comment-body.-vertical {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .editorial-comment-body {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
  }
  .editorial-comment-body.-vertical {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
  }
}

@media (min-width: 768px) {
  .editorial-comment-author {
    width: 100px;
  }
  .editorial-comment-body.-vertical .editorial-comment-author {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .editorial-comment-author {
    width: 80px;
  }
  .editorial-comment-body.-vertical .editorial-comment-author {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .editorial-comment-author-image {
    width: 100px;
    min-width: 100px;
    height: 100%;
    margin-bottom: 4px;
    border-radius: 1000px;
    overflow: clip;
  }
  .editorial-comment-author-image img {
    width: 100%;
    max-width: 100%;
    vertical-align: middle;
  }
  .editorial-comment-author-image:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .editorial-comment-author-image {
    width: 80px;
    min-width: 80px;
    height: 100%;
    margin-bottom: 4px;
    border-radius: 1000px;
    overflow: clip;
  }
  .editorial-comment-author-image img {
    width: 100%;
    max-width: 100%;
    vertical-align: middle;
  }
  .editorial-comment-author-image:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .editorial-comment-author-name {
    width: 100%;
    font-size: 1.4rem;
    font-weight: 700;
    color: #4D4D4D;
    text-align: center;
  }
  .editorial-comment-body.-vertical .editorial-comment-author-name {
    flex: 1;
    width: auto;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .editorial-comment-author-name {
    width: 100%;
    font-size: 1.2rem;
    font-weight: 700;
    color: #4D4D4D;
    text-align: center;
  }
  .editorial-comment-body.-vertical .editorial-comment-author-name {
    flex: 1;
    width: auto;
    text-align: left;
  }
}

@media (min-width: 768px) {
  .editorial-comment-text {
    flex: 1;
    position: relative;
    min-height: 100px;
    padding: 15px;
    border: 1px solid rgba(0, 169, 201, 0.16);
    border-radius: 2px;
    background: rgba(0, 169, 201, 0.08);
    font-size: 1.6rem;
    line-height: 1.5;
    color: #4D4D4D;
  }
  .editorial-comment-text::after {
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    pointer-events: none;
    position: absolute;
    right: 100%;
    top: 50px;
    border-color: rgba(240, 250, 252, 0);
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 10px;
    border-right-width: 10px;
    margin-top: -10px;
    border-right-color: #F0FAFC;
  }
  .editorial-comment-text::before {
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    pointer-events: none;
    position: absolute;
    right: 100%;
    top: 50px;
    border-color: rgba(211, 240, 245, 0);
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 11px;
    border-right-width: 11px;
    margin-top: -11px;
    margin-right: 1px;
    border-right-color: #D3F0F5;
  }
  .editorial-comment-text p:last-child {
    margin-bottom: 0;
  }
  .editorial-comment-body.-vertical .editorial-comment-text {
    width: 100%;
  }
  .editorial-comment-body.-vertical .editorial-comment-text::after {
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    pointer-events: none;
    position: absolute;
    top: auto;
    right: auto;
    bottom: 100%;
    left: 50px;
    border-color: rgba(240, 250, 252, 0);
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 10px;
    border-right-width: 10px;
    margin-top: 0;
    margin-left: -10px;
    border-bottom-color: #F0FAFC;
  }
  .editorial-comment-body.-vertical .editorial-comment-text::before {
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    pointer-events: none;
    position: absolute;
    top: auto;
    right: auto;
    bottom: 100%;
    left: 50px;
    border-color: rgba(211, 240, 245, 0);
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 11px;
    border-right-width: 11px;
    margin-top: 0;
    margin-right: 0;
    margin-left: -11px;
    margin-bottom: 1px;
    border-bottom-color: #D3F0F5;
  }
}
@media (max-width: 767px) {
  .editorial-comment-text {
    flex: 1;
    position: relative;
    min-height: 100px;
    background: #F0FAFC;
    padding: 12px;
    border: 1px solid rgba(0, 169, 201, 0.16);
    border-radius: 2px;
    background: rgba(0, 169, 201, 0.08);
    font-size: 1.4rem;
    line-height: 1.5;
    color: #4D4D4D;
  }
  .editorial-comment-text::after {
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    pointer-events: none;
    position: absolute;
    right: 100%;
    top: 40px;
    border-color: rgba(240, 250, 252, 0);
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 10px;
    border-right-width: 10px;
    margin-top: -10px;
    border-right-color: #F0FAFC;
  }
  .editorial-comment-text::before {
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    pointer-events: none;
    position: absolute;
    right: 100%;
    top: 40px;
    border-color: rgba(211, 240, 245, 0);
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 11px;
    border-right-width: 11px;
    margin-top: -11px;
    margin-right: 1px;
    border-right-color: #D3F0F5;
  }
  .editorial-comment-text p:last-child {
    margin-bottom: 0;
  }
  .editorial-comment-body.-vertical .editorial-comment-text {
    width: 100%;
  }
  .editorial-comment-body.-vertical .editorial-comment-text::after {
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    pointer-events: none;
    position: absolute;
    top: auto;
    right: auto;
    bottom: 100%;
    left: 40px;
    border-color: rgba(240, 250, 252, 0);
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 10px;
    border-right-width: 10px;
    margin-top: 0;
    margin-left: -10px;
    border-bottom-color: #F0FAFC;
  }
  .editorial-comment-body.-vertical .editorial-comment-text::before {
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    pointer-events: none;
    position: absolute;
    top: auto;
    right: auto;
    bottom: 100%;
    left: 40px;
    border-color: rgba(211, 240, 245, 0);
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 11px;
    border-right-width: 11px;
    margin-top: 0;
    margin-right: 0;
    margin-left: -11px;
    margin-bottom: 1px;
    border-bottom-color: #D3F0F5;
  }
}