<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&amp;display=swap);
@import url(https://fonts.googleapis.com/css2?family=Cardo:wght@400;700&amp;display=swap);
/*------------------------------------------
  Base Layout
------------------------------------------*/
html {
    font-size: 62.5%;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.8em;
    background: #f9f9f9;
    color: #000;
    font-weight: 400;
    letter-spacing: .05em;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #000;
    text-decoration: none;
    transition: opacity .4s ease;
}
a:link, a:visited {
    color: #000;
}
a:hover {
    opacity: .7;
}

a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
}

.is--tab {
    display: none;
}

.is--sp {
    display: none;
}

@media only screen and (max-width: 1024px) {
    .is--tab {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    a:hover {
        opacity: 1;
    }
    a[href^="tel:"] {
        pointer-events: auto;
        cursor: pointer;
    }
    .is--pc {
        display: none;
    }
    .is--sp {
        display: block;
    }
}

/*------------------------------------------
  layout
------------------------------------------*/
.l-main {
    position: relative;
    background-image: url(../images/common/main-bg.svg);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 42%;
    float: none !important;
    margin-right: 0 !important;
    padding-right: 0 !important;
}

@media only screen and (max-width: 767px) {
    .l-main {
        background-position: right top 55px;
    }
}

.l-inner {
    max-width: 1240px;
    margin: auto;
    padding: 0 20px;
}

.l-pagehead {
    border-bottom: 1px solid #002849;
    padding: 95px 0 30px;
}
.l-pagehead__inner {
    max-width: 1000px;
}
.l-pagehead__ttl {
    color: #002849;
    line-height: 1.3;
}
.l-pagehead__ttl span {
    display: block;
}
.l-pagehead__ttl .ttl-main {
    font-weight: 700;
    letter-spacing: .08em;
    font-size: 32px;
}
.l-pagehead__ttl .ttl-sub {
    font-weight: 700;
    letter-spacing: .05em;
    font-size: 16px;
    font-family: "Cardo", serif;
    position: relative;
    margin: 2em 0 0;
    padding-left: 25px;
    text-transform: capitalize;
}
.l-pagehead__ttl .ttl-sub:before {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    left: 0;
    top: .25em;
    border-radius: 50%;
    background: linear-gradient(140deg, #b11243 0%, #c9890b 100%);
}
.l-pagehead__breadcrumb {
    margin-top: 65px;
}
.l-pagehead__breadcrumb span {
    display: inline;
    font-size: 15px;
    padding: 0;
    font-weight: 500;
}
.l-pagehead__breadcrumb span:first-child::before {
    content: none;
}
.l-pagehead__breadcrumb span:first-child a:after {
    content: " ホーム";
}
.l-pagehead__breadcrumb &gt; span:after {
    content: "/";
    color: #ccc;
    margin: 0 5px;
    transform: scale(1.5);
}
.l-pagehead__breadcrumb &gt; span:last-child::after {
    content: none;
}
.l-pagehead__breadcrumb span a {
    color: rgba(0, 0, 0, .6);
    display: inline;
    text-decoration: underline;
}

.l-pagehead--single {
    padding-top: 0;
    border-bottom: none;
}
.l-pagehead--single .single-ttl {
    font-size: 32px;
    font-weight: 700;
    position: relative;
    background: #fff;
    padding: .5em 1em .5em 1.5em;
}
.l-pagehead--single .single-ttl:after {
    content: "";
    width: 8px;
    height: calc(100% - 1em);
    background: #002849;
    position: absolute;
    left: 15px;
    top: .5em;
}

@media only screen and (max-width: 767px) {
    .l-pagehead {
        padding: 75px 0 30px;
    }
    .l-pagehead__ttl .ttl-main {
        font-size: 24px;
    }
    .l-pagehead__ttl .ttl-sub {
        font-size: 13px;
        margin: 1.5em 0 0;
        padding-left: 20px;
    }
    .l-pagehead__ttl .ttl-sub:before {
        top: .25em;
        width: 10px;
        height: 10px;
    }
    .l-pagehead__breadcrumb {
        margin-top: 30px;
        line-height: 1.2;
    }
    .l-pagehead__breadcrumb span {
        font-size: 12px;
    }
    .l-pagehead__breadcrumb span:after {
        margin: 0 5px;
        transform: scale(1);
    }
    .l-pagehead--single {
        padding-top: 0;
    }
    .l-pagehead--single .single-ttl {
        font-size: 24px;
        padding-right: .5em;
    }
    .l-pagehead--single .single-ttl:after {
        width: 4px;
    }
}

.l-contents {
    padding: 100px 20px;
}
.l-contents #toc_container {
    display: none;
}
.l-contents__inner {
    max-width: 1000px;
    margin: auto;
    position: relative;
}
.l-contents__inner.col-wrapper {
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
    justify-content: space-between;
}
.l-contents__inner.col-wrapper .keni-section {
    width: calc(100% - 380px);
}
.l-contents__inner.col-wrapper .l-side {
    width: 300px;
}
.l-contents--home {
    padding: 0;
}
.l-contents--home .l-contents__inner {
    max-width: 100%;
}
.l-contents--mokuji .l-contents__inner {
    padding-left: 330px;
    max-width: 1530px;
}
.l-contents--mokuji #toc_container {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 250px;
    background: #fff;
    border: none;
    padding: 30px 0 50px;
}
.l-contents--mokuji #toc_container.is--fix {
    position: fixed;
}
.l-contents--mokuji #toc_container li:before {
    content: none;
}
.l-contents--mokuji #toc_container .toc_list {
    font-size: 16px;
}
.l-contents--mokuji #toc_container .toc_list a {
    color: rgba(0, 40, 73, .6);
    position: relative;
    padding: 1em 40px;
    display: block;
}
.l-contents--mokuji #toc_container .toc_list &gt; li {
    border-bottom: 1px solid #ccc;
}
.l-contents--mokuji #toc_container .toc_list &gt; li &gt; a {
    font-weight: 700;
    color: #002849;
}
.l-contents--mokuji #toc_container .toc_list &gt; li &gt; a:before {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    left: 20px;
    top: 1.5em;
    border-radius: 50%;
    background: linear-gradient(140deg, #b11243 0%, #c9890b 100%);
}
.l-contents--mokuji #toc_container .toc_list ul {
    margin: 0;
}
.l-contents--mokuji #toc_container .toc_list ul li {
    border-top: 1px solid #ccc;
}
.l-contents--mokuji .btn-contact {
    padding: 35px 10px 0;
    text-align: center;
}
.l-contents--mokuji .btn-contact a {
    display: inline-block;
    text-align: center;
    line-height: 54px;
    background: #002849;
    color: #fff;
    font-weight: 700;
    width: 170px;
    max-width: 100%;
    border-radius: 27px;
    font-size: 16px;
}

@media only screen and (max-width: 1024px) {
    .l-contents__inner.col-wrapper .keni-section {
        width: 100%;
    }
    .l-contents__inner.col-wrapper .l-side {
        width: 100%;
        margin-top: 50px;
    }
    .l-contents--mokuji .l-contents__inner {
        padding-left: 220px;
    }
    .l-contents--mokuji #toc_container {
        width: 200px;
    }
    .l-contents--mokuji #toc_container .toc_list {
        font-size: 13px;
    }
    .l-contents--mokuji #toc_container .toc_list a {
        padding: 1em 1em 1em 2em;
    }
    .l-contents--mokuji #toc_container .toc_list &gt; li {
        border-bottom: 1px solid #ccc;
    }
    .l-contents--mokuji #toc_container .toc_list &gt; li &gt; a:before {
        left: .8em;
        top: 1.45em;
        width: 10px;
        height: 10px;
    }
    .l-contents--mokuji #toc_container .toc_list ul {
        font-size: 13px;
    }
}

@media only screen and (max-width: 767px) {
    .l-contents {
        padding: 50px 20px;
    }
    .l-contents--home {
        padding: 0;
    }
    .l-contents--mokuji .l-contents__inner {
        padding-left: 0;
    }
    .l-contents--mokuji #toc_container {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        width: 100%;
        padding: 20px 0;
    }
    .l-contents--mokuji .btn-contact {
        padding: 20px 10px 0;
    }
    .l-contents--mokuji .btn-contact a {
        width: 100%;
    }
}

.l-side__block .block-ttl {
    font-size: 22px;
    font-weight: 700;
    position: relative;
    margin-bottom: 1em;
    padding-bottom: .5em;
    border-bottom: 2px solid #c9c9c9;
}
.l-side__block .block-ttl:after {
    content: "";
    width: 30px;
    height: 2px;
    position: absolute;
    bottom: -2px;
    left: 0;
    background: #002849;
}

/*------------------------------------------
  header
------------------------------------------*/
.l-header {
    background: #fff;
    padding: 0 24px;
    position: relative;
    border-bottom: 1px solid #002849;
    z-index: 100;
}
.l-header a {
    display: block;
}
.l-header p {
    margin: 0;
}
.l-header ul {
    list-style: none;
    margin: 0;
}
.l-header ul &gt; li {
    margin: 0;
}
.l-header__logo {
    width: 440px;
    position: absolute;
    left: 24px;
    top: 18px;
    z-index: 1;
}
.l-header .header-logo--txt {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: .5em;
}
.l-header .header-logo--img {
    max-width: 330px;
}
.l-header .header-logo--img img {
    width: 100%;
}
.l-header__contents {
    height: 140px;
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
    width: calc(100% - 440px);
    /*max-width: 1124px;*/
    margin-left: auto;
    align-items: flex-end;
    justify-content: flex-end;
}
.l-header .header-info {
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
}
.l-header .header-info--sp {
    display: none;
}
.l-header .header-info__nav {
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
    /* font-size: 14px; */
    font-size: 13px;
    line-height: 1;
}
.l-header .header-info__nav li {
    border-right: 1px solid #bab7b6;
}
.l-header .header-info__nav li:first-child a {
    padding-left: 0;
}
.l-header .header-info__nav li:last-child {
    border-right: none;
}
.l-header .header-info__nav li:last-child a {
    padding-right: 0;
}
.l-header .header-info__nav li.current a {
    text-decoration: underline;
}
.l-header .header-info__nav a {
    padding: 0 1.2em;
}
.l-header .header-info__nav a:hover {
    opacity: 1;
    text-decoration: underline;
}
.l-header .header-info__tel {
    margin-left: 40px;
}
.l-header .header-info__tel .tel-num {
    padding-left: 26px;
    color: #002849;
    font-family: "Cardo", serif;
    font-weight: 700;
    font-size: 33px;
    line-height: 1;
    background: url(../images/common/ico-tel-bl.svg) no-repeat left center;
    background-size: 21px;
}
.l-header .header-info__tel .tel-txt {
    padding-left: 26px;
    font-size: 12px;
    margin-top: .3em;
}
.l-header .header-info__link {
    margin-left: 25px;
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0 16px;
    /* font-size: 16px; */
    font-size: 15px;
}
.l-header .header-info__link a {
    line-height: 52px;
    /* padding: 0 2em; */
    padding: 0 1.5em;
    background: #f2f2f2;
    border-radius: 27px;
    border: 1px solid #f2f2f2;
    position: relative;
}
.l-header .header-info__link .btn-second {
    color: #000;
    background: #f2f2f2;
    border: 1px solid #f2f2f2;
    overflow: hidden;
    transition: .3s;
}
.l-header .header-info__link .btn-second:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #002849;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform ease .3s;
}
.l-header .header-info__link .btn-second:hover {
    color: #fff;
    opacity: 1;
}
.l-header .header-info__link .btn-second:hover:before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
}
.l-header .header-info__link .btn-second span {
    display: inline-block;
    position: relative;
    z-index: 2;
}
.l-header .header-info__link .btn-contact {
    color: #fff;
    font-weight: 700;
    background: #002849;
    border: 1px solid #002849;
    overflow: hidden;
    transition: .3s;
}
.l-header .header-info__link .btn-contact:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform ease .3s;
}
.l-header .header-info__link .btn-contact:hover {
    color: #002849;
    opacity: 1;
}
.l-header .header-info__link .btn-contact:hover:before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
}
.l-header .header-info__link .btn-contact span {
    display: inline-block;
    position: relative;
    z-index: 2;
}
.l-header .header-info__link li.current .btn-second {
    color: #002849;
    border-color: #002849;
}
.l-header .header-info__link li.current .btn-second:before {
    background: #fff;
    transform-origin: 0% 50%;
    transform: scaleX(1);
}
.l-header .header-info__link li.current .btn-contact {
    color: #002849;
}
.l-header .header-info__link li.current .btn-contact:before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
}

