html .wp-admin :where(.wp-block) {
    max-width: 1200px;
}

html {
    font-size: 62.5%;
}

.wp-block-button a,
.editor-styles-wrapper .wp-block-button__link {
    width: 100%;
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 30px;
    background-color: #cb4919 !important;
    color: white !important;
    font-weight: 700;
    padding: 15px 30px 15px;
    font-size: 2rem;
    position: relative;
    transition: all 0.3s;
    bottom: 0;
}

.wp-block-button a:hover,
.editor-styles-wrapper .wp-block-button__link:hover {
    opacity: 1;
}

.wp-block-button a:after {
    content: "";
    width: 23px;
    height: 23px;
    background-image: url(./images/icon-arrow-button.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 27px;
    transition: .3s;
}

.wp-block-button a:hover:after {
    right: 20px;
}

.wp-block-button {
    width: 100%;
    position: relative;
}

.wp-block-button:after {
    display: none;
}

.wp-block-button:hover a {
    opacity: 0.6;
}

.wp-block-button:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #bddae5;
    position: absolute;
    bottom: -6px;
    left: 0px;
    border-radius: 30px;
    transition: .3s;
}

.wp-block-button.is-style-btn-view {
    max-width: 480px;
    width: 100%;
    border-radius: 30px;
    background: linear-gradient(90deg, rgb(41, 166, 221) 0%, rgb(246, 171, 59) 100%);
    padding: 3px;
    transition: .3s;
    box-shadow: 0 0 6px 0 rgb(127 131 132 / 25%);
}

.wp-block-button.is-style-btn-view a {
    width: 100%;
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    background-color: #fff;
    border-radius: 28px;
    color: #333;
    position: relative;
    transition: .3s;
}

@media(min-width:768px) {
    .wp-block-button.is-style-btn-view a {
        padding-left: 55px;
        padding-right: 55px;
    }
}

