/* is-style-button-arrow-under-next */
.wp-block-button.is-style-button-arrow-under-next{
    background-color: transparent;
    color: #333;
}
.is-style-button-arrow-under-next .wp-block-button__link{
    letter-spacing: 0.1em;
    background: inherit;
    border: none;
    border-radius: 0 !important;
    color: inherit;
    text-transform: none;
    padding: 1em 1.5em;
}
.is-style-button-arrow-under-next .wp-block-button__link::after{
    content: '';
    display: block;
    width: calc(100% + 20px);
    min-width: 160px;
    height: 15px;
    border-bottom: solid 1px;
    border-right: solid 1px;
    transform: skew(45deg) translateX(-20px);
    transform-origin: top;
    transition: transform .3s;
}
.wp-block-button.is-style-button-arrow-under-next .wp-block-button__link:hover{
    background-color: inherit;
    color: inherit;
    opacity: .7;
}
.is-style-button-arrow-under-next .wp-block-button__link:hover::after{
    transform: skew(45deg) translateX(0);
}
.block-editor-block-list__block.is-style-button-arrow-under-next .wp-block-button__link{
    text-transform: none;
}
:root .editor-styles-wrapper .block-editor-block-list__block.is-style-button-arrow-under-next .wp-block-button__link{
    background: transparent;
    color: #333;
}
/* end is-style-button-arrow-under-next */

/* is-style-button-arrow-under-prev */
.wp-block-button.is-style-button-arrow-under-prev{
    background-color: transparent;
    color: #333;
}
.is-style-button-arrow-under-prev .wp-block-button__link{
    letter-spacing: 0.1em;
    background: inherit;
    border: none;
    border-radius: 0 !important;
    color: inherit;
    text-transform: none;
    padding: 1em 1.5em;
}
.is-style-button-arrow-under-prev .wp-block-button__link::after{
    content: '';
    display: block;
    width: calc(100% + 20px);
    min-width: 160px;
    height: 15px;
    border-bottom: solid 1px;
    border-left: solid 1px;
    transform: skew(-45deg) translateX(0);
    transform-origin: top;
    transition: transform .3s;
}
.wp-block-button.is-style-button-arrow-under-prev .wp-block-button__link:hover{
    background-color: inherit;
    color: inherit;
    opacity: .7;
}
.is-style-button-arrow-under-prev .wp-block-button__link:hover::after{
    transform: skew(-45deg) translateX(-20px);
}
.block-editor-block-list__block.is-style-button-arrow-under-prev .wp-block-button__link{
    text-transform: none;
}
:root .editor-styles-wrapper .block-editor-block-list__block.is-style-button-arrow-under-prev .wp-block-button__link{
    background: transparent;
    color: #333;
}
/* end is-style-button-arrow-under-prev */

/* is-style-table-has-bg-left */
.is-style-table-has-bg-left table{
    background-color: #ddd;
    border-style: solid;
    border-width: 1px;
}
.is-style-table-has-bg-left table tr{
    border-color: inherit;
}
.is-style-table-has-bg-left table tr,
.is-style-table-has-bg-left table td{
    font-family: 'Noto Sans JP', sans-serif;
}
.is-style-table-has-bg-left table td br{
    content: "";
    display: block;
    margin-bottom: 0.5em;
}
.is-style-table-has-bg-left table tr > td:first-of-type{
    width: 24%;
    min-width: 110px;
}
.is-style-table-has-bg-left table tr > td:not(:first-of-type){
    background-color: #fff;
}
.is-style-table-has-bg-left .has-background.has-primary-background-color *:not(.has-text-color){
    color: #333;
}
.is-style-table-has-bg-left td:not(:first-of-type){
    /*color: #333;*/
}
.wp-block-table.is-style-table-has-bg-left table:where(:not(.has-border-color)) * {
    border-color: #a4a4a4;
}
.is-style-table-has-bg-left table td{
    padding: 1em;
}
/* end is-style-table-has-bg-left */

/* is-style-heading-bg-rounded-corner */
.is-style-heading-bg-rounded-corner {
    content: '';
    background: var(--wp--preset--color--accent, currentColor);
    display: block;
    padding: 0.5em 1em;
    border-radius:9999px;
}
.is-style-heading-bg-rounded-corner.has-background{
    padding: 0.5em 1em;
}
/* end is-style-heading-bg-rounded-corner */

/* is-style-heading-short-line-left */
.is-style-heading-short-line-left {
    box-sizing: border-box;
    padding: 0.5em 1em;
    padding-left: 1.25em;
    position: relative;
}
.is-style-heading-short-line-left::before{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    display: inline-block;
    width: 0.75em;
    height: 0;
    border-top-width: 0;
    border-left-width: 0;
    border-right-width: 0;
    border-bottom-width: 3px;
    border-color: var(--wp--preset--color--accent-3, currentColor);
    border-style: solid;
}
.is-style-heading-short-line-left.has-background{
    padding: 0.5em 1em;
    padding-left: 1.25em;
}
.is-style-heading-short-line-left.has-border-color{
    border-width: 0;
}
.is-style-heading-short-line-left.has-border-color::before,
.is-style-heading-short-line-left[style*="border"]::before{
    border-color: inherit;
}
/* end is-style-heading-short-line-left */