@media only screen and (max-width: 1620px) {
    .l-header__logo .header-logo--txt {
        font-size: 12px;
    }
    .l-header .header-info__nav {
        font-size: 12px;
    }
    .l-header .header-info__tel {
        margin-left: 20px;
    }
    .l-header .header-info__tel .tel-num {
        font-size: 26px;
    }
    .l-header .header-info__tel .tel-txt {
        font-size: 10px;
    }
    .l-header .header-info__link {
        font-size: 12px;
        gap: 0 10px;
        margin-left: 15px;
    }
}

@media only screen and (max-width: 1410px) {
    .l-header__logo {
        width: 280px;
    }
    .l-header__logo .header-logo--txt {
        font-size: 10px;
    }
    .l-header__contents {
        width: 100%;
    }
    .l-header .header-info__link {
        margin-top: 5px;
        width: 100%;
    }
    .l-header .header-info__link a {
        line-height: 35px;
    }
}

@media only screen and (max-width: 1024px) {
    .l-header {
        padding: 0 15px;
    }
    .l-header .header-info__nav {
        /* font-size: 11px; */
        font-size: 10px;
    }
    .l-header .header-info__nav a {
        padding: 0 .5em;
    }
    .l-header .header-info__tel {
        margin-left: 10px;
    }
}

@media only screen and (min-width: 768px) {
    .l-header__contents {
        display: flex !important;
    }
}