.wp-block-button.is-style-btn-view a:after {
    content: "";
    width: 10px;
    height: 12px;
    mask-image: url(./images/icon-link-footer.svg);
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    -webkit-mask-image: url(./images/icon-link-footer.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    background-color: #cb4919;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 40px;
    transition: .3s;
}

.wp-block-button.is-style-btn-view:hover {
    background: #cb4919;
}

.wp-block-button.is-style-btn-view:hover a {
    background-color: #cb4919;
    color: #fff;
    opacity: 1;
}

.wp-block-button.is-style-btn-view:hover a::after {
    background-color: #fff;
    color: #fff;
}

body.wp-admin a.btn.btn-file {
    pointer-events: none;
}

a.btn.btn-file::before {
    content: "";
    width: 27px;
    height: 33px;
    mask-image: url(./images/icon-pdf.svg);
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    -webkit-mask-image: url(./images/icon-pdf.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    background-color: #c21d1d;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 33px;
    transition: .3s;
}

a.btn.btn-file:hover::before {
    background-color: #fff;
}

a.btn.btn-file.word span::before,
a.btn.btn-file.Word span::before {
    background-image: url(./images/icon-word.svg);
}

a.btn.btn-file.excel span::before,
a.btn.btn-file.Excel span::before {
    background-image: url(./images/icon-excel.svg);
}

a.btn.btn-file.powerpoint span::before,
a.btn.btn-file.Powerpoint span::before {
    background-image: url(./images/icon-powerpoint.svg);
}

a.btn.btn-file.zip span::before,
a.btn.btn-file.Zip span::before {
    background-image: url(./images/icon-zip.svg);
}

.table-cs {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    border: 1px solid #157c40;
    gap: 0;
}

.table-cs p {
    width: 33.33%;
    box-sizing: border-box;
    border-right: 1px solid #157c40;
    border-bottom: 1px solid #157c40;
    text-align: center;
    padding: 7px 0;
    margin: 0;
    background-color: #fff;
}

.table-cs p:nth-child(3n) {
    border-right: none;
}

.table-cs p:nth-last-child(-n+3) {
    border-bottom: none;
}

.wp-block-table.is-style-table-style-1 table tr:first-child td,
.wp-block-table.is-style-table-style-1 table tr:first-child th {
    background: #0071b6;
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    padding: 6px 20px;
    text-align: center;
}

.wp-block-table.is-style-table-style-1 table td {
    border-color: #157c40;
    background-color: white;
    padding: 6px 20px;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    border-width: 1px;
    padding: 6px 20px;
}

.wp-block-table thead {
    border: none !important
}

.wp-block-table.is-style-table-style-1 table td:first-child {
    width: 214px;
}

.wp-block-table.is-style-table-style-2 table td,
.wp-block-table.is-style-table-style-2 table th {
    border-color: #157c40;
    background-color: white;
    padding: 11px 20px;
    border-width: 1px;
    text-align: center;
}

.wp-block-table.is-style-table-style-2 table th {
    color: white;
    background-color: #0071b6;
}

.wp-block-table.is-style-table-style-2 table td a {
    color: #0071b6;
}

.wp-block-table.is-style-table-style-2 table td:first-child {
    background: white;
}

.wp-block-table.is-style-table-style-4 table td:first-child {
    background-color: #0071b6;
    width: 200px;
    color: white;
    border-color: #157c40;
    border-width: 1px;
}

.wp-block-table.is-style-table-style-5 table td,
.wp-block-table.is-style-table-style-5 table th {
    border-color: #157c40;
    background-color: white;
    padding: 5px 20px;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    border-width: 1px;
}

.wp-block-table.is-style-table-style-4 table td {
    border-color: #157c40;
    background-color: white;
    padding: 5px 20px;
    font-size: 1.8rem;
    border-width: 1px;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.wp-block-table.is-style-table-style-3 table td {
    border-color: #fff;
    background-color: white;
    padding: 10px;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    border: none;
}

.wp-block-table.is-style-table-style-3 table td:first-child {
    width: 171px;
    background: #ffffff;
    font-weight: bold;
    font-size: 2rem;
}

ol {
    list-style: decimal !important;
    padding-left: 30px;
}

ol li {
    font-size: 1.6rem;
    font-weight: 500;
    padding-left: 5px;
    letter-spacing: 0.03em;
    margin-bottom: 20px;
}

ul li {
    margin-bottom: 20px;
}

ol li::marker {
    font-size: 3.5rem;
    font-weight: 500;
    font-family: 'Cinzel', serif;
    color: #cb4919;
    display: inline !important;
}

ol.is-style-list-sub li::marker {
    font-size: 3.5rem;
    font-weight: 500;
    font-family: 'Cinzel', serif;
    color: #cb4919;
    display: inline !important;
}

ul.is-style-list-sub {
    padding-left: 35px;
    font-size: 1.6rem;
    font-weight: 500;
}

ul.is-style-list-sub li {
    position: relative;
    padding-left: 23px;
    margin-bottom: 15px;
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 0.075em;
}

ol.is-style-list-sub>li {
    position: relative;
    padding-left: 0px;
    margin-bottom: 15px;
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 0.075em;
    color: #cb4919;
}

ul.is-style-list-sub li:after {
    content: "";
    width: 16px;
    height: 16px;
    background-color: #cb4919;
    position: absolute;
    left: 0;
    border-radius: 50%;
    top: 5px;
}

ul.is-style-list-dot {
    font-size: 1.6rem;
    font-weight: 500;
}

ul.is-style-list-dot li {
    position: relative;
    padding-left: 32px;
    line-height: 1.41;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

ul.is-style-list-dot li a {
    text-decoration: underline;
}

ul.is-style-list-dot li:after {
    content: "";
    width: 16px;
    height: 16px;
    background-color: #0071b6;
    position: absolute;
    left: 0;
    border-radius: 50%;
    top: 5px;
}

.wp-block-columns.is-style-gap-60.is-layout-flex {
    gap: 60px;
}

.wp-block-columns.is-style-gap-90.is-layout-flex {
    gap: 90px;
}

h6.wp-block-heading {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 15px 0;
    letter-spacing: 0.05em;
    padding-bottom: 15px;
    border-bottom: 1px solid #aeaeae;
}

.wp-block-cover.is-light.is-style-box-bgcl {
    min-height: unset;
    padding: 25px 35px;
    border-radius: 20px;
}

.wp-block-cover.is-light.is-style-box-bgcl p {
    font-size: 1.7rem !important;
    letter-spacing: 0.05em;
    font-weight: 500;
    color: #333;
    line-height: 2;
    text-align: left;
}

p.has-text-align-center.has-medium-font-size {
    font-size: 2.5rem !important;
}

h1.wp-block-heading {
    font-size: 2.8rem;
    color: #157c40;
    font-weight: 500;
    letter-spacing: 0.075em;
    font-family: 'BizUDMincho', serif;
    padding-bottom: 20px;
    position: relative;
    margin-bottom: 50px;
}

h1.wp-block-heading::after {
    content: "";
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ebe200 0%, #cdde53 34%, #007f68 100%);
    position: absolute;
    bottom: 0;
    left: 0;
}

h2.wp-block-heading {
    font-size: 2.2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0;
    margin-top: 30px;
    padding-left: 30px;
    margin-bottom: 40px;
    color: #0b5c31;
}

h2.wp-block-heading:after {
    content: "";
    width: 100%;
    height: 2px;
    background: #0b5c31;
    position: absolute;
    left: 0;
    bottom: -10px;
}

h2.wp-block-heading:before {
    content: "";
    width: 12px;
    height: 100%;
    background: #0b5c31;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    clip-path: polygon(15% 0%, 100% 0, 85% 100%, 0% 100%);
}

h3.wp-block-heading {
    font-size: 2rem;
    font-weight: 500;
    padding-bottom: 10px;
    margin-top: 15px;
    margin-bottom: 30px;
    position: relative;
    font-weight: bold;
    color: #cb4919;
}


/* h3.wp-block-heading:after {
    content: "";
    width: 6px;
    height: calc(100% - 16px);
    background: #cb4919;
    position: absolute;
    top: 2px;
    border-radius: 0;
    left: 2px;
    font-weight: bold;
} */

h3.wp-block-heading:before {
    content: "";
    width: 100%;
    height: 2px;
    background: #9c794c;
    position: absolute;
    bottom: 0px;
    left: 0;
}

h4.wp-block-heading {
    font-size: 1.8rem;
    font-weight: 500;
    padding-left: 32px;
    margin-top: 30px;
    margin-bottom: 30px;
    position: relative;
    border-bottom: none;
    font-weight: bold;
}

h4.wp-block-heading:after {
    content: "";
    width: 16px;
    height: 16px;
    background: #ef8200;
    position: absolute;
    top: 6px;
    border-radius: 0;
    left: 2px;
}


/* h4.wp-block-heading:before {
    content: "";
    width: 100%;
    height: 2px;
    background: #c6c6c6;
    position: absolute;
    bottom: 0px;
    left: 0;
    top: unset;
} */

h5.wp-block-heading {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    font-weight: 700;
    padding: 0 0 15px;
    color: #0071b6;
    position: relative;
    margin-top: 15px;
    margin-bottom: 25px;
    border-bottom: 2px solid #c6c6c6;
}

h5.wp-block-heading:before {
    display: none;
}

h6.wp-block-heading {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    font-weight: bold;
    padding: 0 25px;
    color: black;
    position: relative;
    margin-top: 15px;
    margin-bottom: 25px;
    border-bottom: none;
}

h6.wp-block-heading:before {
    content: "";
    width: 15px;
    height: 3px;
    background: #cb4919;
    position: absolute;
    left: 0px;
    top: 12px;
    border-radius: 2px;
    color: #333333;
    font-weight: bold;
}

.wp-block-list .wp-block-list {
    margin-top: 5px;
}

.wp-block-list .wp-block-list li {
    color: #333;
}


/* ul.wp-block-list li {
    position: relative;
    padding-left: 25px;
    line-height: 2.0625;
    letter-spacing: 0.1em;
}

ul.wp-block-list li::after {
    content: "";
    width: 13px;
    height: 13px;
    background-color: #ef8200;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 11px;
} */

.page-content-inner p {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1.875;
    font-weight: 400;
}

.wp-admin .is-style-list-dot {
    list-style: none;
    padding-left: 0;
}

.wp-block-group.is-style-container-1100 {
    max-width: 1130px;
    margin: 0 auto;
    padding: 0 15px;
}

.wp-block-group.is-style-container-1000 {
    max-width: 1030px;
    margin: 0 auto;
    padding: 0 15px;
}

.wp-block-group.is-style-container-1200 {
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 15px;
}

.news-item.item-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 25px 20px 30px;
    position: relative;
    margin-bottom: 0;
    font-family: "Noto Sans JP", sans-serif;
    border-bottom: 1px solid #c8c8c8;
}

.news-item.item-list:last-child {
    border-bottom: none;
}

.news-item.item-list:hover::before {
    right: 0;
}

.news-item .date {
    width: 110px;
    color: #757575;
    font-family: 'Cinzel', serif;
    font-weight: 500;
    letter-spacing: 0.075em;
}

a.cat {
    width: 110px;
    min-height: 25px;
    display: flex;
    background-color: #b54919;
    border-radius: 0;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
    align-items: center;
    justify-content: center;
}

.news-item.item-list .title {
    width: 100%;
    padding-top: 15px;
}

.news-item.item-list .title a {
    text-decoration: underline;
    background: linear-gradient(to right, #b54919 50%, #000 50%) 100%;
    background-clip: text;
    background-size: 200% 100%;
    transition: background-position 0.3s;
    color: transparent;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-decoration-color: #333;
}


/* 
.news-item.item-list .title a::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #333;
    position: absolute;
    left: 0;
    bottom: 0;
} */

.news-item.item-list:hover .title a {
    background-position: 0 100%;
}

section#home-about {
    position: relative;
}

section#home-about:after {
    content: "";
    width: 100%;
    height: calc(100% - 190px);
    background-color: #f9f8ef;
    position: absolute;
    bottom: 0;
    z-index: -4;
    left: 0;
}

section#home-about:before {
    content: "";
    width: calc(50vw - 47px);
    height: 733px;
    background-image: url(./images/bg-about-1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: -80px;
    right: 0;
    border-radius: 50px 0 0 50px;
    z-index: -3;
}

.home-about {
    position: relative;
}

.home-about:after {
    content: "";
    width: calc(50vw + 395px);
    height: 629px;
    background-image: url(./images/bg-home-about.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    position: absolute;
    position: absolute;
    top: 0;
    z-index: -2;
    left: 0;
    border-top-right-radius: 50px;
}

.home-about::before {
    content: "";
    width: 630px;
    height: 630px;
    background-image: url(./images/bg-home-about-2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    position: absolute;
    position: absolute;
    top: 430px;
    z-index: -2;
    left: 0;
}

.home-about .main-title {
    color: #fff;
}

.home-recruit .main-title {
    justify-content: center;
}

.wp-block-cover.home-recruit::after {
    content: "";
    width: 387px;
    height: 100%;
    background-image: url(./images/after-home-recruit.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 0;
    top: 0;
}

.box-banner-link {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.box-banner-link a {
    max-width: 270px;
    min-width: 270px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 8px 0px rgba(127, 131, 132, 0.25);
    margin: 16px 0;
    margin-right: 45px;
}

.list-banner-link {
    max-width: 900px;
    margin: 0 auto;
}

.box-banner-link a:nth-child(3n) {
    margin-right: 0;
}

.home-contact-right p {
    padding-left: 40px;
}

.home-contact-right a.btn.btn-main {
    margin-left: 40px;
    max-width: 280px;
}

.wp-block-columns.is-style-gap-0 {
    gap: 0 !important;
}

.box-iframe iframe {
    height: 510px;
    width: 100%;
    border-radius: 20px;
}

.box-iframe {
    position: relative;
}

.box-iframe::after {
    content: "";
    width: 680px;
    height: 546px;
    background-image: url(./images/after-map.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 0;
    top: 44px;
    z-index: -1;
}

a.btn.btn-main.btn-calendar:before {
    content: "";
    width: 26px;
    height: 25px;
    background-image: url(./images/icon-calendar.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 30px;
    transition: .3s;
}

a.btn.btn-main.btn-calendar:hover:before {
    background-image: url(./images/icon-calendar-white.png);
}

.home-contact-right a.btn.btn-main span {
    flex-direction: row;
}

.home-contact-right a.btn.btn-main span small {
    font-size: 1.8rem;
}

.tab-panels {
    position: relative;
}

.panel.tab-content {
    max-height: 352px;
    overflow-y: auto;
    padding-right: 40px;
}

.tab-panels.show div.scroll-top,
.tab-panels.show div.scroll-down {
    display: block;
}

div.scroll-top {
    position: absolute;
    top: -40px;
    right: -14px;
    z-index: 2;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
}

div.scroll-down {
    position: absolute;
    bottom: 0px;
    right: -14px;
    z-index: 2;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
}

div.scroll-down img,
div.scroll-top img {
    box-shadow: 0 0 6px 0 rgba(127, 131, 132, 0.25);
    border-radius: 50%;
}

.panel.tab-content::-webkit-scrollbar {
    width: 5px;
    background-color: #e1e1e1;
    height: 80%;
    border-radius: 10px;
}

.panel.tab-content::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #cb4919;
}

.scroll-down:before {
    content: "";
    width: 10px;
    height: 20px;
    background: #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -20px;
    z-index: -1;
}

button {
    transition: opacity 0.5s;
}

button:hover {
    cursor: pointer;
    opacity: 0.6;
}

.page-content-inner a:not(.scroll-to, .btn, .wp-element-button) {
    text-decoration: underline;
}

.page-content-inner a:not(.scroll-to, .btn, .wp-element-button):hover {
    text-decoration: none;
}

.box-gender {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.box-gender label {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
}

.box-gender label input[type="radio"] {
    border-radius: 50%;
    margin-left: 10px;
    cursor: pointer;
}

@media (min-width: 768px) {
    .form-item .left {
        padding-right: 10px;
    }
    .mega-menu-inner {
        padding: 0px 55px 35px;
    }
    .link-mega-top {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        font-size: 3rem;
        font-weight: 500;
        padding-bottom: 25px;
        border-bottom: 1px solid #cb4919;
    }
    .link-mega-top span {
        position: relative;
        padding-right: 60px;
    }
    .link-mega-top:hover {
        color: #cb4919;
        opacity: 1;
    }
    .link-mega-top span::after {
        content: "";
        width: 10px;
        height: 12px;
        background-image: url(./images/icon-link-footer.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        right: 0px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    .mega-menu .box-link-sub {
        margin: 0;
        padding: 0;
        margin-top: 40px;
    }
    .mega-menu .box-link-sub a {
        font-size: 1.6rem;
        font-weight: 500;
        color: #333333;
        text-align: left;
        padding-bottom: 10px;
        border-bottom: 1px solid #e1e1e1;
        margin-bottom: 30px;
        position: relative;
    }
    .mega-menu .box-link-sub a::after {
        content: "";
        width: 10px;
        height: 12px;
        background-image: url(./images//icon-link-footer.svg);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        right: 10px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    .mega-menu .box-link-sub a::before {
        content: "";
        width: 0;
        height: 1px;
        bottom: -1px;
        left: 0;
        position: absolute;
        background-color: #cb4919;
        transition: .3s;
    }
    .mega-menu .box-link-sub a:hover {
        color: #cb4919;
    }
    .mega-menu .box-link-sub a:hover::before {
        width: 100%;
    }
}

.is-style-chushaku {
    padding: 20px;
    background: linear-gradient(84deg, rgba(43, 184, 255, 0.2) 0%, rgba(50, 147, 255, 0.2) 50%, rgba(67, 188, 255, 0.2) 100%);
    border-radius: 10px;
    margin: 20px auto;
}

.wp-block-embed__wrapper iframe {
    width: 100%;
    height: 600px;
}

.wp-block-group.table-cs.is-layout-flex.wp-block-group-is-layout-flex {
    background-color: #fff;
}

p.title-cs {
    font-size: 2rem;
    font-weight: 500;
    padding-bottom: 10px;
    padding-left: 10px;
    position: relative;
}

p.title-cs::after {
    content: "";
    width: 100%;
    height: 3px;
    background: linear-gradient(-90deg, #ebe200 0%, #cdde53 34%, #65c2bf 100%);
    position: absolute;
    bottom: 0;
    left: 0;
}

.aab__accordion_head.aab_right_icon {
    background-color: #f2fae3 !important;
    border: 2px solid #157c40 !important;
    border-radius: 8px;
    position: relative;
    justify-content: center;
    font-size: 1.8rem;
    text-align: center;
    color: #157c40 !important;
}

.wp-block-aab-accordion-block .aab__accordion_head .aab__accordion_heading {
    justify-content: center;
}

.aab__accordion_head.aab_right_icon::after {
    content: "";
    width: 30px;
    height: 30px;
    background-image: url(./images/icon-open.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
}

.aab__accordion_head.aab_right_icon.active::after {
    background-image: url(./images/icon-close.svg);
}

.wp-block-aab-accordion-block {
    border: none !important;
}

.wp-block-aab-accordion-block .aab__accordion_body {
    padding: 0 !important;
}

.wp-block-aab-accordion-block .aab__accordion_head .aab__accordion_icon {
    display: none !important;
}

.aab__accordion_component {
    padding: 20px 0;
}

@media (max-width: 768px) {
    p.title-cs {
        font-size: 1.6rem;
    }
    p.title-cs::after {
        height: 2px;
    }
    .wp-block-embed__wrapper iframe {
        width: 100%;
        height: 200px;
    }
    .text-sm-left p {
        text-align: left !important;
    }
    .wp-block-columns.is-style-gap-90.is-layout-flex {
        gap: 30px;
    }
    p.has-text-align-center.has-medium-font-size {
        font-size: 1.8rem !important;
    }
    .wp-block-columns.is-style-gap-60.is-layout-flex {
        gap: 30px;
    }
    .wp-block-button a {
        min-height: 61px;
        border: 10px;
        padding: 16px 21px 25px;
        font-size: 1.4rem;
        font-family: "BIZ UDGothic", sans-serif;
        border-radius: 10px;
    }
    .wp-block-button:after {
        width: calc(100% - 42px);
        bottom: 14px;
    }
    .wp-block-button:before {
        bottom: -5px;
    }
    .wp-block-button a:after {
        top: 23px;
        right: 34px;
        width: 7px;
        height: 8px;
    }
    .wp-block-button.is-style-btn-view {
        border-radius: 15px;
        padding: 2px;
    }
    .wp-block-button.is-style-btn-view a {
        min-height: 58px;
        font-size: 1.5rem;
        border-radius: 13px;
    }
    .wp-block-button.is-style-btn-view a:after {
        width: 7px;
        height: 8px;
        right: 25px;
    }
    figcaption.wp-element-caption {
        display: none !important;
    }
    .wp-block-table.is-style-table-style-1 table td:first-child,
    .wp-block-table.is-style-table-style-3 table td:first-child {
        width: 98px;
        vertical-align: top;
    }
    .wp-block-table.is-style-table-style-4 table td:first-child {
        width: 100%;
        display: flex;
        align-items: center;
    }
    .wp-block-table.is-style-table-style-4 table tr {
        display: flex;
        flex-direction: column;
    }
    .wp-block-table.is-style-table-style-3 tr td:first-child {
        font-size: 1.5rem;
    }
    .wp-block-table.is-style-table-style-1 table tr:first-child td,
    .wp-block-table.is-style-table-style-2 table tr:first-child td {
        font-size: 1.4rem;
        padding: 12px 16px;
        border-width: 1px;
    }
    .wp-block-table.is-style-table-style-3 table tr td {
        font-size: 1.3rem;
        padding: 5px 0;
    }
    .wp-block-table.is-style-table-style-1 table td,
    .wp-block-table.is-style-table-style-2 table td,
    .wp-block-table.is-style-table-style-3 table td {
        padding: 10px 16px;
        font-size: 1.4rem;
        line-height: 1.75;
    }
    ol li {
        font-size: 1.3rem;
        padding-left: 0;
        line-height: 1.4;
    }
    ol li::marker {
        font-size: 1.7rem;
    }
    ol {
        padding-left: 25px;
    }
    ul.is-style-list-sub {
        padding-left: 25px;
    }
    ul.is-style-list-sub li,
    ul.is-style-list-dot li {
        padding-left: 20px;
        font-size: 1.3rem;
    }
    ul.is-style-list-sub li:after,
    ul.is-style-list-dot li::after {
        width: 12px;
        height: 12px;
        top: 5px;
    }
    h6.wp-block-heading {
        font-size: 1.4rem;
        padding-bottom: 10px;
    }
    .wp-block-cover.is-light.is-style-box-bgcl {
        padding: 15px;
    }
    .wp-block-cover.is-light.is-style-box-bgcl p {
        font-size: 1.4rem !important;
        line-height: 1.85;
    }
    h1.wp-block-heading {
        font-size: 1.8rem;
        padding-bottom: 10px;
        margin-bottom: 30px;
    }
    h1.wp-block-heading::after {
        height: 3px;
    }
    h2.wp-block-heading {
        font-size: 1.6rem;
        line-height: 1.45;
        padding-bottom: 0;
        padding-left: 21px;
    }
    h2.wp-block-heading:after {
        height: 2px;
    }
    h2.wp-block-heading:before {
        width: 9px;
        height: 20px;
        left: 3px;
        transform: none;
        top: 2px;
    }
    h3.wp-block-heading {
        font-size: 1.5rem;
        line-height: 1.43;
        font-weight: bold;
        padding-bottom: 8px;
    }
    h3.wp-block-heading:before {
        height: 1px;
    }
    h3.wp-block-heading:after {
        height: calc(100% - 10px);
        width: 3px;
        left: 3px;
    }
    h4.wp-block-heading {
        font-size: 1.5rem;
        line-height: 1.43;
        padding-left: 20px;
    }
    h4.wp-block-heading:after {
        width: 11px;
        height: 11px;
        top: 6px;
    }
    h4.wp-block-heading:before {
        display: none;
    }
    h5.wp-block-heading {
        font-size: 1.4rem;
        padding-left: 0px;
        padding-right: 0;
        padding-bottom: 7px;
    }
    h6.wp-block-heading {
        font-size: 1.4rem;
        padding-left: 15px;
        font-weight: bold;
    }
    h6.wp-block-heading:before {
        width: 10px;
        left: 0;
        height: 2px;
        top: 9px;
    }
    h5.wp-block-heading:before {
        width: 5px;
        height: 1px;
        left: 0;
        top: 13px;
    }
    ul.wp-block-list li {
        padding-left: 24px;
        font-size: 1.4rem;
    }
    ul.wp-block-list li::after {
        width: 12px;
        height: 12px;
        top: 9px;
    }
    .box-home-news {
        flex-direction: column;
    }
    .box-news-left {
        width: 100%;
        padding: 23px 0;
    }
    .box-news-right {
        width: 100%;
        padding: 0;
        padding-top: 5px;
    }
    .main-title {}
    .main-title-en {
        font-size: 4.5rem;
    }
    .main-title-jp {
        font-size: 2.2rem;
        min-width: 155px;
        min-height: 40px;
        padding: 0 20px;
        margin-top: -10px;
    }
    .main-title-jp::before,
    .main-title-jp::after {
        width: 35px;
        height: 15px;
    }
    .box-news-left::after {
        width: 100vw;
        height: 100%;
        top: 0;
        left: -25px;
    }
    .container {
        padding: 0 25px;
    }
    .box-news-right::after {
        width: 100vw;
        left: -25px;
    }
    .news-item.item-list {
        padding: 16px 18px;
    }
    a.cat {
        min-width: 92px;
        min-height: 21px;
        width: max-content;
        padding: 0 5px 1px;
        font-size: 1.3rem;
    }
    .news-item.item-list .date {
        font-size: 1.3rem;
        width: 85px;
    }
    .news-item.item-list .title {
        padding-top: 0;
        padding-right: 0;
    }
    ol.is-style-list-sub>li {
        font-size: 1.5rem;
    }
    ol.is-style-list-sub li::marker {
        font-size: 2.3rem;
    }
    .wp-block-list .wp-block-list li {
        padding: 0;
    }
    .wp-block-list .wp-block-list {
        margin-top: 10px;
        margin-left: -20px;
    }
    a.btn.btn-main.btn-file.mx-auto {
        width: 240px;
    }
    a.btn.btn-file::before {
        width: 19px;
        height: 22px;
        left: 22px;
    }
    .table-cs p {
        width: 50%;
        font-size: 1.4rem;
        padding: 4px 0;
    }
    .table-cs p:last-child {
        display: none;
    }
    .table-cs p:nth-child(3n) {
        border-right: 1px solid #157c40;
    }
    .table-cs p:nth-child(2n) {
        border-right: none;
    }
    .news-item.item-list .title a {
        -webkit-line-clamp: 2;
    }
    .aab__accordion_head.aab_right_icon {
        font-size: 1.5rem;
    }
    .aab__accordion_head.aab_right_icon::after {
        height: 25px;
        width: 25px;
        right: 15px;
    }
}