@charset "UTF-8";


@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
.ifw_wrap {
position: relative;
width: -moz-fit-content;
width: fit-content;
margin: 40px auto;
}
.ifw_wrap.ifw_left {
margin-left: 0;
margin-right: auto;
}
.ifw_wrap.ifw_right {
margin-left: auto;
margin-right: 0;
}
.ifw_wrap.ifw_center {
margin-left: auto;
margin-right: auto;
}
.ifw_wrap button.ifw_btn,
.ifw_wrap div.ifw_btn {
display: block;
background: #ffffff;
color: #333333;
font-family: inherit;
font-weight: 500;
border: 1.5px solid #a7a7a7;
line-height: 1em;
padding: 8px 20px;
font-size: 12px;
cursor: pointer;
border-radius: 30px;
transition: 0.3s ease;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.ifw_wrap button.ifw_btn:hover,
.ifw_wrap div.ifw_btn:hover {
background: #fff0f2;
}
.ifw_wrap button.ifw_btn:active,
.ifw_wrap div.ifw_btn:active {
transform: scale(0.92);
}
.ifw_wrap button.ifw_btn span.material-symbols-rounded,
.ifw_wrap div.ifw_btn span.material-symbols-rounded {
font-size: 20px;
vertical-align: middle;
margin: 0 2px;
color: #ff5e78;
}
.ifw_wrap button.ifw_btn span.ifw_count,
.ifw_wrap div.ifw_btn span.ifw_count {
margin: 0 2px;
font-weight: 600;
font-size: 14px;
}
.ifw_wrap .material-symbols-rounded {
font-variation-settings: "FILL" 1, "wght" 400, "GRAD" -25, "opsz" 24;
}
.ifw_wrap .ifw_message_wrap {
position: absolute;
filter: drop-shadow(0px 3px 6px #00000030);
opacity: 0;
visibility: hidden;
pointer-events: none;
z-index: 2;
transition: 0.5s;
min-width: 180px;
font-size: 90%;
}
@media (min-width: 1030px) {
.ifw_wrap .ifw_message_wrap {
font-size: 100%;
}
}
.ifw_wrap .ifw_message_wrap.ifw_thanks {
width: 95vw;
}
.ifw_wrap .ifw_message_wrap.ifw_thanks .ifw_message {
max-width: 100%;
width: 100%;
}
@media (min-width: 481px) {
.ifw_wrap .ifw_message_wrap.ifw_thanks {
width: 500px;
}
}
.ifw_wrap .ifw_message_wrap .ifw_close {
width: -moz-fit-content;
width: fit-content;
position: absolute;
top: 5px;
right: 5px;
z-index: 1;
font-size: 17px;
font-weight: 900;
line-height: 1;
transition: 0.3s;
cursor: pointer;
background: white;
height: 23px;
width: 23px;
border-radius: 30px;
text-align: center;
line-height: 23px;
}
.ifw_wrap .ifw_message_wrap .ifw_close:hover {
opacity: 0.6;
}
.ifw_wrap .ifw_message_wrap.visible {
opacity: 1;
visibility: visible;
pointer-events: all;
}
.ifw_wrap .ifw_message_wrap .ifw_arrow {
position: absolute;
background: white;
height: calc(tan(56deg) * 18px / 2);
width: 28px;
z-index: 0;
}
.ifw_wrap .ifw_message_wrap.ifw_top_right {
bottom: calc(100% + 30px);
right: 0;
transition: 0.5s;
transform: translateY(10px);
}
.ifw_wrap .ifw_message_wrap.ifw_top_right .ifw_arrow {
clip-path: polygon(0 0, 100% 0, 50% 100%);
right: 20px;
top: calc(100% - 1px);
}
.ifw_wrap .ifw_message_wrap.ifw_top_left {
bottom: calc(100% + 30px);
left: 0;
transition: 0.5s;
transform: translateY(10px);
}
.ifw_wrap .ifw_message_wrap.ifw_top_left .ifw_arrow {
clip-path: polygon(0 0, 100% 0, 50% 100%);
left: 20px;
top: calc(100% - 1px);
}
.ifw_wrap .ifw_message_wrap.ifw_top_center {
bottom: calc(100% + 30px);
left: 50%;
transform: translate(-50%, -10px);
transition: 0.5s;
}
.ifw_wrap .ifw_message_wrap.ifw_top_center .ifw_arrow {
clip-path: polygon(0 0, 100% 0, 50% 100%);
left: 0;
right: 0;
margin: auto;
top: calc(100% - 1px);
}
.ifw_wrap .ifw_message_wrap.ifw_bottom_right {
top: calc(100% + 30px);
right: 0;
transition: 0.5s;
transform: translateY(-10px);
}
.ifw_wrap .ifw_message_wrap.ifw_bottom_right .ifw_arrow {
clip-path: polygon(50% 0, 100% 100%, 0 100%);
right: 20px;
bottom: calc(100% - 1px);
}
.ifw_wrap .ifw_message_wrap.ifw_bottom_left {
top: calc(100% + 30px);
left: 0;
transition: 0.5s;
transform: translateY(-10px);
}
.ifw_wrap .ifw_message_wrap.ifw_bottom_left .ifw_arrow {
clip-path: polygon(50% 0, 100% 100%, 0 100%);
left: 20px;
bottom: calc(100% - 1px);
}
.ifw_wrap .ifw_message_wrap.ifw_bottom_center {
top: calc(100% + 30px);
left: 50%;
transform: translate(-50%, -10px);
transition: 0.5s;
}
.ifw_wrap .ifw_message_wrap.ifw_bottom_center .ifw_arrow {
clip-path: polygon(50% 0, 100% 100%, 0 100%);
left: 0;
right: 0;
margin: auto;
bottom: calc(100% - 1px);
}
.ifw_wrap .ifw_message_wrap .ifw_message {
background: #ffffff;
border-radius: 8px;
overflow: hidden;
border: 1px solid #00000021;
}
.ifw_wrap .ifw_message_wrap .ifw_message .ifw_text {
padding: 25px 35px 15px;
}
.ifw_wrap .ifw_message_wrap .ifw_message .ifw_text p {
line-height: 1.8em;
margin: 0 auto 1em;
font-size: 100%;
}
.ifw_wrap .ifw_message_wrap .ifw_message .ifw_text > *:first-of-type {
margin-top: 0;
}
.ifw_wrap .ifw_message_wrap .ifw_message .ifw_text > *:last-of-type {
margin-bottom: 0;
}
@media (min-width: 481px) {
.ifw_wrap .ifw_message_wrap .ifw_message .ifw_text {
padding: 25px 40px;
}
}
.ifw_wrap .ifw_message_wrap .ifw_message .ifw_image {
width: 100%;
height: auto;
}
.ifw_wrap .ifw_message_wrap .ifw_message .ifw_image img {
width: 100%;
height: auto;
}
.ifw_wrap .ifw_message_wrap .ifw_processing {
min-width: 180px;
}
.ifw_wrap .ifw_message_wrap .ifw_processing:after {
display: inline-block;
overflow: hidden;
vertical-align: bottom;
animation: ellipsis steps(4, end) 1300ms infinite;
content: "..."; width: 0px;
height: 1rem;
line-height: 1rem;
vertical-align: text-bottom;
}
.ifw_wrap .ifw_message_wrap .ifw_processing.ifw_error:after {
display: none;
}
.ifw_wrap .ifw_message_wrap .ifw_comment {
max-width: 460px;
margin: 0 auto;
padding: 20px 30px 30px;
}
.ifw_wrap .ifw_message_wrap .ifw_comment p.ifw_memo {
font-size: 85%;
margin: 0 auto 20px;
line-height: 1.4em;
}
.ifw_wrap .ifw_message_wrap .ifw_comment .ifw_send_wrap {
padding-bottom: 20px;
position: relative;
}
.ifw_wrap .ifw_message_wrap .ifw_comment .ifw_send_wrap .ifw_sending_wrap {
width: 100%;
margin-top: 5px;
}
.ifw_wrap .ifw_message_wrap .ifw_comment .ifw_send_wrap .ifw_sending_wrap .ifw_sending,
.ifw_wrap .ifw_message_wrap .ifw_comment .ifw_send_wrap .ifw_sending_wrap .ifw_sent {
font-size: 12px;
margin: 5px 0 8px 10px;
opacity: 0;
visibility: hidden;
pointer-events: none;
position: absolute;
display: none;
width: -moz-fit-content;
width: fit-content;
margin: 0 auto;
text-align: center;
transition: 0.3s;
right: 0;
left: 0;
}
.ifw_wrap .ifw_message_wrap .ifw_comment .ifw_send_wrap .ifw_sending_wrap .ifw_sending.visible,
.ifw_wrap .ifw_message_wrap .ifw_comment .ifw_send_wrap .ifw_sending_wrap .ifw_sent.visible {
opacity: 1;
visibility: visible;
pointer-events: all;
}
.ifw_wrap .ifw_message_wrap .ifw_comment .ifw_send_wrap .ifw_sending_wrap .ifw_sending:after {
display: inline-block;
overflow: hidden;
vertical-align: bottom;
animation: ellipsis steps(4, end) 1300ms infinite;
content: "..."; width: 0px;
}
.ifw_wrap .ifw_message_wrap .ifw_comment textarea.ifw_textarea {
width: 100%;
height: 100px;
padding: 7px;
line-height: 1.7em;
font-size: 13px;
}
.ifw_wrap .ifw_message_wrap .ifw_comment button.ifw_send {
border: none;
box-shadow: none;
background: #333333;
color: #fff;
padding: 10px 20px;
cursor: pointer;
transition: 0.3s;
word-break: keep-all;
width: 200px;
display: block;
margin: 10px auto 0;
}
.ifw_wrap .ifw_message_wrap .ifw_comment button.ifw_send:hover {
background: #6e6e6e;
}
@keyframes ellipsis {
to {
width: 1.2em; }
}.wpulike{display:block;position:relative;line-height:normal;margin:0;padding:10px 0}.wpulike .wp_ulike_general_class{display:inline-flex;align-items:center}.wpulike button.wp_ulike_btn{margin:0;position:relative;display:inline-block;vertical-align:middle;border-radius:.25em;box-shadow:none;padding:1em;font-size:15px;border:none;text-align:center;transition:none;cursor:pointer}.wpulike button.wp_ulike_btn:active,.wpulike button.wp_ulike_btn:focus,.wpulike button.wp_ulike_btn:hover{outline:0}.wpulike button.wp_ulike_btn::-moz-focus-inner{border:0}.wpulike button.wp_ulike_btn:disabled:active,.wpulike button.wp_ulike_btn:disabled:focus,.wpulike button.wp_ulike_btn:disabled:hover,.wpulike button.wp_ulike_btn[disabled=disabled]:active,.wpulike button.wp_ulike_btn[disabled=disabled]:focus,.wpulike button.wp_ulike_btn[disabled=disabled]:hover{outline:0;background-color:initial}.wpulike button.wp_ulike_btn.wp_ulike_put_text{font-size:14px;font-weight:600;line-height:28px;padding:0 10px;min-width:50px}.wpulike .wp_ulike_is_loading .wp_ulike_btn{background-image:url(//tripleunagi.stars.ne.jp/log/wp-content/plugins/wp-ulike/assets/img/svg/loader.svg);background-repeat:no-repeat;background-position:center center}.wpulike .wp_ulike_is_loading .wp_ulike_btn span{visibility:hidden}.wpulike .wp_ulike_is_loading .wp_ulike_btn.wp_ulike_put_image::after{content:none}.wpulike.wpulike-hide-counter .count-box{display:none}.wpulike .count-box:empty{display:none}#buddypress #activity-stream .activity-comments .wpulike,#buddypress #activity-stream .activity-inner .wpulike,#buddypress #activity-stream .activity-meta .wpulike{display:inline-block;vertical-align:super}#buddypress #activity-stream .wp_ulike_likers_wrapper .wp-ulike-liker,#buddypress #activity-stream .wp_ulike_likers_wrapper li{border:none;padding:0}#buddypress #activity-stream .wp_ulike_likers_wrapper .wp-ulike-liker a,#buddypress #activity-stream .wp_ulike_likers_wrapper .wp-ulike-liker img,#buddypress #activity-stream .wp_ulike_likers_wrapper li a,#buddypress #activity-stream .wp_ulike_likers_wrapper li img{float:none;padding:0;margin:0}.wp_ulike_click_is_disabled{pointer-events:none;cursor:default}.wp_ulike_hide_me{visibility:hidden}.wpulike-default button.wp_ulike_btn{color:#616161;background-color:#e0e0e0;min-height:30px;min-width:50px}.wpulike-default button.wp_ulike_btn:focus,.wpulike-default button.wp_ulike_btn:hover{color:#616161;background-color:#e0e0e0;text-decoration:none}.wpulike-default button.wp_ulike_btn:disabled:active,.wpulike-default button.wp_ulike_btn:disabled:focus,.wpulike-default button.wp_ulike_btn:disabled:hover,.wpulike-default button.wp_ulike_btn[disabled=disabled]:active,.wpulike-default button.wp_ulike_btn[disabled=disabled]:focus,.wpulike-default button.wp_ulike_btn[disabled=disabled]:hover{background-color:#e0e0e0}.wpulike-default .wp_ulike_is_liked .wp_ulike_btn{color:#757575}.wpulike-default .wp_ulike_put_image:after{content:'';display:block;background:url(//tripleunagi.stars.ne.jp/log/wp-content/plugins/wp-ulike/assets/img/svg/like.svg) no-repeat;background-size:contain;width:16px;height:16px;position:absolute;left:50%;top:50%;transform:translateX(-50%) translateY(-50%)}.wpulike-default .wp_ulike_put_image.wp_ulike_btn_is_active:after{filter:invert(44%) sepia(40%) saturate(3852%) hue-rotate(329deg) brightness(100%) contrast(111%)}.wpulike-default .count-box{position:relative;border-radius:.25em;font-size:13px;text-decoration:none;background-color:#fff;margin-left:8px;line-height:30px;display:inline-block;padding:0 10px;box-shadow:0 0 0 1px #bdbdbd inset;color:#616161;vertical-align:middle;text-align:center}.wpulike-default .count-box:before{content:'';position:absolute;border:1px solid transparent;background:#fff;border-bottom-color:#bdbdbd;left:-5px;top:50%;border-left-color:#bdbdbd;transform:rotate(45deg) translatey(-50%);width:5px;height:5px;margin:0;box-sizing:content-box}#buddypress #activity-stream .activity-comments .wpulike-default button.wp_ulike_btn,#buddypress #activity-stream .activity-inner .wpulike-default button.wp_ulike_btn,#buddypress #activity-stream .activity-meta .wpulike-default button.wp_ulike_btn{border-radius:0;background-color:#fff;box-shadow:0 0 0 1px #bdbdbd inset;font-size:initial;padding:1em}#buddypress #activity-stream .activity-comments .wpulike-default .wp_ulike_is_loading button.wp_ulike_btn,#buddypress #activity-stream .activity-inner .wpulike-default .wp_ulike_is_loading button.wp_ulike_btn,#buddypress #activity-stream .activity-meta .wpulike-default .wp_ulike_is_loading button.wp_ulike_btn{background-image:url(//tripleunagi.stars.ne.jp/log/wp-content/plugins/wp-ulike/assets/img/svg/loader.svg);background-repeat:no-repeat;background-position:center center}.wpulike-heart .wp_ulike_general_class{box-shadow:0 0 0 1px #bdbdbd inset;border-radius:.25em;padding:5px}.wpulike-heart .wp_ulike_put_text{padding:0 5px;text-transform:uppercase;font-weight:600;color:#757575}.wpulike-heart button.wp_ulike_btn{background:0 0;padding:15px}.wpulike-heart button.wp_ulike_btn:focus,.wpulike-heart button.wp_ulike_btn:hover{color:#757575;background-color:transparent;text-decoration:none}.wpulike-heart .wp_ulike_put_image{background:0 0;padding:15px}.wpulike-heart .wp_ulike_put_image:disabled:active,.wpulike-heart .wp_ulike_put_image:disabled:focus,.wpulike-heart .wp_ulike_put_image:disabled:hover,.wpulike-heart .wp_ulike_put_image[disabled=disabled]:active,.wpulike-heart .wp_ulike_put_image[disabled=disabled]:focus,.wpulike-heart .wp_ulike_put_image[disabled=disabled]:hover{padding:15px}.wpulike-heart .wp_ulike_put_image:after{content:'';display:block;background:url(//tripleunagi.stars.ne.jp/log/wp-content/plugins/wp-ulike/assets/img/svg/love.svg) no-repeat;background-position:center center;background-size:contain;width:20px;height:20px;position:absolute;left:50%;top:50%;transform:translateX(-50%) translateY(-50%)}.wpulike-heart .wp_ulike_put_image.wp_ulike_btn_is_active:after{filter:invert(44%) sepia(40%) saturate(3852%) hue-rotate(329deg) brightness(100%) contrast(111%)}.wpulike-heart .count-box{font-size:14px;text-decoration:none;line-height:28px;display:inline-block;color:#616161;text-align:center;font-weight:600;vertical-align:middle;padding:0 5px}#buddypress #activity-stream .activity-comments .wpulike-heart .wp_ulike_btn,#buddypress #activity-stream .activity-inner .wpulike-heart .wp_ulike_btn,#buddypress #activity-stream .activity-meta .wpulike-heart .wp_ulike_btn{background-color:transparent;border:0;font-size:initial;padding:1em}#buddypress #activity-stream .activity-comments .wpulike-heart .wp_ulike_put_image,#buddypress #activity-stream .activity-inner .wpulike-heart .wp_ulike_put_image,#buddypress #activity-stream .activity-meta .wpulike-heart .wp_ulike_put_image{padding:10px 15px}#buddypress #activity-stream .activity-comments .wpulike-heart .wp_ulike_put_image:after,#buddypress #activity-stream .activity-inner .wpulike-heart .wp_ulike_put_image:after,#buddypress #activity-stream .activity-meta .wpulike-heart .wp_ulike_put_image:after{width:17px;height:17px}#buddypress #activity-stream .activity-comments .wpulike-heart .wp_ulike_general_class,#buddypress #activity-stream .activity-inner .wpulike-heart .wp_ulike_general_class,#buddypress #activity-stream .activity-meta .wpulike-heart .wp_ulike_general_class{border-radius:0;padding:.1em .3em;margin-bottom:0}#buddypress #activity-stream .activity-comments .wpulike-heart .wp_ulike_is_loading .wp_ulike_btn,#buddypress #activity-stream .activity-inner .wpulike-heart .wp_ulike_is_loading .wp_ulike_btn,#buddypress #activity-stream .activity-meta .wpulike-heart .wp_ulike_is_loading .wp_ulike_btn{background-image:url(//tripleunagi.stars.ne.jp/log/wp-content/plugins/wp-ulike/assets/img/svg/loader.svg);background-repeat:no-repeat;background-position:center center}.wpulike-robeen .count-box{font-weight:600;padding:0 14px;font-size:16px}.wpulike-robeen .wp_ulike_is_loading button.wp_ulike_btn{background-image:initial;padding:0}.wpulike-robeen .wp_ulike_is_loading button.wp_ulike_btn.wp_ulike_put_image:after{content:''}.wpulike-robeen button.wp_ulike_btn{width:30px;height:30px;overflow:hidden;padding:0;border:0;background:0 0}.wpulike-robeen button.wp_ulike_btn:focus,.wpulike-robeen button.wp_ulike_btn:hover{background-color:transparent}.wpulike-robeen button.wp_ulike_btn:after{content:'';background:url(//tripleunagi.stars.ne.jp/log/wp-content/plugins/wp-ulike/assets/img/icons/twitter-heart.png) no-repeat;background-position:0 0;transition:background-position 1s steps(28);transition-duration:0s;width:100px;height:100px;position:absolute;left:50%;top:50%;transform:translateX(-50%) translateY(-50%)}.wpulike-robeen button.wp_ulike_btn.wp_ulike_btn_is_active{overflow:visible}.wpulike-robeen button.wp_ulike_btn.wp_ulike_btn_is_active:after{transition-duration:1s;background-position:-2800px 0}#buddypress #activity-stream .activity-comments .wpulike-robeen .wp_ulike_btn,#buddypress #activity-stream .activity-inner .wpulike-robeen .wp_ulike_btn,#buddypress #activity-stream .activity-meta .wpulike-robeen .wp_ulike_btn{background:0 0;border:0;width:30px;height:30px;border:0;padding:0}.wpulike-animated-heart button.wp_ulike_btn{position:relative;border-radius:50em;background-color:#fff;padding:0;box-shadow:0 5px 30px rgba(255,111,99,.4);border:0;width:50px;height:50px}.wpulike-animated-heart button.wp_ulike_btn:focus,.wpulike-animated-heart button.wp_ulike_btn:hover{background-color:#fff;background-image:none}.wpulike-animated-heart button.wp_ulike_btn:disabled:active,.wpulike-animated-heart button.wp_ulike_btn:disabled:focus,.wpulike-animated-heart button.wp_ulike_btn:disabled:hover,.wpulike-animated-heart button.wp_ulike_btn[disabled=disabled]:active,.wpulike-animated-heart button.wp_ulike_btn[disabled=disabled]:focus,.wpulike-animated-heart button.wp_ulike_btn[disabled=disabled]:hover{background-color:#fff}.wpulike-animated-heart button.wp_ulike_btn.wp_ulike_btn_is_active{background-color:#ff6f63}.wpulike-animated-heart button.wp_ulike_btn.wp_ulike_btn_is_active:disabled:active,.wpulike-animated-heart button.wp_ulike_btn.wp_ulike_btn_is_active:disabled:focus,.wpulike-animated-heart button.wp_ulike_btn.wp_ulike_btn_is_active:disabled:hover,.wpulike-animated-heart button.wp_ulike_btn.wp_ulike_btn_is_active[disabled=disabled]:active,.wpulike-animated-heart button.wp_ulike_btn.wp_ulike_btn_is_active[disabled=disabled]:focus,.wpulike-animated-heart button.wp_ulike_btn.wp_ulike_btn_is_active[disabled=disabled]:hover{background-color:#ff6f63}.wpulike-animated-heart button.wp_ulike_btn.wp_ulike_btn_is_active .wpulike-svg-heart{fill:#ffffff}.wpulike-animated-heart button.wp_ulike_btn.wp_ulike_btn_is_active .wpulike-svg-heart-pop{animation-direction:normal}.wpulike-animated-heart button.wp_ulike_btn:active{box-shadow:0 0 4px 0 rgba(0,0,0,.25)}.wpulike-animated-heart .wp_ulike_is_loading button.wp_ulike_btn{background-image:initial;padding:0}.wpulike-animated-heart .wp_ulike_is_loading button.wp_ulike_btn.wp_ulike_put_image:after{content:''}.wpulike-animated-heart .wpulike-svg-heart{width:20px;fill:#ff6f63;transition:fill .5s,transform .5s;pointer-events:none;position:absolute;left:50%;top:50%;transform:translateX(-50%) translateY(-50%)}.wpulike-animated-heart .wpulike-svg-heart-pop{position:absolute;width:30%;fill:#ff6f63;opacity:0;left:0;animation:popHearts 1s ease forwards reverse}.wpulike-animated-heart .wpulike-svg-heart-pop.one{left:1%;transform:rotate(-10deg);animation-delay:.45s}.wpulike-animated-heart .wpulike-svg-heart-pop.two{left:15%;transform:rotate(8deg);animation-delay:.25s}.wpulike-animated-heart .wpulike-svg-heart-pop.three{left:30%;transform:rotate(-5deg);animation-delay:0s}.wpulike-animated-heart .wpulike-svg-heart-pop.four{left:50%;transform:rotate(-8deg);animation-delay:.3s}.wpulike-animated-heart .wpulike-svg-heart-pop.five{left:60%;transform:rotate(-10deg);animation-delay:.9s}.wpulike-animated-heart .wpulike-svg-heart-pop.six{left:70%;transform:rotate(-8deg);animation-delay:.2s}.wpulike-animated-heart .wpulike-svg-heart-pop.seven{left:85%;transform:rotate(6deg);animation-delay:.35s}.wpulike-animated-heart .wpulike-svg-heart-pop.eight{left:90%;transform:rotate(-4deg);animation-delay:.5s}.wpulike-animated-heart .wpulike-svg-heart-pop.nine{left:95%;transform:rotate(8deg);animation-delay:.2s}.wpulike-animated-heart .count-box{margin:0 15px;color:#ff6f63;display:inline-block;vertical-align:middle}#buddypress #activity-stream .activity-comments .wpulike-animated-heart .wp_ulike_btn,#buddypress #activity-stream .activity-inner .wpulike-animated-heart .wp_ulike_btn,#buddypress #activity-stream .activity-meta .wpulike-animated-heart .wp_ulike_btn{border-radius:50em;background-color:#fff;padding:0;box-shadow:0 5px 30px rgba(255,111,99,.4);border:0;width:50px;height:50px}#buddypress #activity-stream .activity-comments .wpulike-animated-heart .wp_ulike_btn:focus,#buddypress #activity-stream .activity-comments .wpulike-animated-heart .wp_ulike_btn:hover,#buddypress #activity-stream .activity-inner .wpulike-animated-heart .wp_ulike_btn:focus,#buddypress #activity-stream .activity-inner .wpulike-animated-heart .wp_ulike_btn:hover,#buddypress #activity-stream .activity-meta .wpulike-animated-heart .wp_ulike_btn:focus,#buddypress #activity-stream .activity-meta .wpulike-animated-heart .wp_ulike_btn:hover{background-color:#fff;background-image:none}#buddypress #activity-stream .activity-comments .wpulike-animated-heart .wp_ulike_btn:disabled:active,#buddypress #activity-stream .activity-comments .wpulike-animated-heart .wp_ulike_btn:disabled:focus,#buddypress #activity-stream .activity-comments .wpulike-animated-heart .wp_ulike_btn:disabled:hover,#buddypress #activity-stream .activity-comments .wpulike-animated-heart .wp_ulike_btn[disabled=disabled]:active,#buddypress #activity-stream .activity-comments .wpulike-animated-heart .wp_ulike_btn[disabled=disabled]:focus,#buddypress #activity-stream .activity-comments .wpulike-animated-heart .wp_ulike_btn[disabled=disabled]:hover,#buddypress #activity-stream .activity-inner .wpulike-animated-heart .wp_ulike_btn:disabled:active,#buddypress #activity-stream .activity-inner .wpulike-animated-heart .wp_ulike_btn:disabled:focus,#buddypress #activity-stream .activity-inner .wpulike-animated-heart .wp_ulike_btn:disabled:hover,#buddypress #activity-stream .activity-inner .wpulike-animated-heart .wp_ulike_btn[disabled=disabled]:active,#buddypress #activity-stream .activity-inner .wpulike-animated-heart .wp_ulike_btn[disabled=disabled]:focus,#buddypress #activity-stream .activity-inner .wpulike-animated-heart .wp_ulike_btn[disabled=disabled]:hover,#buddypress #activity-stream .activity-meta .wpulike-animated-heart .wp_ulike_btn:disabled:active,#buddypress #activity-stream .activity-meta .wpulike-animated-heart .wp_ulike_btn:disabled:focus,#buddypress #activity-stream .activity-meta .wpulike-animated-heart .wp_ulike_btn:disabled:hover,#buddypress #activity-stream .activity-meta .wpulike-animated-heart .wp_ulike_btn[disabled=disabled]:active,#buddypress #activity-stream .activity-meta .wpulike-animated-heart .wp_ulike_btn[disabled=disabled]:focus,#buddypress #activity-stream .activity-meta .wpulike-animated-heart .wp_ulike_btn[disabled=disabled]:hover{background-color:#fff}#buddypress #activity-stream .activity-comments .wpulike-animated-heart .wp_ulike_btn.wp_ulike_btn_is_active,#buddypress #activity-stream .activity-inner .wpulike-animated-heart .wp_ulike_btn.wp_ulike_btn_is_active,#buddypress #activity-stream .activity-meta .wpulike-animated-heart .wp_ulike_btn.wp_ulike_btn_is_active{background-color:#ff6f63}#buddypress #activity-stream .activity-comments .wpulike-animated-heart .wp_ulike_btn.wp_ulike_btn_is_active:disabled:active,#buddypress #activity-stream .activity-comments .wpulike-animated-heart .wp_ulike_btn.wp_ulike_btn_is_active:disabled:focus,#buddypress #activity-stream .activity-comments .wpulike-animated-heart .wp_ulike_btn.wp_ulike_btn_is_active:disabled:hover,#buddypress #activity-stream .activity-comments .wpulike-animated-heart .wp_ulike_btn.wp_ulike_btn_is_active[disabled=disabled]:active,#buddypress #activity-stream .activity-comments .wpulike-animated-heart .wp_ulike_btn.wp_ulike_btn_is_active[disabled=disabled]:focus,#buddypress #activity-stream .activity-comments .wpulike-animated-heart .wp_ulike_btn.wp_ulike_btn_is_active[disabled=disabled]:hover,#buddypress #activity-stream .activity-inner .wpulike-animated-heart .wp_ulike_btn.wp_ulike_btn_is_active:disabled:active,#buddypress #activity-stream .activity-inner .wpulike-animated-heart .wp_ulike_btn.wp_ulike_btn_is_active:disabled:focus,#buddypress #activity-stream .activity-inner .wpulike-animated-heart .wp_ulike_btn.wp_ulike_btn_is_active:disabled:hover,#buddypress #activity-stream .activity-inner .wpulike-animated-heart .wp_ulike_btn.wp_ulike_btn_is_active[disabled=disabled]:active,#buddypress #activity-stream .activity-inner .wpulike-animated-heart .wp_ulike_btn.wp_ulike_btn_is_active[disabled=disabled]:focus,#buddypress #activity-stream .activity-inner .wpulike-animated-heart .wp_ulike_btn.wp_ulike_btn_is_active[disabled=disabled]:hover,#buddypress #activity-stream .activity-meta .wpulike-animated-heart .wp_ulike_btn.wp_ulike_btn_is_active:disabled:active,#buddypress #activity-stream .activity-meta .wpulike-animated-heart .wp_ulike_btn.wp_ulike_btn_is_active:disabled:focus,#buddypress #activity-stream .activity-meta .wpulike-animated-heart .wp_ulike_btn.wp_ulike_btn_is_active:disabled:hover,#buddypress #activity-stream .activity-meta .wpulike-animated-heart .wp_ulike_btn.wp_ulike_btn_is_active[disabled=disabled]:active,#buddypress #activity-stream .activity-meta .wpulike-animated-heart .wp_ulike_btn.wp_ulike_btn_is_active[disabled=disabled]:focus,#buddypress #activity-stream .activity-meta .wpulike-animated-heart .wp_ulike_btn.wp_ulike_btn_is_active[disabled=disabled]:hover{background-color:#ff6f63}#buddypress #activity-stream .activity-comments .wpulike-animated-heart .wp_ulike_btn:active,#buddypress #activity-stream .activity-inner .wpulike-animated-heart .wp_ulike_btn:active,#buddypress #activity-stream .activity-meta .wpulike-animated-heart .wp_ulike_btn:active{box-shadow:0 0 4px 0 rgba(0,0,0,.25)}#buddypress #activity-stream .activity-comments .wp_ulike_is_loading button.wp_ulike_btn,#buddypress #activity-stream .activity-inner .wp_ulike_is_loading button.wp_ulike_btn,#buddypress #activity-stream .activity-meta .wp_ulike_is_loading button.wp_ulike_btn{background-image:initial}@keyframes popHearts{0%{left:calc(50% - 7px);top:10px}20%{opacity:1}80%{top:-20px}100%{opacity:0}}.wp_ulike_likers_wrapper{margin:10px 0;flex:0 0 100%}.wp_ulike_likers_wrapper:empty{display:none}.wp_ulike_likers_wrapper .tiles,.wp_ulike_likers_wrapper .wp-ulike-likers-list{display:flex;align-items:center;flex-wrap:wrap;margin:0;padding:0}.wp_ulike_likers_wrapper .tiles .wp-ulike-liker,.wp_ulike_likers_wrapper .tiles li,.wp_ulike_likers_wrapper .wp-ulike-likers-list .wp-ulike-liker,.wp_ulike_likers_wrapper .wp-ulike-likers-list li{padding:3px;margin:0;list-style:none;display:block}.wp_ulike_likers_wrapper .tiles .wp-ulike-liker a>img,.wp_ulike_likers_wrapper .tiles li a>img,.wp_ulike_likers_wrapper .wp-ulike-likers-list .wp-ulike-liker a>img,.wp_ulike_likers_wrapper .wp-ulike-likers-list li a>img{border-radius:5px;display:block;border:0;box-shadow:none;position:relative}.ulf-tooltip .wp_ulike_likers_wrapper{margin:0}.most_liked_users{list-style-type:none!important;position:relative!important;margin:10px 0!important;padding:0!important}.most_liked_users li{display:inline-table!important;cursor:pointer!important;margin:0 2px!important}.most_liked_users li img{display:block!important;float:none!important}.most_liked_users li.inactive{visibility:hidden!important;opacity:0!important}.commentlist .tiles .avatar,.commentlist .wp-ulike-liker .avatar{left:0!important}.wp_ulike_thumbnail{vertical-align:middle;margin:0 10px 0 0}.most_liked_comment .avatar{vertical-align:middle;margin:0 10px 0 0}.wp_ulike_style_simple .wp_counter_span:before{content:"("}.wp_ulike_style_simple .wp_counter_span:after{content:")"}.wp_ulike_style_love .wp_counter_span{float:right;display:inline-block;background:#f1f1f1 url(//tripleunagi.stars.ne.jp/log/wp-content/plugins/wp-ulike/assets/img/icons/heart.png) 5px center no-repeat;color:#333;font-size:9px;line-height:17px;font-weight:400;margin:2px 0 0 2px;vertical-align:middle;border-radius:10px;padding:0 5px 0 23px;z-index:26}.wpulike-notification{position:fixed;z-index:999999;pointer-events:none;right:20px;bottom:20px}.wpulike-notification *{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.wpulike-notification .wpulike-message{position:relative;pointer-events:auto;word-wrap:break-word;overflow:hidden;margin:0 0 6px;padding:14px 15px 14px 65px;width:290px;border-radius:3px;background-color:#007bc3;color:#fff;animation:wpUlikeNotifitcationsAnimation .2s backwards;box-shadow:0 3px 5px rgba(0,0,0,.08);font-size:.9rem;font-weight:500;line-height:normal}.wpulike-notification .wpulike-message:hover{opacity:.9;cursor:pointer}.wpulike-notification .wpulike-message:before{content:"";background-position:center center;background-repeat:no-repeat;background-image:url(//tripleunagi.stars.ne.jp/log/wp-content/plugins/wp-ulike/assets/img/svg/info.svg);background-size:25px;position:absolute;left:0;width:50px;top:0;height:100%;background-color:rgba(0,0,0,.06)}.wpulike-notification .wpulike-message.wpulike-success{background-color:#20a779}.wpulike-notification .wpulike-message.wpulike-success:before{background-image:url(//tripleunagi.stars.ne.jp/log/wp-content/plugins/wp-ulike/assets/img/svg/success.svg)}.wpulike-notification .wpulike-message.wpulike-error{background-color:#ec4d2c}.wpulike-notification .wpulike-message.wpulike-error:before{background-image:url(//tripleunagi.stars.ne.jp/log/wp-content/plugins/wp-ulike/assets/img/svg/error.svg)}.wpulike-notification .wpulike-message.wpulike-warning{background-color:#f0a82f}.wpulike-notification .wpulike-message.wpulike-warning:before{background-image:url(//tripleunagi.stars.ne.jp/log/wp-content/plugins/wp-ulike/assets/img/svg/warning.svg)}@keyframes wpUlikeNotifitcationsAnimation{from{opacity:0;transform:translateY(100%)}to{opacity:.8;transform:translateY(0)}}@media screen and (max-width:768px){.wpulike-notification .wpulike-message{padding:11px 11px 11px 55px;font-size:13px}.wpulike-notification .wpulike-message:before{background-size:25px;width:45px}}@media screen and (max-width:320px){.wpulike-notification{left:10px;right:10px}.wpulike-notification .wpulike-message{padding:9px 9px 9px 45px;font-size:12px;width:100%}.wpulike-notification .wpulike-message:before{background-size:15px;width:35px}}.ulf-tooltip{max-width:360px;position:absolute;z-index:999999;background:#444;border-radius:5px;padding:10px;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;top:0;left:0}.ulf-centered{position:fixed;top:50%;left:50%}.ulf-content{margin:5px 20px 5px 10px;font-size:1em;line-height:1.6em;text-align:center;color:#fff;font-weight:800}.ulf-arrow{border:15px solid rgba(232,232,232,0);content:" ";height:0;width:0;position:absolute;pointer-events:none;margin-left:-15px}.ulf-arrow-top{border-bottom-color:#444;bottom:100%;left:50%;top:auto;right:auto}.ulf-arrow-bottom{border-top-color:#444;top:100%;left:50%;bottom:auto;right:auto}.ulf-arrow-left{border-right-color:#444;border-width:15px;left:-14px;right:auto;bottom:auto;top:50%;margin-top:-15px}.ulf-arrow-right{border-left-color:#444;right:-29px;left:auto;bottom:auto;border-width:15px;top:50%;margin-top:-15px}.ulf-arrow-hug-left{left:30px;right:auto}.ulf-arrow-hug-right{right:30px;left:auto}.ulf-arrow-hug-left.ulf-arrow-super-hug{left:15px;right:auto}.ulf-arrow-hug-right.ulf-arrow-super-hug{right:1px;left:auto}.ulf-arrow-top.ulf-arrow-hug-left.ulf-arrow-super-hug,.ulf-arrow-top.ulf-arrow-hug-right.ulf-arrow-super-hug{top:-30px}.ulf-arrow-bottom.ulf-arrow-hug-left.ulf-arrow-super-hug,.ulf-arrow-bottom.ulf-arrow-hug-right.ulf-arrow-super-hug{top:auto;bottom:-30px}.ulf-tiny .ulf-arrow-hug-left.ulf-arrow-super-hug,.ulf-tiny .ulf-arrow-hug-right.ulf-arrow-super-hug{bottom:-21px}.ulf-black-theme .ulf-arrow-top.ulf-arrow-hug-left.ulf-arrow-super-hug,.ulf-black-theme .ulf-arrow-top.ulf-arrow-hug-right.ulf-arrow-super-hug{top:-27px}.ulf-black-theme .ulf-arrow-bottom.ulf-arrow-hug-left.ulf-arrow-super-hug,.ulf-black-theme .ulf-arrow-bottom.ulf-arrow-hug-right.ulf-arrow-super-hug{bottom:-28px}.ulf-white-theme{background:#fff;border:2px solid #e4e4e4}.ulf-white-theme .ulf-content{color:#333}.ulf-white-theme .ulf-arrow-top{border-bottom-color:#e4e4e4}.ulf-white-theme .ulf-arrow-bottom{border-top-color:#e4e4e4}.ulf-white-theme .ulf-arrow-left{border-right-color:#e4e4e4}.ulf-white-theme .ulf-arrow-right{border-left-color:#e4e4e4}.ulf-large{font-size:18px}.ulf-medium{font-size:14px}.ulf-small{font-size:12px;padding:5px}.ulf-small .ulf-content{margin:2px 8px;line-height:1.9em}.ulf-tiny{padding:2px 5px;font-size:10px}.ulf-tiny .ulf-content{margin:3px}.ulf-tiny .ulf-button{margin:0 3px}.ulf-tiny .ulf-arrow{border-width:10px;margin-left:-10px}.ulf-tiny .ulf-arrow-left{left:-10px;margin-top:-10px}.ulf-tiny .ulf-arrow-right{right:-20px;margin-top:-10px}.ulf-tiny .ulf-arrow-bottom.ulf-arrow-hug-left.ulf-arrow-super-hug,.ulf-tiny .ulf-arrow-top.ulf-arrow-hug-left.ulf-arrow-super-hug{left:11px}.ulf-tiny .ulf-arrow-bottom.ulf-arrow-hug-right.ulf-arrow-super-hug,.ulf-tiny .ulf-arrow-top.ulf-arrow-hug-right.ulf-arrow-super-hug{right:1px}.ulf-tiny.ulf-white-theme .ulf-arrow-top.ulf-arrow-hug-left.ulf-arrow-super-hug,.ulf-tiny.ulf-white-theme .ulf-arrow-top.ulf-arrow-hug-right.ulf-arrow-super-hug{top:-18px}.ulf-tiny.ulf-white-theme .ulf-arrow-bottom.ulf-arrow-hug-left.ulf-arrow-super-hug,.ulf-tiny.ulf-white-theme .ulf-arrow-bottom.ulf-arrow-hug-right.ulf-arrow-super-hug{bottom:-21px}.ulf-tiny.ulf-black-theme .ulf-arrow-bottom.ulf-arrow-hug-left.ulf-arrow-super-hug,.ulf-tiny.ulf-black-theme .ulf-arrow-bottom.ulf-arrow-hug-right.ulf-arrow-super-hug{bottom:-18px}.rtl .wpulike-default .count-box{margin-right:8px;margin-left:inherit}.rtl .wpulike-default .count-box:before{right:-1px;left:auto;border-color:#bdbdbd #bdbdbd transparent transparent}.rtl .commentlist .tiles .avatar{left:inherit!important;right:0!important}.rtl .wp_ulike_thumbnail{margin:0 0 0 10px}.rtl .most_liked_comment .avatar{margin:0 0 0 10px}.rtl .wp_ulike_style_love .wp_counter_span{float:left;background:#f1f1f1 url(//tripleunagi.stars.ne.jp/log/wp-content/plugins/wp-ulike/assets/img/icons/heart.png) no-repeat scroll 85% center;margin:2px 2px 0 0;padding:0 23px 0 5px}.rtl .wpulike-notification{left:20px;right:inherit}.rtl .wpulike-notification .wpulike-message{padding:14px 65px 14px 15px}.rtl .wpulike-notification .wpulike-message:before{left:auto;right:0}@media screen and (max-width:768px){.rtl .wpulike-notification .wpulike-message{padding:11px 55px 11px 11px}}@media screen and (max-width:320px){.rtl .wpulike-notification{left:10px;right:10px}.rtl .wpulike-notification .wpulike-message{padding:9px 45px 9px 9px}}body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
} .theme-dark body {
--wp--preset--color--theme-1: var(--wp--preset--color--custom-theme-1-dark, var(--wp--custom--color--theme-1-dark));
--wp--preset--color--theme-2: var(--wp--preset--color--custom-theme-2-dark, var(--wp--custom--color--theme-2-dark));
--wp--preset--color--theme-3: var(--wp--preset--color--custom-theme-3-dark, var(--wp--custom--color--theme-3-dark));
--wp--preset--color--theme-4: var(--wp--preset--color--custom-theme-4-dark, var(--wp--custom--color--theme-4-dark));
--wp--preset--color--theme-5: var(--wp--preset--color--custom-theme-5-dark, var(--wp--custom--color--theme-5-dark));
--wp--preset--color--theme-6: var(--wp--preset--color--custom-theme-6-dark, var(--wp--custom--color--theme-6-dark));
} strong {
font-weight: 550;
}
h1,
h2,
h3,
h4,
blockquote {
text-wrap: balance;
}
.wp-block-post-content > ul + p,
.wp-block-post-content > p + h2,
.wp-block-post-content > p + h3,
.wp-block-post-content > ul + h2,
.wp-block-post-content > ul + h3,
.wp-block-post-content > ol + h2,
.wp-block-post-content > ol + h3 { padding-top: var(--wp--preset--spacing--30);
}
.wp-block-post-content > figure + h2,
.wp-block-post-content > figure + h3 { padding-top: var(--wp--preset--spacing--20);
}
ul {
padding-inline-start: var(--wp--preset--spacing--20);
list-style-type: circle;
}
ol {
padding-inline-start: var(--wp--preset--spacing--20);
} p code {
border-color: var(--wp--preset--color--theme-4);
border-radius: 5px;
border-style: solid;
border-width: 1px;
display: inline-block;
font-size: 85%;
padding: 2px 6px 1px;
} .truncate {
white-space: nowrap;
max-width: 75%;
}
.truncate a {
overflow: hidden;
text-overflow: ellipsis;
max-width: 100%;
} a:where(:not(.wp-element-button)) {
text-underline-offset: 2px;
}
.no-underline,
.no-underline a { text-decoration: none !important;
}
.wp-element-button { transition: background-color var(--wp--custom--transition--duration) ease-out, color var(--wp--custom--transition--duration) ease-out;
@media (prefers-reduced-motion: reduce) { transition: none;
}
} label {
color: var(--wp--preset--color--theme-6);
display: inline-block;
font-size: var(--wp--preset--font-size--small);
margin-bottom: calc( var(--wp--preset--spacing--10) * 0.5);
}
textarea,
input:not([type=submit]):not([type=checkbox]) {
background-color: color-mix(in srgb, var(--wp--preset--color--theme-1) 98%, var(--wp--preset--color--theme-6) 2%);
border-color: var(--wp--preset--color--theme-4);
border-radius: var(--wp--preset--spacing--10);
border-style: solid;
border-width: 1px;
box-shadow: none;
box-sizing: border-box;
color: var(--wp--preset--color--theme-6);
font-size: var(--wp--preset--font-size--small);
font-family: inherit;
line-height: 1.5;
min-height: 40px;
padding: 8px 12px;
width: 100%;
}
input::placeholder {
color: var(--wp--preset--color--theme-5);
}
input[type=submit] {
width: 100%;
}
textarea:focus-visible,
input:not([type=submit]):focus-visible {
outline: 2px solid var(--wp--preset--color--theme-3);
outline-offset: 2px;
} .is-style-framed {
box-sizing: border-box;
border-radius: var(--wp--preset--spacing--20);
}
.is-style-framed::before {
box-sizing: border-box;
display: none !important;
}
.is-style-framed img {
border-radius: calc( var(--wp--preset--spacing--10) * 0.5) !important;
}
.is-style-rounded img {
border-radius: 100%;
}
.single .wp-block-image.alignfull img { border-radius: 0;
}
.single .wp-block-image.alignfull {
margin-top: calc( var(--wp--preset--spacing--40) + 4px);
margin-bottom: var(--wp--preset--spacing--40);
} .wp-block-jetpack-videopress iframe {
display: block;
border-radius: var(--wp--preset--spacing--20);
}
.wp-block-jetpack-videopress { margin-top: var(--wp--preset--spacing--30);
margin-bottom: var(--wp--preset--spacing--30);
overflow: hidden;
} .wp-lightbox-overlay .close-button:focus {
outline: none;
}
.wp-lightbox-overlay .close-button svg {
height: 24px;
width: 24px;
} .wp-block-quote cite {
color: var(--wp--preset--color--theme-6);
font-size: var(--wp--preset--font-size--small);
margin-top: var(--wp--preset--font-size--small) !important;
}
.wp-block-quote > * + * {
margin-block-start: var(--wp--style--block-gap);
}
.wp-block-quote *:first-of-type {
margin-top: 0;
}
.wp-block-quote *:last-of-type {
margin-bottom: 0;
} .wp-block-tag-cloud a {
align-items: center;
border-radius: var(--wp--preset--spacing--10);
border: 1px solid var(--wp--preset--color--theme-3);
display: inline-flex;
font-size: var(--wp--preset--font-size--small) !important;
justify-content: center;
margin-right: 0;
min-height: 36px;
transition: background-color var(--wp--custom--transition--duration, 200ms) ease-out, color var(--wp--custom--transition--duration, 200ms) ease-out, transform var(--wp--custom--transition--duration, 200ms) cubic-bezier(.4,0,.2,1);
@media (prefers-reduced-motion: reduce) { transition: none;
}
}
.wp-block-tag-cloud a:active {
transform: scale(0.95);
@media (prefers-reduced-motion: reduce) { transform: none;
}
} .wp-block-navigation .wp-block-navigation__submenu-container {
border-radius: var(--wp--preset--spacing--10);
padding: 12px 8px;
} .wp-block-tabor-dark-mode-toggle__track:not(.has-background) {
background: var(--wp--preset--color--theme-3);
}
.wp-block-tabor-dark-mode-toggle__track:not(.has-background):hover {
background-color: var(--wp--preset--color--theme-4);
color: var(--wp--preset--color--theme-6);
} .wp-block-tabor-card:not(.is-style-dark) .wp-block-tabor-card__description { color: var(--wp--preset--color--theme-5);
opacity: 1;
}
.theme-dark .wp-block-tabor-card__image-blur {
opacity: 0.5;
}
.wp-block-tabor-comments-count a:hover {
color: var(--wp--preset--color--theme-6);
} .sd-like { margin-top: var(--wp--preset--spacing--40);
}
.sd-title { display: none !important;
} .comment-reply-title {
display: flex;
font-size: var(--wp--preset--font-size--x-large);
justify-content: space-between;
margin: 0;
}
.comment-reply-title :where(small) a {
color: var(--wp--preset--color--theme-5);
font-size: 90%;
font-weight: normal;
text-decoration: none;
}
.comment-reply-title :where(small) a:hover {
color: var(--wp--preset--color--theme-6);
}
.logged-in-as,
.comment-notes,
.required-field-message {
display: block;
font-size: var(--wp--preset--font-size--small);
}
.required-field-message {
color: var(--wp--preset--color--theme-5);
margin-top: calc( var(--wp--preset--spacing--10) * 0.5 );
}
.comment-form-cookies-consent {
align-items: start;
} .page-template-template-blank .wp-site-blocks { padding: 0;
}