@media only screen and (max-width: 767px) {
    .l-header {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        padding: 0 12px;
    }
    .l-header__inner {
        height: 55px;
        display: -moz-flex;
        display:      flex;
        -ms-flex-pack: justify;
        flex-wrap: wrap;
        align-items: center;
    }
    .l-header__logo {
        position: static;
        width: 100%;
    }
    .l-header__logo .header-logo--txt {
        font-size: 9px;
    }
    .l-header__logo .header-logo--img {
        width: 165px;
    }
    .l-header__trigger {
        position: absolute;
        top: 0;
        right: 0;
        cursor: pointer;
        width: 55px;
        height: 55px;
        background: #002849;
        z-index: 100;
    }
    .l-header__trigger .trigger__icon {
        width: 26px;
        height: 20px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .l-header__trigger span {
        position: absolute;
        width: 100%;
        height: 2px;
        background: #fff;
        left: 0;
        transition: .3s;
    }
    .l-header__trigger span:nth-child(1) {
        top: 0;
    }
    .l-header__trigger span:nth-child(2) {
        top: 50%;
        margin-top: -1px;
    }
    .l-header__trigger span:nth-child(3) {
        bottom: 0;
    }
    .l-header__trigger.is--active span:nth-child(1) {
        transform: translateY(9px) rotate(-45deg);
    }
    .l-header__trigger.is--active span:nth-child(2) {
        opacity: 0;
    }
    .l-header__trigger.is--active span:nth-child(3) {
        transform: translateY(-9px) rotate(45deg);
    }
    .l-header__contents {
        display: none;
        position: fixed;
        top: 55px;
        left: 0;
        right: 0;
        bottom: 0;
        overflow-y: auto;
        height: calc(100vh - 55px);
        height: calc(100dvh - 55px);
        background: #002849;
    }
    .l-header .header-info {
        background: #efefef;
        padding: 45px 0 85px;
    }
    .l-header .header-info--pc {
        display: none;
    }
    .l-header .header-info--sp {
        display: block;
    }
    .l-header .header-info__link {
        width: 265px;
        margin: 0 auto 25px;
        gap: 20px 4%;
        font-size: 13px;
    }
    .l-header .header-info__link li {
        width: 48%;
        text-align: center;
    }
    .l-header .header-info__link li:last-child {
        width: 100%;
    }
    .l-header .header-info__link a {
        background: #fff;
        padding: 0;
        line-height: 40px;
    }
    .l-header .header-info__link .btn-contact {
        line-height: 50px;
    }
    .l-header .header-info__link .btn-contact span {
        display: inline-block;
        padding-left: 30px;
        background: url(../images/common/ico-mail-wh.svg) no-repeat left center;
        background-size: 20px;
    }
    .l-header .header-info__tel {
        margin: 0;
        text-align: center;
    }
    .l-header .header-info__tel .tel-num {
        display: inline-block;
        font-size: 35px;
    }
    .l-header .header-info__tel .tel-txt {
        padding: 0;
        color: #002849;
    }
}

.l-gnav__list {
    display: flex;
    margin: 0;
    height: 100%;
    font-size: 16px;
    align-items: flex-end;
    gap: 0 55px;
}

.l-gnav__item {
    position: relative;
}
.l-gnav__item &gt; a {
    position: relative;
    padding: 0 4px 1.2em;
}
.l-gnav__item:before {
    content: "";
    width: 100%;
    height: 5px;
    position: absolute;
    left: 0;
    bottom: -1px;
    background: linear-gradient(90deg, #002849 0%, #931d41 50%, #ba8419 100%);
    opacity: 0;
    transition: .3s;
}
.l-gnav__item:hover {
    opacity: 1;
}
.l-gnav__item:hover:before {
    opacity: 1;
}
.l-gnav__item.current:before {
    opacity: 1;
}

.l-gnav .gnav-child {
    display: none;
    background: #002849;
    color: #fff;
}
.l-gnav .gnav-child a {
    color: #fff;
}

.l-gnav .gnav-child__tab {
    max-width: 1200px;
    margin: auto;
    display: flex;
}
.l-gnav .gnav-child__tab .tab-nav {
    width: 25%;
}
.l-gnav .gnav-child__tab .tab-nav li {
    cursor: pointer;
    margin-bottom: 2em;
    padding-left: 1.5em;
    padding-right: 40px;
    position: relative;
    transition: opacity .3s;
}
.l-gnav .gnav-child__tab .tab-nav li:before {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    left: 0;
    top: .45em;
    border-radius: 50%;
    background: linear-gradient(140deg, #b11243 0%, #c9890b 100%);
    opacity: 0;
    transition: .3s;
}
.l-gnav .gnav-child__tab .tab-nav li:after {
    content: "";
    width: 6px;
    height: 7px;
    background: url(../images/common/arrow-tab.png) no-repeat right top;
    background-size: 100%;
    position: absolute;
    right: -1px;
    top: 50%;
    margin-top: -3px;
    opacity: 0;
    z-index: 1;
}
.l-gnav .gnav-child__tab .tab-nav li:hover {
    opacity: 1;
}
.l-gnav .gnav-child__tab .tab-nav li:last-child {
    margin-bottom: 0;
}
.l-gnav .gnav-child__tab .tab-nav li.is--active {
    font-weight: 700;
}
.l-gnav .gnav-child__tab .tab-nav li.is--active:before, .l-gnav .gnav-child__tab .tab-nav li.is--active:after {
    opacity: 1;
}
.l-gnav .gnav-child__tab .tab-contents {
    display: none;
    border-left: 1px solid #fff;
}
.l-gnav .gnav-child__tab .tab-contents.is--active {
    display: block;
}
.l-gnav .gnav-child__tab .tab-contents__wrapper {
    width: 75%;
    padding-bottom: 1em;
    margin-left: auto;
}
.l-gnav .gnav-child__tab .tab-contents__inner {
    padding-left: 40px;
    display: flex;
}
.l-gnav .gnav-child__tab .menu-list {
    width: 48%;
}
.l-gnav .gnav-child__tab .menu-list__ttl {
    margin-bottom: 2em;
}
.l-gnav .gnav-child__tab .menu-list__ttl a {
    font-weight: 700;
    display: inline-block;
    padding-right: 75px;
    background: url(../images/common/arrow-r01.svg) no-repeat right center;
    background-size: 54px;
}
.l-gnav .gnav-child__tab .menu-list ul {
    opacity: .6;
}
.l-gnav .gnav-child__tab .menu-list ul li {
    margin-bottom: 1.5em;
    padding-left: 1em;
    position: relative;
}
.l-gnav .gnav-child__tab .menu-list ul li:before {
    content: "";
    width: 7px;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 0;
    top: .75em;
}
.l-gnav .gnav-child__tab .menu-list ul li:last-child {
    margin-bottom: 0;
}
.l-gnav .gnav-child__tab .menu-img {
    width: 48%;
    margin-left: auto;
    max-width: 400px;
}

.l-gnav .gnav-child--pc {
    position: fixed;
    top: 140px;
    left: 0;
    width: 100%;
    padding: 85px 20px;
}

@media only screen and (max-width: 1410px) {
    .l-gnav__list {
        font-size: 14px;
        gap: 0 25px;
    }
}

@media only screen and (max-width: 767px) {
    .l-gnav__list {
        display: block;
    }
    .l-gnav__item {
        border-bottom: 1px solid #fff;
    }
    .l-gnav__item:before {
        content: none;
    }
    .l-gnav__item &gt; a {
        color: #fff;
        padding: 1.5em 2em;
    }
    .l-gnav__item &gt; a:not(.has-child) {
        background: url(../images/common/arrow-r01.svg) no-repeat right 17px center;
        background-size: 39px;
    }
    .l-gnav__item &gt; a.has-child span {
        position: absolute;
        width: 16px;
        height: 16px;
        right: 28px;
        top: 50%;
        margin-top: -8px;
    }
    .l-gnav__item &gt; a.has-child span:before, .l-gnav__item &gt; a.has-child span:after {
        content: "";
        position: absolute;
    }
    .l-gnav__item &gt; a.has-child span:before {
        width: 100%;
        height: 2px;
        top: 50%;
        left: 0;
        margin-top: -1px;
        background: linear-gradient(90deg, #931d41 0%, #ba8419 100%);
    }
    .l-gnav__item &gt; a.has-child span:after {
        width: 2px;
        height: 100%;
        left: 50%;
        margin-left: -1px;
        top: 0;
        background: #a85439;
        transition: .3s;
    }
    .l-gnav__item &gt; a.has-child.is--active span:after {
        opacity: 0;
    }
    .l-gnav .gnav-child__acc {
        border-top: 1px solid #fff;
        padding: 0 20px 20px 40px;
    }
    .l-gnav .gnav-child .acc-box__ttl {
        padding: 1.5em 0;
        position: relative;
        cursor: pointer;
        border-top: 1px solid rgba(255, 255, 255, .2);
    }
    .l-gnav .gnav-child .acc-box__ttl span {
        position: absolute;
        width: 16px;
        height: 16px;
        right: 10px;
        top: 50%;
        margin-top: -8px;
    }
    .l-gnav .gnav-child .acc-box__ttl span:before, .l-gnav .gnav-child .acc-box__ttl span:after {
        content: "";
        position: absolute;
    }
    .l-gnav .gnav-child .acc-box__ttl span:before {
        width: 100%;
        height: 2px;
        top: 50%;
        left: 0;
        margin-top: -1px;
        background: linear-gradient(90deg, #931d41 0%, #ba8419 100%);
    }
    .l-gnav .gnav-child .acc-box__ttl span:after {
        width: 2px;
        height: 100%;
        left: 50%;
        margin-left: -1px;
        top: 0;
        background: #a85439;
        transition: .3s;
    }
    .l-gnav .gnav-child .acc-box__ttl.is--active span:after {
        opacity: 0;
    }
    .l-gnav .gnav-child .acc-box__list {
        display: none;
        padding: 20px;
        border-top: 1px solid rgba(255, 255, 255, .2);
    }
    .l-gnav .gnav-child .acc-box__list li {
        font-size: 13px;
        opacity: .6;
        position: relative;
        margin-bottom: 1.5em;
        padding-left: 1em;
    }
    .l-gnav .gnav-child .acc-box__list li:before {
        content: "";
        width: 4px;
        height: 1px;
        background: #fff;
        position: absolute;
        left: 0;
        top: .75em;
    }
    .l-gnav .gnav-child .acc-box__list li:last-child {
        margin-bottom: 0;
    }
    .l-gnav .gnav-child .acc-box:first-child .acc-box__ttl {
        border-top: none;
    }
}

/*------------------------------------------
  footer
------------------------------------------*/
.l-footer {
    position: relative;
    padding: 100px 0 85px;
    font-size: 16px;
    background: #efefef;
}
.l-footer p {
    margin: 0;
}
.l-footer ul, .l-footer li {
    margin: 0;
    list-style: none;
}
.l-footer__inner {
    max-width: 1550px;
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
    gap: 50px 0;
    justify-content: flex-end;
}
.l-footer .footer-info {
    margin-right: 40px;
}
.l-footer .footer-info__logo .logo--txt {
    font-weight: 700;
    margin-top: .5em;
}
.l-footer .footer-info__address {
    line-height: 1.75;
    margin-top: 1.5em;
}
.l-footer .footer-info__sns {
    margin-top: 45px;
    display: flex;
    gap: 0 15px;
}
.l-footer .footer-menu {
    margin-left: auto;
    display: flex;
    gap: 0 60px;
    justify-content: flex-end;
}
.l-footer .footer-menu a {
    display: block;
}
.l-footer .footer-menu__list {
    padding: 10px 0;
    border-left: 1px solid #ccc;
    padding-left: 2.5em;
}
.l-footer .footer-menu__list li {
    margin-bottom: 2em;
}
.l-footer .footer-menu__list li:last-child {
    margin-bottom: 0;
}
.l-footer .footer-menu .list-child {
    margin-top: 2em;
    font-size: 15px;
}
.l-footer .footer-menu .list-child p {
    padding-left: 20px;
    margin-bottom: 1.5em;
    position: relative;
}
.l-footer .footer-menu .list-child p:before {
    content: "";
    width: 7px;
    height: 1px;
    background: #b1b1b1;
    position: absolute;
    left: 0;
    top: .75em;
}
.l-footer .footer-menu .list-child p:last-child {
    margin-bottom: 0;
}
.l-footer .footer-contact {
    margin-left: 60px;
    width: 250px;
}
.l-footer .footer-contact a {
    display: block;
}
.l-footer .footer-contact__btn {
    margin-bottom: 24px;
}
.l-footer .footer-contact__btn a {
    text-align: center;
    line-height: 58px;
    border: 1px solid #002849;
    background: #002849;
    color: #fff;
    border-radius: 30px;
    font-weight: 700;
    position: relative;
    transition: .3s;
    overflow: hidden;
}
.l-footer .footer-contact__btn a:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform ease .3s;
}
.l-footer .footer-contact__btn a span {
    display: inline-block;
    padding-left: 45px;
    background-image: url(../images/common/ico-mail-wh.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 22px;
    position: relative;
    z-index: 1;
}
.l-footer .footer-contact__btn a:hover {
    color: #002849;
    opacity: 1;
}
.l-footer .footer-contact__btn a:hover:before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
}
.l-footer .footer-contact__btn a:hover span {
    background-image: url(../images/common/ico-mail-bl.svg);
}
.l-footer .footer-contact__tel .tel-num {
    padding-left: 26px;
    color: #002849;
    font-family: "Cardo", serif;
    font-weight: 700;
    font-size: 33px;
    line-height: 1;
    background: url(../images/common/ico-tel-bl.svg) no-repeat left center;
    background-size: 21px;
}
.l-footer .footer-contact__tel .tel-txt {
    padding-left: 26px;
    font-size: 12px;
    margin-top: .3em;
}
.l-footer .footer-copy {
    font-size: 12px;
    width: 100%;
}

.pagetop {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 100;
    line-height: 1;
    z-index: 100;
}
.pagetop a {
    display: block;
    position: relative;
    color: #002849;
    font-size: 16px;
    font-family: "Cardo", serif;
    -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
    padding-top: 168px;
}
.pagetop a:before {
    content: "";
    width: 1px;
    height: 150px;
    background: #002849;
    position: absolute;
    top: 0;
    right: 50%;
}

@media only screen and (max-width: 1420px) {
    .l-footer .footer-info {
        width: 300px;
        margin-right: 0;
    }
    .l-footer .footer-menu {
        width: calc(100% - 350px);
    }
    .l-footer .footer-contact {
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }
    .l-footer .footer-contact__btn {
        width: 250px;
        margin-right: 20px;
    }
}

@media only screen and (max-width: 1024px) {
    .l-footer .footer-info {
        width: 250px;
    }
    .l-footer .footer-menu {
        width: calc(100% - 280px);
        gap: 0 1.5em;
        font-size: 14px;
    }
    .l-footer .footer-menu__list {
        padding-left: 1.5em;
    }
    .l-footer .footer-menu .list-child {
        font-size: 13px;
    }
}

@media only screen and (max-width: 767px) {
    .l-footer {
        padding: 50px 0 0;
        font-size: 13px;
    }
    .l-footer__inner {
        padding: 0;
        display: block;
    }
    .l-footer .footer-info {
        text-align: center;
        width: 100%;
        margin-bottom: 40px;
    }
    .l-footer .footer-info__logo .logo--img img {
        width: 229px;
    }
    .l-footer .footer-info__address {
        margin-top: 1em;
        -ms-word-break: break-all;
            word-break: break-all;
    }
    .l-footer .footer-info__sns {
        margin-top: 25px;
        gap: 0 22px;
        justify-content: center;
    }
    .l-footer .footer-info__sns img {
        width: 50px;
    }
    .l-footer .footer-menu {
        width: 100%;
        display: block;
        font-size: 13px;
        padding: 0 20px;
    }
    .l-footer .footer-menu__list {
        padding: 0;
        border-left: none;
        border-top: 1px solid #ccc;
    }
    .l-footer .footer-menu__list:last-child {
        border-bottom: 1px solid #ccc;
    }
    .l-footer .footer-menu__list li {
        margin-bottom: 0;
        border-bottom: 1px solid #ccc;
    }
    .l-footer .footer-menu__list li:last-child {
        border-bottom: none;
    }
    .l-footer .footer-menu__list li &gt; a {
        padding: 1.5em .5em;
        background: url(../images/common/arrow-r02.svg) no-repeat right center;
        background-size: 39px;
    }
    .l-footer .footer-menu .list-child {
        margin-top: 0;
        padding: 10px 0 20px;
        font-size: 12px;
        display: -moz-flex;
        display:      flex;
        -ms-flex-pack: justify;
        flex-wrap: wrap;
        gap: 1em 4%;
    }
    .l-footer .footer-menu .list-child p {
        width: 48%;
        padding-left: 10px;
        margin-bottom: 0;
    }
    .l-footer .footer-menu .list-child p:before {
        width: 4px;
    }
    .l-footer .footer-contact {
        width: 100%;
        padding: 40px 0;
        width: 265px;
        margin: auto;
        display: block;
    }
    .l-footer .footer-contact__btn {
        width: 100%;
        margin-bottom: 20px;
    }
    .l-footer .footer-contact__btn a {
        line-height: 50px;
    }
    .l-footer .footer-contact__btn a span {
        padding-left: 36px;
    }
    .l-footer .footer-contact__tel {
        text-align: center;
    }
    .l-footer .footer-contact__tel .tel-num {
        display: inline-block;
        font-size: 35px;
    }
    .l-footer .footer-contact__tel .tel-txt {
        padding: 0;
        color: #002849;
    }
    .l-footer .footer-copy {
        font-size: 10px;
        background: #fff;
        text-align: center;
        padding: 2.5em 0;
    }
    .pagetop a {
        font-size: 13px;
        padding-top: 85px;
    }
    .pagetop a:before {
        height: 75px;
    }
}

.l-contact {
    padding: 80px 60px 100px;
    position: relative;
    background: #fff;
    color: #fff;
}
.l-contact a {
    display: block;
    color: #fff;
}
.l-contact p {
    margin: 0;
}
.l-contact__inner {
    padding: 195px 0;
    background-image: url(../images/common/contact-bg.avif);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.l-contact__inner &gt; .l-inner {
    max-width: 1550px;
    padding: 0 60px;
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
    align-items: center;
}
.l-contact__head {
    width: 410px;
}
.l-contact__head .head-txt {
    font-weight: 700;
    line-height: 2.125;
    font-size: 16px;
}
.l-contact__contents {
    width: calc(100% - 410px);
    margin-left: auto;
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 30px 55px;
}
.l-contact__contents .contact__btn a {
    text-align: center;
    width: 400px;
    line-height: 88px;
    font-size: 16px;
    background: #fff;
    color: #002849;
    border: 1px solid #002849;
    border-radius: 45px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    transition: .3s;
}
.l-contact__contents .contact__btn a:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #002849;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform ease .3s;
}
.l-contact__contents .contact__btn a span {
    display: inline-block;
    padding-left: 54px;
    background-image: url(../images/common/ico-mail-bl.svg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 32px;
    position: relative;
    z-index: 1;
}
.l-contact__contents .contact__btn a:hover {
    color: #fff;
    opacity: 1;
}
.l-contact__contents .contact__btn a:hover:before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
}
.l-contact__contents .contact__btn a:hover span {
    background-image: url(../images/common/ico-mail-wh.svg);
}
.l-contact__contents .contact__tel .tel-num {
    padding-left: 40px;
    font-family: "Cardo", serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 1;
    background: url(../images/common/ico-tel-wh.svg) no-repeat left center;
    background-size: 32px;
}
.l-contact__contents .contact__tel .tel-txt {
    padding-left: 40px;
    font-size: 15px;
    margin-top: .3em;
}

@media only screen and (max-width: 1420px) {
    .l-contact {
        padding-left: 40px;
        padding-right: 40px;
    }
    .l-contact__inner &gt; .l-inner {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media only screen and (max-width: 1024px) {
    .l-contact__head {
        width: 100%;
        margin-bottom: 40px;
    }
    .l-contact__contents {
        width: 100%;
        gap: 0;
        justify-content: space-between;
    }
    .l-contact__contents .contact__btn {
        width: 42%;
    }
    .l-contact__contents .contact__btn a {
        width: 100%;
        line-height: 70px;
    }
    .l-contact__contents .contact__tel {
        width: 54%;
    }
    .l-contact__contents .contact__tel .tel-num {
        font-size: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .l-contact {
        padding: 0;
    }
    .l-contact__inner {
        padding: 60px 0;
        background-image: url(../images/common/contact-bg-sp.avif);
    }
    .l-contact__inner &gt; .l-inner {
        display: block;
        padding: 0 20px;
    }
    .l-contact__head {
        text-align: center;
        margin-bottom: 30px;
    }
    .l-contact__head .head-txt {
        line-height: 1.8;
        font-size: 13px;
    }
    .l-contact__contents {
        display: block;
    }
    .l-contact__contents .contact__btn {
        width: 265px;
        margin: auto;
    }
    .l-contact__contents .contact__btn a {
        line-height: 50px;
        font-size: 13px;
    }
    .l-contact__contents .contact__btn a span {
        padding-left: 33px;
        background-size: 20px;
    }
    .l-contact__contents .contact__tel {
        text-align: center;
        width: 100%;
        margin-bottom: 22px;
    }
    .l-contact__contents .contact__tel .tel-num {
        display: inline-block;
        padding-left: 26px;
        font-size: 35px;
        background-size: 22px;
    }
    .l-contact__contents .contact__tel .tel-txt {
        padding-left: 0;
        font-size: 12px;
    }
}

.l-bottombnr {
    background: #fff;
}
.l-bottombnr .bottombnr-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 3.5%;
}
.l-bottombnr .bottombnr-list a {
    width: 31%;
}
@media only screen and (max-width: 767px) {
.l-bottombnr {
    padding-bottom: 40px;
}
.l-bottombnr .bottombnr-list {
    gap: 20px 0;
}
.l-bottombnr .bottombnr-list a {
    width: 100%;
    padding: 0 16px;
}
}

/*------------------------------------------
  project
------------------------------------------*/
/* ========== mv ========== */
.p-mv {
    position: relative;
    color: #fff;
    background: #002849;
    min-height: 57.0625vw;
    overflow: hidden;
}
.p-mv__inner {
    padding: 0 7.25vw;
}
.p-mv__txt {
    padding: 13.4375vw 0 0;
    font-weight: 700;
    line-height: 1.3;
}
.p-mv__txt p {
    margin-bottom: 0;
}
.p-mv__txt .txt--main {
    letter-spacing: .08em;
    font-size: 3.1875vw;
}
.p-mv__txt .txt--main p:first-child {
    margin-bottom: .625vw;
}
.p-mv__txt .txt--main strong {
    color: #f3b215;
}
.p-mv__txt .txt--sub {
    letter-spacing: .02em;
    font-size: 1vw;
    margin-top: 3em;
}
.p-mv__badge {
    position: absolute;
    bottom: 11.375vw;
    right: 2.5625vw;
    z-index: 10;
    width: 13vw;
    height: 13vw;
}
.p-mv__badge:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    border-radius: 50%;
    background: linear-gradient(120deg, #b11243 0%, #c9890b 100%);
    opacity: .5;
}
.p-mv__badge .badge-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #b11243 0%, #c9890b 100%);
    border-radius: 50%;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.p-mv__badge .badge-txt {
    text-align: center;
    font-weight: 500;
    font-size: 1.1875vw;
    line-height: 1;
}
.p-mv__badge .badge-txt__head {
    font-weight: 400;
    font-size: 1vw;
    margin: 0 0 .5em;
}
.p-mv__badge .badge-txt__main {
    margin: 0;
}
.p-mv__badge .badge-txt__main strong {
    font-size: 3.375vw;
    font-family: "Cardo", serif;
}
.p-mv__badge .badge-txt__foot {
    margin: .5em 0 0;
}
.p-mv__img {
    display: none;
}
.p-mv__slide {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 50%;
    width: 46.375vw;
    height: 57.0625vw;
}
.p-mv__slide:before {
    content: "";
    width: 100%;
    height: 30%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, #011d34 0%, rgba(1, 29, 52, 0) 100%);
    z-index: 2;
}
.p-mv__slide .slide-block {
    display: grid;
    width: 22.8125vw;
    height: 57.0625vw;
}
.p-mv__slide .slide {
    display: flex;
    flex-direction: column-reverse;
    overflow: hidden;
}
.p-mv__slide .slide-list {
    display: flex;
    flex-direction: column-reverse;
    margin: 0;
    padding: 0;
    align-items: center;
    list-style: none;
}
.p-mv__slide .slide-list li {
    width: 100%;
    margin-bottom: .875vw;
}
.p-mv__slide .slide-list li img {
    width: 100%;
}
.p-mv__slide .slide-block01 .slide-list {
    -webkit-animation: slideMV01 30s infinite linear;
            animation: slideMV01 30s infinite linear;
}
.p-mv__slide .slide-block02 .slide-list {
    -webkit-animation: slideMV02 30s infinite linear;
            animation: slideMV02 30s infinite linear;
}
.p-mv__logo {
    position: absolute;
    bottom: 3.125vw;
    left: 0;
    line-height: 1.5;
    font-family: "Cardo", serif;
    overflow: hidden;
    width: 100%;
    font-size: 10.375vw;
    opacity: .6;
}
.p-mv__logo p {
    margin-bottom: 0;
}
.p-mv__logo .logo-txt {
    -webkit-animation: loopMVLogo 50s linear infinite;
            animation: loopMVLogo 50s linear infinite;
    width: 110vw;
}
.p-mv__logo .logo-txt--loop {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: loopMVLogo 50s -25s linear infinite;
            animation: loopMVLogo 50s -25s linear infinite;
}

@-webkit-keyframes waveMV {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(2);
        opacity: .0;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: .0;
    }
}

@keyframes waveMV {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(2);
        opacity: .0;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: .0;
    }
}

@-webkit-keyframes loopMVLogo {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes loopMVLogo {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@-webkit-keyframes slideMV01 {
    0% {
        transform: translateY(0%);
    }
    100% {
        transform: translateY(100%);
    }
}

@keyframes slideMV01 {
    0% {
        transform: translateY(0%);
    }
    100% {
        transform: translateY(100%);
    }
}

@-webkit-keyframes slideMV02 {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0%);
    }
}

@keyframes slideMV02 {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(0%);
    }
}

@media only screen and (max-width: 767px) {
    .p-mv {
        min-height: 180.8vw;
    }
    .p-mv__inner {
        padding: 0;
    }
    .p-mv__txt {
        padding: 13.33333vw 7.46667vw 0;
    }
    .p-mv__txt .txt--main {
        font-size: 7.46667vw;
        letter-spacing: .02em;
    }
    .p-mv__txt .txt--main p:first-child {
        margin-bottom: 1.33333vw;
    }
    .p-mv__txt .txt--sub {
        font-size: 3.46667vw;
        margin-top: 2.5em;
        line-height: 1.66;
    }
    .p-mv__badge {
        bottom: 11.73333vw;
        right: 6.4vw;
        width: 26.66667vw;
        height: 26.66667vw;
    }
    .p-mv__badge:before {
        -webkit-animation: waveMV 2s ease-out infinite;
                animation: waveMV 2s ease-out infinite;
    }
    .p-mv__badge .badge-txt {
        font-size: 3.46667vw;
    }
    .p-mv__badge .badge-txt__head {
        font-size: 2.93333vw;
    }
    .p-mv__badge .badge-txt__main strong {
        font-size: 6.4vw;
    }
    .p-mv__badge .badge-txt__foot {
        margin: 0;
    }
    .p-mv__img {
        display: block;
    }
    .p-mv__slide {
        display: none;
    }
    .p-mv__logo {
        bottom: auto;
        top: 80vw;
        font-size: 16vw;
    }
    .p-mv__logo .logo-txt {
        -webkit-animation: loopMVLogo 50s linear infinite;
                animation: loopMVLogo 50s linear infinite;
        width: 172.8vw;
    }
    .p-mv__logo .logo-txt--loop {
        position: absolute;
        top: 0;
        left: 0;
        -webkit-animation: loopMVLogo 50s -25s linear infinite;
                animation: loopMVLogo 50s -25s linear infinite;
    }
}

/* ========== home ========== */
.p-home {
    position: relative;
    font-size: 18px;
    line-height: 2.22;
    letter-spacing: .05em;
}
.p-home p {
    margin: 0;
}

@media only screen and (max-width: 1024px) {
    .p-home {
        font-size: 16px;
        line-height: 1.8;
    }
}

@media only screen and (max-width: 767px) {
    .p-home {
        font-size: 13px;
    }
}

/* ========== OurAdvantage ========== */
.p-home--advantage {
    padding: 120px 0 100px;
    background: #efefef;
}
.p-home--advantage .advantage-head {
    max-width: 1560px;
    margin-bottom: 85px;
}
.p-home--advantage .advantage-head &gt; div {
    display: flex;
}
.p-home--advantage .advantage-head__ttl {
    width: 44%;
}
.p-home--advantage .advantage-head__ttl .c-ttl--type01 {
    margin-bottom: 60px;
}
.p-home--advantage .advantage-head__ttl .c-ttl--type01 .ttl--en {
    margin-bottom: 2em;
}
.p-home--advantage .advantage-head__txt {
    margin-left: auto;
    width: 53%;
    padding: 70px 0 0;
}
.p-home--advantage .advantage-more {
    display: none;
}
.p-home--advantage .advantage-num {
    max-width: 1560px;
    margin: 0 auto 55px;
}
.p-home--advantage .advantage-num &gt; div {
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
}
.p-home--advantage .advantage-num__item {
    width: 25%;
    text-align: center;
    padding: 3.4375vw 1.25vw 2.5vw;
    border-right: 1px solid #1b1b1b;
    color: #002849;
    font-size: 1.5vw;
    line-height: 1.1;
}
.p-home--advantage .advantage-num__item:first-child {
    border-left: 1px solid #1b1b1b;
}
.p-home--advantage .advantage-num__item .item-ttl {
    font-weight: 700;
    margin-bottom: 1em;
}
.p-home--advantage .advantage-num__item .item-num {
    font-family: "Cardo", serif;
    font-size: 3.125vw;
    letter-spacing: 0;
}
.p-home--advantage .advantage-num__item .item-num strong {
    font-size: 5.625vw;
    font-weight: normal;
}
.p-home--advantage .advantage-num__item .item-txt {
    font-weight: 500;
}
.p-home--advantage .advantage-img {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
}

@media only screen and (min-width: 1601px) {
    .p-home--advantage .advantage-num__item {
        padding: 55px 20px 40px;
        font-size: 24px;
    }
    .p-home--advantage .advantage-num__item .item-num {
        font-size: 50px;
    }
    .p-home--advantage .advantage-num__item .item-num strong {
        font-size: 90px;
    }
}

@media only screen and (max-width: 1024px) {
    .p-home--advantage .advantage-head {
        margin-bottom: 35px;
    }
    .p-home--advantage .advantage-head &gt; div {
        display: block;
    }
    .p-home--advantage .advantage-head__ttl {
        width: 100%;
    }
    .p-home--advantage .advantage-head__ttl .c-ttl--type01 {
        text-align: center;
    }
    .p-home--advantage .advantage-head__ttl .c-ttl--type01 .ttl--en {
        display: inline-block;
    }
    .p-home--advantage .advantage-head__ttl .wp-block-button {
        display: none;
    }
    .p-home--advantage .advantage-head__txt {
        width: 100%;
        padding: 0;
    }
    .p-home--advantage .advantage-more {
        display: block;
        text-align: center;
        margin-bottom: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .p-home--advantage {
        padding: 70px 0 60px;
    }
    .p-home--advantage .advantage-head__ttl .c-ttl--type01 {
        margin-bottom: 40px;
    }
    .p-home--advantage .advantage-head__ttl .c-ttl--type01 .ttl--en {
        margin-bottom: 1em;
    }
    .p-home--advantage .advantage-more {
        padding: 0 20px;
    }
    .p-home--advantage .advantage-num {
        padding: 25px 20px;
        background: url(../images/common/main-bg.svg) no-repeat center;
        background-size: contain;
        margin-bottom: 0;
    }
    .p-home--advantage .advantage-num &gt; div {
        gap: 4.8vw 0;
    }
    .p-home--advantage .advantage-num__item {
        width: 50%;
        padding: 6.66667vw 0 5.33333vw;
        font-size: 4vw;
    }
    .p-home--advantage .advantage-num__item:nth-child(3) {
        border-left: 1px solid #1b1b1b;
    }
    .p-home--advantage .advantage-num__item .item-num {
        font-size: 6.66667vw;
    }
    .p-home--advantage .advantage-num__item .item-num strong {
        font-size: 12vw;
    }
    .p-home--advantage .advantage-img {
        display: none;
    }
}

/* ========== Customers ========== */
.p-home--customers {
    padding: 110px 0 100px;
    background: #fff;
}
.p-home--customers .customers-logo {
    display: flex;
    overflow: hidden;
    margin-bottom: 20px;
}
.p-home--customers .customers-logo__inner {
    display: flex;
}
.p-home--customers .customers-logo__inner.loopRL {
    -webkit-animation: loopRL 60s linear infinite;
            animation: loopRL 60s linear infinite;
}
.p-home--customers .customers-logo__inner.loopLR {
    -webkit-animation: loopLR 60s linear infinite;
            animation: loopLR 60s linear infinite;
}
.p-home--customers .customers-logo__item {
    width: 2300px;
}
.p-home--customers .customers-logo__item img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}
.p-home--customers .customers-img {
    display: none;
}

@-webkit-keyframes infinity-scroll-right {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0%);
    }
}

@keyframes infinity-scroll-right {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0%);
    }
}