/* is-style-button-icon-next */
.is-style-button-icon-next .wp-block-button__link{
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.is-style-button-icon-next .wp-block-button__link::after{
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;
    background-image: url(../../images/icon-round-arrow-right.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 1em;
    flex-shrink: 0;
}

.is-style-button-icon-prev .wp-block-button__link{
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.is-style-button-icon-prev .wp-block-button__link::before{
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;
    background-image: url(../../images/icon-round-arrow-left.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 1em;
    flex-shrink: 0;
}
/* end is-style-button-icon-next */

/* is-style-button-fixed-width */
.wp-block-button.is-style-button-fixed-width .wp-block-button__link{
    min-width: 260px;
}
@media(max-width: 699px){
    .wp-block-button.is-style-button-fixed-width{
        width: fit-content!important;
    }
}
/* end is-style-button-fixed-width */

/* is-style-table-fixed-width-flex */
.is-style-table-fixed-width-flex table{
    border-color: #a4a4a4;
}
.is-style-table-fixed-width-flex table:not(.has-background){
    /*background: #f0f0f0;*/
}
.is-style-table-fixed-width-flex th,
.is-style-table-fixed-width-flex td {
    align-content: center;
    flex-basis: 100%;
    border-color: inherit;
}
.is-style-table-fixed-width-flex td:nth-child(2n-1){
    /*background: #f0f0f0;*/
}
@media(max-width: 699px){
    .is-style-table-fixed-width-flex tr {
        display: flex;
        flex-wrap: wrap;
    }
    .is-style-table-fixed-width-flex td{
        border-bottom-width: 0;
    }
    .is-style-table-fixed-width-flex tr:last-of-type td:last-of-type {
        border-bottom-width: 1px;
    }
    .is-style-table-fixed-width-flex table[style*=border-width] td{
        border-width: 0;
    }
    .is-style-table-fixed-width-flex table[style*=border-width] td:not(:last-of-type){
        border-bottom-width: inherit;
        border-bottom-color: inherit;
    }
    .is-style-table-fixed-width-flex table[style*=border-width] tr {
        border-top-width: 0;
        border-left-width: 0;
        border-right-width: 0;
    }
}
/* end is-style-table-fixed-width-flex */

.wp-block-button.is-style-button-icon-next2 .wp-block-button__link{
    display: flex;
    align-items: center;
    font-size: inherit;
    font-weight: inherit;
}
.wp-block-button.is-style-button-icon-next2 .button-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    background: #005bb6;
    color: #ffffff;
    flex-shrink: 0;
    vertical-align: middle;
    margin-left: 0.5em;
    border: 1px solid #005bb6;
    border-radius: 5px;
    transition: background .3s;
    position: relative;
}
.wp-block-button.is-style-button-icon-next2 .button-icon::before {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border: 1px solid #fff;
    border-right: none;
    border-bottom: none;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(50%, -50%) rotate(135deg);
    transform-origin: center;
}
.wp-block-button.is-style-button-icon-next2 .button-text{
    background-image: linear-gradient(currentColor, currentColor);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: 100% 1px;
}
.wp-block-button.is-style-button-icon-next2:hover .button-text{
    animation: button-line 0.5s;
}
@keyframes button-line{
    0%{
        background-size: 0% 1px;
        background-position: left bottom;
    }
    100%{
        background-size: 100% 1px;
        background-position: left bottom;
    }
}
.wp-block-button.is-style-button-icon-next2:hover .button-icon{
    background: transparent;
}
.wp-block-button.is-style-button-icon-next2:hover .button-icon::before {
    border: 1px solid #005bb6;
    border-right: none;
    border-bottom: none;
}
/* is-style-table-vertical-line-only */
.is-style-table-vertical-line-only table{
    background-color: #ddd;
    border-style: solid;
    border-width: 0px;
}
.is-style-table-vertical-line-only table tr{
    border-color: inherit;
}
.is-style-table-vertical-line-only table tr,
.is-style-table-vertical-line-only table td{
    font-family: 'Noto Sans JP', sans-serif;
}
.is-style-table-vertical-line-only table td br{
    content: "";
    display: block;
    margin-bottom: 0.5em;
}
.is-style-table-vertical-line-only table tr > td:first-of-type{
    width: 24%;
    min-width: 110px;
}
.is-style-table-vertical-line-only table tr > td:not(:first-of-type){
    background-color: #fff;
    border-left-width: inherit;
    border-left-color: #ddd;
}
.is-style-table-vertical-line-only .has-background.has-primary-background-color *:not(.has-text-color){
    color: #333;
}
.is-style-table-vertical-line-only td:not(:first-of-type){
    /*color: #333;*/
}
.wp-block-table.is-style-table-vertical-line-only table:where(:not(.has-border-color)) * {
    border-color: transparent;
}
.is-style-table-vertical-line-only table td{
    padding: 1em;
}
/* end is-style-table-vertical-line-only */