@-webkit-keyframes infinity-scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

@keyframes infinity-scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.scroll-infinity__wrap {
    display: flex;
    overflow: hidden;
    padding: 1em 0;
}

.scroll-infinity__list {
    display: flex;
    list-style: none;
    padding: 0;
}

.scroll-infinity__list--left {
    -webkit-animation: infinity-scroll-left 190s infinite linear .5s both;
            animation: infinity-scroll-left 190s infinite linear .5s both;
}

.scroll-infinity__list--right {
    -webkit-animation: infinity-scroll-right 190s infinite linear .5s both;
            animation: infinity-scroll-right 190s infinite linear .5s both;
}

.scroll-infinity__item {
    width: calc(100vw / 8);
}

.scroll-infinity__item &gt; img {
    width: 100%!important;
    height: auto!important;
    max-width: 100%!important;
}

@media only screen and (max-width: 1024px) {
    .scroll-infinity__list--left {
        -webkit-animation: infinity-scroll-left 190s infinite linear .5s both;
                animation: infinity-scroll-left 190s infinite linear .5s both;
    }
    .scroll-infinity__list--right {
        -webkit-animation: infinity-scroll-right 190s infinite linear .5s both;
                animation: infinity-scroll-right 190s infinite linear .5s both;
    }
    .scroll-infinity__item {
        width: calc(100vw / 5);
    }
}

@media only screen and (max-width: 767px) {
    .p-home--customers {
        padding: 45px 0 0;
    }
    .p-home--customers .c-ttl--type01 {
        margin-bottom: 20px;
    }
    .p-home--customers .customers-logo {
        margin-bottom: 0;
    }
    .p-home--customers .customers-logo__item {
        width: 1800px;
    }
    .p-home--customers .customers-img {
        display: block;
        height: 74.66667vw;
        width: 100%;
        margin: 50px 0 0;
    }
    .p-home--customers .customers-img img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
    }
    .scroll-infinity__wrap {
        padding: 0;
    }
    .scroll-infinity__list--left {
        -webkit-animation: infinity-scroll-left 190s infinite linear .5s both;
                animation: infinity-scroll-left 190s infinite linear .5s both;
    }
    .scroll-infinity__list--right {
        -webkit-animation: infinity-scroll-right 190s infinite linear .5s both;
                animation: infinity-scroll-right 190s infinite linear .5s both;
    }
    .scroll-infinity__item {
        width: calc(100vw / 3);
    }
}

/* ========== Program ========== */
.p-home--program {
    background: #011d34;
    color: #fff;
    padding: 110px 0;
}
.p-home--program .program-head {
    max-width: 1560px;
    margin-bottom: 100px;
}
.p-home--program .program-head &gt; div {
    display: flex;
}
.p-home--program .program-head .c-ttl--type01 {
    margin-bottom: 0;
}
.p-home--program .program-head__txt {
    width: calc(100% - 400px);
    max-width: 910px;
    margin-left: auto;
    padding: 1.5em 0 0;
}
.p-home--program .program-list {
    max-width: 1560px;
}
.p-home--program .program-list &gt; div {
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
    gap: 70px 0;
}
.p-home--program .program-list__item {
    position: relative;
    width: 50%;
    padding: 0 20px;
    border-right: 1px solid rgba(239, 239, 239, .3);
}
.p-home--program .program-list__item:nth-child(odd) {
    border-left: 1px solid rgba(239, 239, 239, .3);
}
.p-home--program .program-list__item &gt; div {
    max-width: 600px;
    margin: auto;
    position: relative;
    transition: opacity .3s;
}
.p-home--program .program-list__item &gt; div:hover {
    opacity: .7;
}
.p-home--program .program-list__item .item-img {
    margin: 0 0 30px;
}
.p-home--program .program-list__item .item-ttl {
    font-weight: 700;
    position: relative;
    font-size: 32px;
    line-height: 1.3;
    background: url(../images/common/arrow-r01.svg) no-repeat right center;
    background-size: 66px;
    margin-bottom: .8em;
    padding-right: 80px;
}
.p-home--program .program-list__item .item-txt {
    line-height: 1.8;
}
.p-home--program .program-list__item .item-link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}
.p-home--program .program-list__item .item-link a {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}
.p-home--program .program-more {
    margin-top: 60px;
    text-align: center;
    display: block;
}

@media only screen and (max-width: 1024px) {
    .p-home--program .program-list__item .item-ttl {
        font-size: 22px;
        background-size: 50px;
        padding-right: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .p-home--program {
        padding: 50px 0 65px;
    }
    .p-home--program .program-head {
        margin-bottom: 50px;
    }
    .p-home--program .program-head &gt; div {
        display: block;
    }
    .p-home--program .program-head .c-ttl--type01 {
        margin-bottom: 40px;
    }
    .p-home--program .program-head__txt {
        width: 100%;
        padding: 0;
    }
    .p-home--program .program-list &gt; div {
        gap: 35px 0;
    }
    .p-home--program .program-list__item {
        width: 100%;
        padding: 0 0 35px;
        border-right: none;
        border-bottom: 1px solid rgba(239, 239, 239, .3);
    }
    .p-home--program .program-list__item:nth-child(odd) {
        border-left: none;
    }
    .p-home--program .program-list__item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .p-home--program .program-list__item &gt; div {
        max-width: 100%;
    }
    .p-home--program .program-list__item .item-img {
        margin: 0 0 25px;
    }
    .p-home--program .program-list__item .item-ttl {
        font-size: 20px;
        line-height: 1.5;
        background-size: 40px;
        padding-right: 50px;
    }
    .p-home--program .program-more {
        margin-top: 45px;
    }
}

/* ========== pickup ========== */
.p-home--pickup {
    background: #fff;
    padding: 110px 0;
}

@media only screen and (max-width: 767px) {
    .p-home--pickup {
        padding: 60px 0;
    }
}

/* ========== Works ========== */
.p-home--works {
    padding: 100px 0 70px;
    overflow: hidden;
}
.p-home--works:before {
    content: "";
    width: 100%;
    padding-top: 100%;
    background: #e5e5e5;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.p-home--works &gt; div {
    position: relative;
    z-index: 1;
}
.p-home--works .works-more {
    text-align: center;
    margin-top: 60px;
    display: block;
}

@media only screen and (max-width: 767px) {
    .p-home--works {
        padding: 55px 0 70px;
    }
    .p-home--works:before {
        top: 0;
        transform: translateY(0) rotate(45deg);
    }
    .p-home--works:after {
        content: "";
        width: 100%;
        padding-top: 100%;
        background: #e5e5e5;
        position: absolute;
        right: 50%;
        bottom: 0;
        transform: translateY(0) rotate(45deg);
    }
    .p-home--works .c-ttl--type01 {
        margin-bottom: 30px;
    }
    .p-home--works .works-more {
        margin-top: 35px;
    }
}

/* ========== books ========== */
.p-home--books {
    padding: 75px 0 95px;
    background: url(../images/common/patt01.png);
    background-size: 47px;
}
.p-home--books .books-list {
    max-width: 1560px;
}
.p-home--books .books-list &gt; div {
    gap: 25px 1.714%;
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
    justify-content: center;
}
.p-home--books .books-list__item {
    width: 11%;
    text-align: center;
    margin: 0;
}

@media only screen and (max-width: 1024px) {
    .p-home--books .books-list &gt; div {
        gap: 25px 4%;
    }
    .p-home--books .books-list__item {
        width: 22%;
    }
}

@media only screen and (max-width: 767px) {
    .p-home--books {
        padding: 60px 0;
        background-size: 24px;
    }
}

/* ========== Seminar ========== */
.p-home--trial {
    padding: 80px 0;
    background: #011d34;
}
.p-home--trial .trial-list {
    max-width: 1000px;
    margin: auto;
}
.p-home--trial .trial-list__item {
    margin-bottom: 25px;
}
.p-home--trial .trial-list__item:last-child {
    margin-bottom: 0;
}
.p-home--trial .trial-list .item-inner {
    background: #fff;
    display: flex;
    padding: 28px;
    position: relative;
}
.p-home--trial .trial-list .item-inner:before {
    content: "";
    width: 54px;
    height: 22px;
    position: absolute;
    bottom: 28px;
    right: 28px;
    background: url(../images/common/arrow-r01.svg) no-repeat center center;
    background-size: 100%;
}
.p-home--trial .trial-list .item-img {
    width: 52%;
    margin: 0;
    height: 240px;
}
.p-home--trial .trial-list .item-img img {
    max-width: 100%!important;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.p-home--trial .trial-list .item-ttl {
    width: 45%;
    margin-left: auto;
    font-size: 24px;
    line-height: 1.5;
    font-weight: 700;
    padding-bottom: 30px;
}
.p-home--trial .trial-more {
    margin-top: 40px;
    justify-content: center;
}

@media only screen and (max-width: 767px) {
    .p-home--trial {
        padding: 60px 0;
    }
    .p-home--trial .trial-list {
        padding: 0 8px;
    }
    .p-home--trial .trial-list__item {
        margin-bottom: 20px;
    }
    .p-home--trial .trial-list .item-inner {
        padding: 18px 18px 25px;
        display: block;
    }
    .p-home--trial .trial-list .item-inner:before {
        content: none;
    }
    .p-home--trial .trial-list .item-img {
        width: 100%;
        height: 35.73333vw;
    }
    .p-home--trial .trial-list .item-ttl {
        width: 100%;
        font-size: 14px;
        padding: 0 62px 0 0;
        margin-top: 1em;
        background: url(../images/common/arrow-r01.svg) no-repeat right top;
        background-size: 39px;
    }
    .p-home--trial .trial-more {
        margin-top: 25px;
    }
}

/* ========== movie ========== */
.p-home--movie {
    padding: 115px 0 100px;
    background-image: url(../images/home/movie-bg.avif);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.p-home--movie .movie-head {
    max-width: 1560px;
    color: #fff;
    margin-bottom: 45px;
}
.p-home--movie .movie-head &gt; div {
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
}
.p-home--movie .movie-head .c-ttl--type01 {
    margin-bottom: 0;
}
.p-home--movie .movie-head__txt {
    width: calc(100% - 320px);
    max-width: 910px;
    margin-left: auto;
    padding: 1.5em 0 0;
}
.p-home--movie .movie-head__txt .ttl {
    font-weight: 700;
    font-size: 30px;
    line-height: 1.4;
    margin-bottom: .5em;
}
.p-home--movie .movie-video {
    max-width: 900px;
}
.p-home--movie .movie-video .wp-block-embed-youtube {
    margin: 0;
}
.p-home--movie .movie-video .wp-block-embed-youtube &gt; div {
    position: relative;
    width: 100%;
    /*padding-top: 56.25%;*/
}
.p-home--movie .movie-video .wp-block-embed-youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}
.p-home--movie .movie-video__more {
    display: block;
    text-align: center;
    margin-top: 30px;
}

@media only screen and (max-width: 767px) {
    .p-home--movie {
        padding: 50px 0 60px;
        background-image: url(../images/home/movie-bg-sp.avif);
    }
    .p-home--movie .movie-head {
        margin-bottom: 25px;
    }
    .p-home--movie .movie-head &gt; div {
        display: -moz-flex;
        display:      flex;
        -ms-flex-pack: justify;
        flex-wrap: wrap;
    }
    .p-home--movie .movie-head .c-ttl--type01 {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }
    .p-home--movie .movie-head__txt {
        width: 100%;
        padding: 0;
    }
    .p-home--movie .movie-head__txt .ttl {
        font-size: 16px;
        margin-bottom: 1em;
    }
}

/* ========== news ========== */
.p-home--news {
    background: #fff;
    padding: 100px 0 90px;
}
.p-home--news .news-block {
    width: 47.5%;
}
.p-home--news .news-block__wrapper {
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
    justify-content: space-between;
}
.p-home--news .news-block__head {
    border-bottom: 1px solid #011d34;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 40px;
    line-height: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: #002849;
}
.p-home--news .news-block__head .head-ttl {
    font-size: 18px;
    font-weight: 700;
}
.p-home--news .news-block__head .head-ttl span {
    font-family: "Cardo", serif;
    font-size: 50px;
    font-weight: 500;
    padding-right: .3em;
}
.p-home--news .news-block__head .head−btn span {
    display: inline-block;
    font-size: 16px;
    padding-right: 78px;
    background: url(../images/common/arrow-r01.svg) no-repeat right center;
    background-size: 66px;
    line-height: 28px;
}
.p-home--news .news-block__list .list-item {
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}
.p-home--news .news-block__list .list-item:last-child {
    margin-bottom: 0;
}
.p-home--news .news-block__list .item-inner {
    display: block;
    min-height: 112px;
    padding-right: 50px;
}
.p-home--news .news-block__list .item-inner.has-img {
    display: flex;
}
.p-home--news .news-block__list .item-inner.has-img .item-img {
    width: 160px;
    height: 112px;
}
.p-home--news .news-block__list .item-inner.has-img .item-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.p-home--news .news-block__list .item-inner.has-img .item-txt {
    width: calc(100% - 185px);
    max-width: 330px;
    margin-left: auto;
}
.p-home--news .news-block__list .item-txt__head {
    margin-bottom: 5px;
    display: flex;
    gap: 0 16px;
    align-items: center;
    color: #002849;
    line-height: 1;
    margin-bottom: 5px;
}
.p-home--news .news-block__list .item-txt__head .date {
    font-size: 16px;
    font-family: "Cardo", serif;
}
.p-home--news .news-block__list .item-txt__head .category {
    font-size: 14px;
    padding: .7em 1.2em;
    border: 1px solid #002849;
    border-radius: 40px;
}
.p-home--news .news-block__list .item-txt__ttl {
    font-weight: bold;
    font-size: 18px;
    line-height: 1.66;
}
.p-home--news .bnr-list {
    margin-top: 100px;
}
.p-home--news .bnr-list &gt; div {
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
    gap: 20px 3.5%;
}
.p-home--news .bnr-list__item {
    margin: 0;
    width: 31%;
}

@media only screen and (max-width: 1024px) {
    .p-home--news .news-block {
        width: 100%;
    }
    .p-home--news .news-block__wrapper {
        gap: 60px 0;
    }
    .p-home--news .news-block__list .item-inner.has-img .item-txt {
        max-width: none;
    }
}

@media only screen and (max-width: 767px) {
    .p-home--news {
        padding: 60px 0;
    }
    .p-home--news .news-block {
        width: 100%;
    }
    .p-home--news .news-block__wrapper {
        gap: 50px 0;
    }
    .p-home--news .news-block__head {
        padding-bottom: 20px;
    }
    .p-home--news .news-block__head .head-ttl {
        font-size: 13px;
    }
    .p-home--news .news-block__head .head-ttl span {
        font-size: 28px;
    }
    .p-home--news .news-block__head .head−btn span {
        font-size: 13px;
        padding-right: 46px;
        background-size: 40px;
        line-height: 20px;
    }
    .p-home--news .news-block__list {
        padding: 0 6px;
    }
    .p-home--news .news-block__list .list-item {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
    .p-home--news .news-block__list .item-inner {
        min-height: auto;
        padding-right: 0;
    }
    .p-home--news .news-block__list .item-inner.has-img .item-img {
        width: 95px;
        height: 67px;
    }
    .p-home--news .news-block__list .item-inner.has-img .item-txt {
        width: calc(100% - 115px);
    }
    .p-home--news .news-block__list .item-txt__head {
        gap: 0 8px;
    }
    .p-home--news .news-block__list .item-txt__head .date {
        font-size: 13px;
    }
    .p-home--news .news-block__list .item-txt__head .category {
        padding-top: .4em;
        padding-bottom: .4em;
        font-size: 12px;
    }
    .p-home--news .news-block__list .item-txt__ttl {
        font-size: 13px;
    }
    .p-home--news .bnr-list {
        margin-top: 50px;
    }
    .p-home--news .bnr-list &gt; div {
        gap: 20px 0;
    }
    .p-home--news .bnr-list__item {
        padding: 0 16px;
        width: 100%;
    }
}

/*------------------------------------------
  component
------------------------------------------*/
/* ========== ttl ========== */
.c-ttl--type01 {
    background: none;
    padding: 0;
    margin: 0 0 45px;
}
.c-ttl--type01 span {
    display: block;
    font-weight: 700;
    line-height: 1.5;
}
.c-ttl--type01 .ttl--en {
    position: relative;
    font-family: "Cardo", serif;
    margin-bottom: .6em;
    padding-left: 24px;
}
.c-ttl--type01 .ttl--en:before {
    content: "";
    width: 12px;
    height: 12px;
    position: absolute;
    left: 0;
    top: .35em;
    border-radius: 50%;
    background: linear-gradient(140deg, #b11243 0%, #c9890b 100%);
}
.c-ttl--type01 .ttl--ja {
    font-size: 46px;
    letter-spacing: .08em;
}
.c-ttl--type01.is--center {
    text-align: center;
}
.c-ttl--type01.is--center .ttl--en {
    display: inline-block;
}
.c-ttl--type01.is--white {
    color: #fff;
}
.c-ttl--type01.is--blue {
    color: #002849;
}

@media only screen and (max-width: 767px) {
    .c-ttl--type01 {
        text-align: center;
    }
    .c-ttl--type01 .ttl--en {
        display: inline-block;
        font-size: 14px;
        padding-left: 16px;
        -ms-word-break: break-all;
            word-break: break-all;
        white-space: nowrap;
    }
    .c-ttl--type01 .ttl--en:before {
        width: 9px;
        height: 9px;
        left: 0;
    }
    .c-ttl--type01 .ttl--ja {
        font-size: 25px;
    }
}

/* ========== btn styles ========== */
.c-btn02 a {
    display: inline-block;
    color: #fff;
    background: #002849;
    text-decoration: none;
    border-radius: 40px;
    border: 1px solid #002849;
}
.c-btn02 a strong {
    font-weight: 400 !important;
    min-width: 360px;
    position: relative;
    padding: 0 80px 0 40px;
    color: #fff !important;
    display: flex;
    min-height: 80px;
    align-items: center;
    background: url(../images/common/arrow-d01.png) no-repeat center right 40px;
    background-size: 12px;
}

@media only screen and (max-width: 767px) {
    .c-btn02 a {
        min-width: 265px;
        border-radius: 40px;
    }
    .c-btn02 a strong {
        width: 100%;
        min-width: auto;
        min-height: 50px;
        padding: 0 60px 0 25px;
        font-size: 13px;
        background: url(../images/common/arrow-d01.png) no-repeat center right 25px;
        background-size: 8px;
    }
}

.c-companylogo {
    margin-bottom: 40px;
}
.c-companylogo__list {
    background: #fff;
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
}
.c-companylogo__list .list-item {
    width: 20%;
}
.c-companylogo__list .list-item img {
    width: 100%;
}
.c-companylogo__txt {
    text-align: right;
    margin-top: .5em;
}
.c-companylogo__txt a {
    text-decoration: underline;
    color: #002849;
}

@media only screen and (max-width: 767px) {
    .c-companylogo__list {
        padding: 10px;
    }
    .c-companylogo__list .list-item {
        width: 33.333%;
    }
}

.c-categoryfilter {
    border: 1px solid #002849;
    margin-bottom: 80px;
}
.c-categoryfilter__trigger {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 28px;
    padding: 1em 0;
    text-align: center;
    cursor: pointer;
}
.c-categoryfilter__trigger span {
    display: inline-block;
    position: relative;
    padding-right: 30px;
}
.c-categoryfilter__trigger span:after {
    content: "";
    width: 12px;
    height: 12px;
    border-bottom: 3px solid #000;
    border-right: 3px solid #000;
    transform: translateY(-50%) rotate(45deg);
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -2px;
}
.c-categoryfilter__trigger.is--active span:after {
    transform: translateY(-50%) rotate(225deg);
    margin-top: 4px;
}
.c-categoryfilter__contents {
    display: none;
    position: relative;
    padding: 45px 20px;
    text-align: center;
}
.c-categoryfilter__contents:before {
    content: "";
    width: 40px;
    height: 5px;
    background: #002849;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -20px;
}
.c-categoryfilter .category-box {
    margin-bottom: 35px;
}
.c-categoryfilter .category-box:last-child {
    margin-bottom: 0;
}
.c-categoryfilter .category-box__ttl {
    font-size: 20px;
    font-weight: 700;
    color: #002849;
    margin-bottom: 30px;
}
.c-categoryfilter .category-box__list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 14px;
    justify-content: center;
}
.c-categoryfilter .category-box__list a {
    background: #fff;
    color: #002849;
    border: 1px solid #002849;
    border-radius: 46px;
    padding: .6em 2em;
    transition: .3s;
}
.c-categoryfilter .category-box__list a:hover {
    opacity: 1;
    background: #002849;
    color: #fff;
}

@media only screen and (max-width: 767px) {
    .c-categoryfilter {
        margin-bottom: 40px;
    }
    .c-categoryfilter__trigger {
        font-size: 22px;
        padding: .8em 0;
    }
    .c-categoryfilter__contents {
        padding: 40px 15px;
    }
    .c-categoryfilter__contents:before {
        height: 3px;
    }
    .c-categoryfilter .category-box__ttl {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .c-categoryfilter .category-box__list {
        gap: 5px 5px;
    }
    .c-categoryfilter .category-box__list a {
        font-size: 13px;
        padding: .6em 1.5em;
    }
}

/* ========== block styles ========== */
.keni-main {
    line-height: 1.5;
}

.article-body, .behind-article-area {
    font-size: 18px;
    line-height: 2;
    letter-spacing: .05em;
}
.article-body p:last-child, .behind-article-area p:last-child {
    margin-bottom: 0;
}
.article-body p strong, .behind-article-area p strong {
    font-weight: 700;
    color: #931d41;
}
.article-body p a, .behind-article-area p a {
    color: #002849;
    text-decoration: underline;
}
.article-body p a:hover, .behind-article-area p a:hover {
    text-decoration: none;
    color: #b89b6d;
}
.article-body h2, .behind-article-area h2 {
    line-height: 1.5;
    background: none;
    border: none;
    padding: 0 0 .5em;
    font-size: 30px;
    font-weight: 700;
    color: #000;
    border-bottom: 2px solid #c9c9c9;
    position: relative;
}
.article-body h2:before, .behind-article-area h2:before {
    content: "";
    width: 80px;
    height: 2px;
    background: #002849;
    position: absolute;
    bottom: -2px;
    left: 0;
}
.article-body h3, .behind-article-area h3 {
    line-height: 1.5;
    position: relative;
    border: none;
    padding: 0 0 .5em;
    font-size: 26px;
    font-weight: 700;
    color: #000;
    background: #e5e5e5;
    padding: .5em 1em;
}
.article-body h4, .behind-article-area h4 {
    line-height: 1.5;
    font-size: 26px;
    font-weight: 700;
    color: #000;
    border: none;
    border-bottom: 1px dotted #002849;
    padding: 0 0 .5em;
}
.article-body h5, .behind-article-area h5 {
    line-height: 1.5;
    font-size: 24px;
    font-weight: 700;
    color: #000;
    position: relative;
    padding-left: 1em;
}
.article-body h5:before, .behind-article-area h5:before {
    content: "";
    position: absolute;
    left: 0;
    top: .6em;
    width: 10px;
    height: 10px;
    background: #002849;
}
.article-body h6, .behind-article-area h6 {
    line-height: 1.5;
    font-size: 22px;
    font-weight: 700;
    color: #002849;
    margin-bottom: 25px;
}
.article-body ol, .article-body ul, .behind-article-area ol, .behind-article-area ul {
    margin-left: 0;
    margin-right: 0;
    list-style: none;
    line-height: 1.5;
}
.article-body ol &gt; li, .article-body ul &gt; li, .behind-article-area ol &gt; li, .behind-article-area ul &gt; li {
    margin-bottom: 1em;
}
.article-body ol &gt; li:last-child, .article-body ul &gt; li:last-child, .behind-article-area ol &gt; li:last-child, .behind-article-area ul &gt; li:last-child {
    margin-bottom: 0;
}
.article-body ol, .behind-article-area ol {
    counter-reset: number 0;
}
.article-body ol li, .behind-article-area ol li {
    position: relative;
    padding-left: 35px;
}
.article-body ol &gt; li:before, .behind-article-area ol &gt; li:before {
    counter-increment: number 1;
    content: counter(number) " ";
    position: absolute;
    left: 0;
    top: 0;
    font-family: "Cardo", serif;
    color: #fff;
    font-size: 16px;
    background: #002849;
    width: 26px;
    line-height: 26px;
    text-align: center;
}
.article-body ul, .behind-article-area ul {
    font-size: 16px;
}
.article-body ul li, .behind-article-area ul li {
    position: relative;
    padding-left: 15px;
}
.article-body ul li:before, .behind-article-area ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: .6em;
    border-radius: 50%;
    width: 6px;
    height: 6px;
    background: #ba8419;
}
.article-body .wp-block-embed-youtube, .behind-article-area .wp-block-embed-youtube {
    margin-bottom: 60px;
}
.article-body .wp-block-embed-youtube &gt; div, .behind-article-area .wp-block-embed-youtube &gt; div {
    position: relative;
    width: 100%;
    /*padding-top: 56.25%;*/
}
.article-body .wp-block-embed-youtube iframe, .behind-article-area .wp-block-embed-youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}
.article-body .wp-block-pullquote, .behind-article-area .wp-block-pullquote {
    background: #011d34;
    position: relative;
    color: #fff;
    border: none;
    padding: 0;
    overflow: hidden;
    min-height: 470px;
    display: table;
    width: 100%;
    margin-bottom: 60px;
}
.article-body .wp-block-pullquote:before, .behind-article-area .wp-block-pullquote:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    background: #002849;
    transform: skewX(-45deg);
}
.article-body .wp-block-pullquote blockquote, .behind-article-area .wp-block-pullquote blockquote {
    display: table-cell;
    vertical-align: middle;
    background: none;
    border: none;
    position: relative;
    padding: 0;
}
.article-body .wp-block-pullquote blockquote:before, .article-body .wp-block-pullquote blockquote:after, .behind-article-area .wp-block-pullquote blockquote:before, .behind-article-area .wp-block-pullquote blockquote:after {
    content: "";
    width: 260px;
    height: 92px;
    position: absolute;
}
.article-body .wp-block-pullquote blockquote:before, .behind-article-area .wp-block-pullquote blockquote:before {
    top: 20px;
    left: 20px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
}
.article-body .wp-block-pullquote blockquote:after, .behind-article-area .wp-block-pullquote blockquote:after {
    bottom: 20px;
    right: 20px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
}
.article-body .wp-block-pullquote blockquote p, .behind-article-area .wp-block-pullquote blockquote p {
    font-weight: 700;
    font-size: 42px;
    line-height: 1.5;
    margin-bottom: 0;
    padding: 1em;
    letter-spacing: .08em;
}
.article-body .wp-block-pullquote blockquote cite, .behind-article-area .wp-block-pullquote blockquote cite {
    font-weight: 700;
    font-size: 26px;
    display: block;
}
.article-body table, .behind-article-area table {
    border: none;
    margin-bottom: 60px;
}
.article-body table tr, .behind-article-area table tr {
    border-bottom: 1px solid #ddd;
}
.article-body table tr:last-child, .behind-article-area table tr:last-child {
    border-bottom: none;
}
.article-body table th, .article-body table td, .behind-article-area table th, .behind-article-area table td {
    text-align: left;
    font-size: 18px;
    padding: 1em 2em;
    border: none;
}
.article-body table th, .behind-article-area table th {
    color: #fff;
    font-weight: 700;
    background: #002849;
}
.article-body table td, .behind-article-area table td {
    background: #fff;
}
.article-body .wp-block-image, .behind-article-area .wp-block-image {
    margin-bottom: 60px;
}

@media only screen and (max-width: 767px) {
    .article-body, .behind-article-area {
        font-size: 16px;
        line-height: 1.8;
    }
    .article-body h2, .behind-article-area h2 {
        font-size: 22px;
        margin-bottom: 40px;
    }
    .article-body h3, .behind-article-area h3 {
        font-size: 18px;
        margin-bottom: 30px;
    }
    .article-body h4, .behind-article-area h4 {
        font-size: 18px;
    }
    .article-body h5, .behind-article-area h5 {
        font-size: 18px;
    }
    .article-body h5:before, .behind-article-area h5:before {
        top: .45em;
    }
    .article-body h6, .behind-article-area h6 {
        font-size: 16px;
    }
    .article-body .wp-block-embed-youtube, .behind-article-area .wp-block-embed-youtube {
        margin-bottom: 40px;
    }
    .article-body .wp-block-pullquote, .behind-article-area .wp-block-pullquote {
        min-height: 300px;
        margin-bottom: 40px;
    }
    .article-body .wp-block-pullquote blockquote:before, .article-body .wp-block-pullquote blockquote:after, .behind-article-area .wp-block-pullquote blockquote:before, .behind-article-area .wp-block-pullquote blockquote:after {
        width: 130px;
        height: 46px;
    }
    .article-body .wp-block-pullquote blockquote:before, .behind-article-area .wp-block-pullquote blockquote:before {
        top: 10px;
        left: 10px;
    }
    .article-body .wp-block-pullquote blockquote:after, .behind-article-area .wp-block-pullquote blockquote:after {
        bottom: 10px;
        right: 10px;
    }
    .article-body .wp-block-pullquote blockquote p, .behind-article-area .wp-block-pullquote blockquote p {
        font-size: 30px;
    }
    .article-body .wp-block-pullquote blockquote cite, .behind-article-area .wp-block-pullquote blockquote cite {
        font-size: 18px;
    }
    .article-body table th, .article-body table td, .behind-article-area table th, .behind-article-area table td {
        font-size: 14px;
        padding: 1em 1em;
    }
    .article-body .wp-block-image, .behind-article-area .wp-block-image {
        margin-bottom: 40px;
    }
}

.c-note {
    color: #777;
    border: 3px solid #e5e5e5;
    font-size: 18px;
    padding: 2em;
    margin-bottom: 60px;
}
.c-note:last-child {
    margin-bottom: 0;
}
.c-note p {
    font-size: 18px;
    line-height: 2.2;
    position: relative;
    padding-left: 26px;
    margin-bottom: 1.5em;
}
.c-note p:last-child {
    margin-bottom: 0;
}
.c-note p:before {
    content: "※";
    position: absolute;
    top: 0;
    left: 0;
}

@media only screen and (max-width: 767px) {
    .c-note {
        font-size: 16px;
        padding: 1.5em;
        margin-bottom: 40px;
    }
    .c-note p {
        font-size: 16px;
        padding-left: 22px;
        line-height: 1.8;
    }
}

.c-box01 {
    background: #fff;
    font-size: 18px;
    padding: 3em;
    margin-bottom: 60px;
}
.c-box01:last-child {
    margin-bottom: 0;
}
.c-box01__ttl {
    text-align: center;
    font-size: 30px !important;
    font-weight: 700;
    position: relative;
    line-height: 1.5 !important;
    padding-bottom: 1em;
    letter-spacing: .08em;
}
.c-box01__ttl:before {
    content: "";
    width: 40px;
    height: 5px;
    background: #002849;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -20px;
}
.c-box01__txt {
    font-size: 18px;
}

@media only screen and (max-width: 767px) {
    .c-box01 {
        font-size: 16px;
        padding: 2em 1.5em;
        margin-bottom: 40px;
    }
    .c-box01__ttl {
        font-size: 20px !important;
        margin-bottom: 1em !important;
    }
    .c-box01__ttl:before {
        height: 3px;
    }
    .c-box01__txt {
        font-size: 16px;
    }
}

.c-box02 {
    border: 1px solid #002849;
    font-size: 18px;
    padding: 3em;
    margin-bottom: 60px;
}
.c-box02:last-child {
    margin-bottom: 0;
}
.c-box02__ttl {
    text-align: center;
    font-size: 30px !important;
    font-weight: 700;
    position: relative;
    line-height: 1.5 !important;
    padding-bottom: 1em;
    letter-spacing: .08em;
}
.c-box02__ttl:before {
    content: "";
    width: 40px;
    height: 5px;
    background: #002849;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -20px;
}
.c-box02__txt {
    font-size: 18px;
}

@media only screen and (max-width: 767px) {
    .c-box02 {
        font-size: 16px;
        padding: 2em 1.5em;
        margin-bottom: 40px;
    }
    .c-box02__ttl {
        font-size: 20px !important;
        margin-bottom: 1em !important;
    }
    .c-box02__ttl:before {
        height: 3px;
    }
    .c-box02__txt {
        font-size: 16px;
    }
}

.c-box03 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 70px;
}
.c-box03:last-child {
    margin-bottom: 0;
}
.c-box03 .wp-block-group__inner-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.c-box03 .wp-block-image {
    margin-bottom: 0;
}
.c-box03__txt {
    width: 46%;
    font-size: 18px;
    line-height: 2.22;
}
.c-box03__img {
    width: 50%;
}

@media only screen and (max-width: 767px) {
    .c-box03 {
        flex-wrap: wrap;
        margin-bottom: 40px;
    }
    .c-box03 .wp-block-group__inner-container {
        flex-wrap: wrap;
    }
    .c-box03 .wp-block-image {
        margin-bottom: 0;
    }
    .c-box03__txt {
        width: 100%;
        -ms-order: 2;
            order: 2;
        font-size: 16px;
        line-height: 1.8;
        margin-top: 1em;
    }
    .c-box03__img {
        width: 100%;
        -ms-order: 1;
            order: 1;
    }
}

.c-box04__wrapper {
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
    margin-bottom: 70px;
}
.c-box04__wrapper:last-child {
    margin-bottom: 0;
}
.c-box04__wrapper &gt; .wp-block-group__inner-container {
    width: 100%;
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
}
.c-box04__wrapper.col3 {
    gap: 40px 3.5%;
}
.c-box04__wrapper.col3 &gt; .wp-block-group__inner-container {
    gap: 40px 3.5%;
}
.c-box04__wrapper.col3 .c-box04 {
    width: 31%;
}
.c-box04__wrapper.col4 {
    gap: 40px 2.666%;
}
.c-box04__wrapper.col4 &gt; .wp-block-group__inner-container {
    gap: 40px 2.666%;
}
.c-box04__wrapper.col4 .c-box04 {
    width: 23%;
}
.c-box04__wrapper.col4 .c-box04__ttl {
    font-size: 20px;
}

.c-box04__ttl {
    line-height: 1.5;
    font-size: 24px;
    font-weight: 700;
    position: relative;
    border-bottom: 2px solid #c9c9c9;
    padding-bottom: .5em;
    margin-bottom: 1em !important;
}
.c-box04__ttl:before {
    content: "";
    width: 20px;
    height: 2px;
    background: #002849;
    position: absolute;
    bottom: -2px;
    left: 0;
}

.c-box04 .wp-block-image {
    margin-bottom: 25px;
}

.c-box04__txt {
    line-height: 1.5;
    margin-bottom: 0 !important;
}

.c-box04__btn {
    margin-top: 1em;
    width: 100%;
    background: #fff;
    position: relative;
    border: 1px solid #002849;
    border-radius: 40px;
    overflow: hidden;
}
.c-box04__btn:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #002849;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform ease .3s;
}
.c-box04__btn:hover {
    color: #002849;
    opacity: 1;
}
.c-box04__btn:hover:before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
}
.c-box04__btn a {
    min-height: 80px;
    display: flex;
    align-items: center;
    position: relative;
    font-size: 16px;
    line-height: 1.3;
    color: #000;
    text-decoration: none !important;
    padding-right: 105px;
    padding-left: 40px;
    background: url(../images/common/arrow-r01.svg) no-repeat right 24px center;
    background-size: 54px;
    z-index: 2;
}
.c-box04__btn a:hover {
    opacity: 1;
    color: #fff;
}

@media only screen and (max-width: 1024px) {
    .c-box04__wrapper.col3 {
        gap: 40px 4%;
    }
    .c-box04__wrapper.col3 &gt; .wp-block-group__inner-container {
        gap: 40px 4%;
    }
    .c-box04__wrapper.col3 .c-box04 {
        width: 48%;
    }
    .c-box04__wrapper.col3 .c-box04__ttl {
        font-size: 20px;
    }
    .c-box04__wrapper.col4 {
        gap: 40px 4%;
    }
    .c-box04__wrapper.col4 &gt; .wp-block-group__inner-container {
        gap: 40px 4%;
    }
    .c-box04__wrapper.col4 .c-box04 {
        width: 48%;
    }
    .c-box04__wrapper.col4 .c-box04__ttl {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .c-box04__wrapper {
        margin-bottom: 40px;
    }
    .c-box04__wrapper.col3 {
        gap: 40px 0;
    }
    .c-box04__wrapper.col3 &gt; .wp-block-group__inner-container {
        gap: 40px 0;
    }
    .c-box04__wrapper.col3 .c-box04 {
        width: 100%;
    }
    .c-box04__wrapper.col4 {
        gap: 40px 0;
    }
    .c-box04__wrapper.col4 &gt; .wp-block-group__inner-container {
        gap: 40px 0;
    }
    .c-box04__wrapper.col4 .c-box04 {
        width: 100%;
    }
    .c-box04__wrapper.col4 .c-box04__ttl {
        font-size: 20px;
    }
    .c-box04__ttl {
        font-size: 20px;
    }
    .c-box04 .wp-block-image {
        margin-bottom: 15px;
    }
}

.c-box05 {
    width: 31%;
    position: relative;
    transition: opacity .3s;
}
.c-box05:hover {
    opacity: .6;
}
.c-box05__wrapper &gt; div {
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
    gap: 0 3.5%;
}
.c-box05__img {
    margin: 0 0 20px;
}
.c-box05__ttl {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    background: url(../images/common/arrow-r01.svg) no-repeat right top .3em;
    background-size: 54px;
    padding-right: 95px;
}
.c-box05__txt {
    line-height: 1.8;
    padding-top: 1em;
}
.c-box05__link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.c-box05__link a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

@media only screen and (max-width: 1024px) {
    .c-box05__ttl {
        font-size: 20px;
        background-size: 40px;
        padding-right: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .c-box05 {
        width: 100%;
    }
    .c-box05__wrapper &gt; div {
        gap: 40px 0;
    }
    .c-box05__img {
        margin: 0 0 20px;
    }
}

.c-box06 {
    background: #fff;
    width: 48%;
    position: relative;
    transition: opacity .3s;
    padding: 28px 36px 40px;
}
.c-box06:hover {
    opacity: .6;
}
.c-box06__wrapper &gt; div {
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
    gap: 30px 4%;
}
.c-box06__wrapper + .pagination {
    margin-top: 40px;
}
.c-box06__img {
    margin: 0 0 30px;
}
.c-box06__img img {
    max-width: 100%!important;
}
.c-box06__img.rectangle {
    height: clamp(130px,23.88vw,258px);
}
.c-box06__img.rectangle img {
    object-fit: cover;
}
.c-box06__ttl {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
    background: url(../images/common/arrow-r01.svg) no-repeat right top .3em;
    background-size: 54px;
    padding-right: 95px;
    padding-left: .5em;
    margin-bottom: 0;
}
.c-box06__link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
}
.c-box06__link a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

@media only screen and (max-width: 1024px) {
    .c-box06__ttl {
        font-size: 20px;
        background: url(../images/common/arrow-r01.svg) no-repeat right top;
        background-size: 40px;
        padding-right: 60px;
    }
}

@media only screen and (max-width: 767px) {
    .c-box06 {
        width: 100%;
        padding: 20px;
    }
    .c-box06__wrapper &gt; div {
        gap: 20px 0;
    }
    .c-box06__img {
        margin: 0 0 15px;
    }
    .c-box06__img.rectangle {
        height: 50vw;
    }
    .c-box06__ttl {
        padding-left: 0;
        font-size: 14px;
    }
}

.wp-block-button {
    min-height: 80px;
    background: #fff;
    position: relative;
    border: 1px solid #002849;
    border-radius: 40px;
    overflow: hidden;
}
.wp-block-button:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #002849;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform ease .3s;
}
.wp-block-button:hover {
    color: #002849;
    opacity: 1;
}
.wp-block-button:hover:before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
}
.wp-block-button .wp-block-button__link {
    min-width: 360px;
    display: flex;
    min-height: 80px;
    align-items: center;
    position: relative;
    font-size: 16px;
    line-height: 1.3;
    color: #000;
    text-decoration: none !important;
    padding: 0 105px 0 40px;
    background: url(../images/common/arrow-r01.svg) no-repeat right 24px center;
    background-size: 54px;
    z-index: 2;
}
.wp-block-button .wp-block-button__link:hover {
    opacity: 1;
    color: #fff;
}

@media only screen and (max-width: 767px) {
    .wp-block-button {
        width: auto;
        min-width: 265px;
        min-height: 50px;
    }
    .wp-block-button .wp-block-button__link {
        min-width: auto;
        width: 100%;
        font-size: 13px;
        min-height: 50px;
        padding: 0 60px 0 25px;
        background: url(../images/common/arrow-r01.svg) no-repeat right 12px center;
        background-size: 40px;
    }
}

.c-archive {
    margin-bottom: 30px;
}
.c-archive:last-child {
    margin-bottom: 0;
}
.c-archive__inner {
    display: flex;
    background: #fff;
    position: relative;
    padding: 25px;
}
.c-archive__inner:after {
    content: "";
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent transparent #002849 transparent;
    border-width: 0px 0px 14px 14px;
}
.c-archive__thumb {
    width: 220px;
    height: 146px;
    margin: 0;
}
.c-archive__thumb img {
    max-width: 100%!important;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}
.c-archive__contents {
    width: calc(100% - 255px);
    margin-left: auto;
}
.c-archive .archive-head {
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px 15px;
}
.c-archive .archive-head__date {
    color: #002849;
    font-family: "Cardo", serif;
    font-size: 16px;
    margin: 0;
}
.c-archive .archive-head__category {
    margin: 0;
    list-style: none;
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
    gap: 5px;
}
.c-archive .archive-head__category li {
    margin: 0;
}
.c-archive .archive-head__category a {
    background: #fff;
    color: #002849;
    font-size: 14px;
    border: 1px solid #002849;
    display: block;
    padding: .4em 1.5em;
    border-radius: 36px;
}
.c-archive .archive-ttl {
    margin: 15px 0 0;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    background: none;
    padding: 0;
}

@media only screen and (max-width: 767px) {
    .c-archive {
        margin-bottom: 20px;
    }
    .c-archive__inner {
        padding: 15px 15px 25px;
        display: block;
    }
    .c-archive__thumb {
        width: 100%;
        margin-bottom: 15px;
    }
    .c-archive__contents {
        width: 100%;
    }
    .c-archive .archive-head__date {
        font-size: 14px;
    }
    .c-archive .archive-head__category a {
        font-size: 12px;
        padding: .4em 1em;
    }
    .c-archive .archive-ttl {
        margin: 10px 0 0;
    }
}

.nav-links {
    display: flex;
    gap: 0 15px;
    align-items: center;
    justify-content: center;
}

.nav-links span,
.nav-links a {
    margin: 0;
    padding: 0;
    color: #002849;
    font-family: "Cardo", serif;
    font-size: 18px;
    background: none;
    width: 50px;
    line-height: 50px;
    border-radius: 50%;
    display: block;
    text-align: center;
}
.nav-links a {
    margin: 0;
    padding: 0;
    color: #002849;
    display: block;
    text-align: center;
    line-height: 50px;
}

.nav-links .current {
    color: #002849;
    background: #fff;
}

.nav-links .page-numbers.prev {
    background-color: #002849;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    background-image: url(../images/common/arrow-next.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px;
    transform: rotate(180deg);
}
.nav-links .page-numbers.next {
    background-color: #002849;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    background-image: url(../images/common/arrow-next.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 22px;
}

@media only screen and (max-width: 767px) {
    .nav-links {
        gap: 0;
    }
    .nav-links span,
    .nav-links a {
        font-size: 12px;
        width: 36px;
        line-height: 36px;
    }
    .nav-links a {
        line-height: 36px;
    }
    .nav-links .page-numbers.prev {
        background-size: 18px;
    }
    .nav-links .page-numbers.next {
        background-size: 18px;
    }
}

.c-categorylist {
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
    margin: 0;
    list-style: none;
    gap: 18px 10px;
}
.c-categorylist li {
    margin: 0;
}
.c-categorylist a {
    background: #fff;
    color: #002849;
    font-size: 16px;
    border: 1px solid #002849;
    display: block;
    padding: .6em 1.5em;
    border-radius: 36px;
}

@media only screen and (max-width: 767px) {
    .c-categorylist {
        gap: 5px 5px;
    }
    .c-categorylist a {
        font-size: 13px;
    }
}

.c-detail__header {
    margin-bottom: 50px;
}

.c-detail .entry-title {
    background: #fff;
    font-size: 40px !important;
    font-weight: 700;
    position: relative;
    padding: .5em 50px !important;
    margin: 0 !important;
    line-height: 1.5;
}
.c-detail .entry-title:before {
    content: "";
    position: absolute;
    left: 15px;
    top: 20%;
    width: 8px;
    height: 60%;
    background: #002849;
}

@media only screen and (max-width: 767px) {
    .c-detail__header {
        margin-bottom: 30px;
    }
    .c-detail .entry-title {
        font-size: 24px !important;
        padding: .5em 1em .5em 1.5em !important;
    }
    .c-detail .entry-title:before {
        left: 10px;
        width: 4px;
    }
}

.square-gray, .square-blue2, .square-beige {
    width: 100%;
    padding: 3em;
    margin-bottom: 40px;
}

.square-gray ul, .square-blue2 ul, .square-beige ul {
    font-size: 18px;
}

.square-gray {
    border: 1px solid #002849;
    border-radius: 0;
}

@media only screen and (max-width: 767px) {
    .square-gray, .square-blue2, .square-beige {
        padding: 2em 1.5em;
    }
    .square-gray ul, .square-blue2 ul, .square-beige ul {
        font-size: 16px;
    }
}

.keni-related-area {
    margin: 60px 0 0;
}

@media only screen and (max-width: 767px) {
    .keni-related-area {
        margin: 40px 0 0;
    }
}

.post-tag dd ul {
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
    gap: 10px 5px;
}

.post-tag dd li {
    display: block;
    margin: 0;
    padding: 0;
}
.post-tag dd li a {
    display: block;
    border: 1px solid #002849;
    background: #fff;
    color: #002849;
    border-radius: 36px;
    padding: .2em 1em;
}
.post-tag dd li a::before {
    content: "#";
}

@media only screen and (max-width: 767px) {
    .post-tag dd ul {
        gap: 5px 5px;
    }
    .post-tag dd li a {
        font-size: 10px;
    }
}

/* ========== profile ========== */
.c-profile {
    background: #fff;
    border: 1px solid #c9c9c9;
    padding: 50px;
    display: flex;
}
.c-profile__img {
    width: 25%;
}
.c-profile__img img {
    width: 100%;
}
.c-profile__txt {
    width: 70%;
    margin-left: auto;
}
.c-profile .profile-name {
    font-weight: 700;
    font-size: 30px;
    border-bottom: 2px solid #c9c9c9;
    position: relative;
    padding-bottom: .5em;
}
.c-profile .profile-name:before {
    content: "";
    width: 50px;
    height: 2px;
    position: absolute;
    bottom: -2px;
    left: 0;
    background: #002849;
}
.c-profile .profile-txt {
    margin-bottom: 20px !important;
}
.c-profile .profile-img img {
    width: 100%;
}
.c-profile .profile-btn {
    margin-top: 30px;
}
.c-profile .profile-btn .wp-block-button {
    display: inline-block;
}

@media only screen and (max-width: 767px) {
    .c-profile {
        padding: 25px;
        display: block;
    }
    .c-profile__img {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    .c-profile__img img {
        width: 70%;
    }
    .c-profile__txt {
        width: 100%;
    }
    .c-profile .profile-name {
        font-size: 22px;
        margin-bottom: 20px !important;
    }
    .c-profile .profile-btn {
        text-align: center;
    }
}

.c-sns {
    margin: 60px 0 0;
    text-align: center;
}
.c-sns__ttl {
    font-size: 22px;
    font-weight: 700;
    color: #002849;
    margin-bottom: 1em;
}
.c-sns__list {
    display: flex;
    gap: 0 30px;
    justify-content: center;
    list-style: none;
}
.c-sns__list li {
    padding: 0 !important;
    margin: 0 !important;
    width: 80px;
}
.c-sns__list li:before {
    content: none !important;
}
.c-sns__list img {
    width: 100%;
}

@media only screen and (max-width: 1024px) {
    .c-sns {
        margin: 40px 0 0;
    }
    .c-sns__ttl {
        font-size: 18px;
    }
    .c-sns__list {
        gap: 0 15px;
    }
    .c-sns__list li {
        width: 60px;
    }
}

.c-single_pager {
    margin: 40px 0 0;
    display: flex;
    position: relative;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: space-between;
            justify-content: space-between;
}
.c-single_pager::before {
    content: "";
    width: 1px;
    height: 100%;
    background: #ccc;
    position: absolute;
    top: 0;
    left: 50%;
}
.c-single_pager a {
    position: relative;
    width: 46%;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 1.3rem;
    padding: 10px 0;
    display: block;
    overflow: hidden;
}
.c-single_pager a:first-child {
    padding-left: 20px;
    background: url(../images/common/page-nav_arrow_l.svg) left center no-repeat;
    background-size: 10px 36px;
}
.c-single_pager a:last-child {
    padding-right: 20px;
    background: url(../images/common/page-nav_arrow_r.svg) right center no-repeat;
    background-size: 10px 36px;
}
.c-single_pager {}

@media only screen and (max-width: 767px) {}

.odometer.odometer-auto-theme, .odometer.odometer-theme-car {
    display: inline-block;
    *vertical-align: auto;
    *zoom: 1;
    *display: inline;
    position: relative;
}

.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-car .odometer-digit {
    display: inline-block;
    *vertical-align: auto;
    *zoom: 1;
    *display: inline;
    position: relative;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-spacer, .odometer.odometer-theme-car .odometer-digit .odometer-digit-spacer {
    display: inline-block;
    *vertical-align: auto;
    *zoom: 1;
    *display: inline;
    visibility: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-digit-inner, .odometer.odometer-theme-car .odometer-digit .odometer-digit-inner {
    text-align: left;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon, .odometer.odometer-theme-car .odometer-digit .odometer-ribbon {
    display: block;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-ribbon-inner, .odometer.odometer-theme-car .odometer-digit .odometer-ribbon-inner {
    display: block;
    -webkit-backface-visibility: hidden;
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value, .odometer.odometer-theme-car .odometer-digit .odometer-value {
    display: block;
    -webkit-transform: translateZ(0);
}

.odometer.odometer-auto-theme .odometer-digit .odometer-value.odometer-last-value, .odometer.odometer-theme-car .odometer-digit .odometer-value.odometer-last-value {
    position: absolute;
}

.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner, .odometer.odometer-theme-car.odometer-animating-up .odometer-ribbon-inner {
    transition: transform 1.5s;
}

.odometer.odometer-auto-theme.odometer-animating-up.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-car.odometer-animating-up.odometer-animating .odometer-ribbon-inner {
    transform: translateY(-100%);
}

.odometer.odometer-auto-theme.odometer-animating-down .odometer-ribbon-inner, .odometer.odometer-theme-car.odometer-animating-down .odometer-ribbon-inner {
    transform: translateY(-100%);
}

.odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-car.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
    transition: transform 1.5s;
    transform: translateY(0);
}

.odometer.odometer-auto-theme.odometer-animating-up .odometer-ribbon-inner, .odometer.odometer-auto-theme.odometer-animating-down.odometer-animating .odometer-ribbon-inner, .odometer.odometer-theme-car.odometer-animating-up .odometer-ribbon-inner, .odometer.odometer-theme-car.odometer-animating-down.odometer-animating .odometer-ribbon-inner {
    transition-timing-function: ease-out;
}

.nomark .odometer-formatting-mark {
    display: none !important;
}

/* Update styles */
#content-npc li:before {
    content: none;
}

.mini-paragraph a {
    text-decoration: underline;
    color: #002849;
}

.mini-paragraph a:hover {
    text-decoration: none;
    color: #b89b6d;
}

#crmWebToEntityForm .formBtn {
    color: #fff;
    background: #002849;
    border-radius: 40px;
    font-weight: 700;
    height: 80px;
    font-size: 20px;
    width: 360px;
    cursor: pointer;
    transition: opacity .3s;
}

#crmWebToEntityForm .formBtn:hover {
    opacity: .7;
}

.linkcard .lkc-internal-wrap {
    border: none;
    background: #fff;
}

.linkcard a {
    display: block;
    padding: 25px;
    position: relative;
}
.linkcard a:after {
    content: "";
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent transparent #002849 transparent;
    border-width: 0px 0px 14px 14px;
}

.linkcard .lkc-info {
    margin-bottom: 1em;
}

.linkcard .lkc-title {
    margin-bottom: 1em;
}
.linkcard .lkc-title-text {
    font-size: 18px;
}
.linkcard .lkc-title .lkc-url {
    display: none;
}

.linkcard .lkc-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media only screen and (max-width: 767px) {
    .linkcard a {
        padding: 15px 15px 25px;
    }
}

.square-beige {
    background: #fff;
    font-size: 18px;
    padding: 3em;
}

@media only screen and (max-width: 767px) {
    .square-beige {
        font-size: 16px;
        padding: 2em 1.5em;
    }
}

.dn {
    display: none !important;
}

.wp-block-media-text.has-media-on-the-right {
	.wp-block-media-text__content {
		padding-left: 0;
	}
}

.wp-block-media-text:not(.has-media-on-the-right) {
	.wp-block-media-text__content {
		padding-right: 0;
	}
}

@media (max-width: 600px) {
    .wp-block-media-text.is-stacked-on-mobile {
        .wp-block-media-text__media {
            margin-bottom: 2em;
        }
        .wp-block-media-text__content {
            padding-left: 0;
            padding-right: 0;
        }
    }
}
</pre></body></html>