@charset "utf-8";
/*@import url('https://fonts.googleapis.com/css?family=Roboto:400,700');*/


/* RESET
----------------------------------------------------------------------------------------------------*/
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

}

a, article, body, dd, div, dl, dt, em, form, footer, header, h1, h2, h3, h4, h5, h6, html, i, iframe, img, label, legend, li, nav, ol, p, section, main, span, table, tbody, tfoot, thead, time, tr, th, td, ul, video {
    font-family: inherit;
    font-size: 100%;
    font-style: inherit;
    vertical-align: baseline;
    white-space: normal;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    line-height: 1.6;
    text-align: left
}

textarea {
    font-family: inherit;
    font-size: 100%;
    font-weight: inherit;
    font-style: inherit;
    vertical-align: baseline;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    line-height: 1.6;
    text-align: left
}

article, footer, header, nav, section, main {
    display: block
}

ol, ul {
    list-style: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

html {
    font-size: 62.5%;
}

@media print, screen and (min-width: 768px) {
    body {
        font-size: 1.6em;
    }
}

body {
    margin: 0 auto;
    padding: 0;
    font-family: "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-weight: 500;
    font-size: 1.4em;
    line-height: 1.8;
    color: #535761;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden; /* 横スクロールを無効化 */
    min-width: 320px;
    word-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
}


@media only screen and ( max-width: 768px ) {
    body {
        font-size: 14px;
    }
}

table {
    margin: 0;
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
}

img {
    vertical-align: middle;
    border: none;
    width: auto;
    max-width: 100%;
    height: auto;
}


a {
    outline: none;
    color: #333;
}

a:hover {
    text-decoration: none;
}


a, a:hover, a:hover img {
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    text-decoration: none;
}

a:hover {
    filter: alpha(opacity=80);
    -moz-opacity: 0.80;
    opacity: 0.80;
}


.container {
    /*width: 100%; !* 幅を100%に設定 *!*/
    /*max-width: 1200px; !* 最大幅を1200pxに設定 *!*/
    margin: 0 auto; /* 中央寄せ */
    box-sizing: border-box; /* パディングやボーダーを含むサイズ指定 */
}

.clr:after, .col:after, .container:after, .group:after, .row:after {
    content: "";
    display: table;
    clear: both
}

.row {
    padding-bottom: 0
}

.col {
    display: block;
    float: left;
    width: 100%
}

@media only screen and ( min-width: 769px ) {
    .pc {
        /*display: flex;*/
        display: block;
    }

    .sp {
        display: none
    }
}

@media only screen and ( max-width: 768px ) {
    .sp_none {
        display: none !important;
    }

    .sp {
        /*display: flex;*/
        display: block;
    }

    .pc {
        display: none;
    }
}


@media only screen and ( max-width: 768px ) {
    .sbox {
        margin-bottom: 20px;
    }

    .container {
        padding: 0 30px;
    }


}

@media only screen and ( max-width: 480px ) {
    .container {
        padding: 0 20px;
    }
}

@media only screen and ( max-width: 374px ) {
    .container {
        padding: 0 10px;
    }
}

@media print, screen and ( min-width: 769px ) {
    .sbox {
        margin-bottom: 25px;
    }


}

/* ---------------------------------------------------------------------------------------------

　   HEADER

--------------------------------------------------------------------------------------------- */

.h_logo img {
    max-height: 50px;
    width: auto;
}
@media only screen and ( max-width: 768px ) {
    .h_logo img {
        width: 86%;
    }
}

.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 80px;
    z-index: 200;
    background-color: #fff;
}

.header_inner {

    padding: 15px;
}

.logo {

    padding: 10px 15px
}

.title {
    font-size: 2rem;
    font-weight: 600;
}

.main {
    margin-top: 60px;
    margin-bottom: 300px;
}

@media only screen and (min-width: 988px) {
    .header_inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        max-width: 1200px;
        margin: 0 auto;
        box-sizing: border-box;
    }


    .logo img {
        max-width: 100%;
        height: auto;
        display: block;
    }


    .logo {
        padding: 12px 30px
    }

    .nav_list {
        text-align: right;
    }

    .nav_list li {
        display: inline-block;
        text-align: right;
        padding-left: 20px;
    }

    .nav_list li a {
        color: #063150;;
        font-weight: 600;
    }
}


.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    z-index: 10;
}

@media (min-width: 988px) {
    .nav_list li {
        position: relative;
    }

    .sub-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        display: none;
        z-index: 10;
        min-width: 400px;
        width: max-content;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .nav_list li:hover > .sub-menu {
        display: block;
    }

    .sub-menu li {
        display: block;
        padding: 0.5em 1em;
        white-space: nowrap;
    }

    .sub-menu li a {
        display: block;
        color: #000;
        text-decoration: none;
    }

}

.fa-angle-down:before {
    display: none;
}

@media only screen and (max-width: 987px) {
    .logo {
        padding: 0;
    }

    .nav {
        position: fixed;
        left: 0;
        top: -100vh; /* ← 初期状態は上に隠す */
        width: 100vw;
        height: 100vh;
        padding-top: 80px;
        background-color: #fff;
        transition: top 0.6s ease; /* ← topでスライド */
        z-index: 200;
        overflow-y: auto;
    }

    .nav-open .nav {
        top: 0; /* ← 表示状態：上から下にスライド */
    }

    .black_bg {
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        z-index: 100;
        background-color: transparent;
        opacity: 0;
        visibility: hidden;
        transition: all .6s;
        cursor: pointer;
    }

    .nav-open .black_bg {
        opacity: 0;
        visibility: visible;
    }

    .hamburger {
        position: absolute;
        right: 15px;
        top: 15px;
        width: 40px;
        height: 40px;
        cursor: pointer;
        z-index: 300;
    }

    .nav_list {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .nav_item {
        text-align: center;
        padding: 0 14px;
    }

    .nav_item a {
        display: block;
        padding: 8px 0;
        border-bottom: 1px solid #eee;
        text-decoration: none;
        color: #333;
    }

    .nav_item a:hover {
        background-color: #eee;
    }

    .hamburger_border {
        position: absolute;
        left: 11px;
        width: 18px;
        height: 2px;
        background-color: #333;
        transition: all .6s;
    }

    .hamburger_border_top {
        top: 14px;
    }

    .hamburger_border_center {
        top: 20px;
    }

    .hamburger_border_bottom {
        top: 26px;
    }


    .nav-open .nav {
        right: 0;
        top: 80px;
    }

    .nav-open .black_bg {
        opacity: .8;
        visibility: visible;
    }

    .nav-open .hamburger_border_top {
        transform: rotate(45deg);
        top: 20px;
    }

    .nav-open .hamburger_border_center {
        width: 0;
        left: 50%;
    }

    .nav-open .hamburger_border_bottom {
        transform: rotate(-45deg);
        top: 20px;
    }

    .fa-angle-down:before {
        display: block;
    }
}


@media (max-width: 987px) {
    .sub-menu {
        position: static;
        display: none;
        background: #f9f9f9;
        padding: 0.5em 1em;
    }

    .sub-menu.open {
        display: block;
    }
}

.sp_contact_btn {
    display: none;
}

.contact_btn a {
    background-color: #063150;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 50px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #063150;
}

.contact_btn a:hover {
    background-color: #fff;
    color: #000 !important;
}

/* スマホサイズ用 */
@media (max-width: 987px) {
    .contact_btn {
        background-color: #063150;
        margin: 0;
        padding: 0;
        padding: 5px;
        width: 40px;
        height: 40px;
        margin-right: 40px;
        color: #fff;
    }

    .contact_btn a {
        background-image: url('https://ws-production.jp/yfp-crea/wp-content/uploads/2025/04/メールの無料アイコンその8.png');
        width: 30px;
        height: 30px;
        background-color: #063150;
        background-size: contain;
        background-repeat: no-repeat;
        color: #fff;
        text-indent: -9999px;
        border-radius: unset;
        margin: 0;
        padding: 0;
    }
}

.nav .menu-title {
    display: none;
}

/* スマートフォン表示用 */
@media (max-width: 986px) {
    .h_logo {
        display: flex;
        justify-content: space-between;
    }

    .pc_contact_btn {
        display: none;
    }

    .sp_contact_btn {
        display: block;
    }

    .nav .menu-title {
        display: block;
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .nav .menu-title span {
        display: block;
        padding: 10px;
        background-color: #063150;
        color: #fff;

    }


    .nav li {
        padding-left: 0;
        margin-left: 0;
    }
}

.hero-container {
    background-color: #ffffff;
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-image {
    position: relative;
    width: 100%;
    height: calc(100vw * 560 / 1400);
    min-height: 400px;
    background: url("../img/AdobeStock_228320666.webp") no-repeat center center;
    background-size: cover;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 2;
    text-align: left;
    font-weight: bold;
    font-size: clamp(20px, calc(100vw * 26 / 1400), 40px);
}

.hero-text .hero-line-large {
    font-size: 2em;
}


.hero-text span {
    display: inline-block;
    color: #fff;
    font-weight: 600;
    padding: 5px 15px;
    line-height: 1.5;
    text-shadow: 0 0 8px rgba(0, 0, 0, 1),
    2px 2px 6px rgba(0, 0, 0, 1),
    4px 4px 10px rgba(0, 0, 0, 1),
    4px 4px 20px rgba(0, 0, 0, 1),
    4px 4px 30px rgba(0, 0, 0, 1),
    -2px -2px 6px rgba(0, 0, 0, 1);
}

.hero-text span b {
    font-weight: 600;
    display: inline-block;
}


/**/
@media (max-width: 786px) {
    .hero-image {
        height: 360px;        
    }

    .hero-text .hero-line-large {
        font-size: 28px;

    }


    .hero-text span {

        font-size: 16px;

    }

}

.swiper-slide img {
    height: auto;
    width: 100%;
}

.swiper-button-next, .swiper-button-prev {
    color: #fff;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.6);

}

h2 {
    font-size: 1.2em;
    line-height: 1.4;
    margin: 4em 0 2em;
    position: relative;
    z-index: 1;
    text-align: center;
}

dt, h2, h3, h4 {
    font-weight: 700;
}

@media (min-width: 600px) {
    h2 {
        font-size: 1.4em;
    }
}


.post_content div > :first-child,
.post_content > :first-child {
    margin-top: 0 !important;
}

h2.is-style-section_ttl {
    padding-bottom: .75em;
}

.fs_l, .has-l-font-size, .has-large-font-size, .u-fz-l {
    font-size: 1.25em !important;
}


.is-style-section_ttl:after,
.is-style-section_ttl:before {
    border: none;
    content: none;
}

.section-title-wrapper {
    text-align: center;
}


.is-style-section_ttl {
    position: relative;
    display: block;
    padding-bottom: 0.5em;
    margin: 30px auto;
}

.is-style-section_ttl::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 75px;
    height: 4px;
    background: #BE8B4C;
}


.l-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1240px;
    padding-left: 24px;
    padding-right: 24px;
}

.l-content {
    margin: 0 auto 6em;
    position: relative;
    z-index: 1;
}


#content {
    top: 0 !important;

}


.page .l-mainContent__inner > .post_content {
    margin: 1.5em 0;
}

#lp-content .post_content, #main_content .post_content {
    font-size: 16px;
}

.l-article {
    max-width: 955px;
    margin: 60px auto;
}

.swell-block-column {
    padding-top: 1.5rem;
}

.has-text-align-center {
    text-align: center;
}

.swell-block-columns__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 1.5rem;
    column-gap: 1.5rem;
    margin: 0 auto;
}

.swell-block-column {
    flex: 1 1 calc(25% - 1.5rem);
    box-sizing: border-box;
    text-align: center;
}

.wp-block-image {
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .swell-block-column {
        flex: 1 1 calc(50% - 1.5rem);
    }
}

.image-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.image-item {
    flex: 1 1 calc(33.333% - 1.5rem);
    max-width: calc(33.333% - 1.5rem);
    box-sizing: border-box;
    text-align: center;
}

.image-item img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .image-item {
        flex: 1 1 calc(50% - 1.5rem);
        max-width: calc(50% - 1.5rem);
    }

    .third-item {
        flex: 1 1 calc(50% - 1.5rem);
        max-width: calc(50% - 1.5rem);
        margin-left: 0;
    }
}

.service-section {
    background-color: #f7f7f7;
    padding: 2rem 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}


.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 0 15px;
    /*max-width: 935px;*/
    margin: 0 auto;
    justify-content: center;
}
@media (max-width: 768px) {
    .service-grid {
        gap: .8rem;
    }
}

.service-item {
    box-sizing: border-box;
    background-color: #FFFFFF;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    width: calc(25% - 1.5rem);
    max-width: 320px;
}

.service-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin: 0 auto 1rem;
    display: block;
}

.service-item h3 {
    min-height: 4em;
    margin: 1rem 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.4;
}


.button_black {
    margin-top: auto;
    text-align: center;
    background-color: #063150;
    color: #fff;
    border-radius: 36px;
    cursor: pointer;
    width: 100%;
}

.button_black a {
    color: #fff;
    display: block;
    padding: 1%;
    text-align: center;
}

@media (max-width: 768px) {

    .service-item {
        flex: 1 1 calc(48% - .8rem); /* PC版は3つ並べる */
        max-width: calc(48% - .8rem); /* PC版のアイテムの最大幅 */
        width: 100%;
        margin-left: 10px;
    }

    .service-item img {

        height: 150px;

    }

}


.work_box_container {
    display: flex;
    overflow-x: auto;
    gap: 20px;

}


.work_box {
    flex: 0 0 auto;
    width: calc(50% - 10px);
    padding: 20px;
}


@media (max-width: 768px) {
    .work_box {
        width: calc(100% - 10px);
    }
}

.work_box img {
    width: 100%;
}

.work_box_container .button_black {
    background-color: #000;
    color: #fff;
    padding: 10px;
    text-align: center;
    cursor: pointer;

}


.work_box_container::-webkit-scrollbar {
    height: 8px;
}

.work_box_container::-webkit-scrollbar-thumb {
    background-color: #aaa;
}

.work_box_container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.js-scrollable td,
.js-scrollable th {
    white-space: nowrap;
    background-color: transparent;
}

.js-scrollable table {
    margin-bottom: 0;
}

.js-scrollable {
    margin-bottom: 30px;
}


.white_button {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 10px 20px;
    border: 1px solid #707070;
    background-color: #fff;
    text-align: center;
    text-decoration: none;
    color: #000;
    border-radius: 4px;
}

.column-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 0 15px;
    margin-bottom: 30px;
}

.column-item {
    box-sizing: border-box;
    text-align: center;
    width: 100%;
}

.column-image {
    position: relative;
    width: 100%;
}

.column-image img {
    width: 100%;
    height: auto;
    display: block;
}

.column-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #063150;
    color: #fff;
    padding: 5px 20px;
    font-size: 12px;
    border-radius: 80px;
}


.column-text {
    margin: 1rem 0;
    text-align: left;
}

.column-title {
    font-size: 1.2rem;
    font-weight: bold;
}

.column-date {
    font-size: 0.9rem;
    color: #666;
}


@media (max-width: 768px) {
    .column-grid {
        padding: 0;
    }

    .column-item {
        flex: 1 1 calc(50% - 1.5rem); /* スマホは2列 */
        max-width: calc(60% - 1.5rem);
    }

    .column-category {
        padding: 5px 10px;
    }
}

.column-section .button_black,
.interview-section .button_black,
.news-section .button_black {
    width: 60%;
    margin: 0 auto;
}


.interview-section {
    padding: 2rem 0;
    text-align: center;
}

/* PCでは通常の3列レイアウト */
.interview-grid {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 30px;
}

/* インタビューアイテムのスタイル */
.interview-item {
    flex: 0 0 calc(33.333% - 1rem); /* 3つ並べる */
    text-align: center;
}

@media (max-width: 768px) {
    .interview-wrapper {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
        position: relative; /* 追加 */
        scroll-padding-left: 0; /* 追加 */
    }

    .interview-grid {
        justify-content: flex-start;

        flex-wrap: nowrap;
        gap: 1rem;
        min-width: 100%;
        transform: translateX(0); /* 追加 */
    }

    .interview-item {
        flex: 0 0 250px;
        min-width: 250px;
        margin-left: 0 !important; /* 追加 */
    }

    /* スクロールバーを非表示（必要なら） */
    .interview-wrapper::-webkit-scrollbar {
        display: none;
    }
}


.news-section {

    padding: 2rem 0;
    text-align: center;
}

.news-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.news-grid {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.news-item {
    flex: 1 1 calc(50% - 1.5rem); /* 2つ並べる設定 */
    max-width: calc(50% - 1.5rem); /* 2つ並べる設定 */
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
}

.news-item img {
    width: 100%;
    height: auto;
    display: block;
}

.news-text {
    padding: 1rem;
}

.news-item-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.news-date {
    font-size: 1.2rem;
    color: #666;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .news-grid {
        flex-direction: row; /* 横並びに設定 */
        justify-content: center;
    }

    .news-item {
        max-width: 50%; /* スマホでも2つ並べるように調整 */
    }

}

.fullWide__inner {
    padding-bottom: 6em !important;
    padding-top: 6em !important;
}

.block-image {
    width: 150px;
}

.block-columns {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}

.block-column {
    flex: 1;
    min-width: 300px;
}

.f-link li a {
    padding: 0.75em 1em 0.75em 1.5em;
    transition: padding .25s;
    border-bottom: 1px solid hsla(0, 0%, 78%, .5);
    color: inherit;
    display: block;
    line-height: 1.4;
    position: relative;
    text-decoration: none;
}

@media (max-width: 768px) {
    .access-section h2 {
        text-align: center;
    }
}

.copy_lite {
    padding-bottom: 1em;
    padding-top: 1em;
    background-color: #000;
}

.copy_lite p {
    color: #fff;
    font-size: 12px;
    text-align: center;
}

iframe {
    width: 100%;

}

@media (max-width: 920px) {
    .block-columns {
        display: block;
    }
}

@media (max-width: 768px) {
    .fullWide__inner {
        padding: 2em;
    }

    iframe {
        width: 100%;
        height: 300px;
    }


}


.p-breadcrumb.-bg-on {
    background: #f7f7f7;
}

.p-breadcrumb {
    display: block !important;
    margin: 0 auto;
    padding: 8px 0;
    position: relative;

}


.p-breadcrumb__list {
    align-items: center;
    display: flex;
    font-size: 10px;
    gap: .5em;
    list-style: none;
    overflow: hidden;
    width: 100%;
}

.p-breadcrumb__item {
    align-items: center;
    display: inline-flex;
    gap: .5em;
    position: relative;
}

.p-breadcrumb__item:after {
    background-color: currentcolor;
    -webkit-clip-path: polygon(45% 9%, 75% 51%, 45% 90%, 30% 90%, 60% 50%, 30% 10%);
    clip-path: polygon(45% 9%, 75% 51%, 45% 90%, 30% 90%, 60% 50%, 30% 10%);
    content: "";
    display: block;
    height: 10px;
    margin: 0;
    opacity: .8;
    width: 10px;
}

.w-pageHeader {
    /*padding: 80px 20px 40px;*/
    text-align: left;
}

.w-pageHeader_title {
    text-align: left !important;
    width: 95%;
    margin: 0 auto;
    padding-bottom: 30px;
}

.w-pageHeader_title:after {
    content: "";
    display: block;
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    border-radius: 4px;
    width: 100%;
    height: 1px;
    background: #BE8B4C;

}

@media print, screen and (min-width: 768px) {
    .w-pageHeader {
        padding: 36px 0;


    }

    .w-pageHeader_title {
        text-align: center !important;
    }

    .w-pageHeader_title:after {
        content: "";
        display: block;
        position: absolute;
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        border-radius: 4px;
        width: 48px;
        height: 4px;
        background: #BE8B4C;;
        font-size: 2rem;
    }
}


@media print, screen and (min-width: 768px) {
    .w-pageHeader_title:after {
        width: 60px;
    }
}

.w-pageHeader_title {
    position: relative;
    padding: 0 0 16px;
    font-size: 20px;
    font-size: 1.8rem;
    line-height: 1.6;
    text-align: center;
}

@media print, screen and (min-width: 768px) {
    .w-pageHeader_title {
        padding-bottom: 20px;
        font-size: 3.4rem;
    }
}

.w-pageBody {
    position: relative;
    z-index: 1;

}

@media print, screen and (min-width: 768px) {
    .message_ceo_hero {
        text-align: center;
    }
}

@media print, screen and (min-width: 768px) {
    .w-roundImg-min-md {
        border-radius: 20px 20px;
    }
}

.message_ceo_hero img {
    width: 100%;
    max-width: 992px;
}

.w-container {
    padding: 0 20px;
}

@media print, screen and (min-width: 768px) {
    .w-container {
        padding-right: 30px;
        padding-left: 30px;
    }
}


@media print, screen and (min-width: 1032px) {
    .w-container {
        margin-right: auto;
        margin-left: auto;
        padding-right: 0;
        padding-left: 0;
        max-width: 992px;
    }
}

.message_ceo_message {
    padding: 28px 0 56px;
    line-height: 2;
}

@media print, screen and (min-width: 768px) {
    .message_ceo_message {
        padding: 4.7% 8.468% 11.6%;
    }
}

.s-container {
    position: relative;
    z-index: 1;
    background: #f0f0ee;
}

.s-pageBodyInner {
    padding-top: 28px;
    padding-bottom: 56px;
}

@media print, screen and (min-width: 768px) {
    .s-pageBodyInner {
        padding-top: 56px;
        padding-bottom: 84px;
    }
}

.s-roundBox {
    position: relative;
    padding: 0;
    border-radius: 20px 20px;
    background: #fff;
}

@media print, screen and (min-width: 768px) {
    .s-roundBox {
        padding: 5.645% 8.468%;
    }
}

.s-roundBox-min-md {

    padding: 30px 20px;
    width: 95%;
    margin: 0 auto;
    border-radius: 20px 20px;
}

@media print, screen and (min-width: 768px) {
    .s-roundBox-min-md {
        margin-right: auto;
        margin-left: auto;
        padding-top: 84px;
        padding-bottom: 84px;
        width: 100%;

    }
}


@media print, screen and (min-width: 768px) {
    .s-dataList_item {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

.s-dataList_title {
    padding: 16px 20px 0 10px;
    font-weight: bold;
    padding-bottom: 24px;
    border-color: #d7d7d5;
    border-style: solid;
    border-width: 1px 0 0;
}


@media print, screen and (min-width: 768px) {
    .s-dataList_title {
        padding-top: 24px;
        padding-bottom: 24px;
        border-color: #d7d7d5;
        border-style: solid;
        border-width: 1px 0 1px;
        width: 200px;
        margin-right: 20px;
        margin-bottom: -1px;
    }
}

@media print, screen and (max-width: 768px) {


    .s-dataList_item:last-of-type {
        border-color: #d7d7d5;
        border-style: solid;
        border-width: 0 0 1px;
    }

    .s-dataList_item:first-of-type .s-dataList_title {
        border-top: none;
    }

}

.s-dataList_data {
    padding: 0;

}

@media print, screen and (min-width: 768px) {
    .s-dataList_data {
        padding: 0;
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
        border-color: #d7d7d5;
        border-style: solid;
        border-width: 1px 0 1px;
        margin-bottom: -1px;
    }
}

.s-dataList_dataInner {
    padding: 0 0 16px;
}

@media print, screen and (min-width: 768px) {
    .s-dataList_dataInner {
        padding: 24px 20px 24px 10px;
    }

}

.ws-section_heading {
    font-weight: bold;
    line-height: 1.6;
}

.ws-section_heading-h2 {
    position: relative;
    margin: 0 0 24px;
    padding: 0 0 13px;
    font-size: 18px;
    font-size: 1.8rem;
    text-align: left;
}


@media print, screen and (min-width: 768px) {
    .ws-section_heading-h2 {
        margin-bottom: 28px;
        padding-bottom: 18px;
        font-size: 2.8rem;
    }
}

.ws-section_heading-h2:after {
    content: "";
    display: block;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    margin: auto;
    border-radius: 4px;
    width: 40px;
    height: 4px;
    background: #BE8B4C;
}

@media print, screen and (min-width: 768px) {
    .ws-section_heading-h2:after {
        width: 50px;
    }
}

.ws-section {
    position: relative;
    margin: 40px auto;

}

@media print, screen and (min-width: 768px) {
    .ws-section {
        margin-top: 84px;
        margin-bottom: 84px;
    }
}


.directors_directorsList {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media print, screen and (min-width: 768px) {
    .directors_directorsList {
        margin: 0 -20px;
    }
}


.directors_index_section .directors_directorsList {
    margin-top: 28px;
}

@media print, screen and (min-width: 768px) {
    .directors_index_section .directors_directorsList {
        margin-top: 42px;
    }
}

.ws-card {
    position: relative;
    width: 100%;
    max-width: 340px;
}

.directors_directorsList .m-card {
    margin: 0 10px;
    width: calc(50% - 20px);
}


@media print, screen and (min-width: 768px) {
    .directors_directorsList .m-card {
        margin: 0 20px;
        width: calc(25% - 40px);
    }
}

.ws-card_imgWrapper {
    overflow: hidden;
    -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.58, 1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.58, 1);
    -webkit-transform: scale(1) translateY(0%);
    -ms-transform: scale(1) translateY(0%);
    transform: scale(1) translateY(0%);
}

.ws-card_imgWrapper:after {
    content: "";
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    border-radius: 20px;
    -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.58, 1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.58, 1);
    background: #000;
}

.ws-section_heading-h3 {
    margin: 42px 0 16px;
    padding: 0 0 8px;
    border-bottom: 2px solid #000;
    font-size: 17px;
    font-size: 1.7rem;
}

@media print, screen and (min-width: 768px) {
    .ws-section_heading-h3 {
        margin: 64px 0 21px;
        padding-bottom: 12px;
        font-size: 2.2rem;
    }
}

@media print, screen and (min-width: 768px) {
    .ws-dataList_item {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

.ws-dataList_title {
    padding: 16px 20px 0 10px;
    font-weight: bold;
}

@media print, screen and (min-width: 768px) {
    .ws-dataList_title {
        padding-top: 24px;
        padding-bottom: 24px;
        border-bottom: 2px solid #d7d7d5;
        width: 220px;
    }
}

.ws-dataList_data {
    padding: 0 0 0 20px;

}

@media print, screen and (min-width: 768px) {
    .ws-dataList_data {
        padding: 0;
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
        border-bottom: 2px solid #f0f0ee;
    }
}

.history_list .ws-dataList_data {
    font-weight: bold;
}

.ws-dataList_dataInner {
    padding: 0 0 16px;
}


@media print, screen and (min-width: 768px) {
    .ws-dataList_dataInner {
        padding: 24px 20px 24px 10px;
    }
}

.button_list {
    margin: 100px auto;
}


/*.u-mt-3em {*/
/*    margin-top: 3em !important;*/
/*}*/


.ws-cardGroup {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media print, screen and (min-width: 768px) {
    .ws-cardGroup {
        margin: 0 auto;
        width: 651px;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

@media print, screen and (min-width: 1032px) {
    .ws-cardGroup {
        width: 100%;
    }
}

.ws-cardGroup-fluid {
    display: block;

}


@media print, screen and (min-width: 768px) {
    .ws-cardGroup-fluid {
        display: flex;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}


@media print, screen and (min-width: 768px) {
    .ws-cardGroup-fluid-3col {
        margin: 10px -18px 50px;
    }
}


@media print, screen and (min-width: 768px) {
    .ws-cardGroup-fluid-3col .ws-card {
        margin: 10px 18px !important;
        width: calc(33.333% - 36px);
    }
}

@media print, screen and (min-width: 768px) {
    .ws-cardGroup .ws-card:nth-child(-n+2) {
        margin-top: 0;
    }
}


@media print, screen and (min-width: 1032px) {
    .ws-cardGroup .ws-card:nth-child(-n+3) {
        margin-top: 0;
    }
}

.ws-card_title {
    margin: 0 0 10px;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.6;

}

@media print, screen and (min-width: 768px) {
    .ws-card_title {
        margin-bottom: 12px;
        font-size: 1.8rem;
    }
}

.ws-card_title:last-child {
    margin-bottom: 0;
}

.ws-card-nav .m-card_title {
    margin: 0;
    text-align: center;
}

.ws-card-noBg .ws-card_body {
    padding: 16px 10px 10px;
}

@media print, screen and (min-width: 768px) {
    .ws-card-noBg .ws-card_body {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

.office-area {
    padding: 50px 0;
}

@media print, screen and (max-width: 768px) {

    .recruit_box .s-roundBox {
        padding-top: 0;
    }

    .recruit_box .s-dataList_title {
        padding: 16px 0 10px;
    }

    .s-container {
        padding-top: 20px;
    }
}

/**/
.service-title {
    font-size: 24px;

    margin-top: 30px;

}

.w-pageHeader {
    text-align: center;
    font-weight: bold;
}

.services-img {
    margin: 20px 0;
}

.worries_box {
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    gap: 0;
}

.worries_box h3 {
    text-align: center;
}

.worries_box p {
    text-align: center;
}

.green_back,
.yellow_green {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    min-height: 100%;
    padding-top: 20px;
}

.green_back img,
.yellow_green img {
    align-self: center; /* 水平方向の中央 */
    margin-top: auto; /* 一番下に配置 */
    max-width: 100%; /* 画像サイズの調整 */
    height: auto;
}


.green_back {
    background-color: #063150;

}

.yellow_green {
    background-color: #ECF5E2;

}


.speech_bubble {
    background: white;
    border-radius: 50%;
    width: 100px; /* 基本のサイズ */
    aspect-ratio: 1 / 1; /* 正円を維持 */
    max-width: 120px; /* 最大サイズを制限 */
    min-width: 80px; /* 最小サイズを設定 */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 10px;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 12px;
    line-height: 1.2;
}

@media print, screen and (max-width: 887px) {
    .speech_bubble {
        width: 80px; /* 縮小 */
        min-width: 60px;
        max-width: 90px;
        aspect-ratio: 1 / 1; /* これで楕円化を防ぐ */
        font-size: 10px;
        padding: 8px;
    }

    .green_back img, .yellow_green img {
        width: 70%;
    }
}


.speech_bubble_container {
    display: flex;
    justify-content: center; /* 中央揃え */
    align-items: center;
    width: 100%;
    position: relative; /* 相対位置 */
}

.green_back .speech_bubble:nth-child(1) {
    margin-top: 100px; /* 位置調整 */
}

.green_back .speech_bubble:nth-child(2) {
    margin-top: -20px;
    margin-left: -10px;
}

.green_back .speech_bubble:nth-child(3) {
    margin-top: 30px;
}

.yellow_green .speech_bubble:nth-child(1) {
    margin-top: 120px;
}

.yellow_green .speech_bubble:nth-child(2) {
    margin-top: -10px;
}

.yellow_green .speech_bubble:nth-child(3) {
    margin-top: 80px;
}

@media screen and (max-width: 887px) {
    .speech_bubble_container {
        gap: 10px; /* 吹き出しの間隔を調整 */
    }

    .speech_bubble {
        width: 70px;
        min-width: 60px;
        max-width: 90px;
        aspect-ratio: 1 / 1;
        font-size: 10px;
        padding: 6px;
    }
}

@media screen and (max-width: 581px) {
    .speech_bubble_container {
        max-width: 100%; /* はみ出しを防ぐ */
        display: flex;
        justify-content: center; /* 中央配置 */
        flex-wrap: wrap; /* はみ出し防止 */
        gap: 5px; /* 吹き出しの間隔 */
    }

    .speech_bubble {
        width: 60px; /* さらに小さく調整 */
        min-width: 45px;
        max-width: 70px;
        aspect-ratio: 1 / 1;
        font-size: 8px; /* 文字サイズも調整 */
        padding: 3px;
    }

    .yellow_green .speech_bubble:nth-child(1) {
        margin-top: 40px;
    }

    .yellow_green .speech_bubble:nth-child(2) {
        margin-top: -10px;
    }

    .yellow_green .speech_bubble:nth-child(3) {
        margin-top: 0;
    }

}

@media screen and (max-width: 450px) {

    .worries_box p {
        margin-bottom: 20px;
    }

    .green_back .speech_bubble:nth-child(1) {
        margin-top: 0; /* 位置調整 */
    }

    .green_back .speech_bubble:nth-child(2) {
        margin-top: -20px;
        margin-left: -10px;
    }

    .green_back .speech_bubble:nth-child(3) {
        margin-top: 0;
    }

    .yellow_green .speech_bubble:nth-child(1) {
        margin-top: 0px;
    }
}

.service-container {
    padding-bottom: 60px;
}

.s_header {
    padding-top: 50px;
}

.info-box {
    display: flex;
    background: white; /* 背景白 */
    padding: 20px;
    border-radius: 10px; /* 角を丸める */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* 影をつける */
    max-width: 800px; /* ボックスの最大幅 */
    margin: 20px auto; /* 中央配置 */
}

.left-content {
    width: 40%; /* 左側の幅 */
    font-size: 14px;
    font-weight: normal;
    padding-right: 20px;
    text-align: center;
}

.left-content strong {
    font-size: 16px;
    font-weight: bold;
}

.left-content img {
    width: 100%;
    max-width: 150px; /* 画像の最大サイズ */
    margin-top: 10px;
}

/* 右側との間に線を入れる */
.separator {
    width: 1px; /* 線の太さ */
    background: #707070; /* 線の色 */
    height: auto; /* 親要素に合わせる */
    margin: 0 20px; /* 左右の余白 */
}

.right-content {
    width: 60%; /* 右側の幅 */
    text-align: left;
}

.right-content h2 {
    font-size: 18px;
    margin: 0;
    margin-bottom: 10px;
    text-align: left;
}

.right-content p {
    font-size: 14px;
    line-height: 1.5;
}

/* 画面幅が小さい時の調整 */
@media screen and (max-width: 600px) {
    .info-box {
        flex-direction: column; /* 縦並びに変更 */
        text-align: center;
    }

    .left-content, .right-content {
        width: 100%; /* 幅を100%に */
        padding-right: 0;
    }

    .separator {
        width: 100%;
        height: 1px; /* 横線にする */
        margin: 10px 0; /* 上下の余白 */
    }
}


/**/
.response-section {
    text-align: center;
    padding: 20px;
    background: white; /* 背景色 */
}

.response-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 2列レイアウト */
    gap: 20px;
    max-width: 800px;
    margin: 20px auto;
}

.response-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.response-item img {
    object-fit: cover;
    margin-bottom: 10px;
}

.response-text {
    padding: 10px;
}

.response-text h3 {
    font-size: 16px;
    margin-bottom: 5px;
    text-align: center;
}

.response-text p {
    font-size: 14px;
    color: #666;
}

/* スマホ対応 */
@media screen and (max-width: 600px) {
    .response-grid {
        grid-template-columns: repeat(2, 1fr); /* 2列レイアウト */
    }
}

.steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-bottom: 80px;
}

.step-container {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 80%;

}

.step-circle {
    width: 50px;
    height: 50px;
    background: #ECF5E2;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #333;
    flex-direction: column; /* 縦に並べる */
}

.step-text, .step-number {
    display: block; /* 改行を強制 */
    text-align: center;
}


.step-arrow {
    width: 20px;
    height: 20px;
    background: #063150;;
    clip-path: polygon(50% 100%, 100% 0%, 0% 0%);
    border-radius: 5px;
}


/**/


.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    font-size: 1.6rem;
    border-collapse: collapse;
    font-family: "Helvetica Neue", sans-serif;
    font-size: 15px;
    margin: 20px 0;
}

.comparison-table th,
.comparison-table td {
    border: 1px solid #ccc;
    padding: 12px 10px;
    text-align: center;
}

.comparison-table thead th {
    background-color: #ffe3db;
    color: #333;
    font-weight: bold;
}

.comparison-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.comparison-table tbody tr:nth-child(odd) {
    background-color: #fff;
}

.comparison-table td.special {
    font-weight: bold;
    background-color: #fff6f0;
    color: #c0392b;
}

.comparison-table th[rowspan="2"] {
    vertical-align: middle;
}

.comparison-table thead th {
    background-color: #063150;
    color: #ffffff;
    padding: 12px;
}

.comparison-table tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

.comparison-table tbody tr:nth-child(even) {
    /*background-color: #f0f7f8;*/
}

.comparison-table td,
.comparison-table th {
    padding: 10px;
    border: 1px solid #ccc;
}

.comparison-table td.special {
    background-color: #e0f0f2;
    color: #063150;
    font-weight: bold;
}


@media screen and (max-width: 768px) {
    .comparison-table {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 8px;
    }

    .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .comparison-table {
        min-width: 600px; /* 表が潰れないように横幅固定 */
    }
}

.tax-note-box {
    margin-top: 20px;
    background-color: #f8fbfb;
    border: 1px solid #d0e4e6;
    padding: 16px 20px;
    font-size: 14.5px;
    color: #333;
    font-family: "Helvetica Neue", sans-serif;
    border-radius: 5px;
}

.tax-note-title {
    font-weight: bold;
    color: #063150;
    margin-bottom: 8px;
    font-size: 15px;
}

.tax-note-list {
    margin: 0;
    padding-left: 1.2em;
}

.tax-note-list li {
    margin-bottom: 5px;
    list-style-type: disc;
}

.tax-note-list span {
    font-weight: bold;
}

.option-table-wrapper {
    margin-top: 30px;
    font-family: "Helvetica Neue", sans-serif;
}

.option-table-title {
    font-size: 16px;
    font-weight: bold;
    color: #063150;
    margin-bottom: 10px;
}

.option-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14.5px;
}

.option-table th {
    background-color: #063150;
    color: #fff;
    padding: 10px;
    border: 1px solid #ccc;
    text-align: center;
}

.option-table td {
    padding: 10px;
    border: 1px solid #ccc;
    text-align: left;
}

.option-table tr:nth-child(even) {
    /*background-color: #f0f7f8;*/
}

.option-table tr:nth-child(odd) {
    background-color: #ffffff;
}

@media screen and (max-width: 768px) {
    .option-table {
        font-size: 13.5px;
    }

    .option-table td,
    .option-table th {
        padding: 8px;
    }

    .option-table-wrapper {
        overflow-x: auto;
    }

    .option-table {
        min-width: 400px;
    }
}


/**/

.directors_detail_intro {
    overflow: hidden;
    padding-top: 0;
    padding-right: 0;
    padding-left: 0;
}

@media print, screen and (min-width: 768px) {
    .directors_detail_intro {
        padding-bottom: 0;
    }

}


.directors_detail_hero .hero_jobTitle {
    margin: 0 0 5px;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.6;
}

@media print, screen and (min-width: 768px) {
    .directors_detail_hero .hero_jobTitle {
        margin-bottom: 11px;
        font-size: 1.8rem;
    }
}

.directors_detail_hero .hero_text {
    padding: 28px 20px 0;
}

.directors_detail_profile {
    margin-top: 28px;
    padding: 0 20px;
}

.directors_detail_hero .hero_name {
    font-size: 48px;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
    text-align: left;
}

@media print, screen and (min-width: 768px) {
    .directors_detail_hero .hero_name {
        font-size: 3rem;
    }
}

.directors_detail_hero .hero_name_en {
    font-size: 22.4px;
    font-size: 1.4rem;
    font-weight: bold;
}

@media print, screen and (min-width: 768px) {
    .directors_detail_hero .hero_name_en {
        margin-top: 2px;
        font-size: 1.8rem;
    }
}


@media print, screen and (min-width: 768px) {
    .directors_detail_hero {
        position: relative;
    }
}

.directors_detail_hero .hero_figure img {
    width: 100%;
}

.directors_detail_hero .hero_text {
    padding: 28px 20px 0;
}

@media print, screen and (min-width: 768px) {
    .directors_detail_hero .hero_text {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 84px;
        padding: 0;
        max-width: 30%;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media print, screen and (min-width: 768px) {
    .directors_detail_profile {
        margin-top: 64px;
        padding: 0 84px 84px;
    }
}

.s-section:last-child {
    margin-bottom: 0;
}

.s-section_heading-h2 {
    position: relative;
    margin: 0 0 24px;
    padding: 0 0 13px;
    font-size: 18px;
    font-size: 1.8rem;
}

@media print, screen and (min-width: 768px) {
    .s-section_heading-h2 {
        margin-bottom: 28px;
        padding-bottom: 18px;
        font-size: 2.8rem;
    }
}

.s-section_heading-h2:after {
    content: "";
    display: block;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    margin: auto;
    border-radius: 4px;
    width: 40px;
    height: 4px;
    background: #BE8B4C;
}

@media print, screen and (min-width: 768px) {
    .s-section_heading-h2:after {
        width: 50px;
    }
}

.staff {
    text-align: left;
}

.staff h2.s-section_heading-h2 {
    text-align: left;
    margin-left: 0;
}

.w-container .staff {
    padding: 50px 0;
}

/**/

.column-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 30px auto;
}

.column-main-content {
    flex: 3;
}

.column-sidebar {
    flex: 1;
}

.column-post-title {
    padding-top: 1em;
}

.column-sidebar h2 {
    background-color: #0A246A;
    color: #fff;
    text-align: left;
    padding: .5em .75em;
    font-size: 16px;
}

.column-categories ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.column-categories li {
    list-style: none;
}

.column-posts .column-post-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}


.column-categories h2 {
    text-align: left;
    font-size: 1.5rem;
    margin-bottom: 16px;
}


.column-category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.column-category-list li a {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid #063150;
    border-radius: 16px;
    color: #000;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.column-category-list li a:hover {
    background: #063150;
    color: #fff;
}

.column-page-title {
    font-size: 2rem;
    text-align: left;
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
    font-weight: bold;
}

.column-page-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: calc(100% + 80px);
    height: 1px;
    background-color: #000;
}


.column-categories {
    margin-bottom: 40px;
}

.column-categories h2 {
    font-size: 1.5rem;
    text-align: left;
    margin: 30px 0 16px;
    font-weight: bold;

}

.column-category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}


.column-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.column-main-content {
    flex: 0 0 75%;
    max-width: 75%;
}

.column-sidebar {
    flex: 0 0 25%;
    max-width: 25%;
}

.column-latest-columns-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.column-latest-column-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.column-column-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.column-thumb {
    flex-shrink: 0;
    overflow: hidden;
    margin-right: 10px;

}

.column-thumb img {
    width: 100%;
    height: 300px;
    height: auto;
    object-fit: cover;
}

.column-title {
    font-size: 16px;
    line-height: 1.4;
}

.column-category-list li.current a {
    background-color: #063150;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
}

.column-latest-columns-list .column-thumb {
    width: 100px;
    height: 70px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    border-radius: unset;
}

.column-latest-columns-list .column-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.column-latest-columns-list .column-title {
    font-size: 13px;
}

.latest-column-item a {
    display: flex;

}

.latest-column-item .column-title {

    font-size: 13px;
}

.column-section .column-item {
    width: 30%;
}

.column-section .column-image img {
    max-width: 300px;
}

/**/
.popular-post {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
}

.popular-post a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.popular-thumb {
    width: 100%;
    margin-bottom: 10px;
    display: block;
}

.popular-thumb img {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;

}

.popular-title {

    margin-bottom: 4px;
    line-height: 1.4;
}


.column-post-meta {
    display: flex;
    align-items: center;
    gap: 6px; /* スペース調整 */
    margin-top: 8px;
}

.column-post-excerpt {
    margin-top: .5em;
}

/**/
.column-cate-widget ul li.current-cat a::before {
    content: "\f07b";
    font-family: 'FontAwesome';
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    margin-right: 8px;
    display: inline-block;
}

.cat-item {
    border-bottom: 1px solid hsla(0, 0%, 78%, .5);
    color: inherit;
    display: block;
    line-height: 1.4;
    position: relative;
    text-decoration: none;
    padding: .75em .5em;
}

/**/

.column-pagination {
    text-align: center;
    margin: 40px 0;
}

.column-pagination .page-numbers {
    display: inline-block;
    margin: 0 5px;
    padding: 8px 14px;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.column-pagination .page-numbers:hover {
    background-color: #dcdcdc;
}

.column-pagination .current {
    background-color: #333;
    color: #fff;
    font-weight: bold;
}

/* 960px以下：サイドバーを下に */
@media screen and (max-width: 960px) {

    .column-container {
        display: block;
        width: 95%;
        margin: 0 auto;
    }

    .column-layout {
        flex-direction: column;
    }

    .column-main-content,
    .column-sidebar {
        flex: 0 0 100%;
        max-width: 100%;
        display: block;
    }

    .popular-thumb img {
        max-width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .column-posts .column-item {
        max-width: calc(100% - 1.5rem);
    }
}

/* 600px以下：記事一覧を1カラムに */
@media screen and (max-width: 600px) {
    .column-posts .column-post-grid {
        grid-template-columns: 1fr;
    }

    .column-category-list li a {
        padding: 4px 8px;
        font-size: 0.85rem;
    }

    .column-page-title {
        font-size: 1.5rem;
    }

    .column-item {
        max-width: 100%;
    }
}

#toc_container {
    width: 95% !important;
    margin: 4em auto !important;
    max-width: 800px !important;
    padding: 2em !important;
}

div#toc_container p.toc_title {

    font-size: 23px !important;
    font-weight: normal !important;
}

.toc_list li {
    font-size: 16px !important;
}

.toc_list li ul li {
    font-size: 14px !important;
}

.toc_number {
    padding-right: .5em;
    border-right: 1px solid #707070;
}

.toc_list li a {
    display: block;
    margin: .5em 0;
}

.column-single-container p {
    font-size: 16px;
}

.column-single-container h2 {
    position: relative;
    text-align: left;
    font-size: 22px;
    font-weight: 700;
    margin-left: -16px;
    margin-right: -16px;
    border: solid #56658c;
    background: #063150;
    border-width: 1px 0;
    padding: 20px 30px;
    color: #fff;

}

.column-single-container h2::before {
    content: "";
    position: absolute;
    left: 0;
    width: 5px;
    top: 15px;
    bottom: 15px;
    background: #063150;;
}

@media (min-width: 768px) {
    .column-single-container h2::before {
        top: 20px;
        bottom: 20px;
        width: 6px;
    }
}


.first-char {
    color: #063150;;
    font-size: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #063150;;
}

.column-single-container h3 {
    border-left: solid 5px #063150;;
    padding-left: 10px;
    padding-top: 0px;
    height: 35px;
    font-size: 20px;
    margin: 3em 0 2em;

}

.table-compare {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
}

.table-compare th {
    background-color: #000;
    color: #fff;
    padding: 12px;
}

.table-compare td {
    border: 1px solid #ccc;
    padding: 12px;
    background-color: #fff;
}

.table-checklist {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
}

.table-checklist td {
    border: 1px solid #ccc;
    padding: 12px;
}

.table-checklist .label {
    background-color: #FAFAFA;
    font-weight: bold;
    width: 35%;
}

.news-container .column-thumb {
    max-width: 450px;
    height: 225px;
    object-fit: contain;
}

.interview-container h2 {
    text-align: center;


}

.interview-container h2::after {
    content: "";
    display: block;
    width: 10%;
    margin: 10px auto 0;
    border-bottom: 2px solid #063150;;
}

ul li {
    font-size: 16px;
}

.wp-block-image img {

    margin-bottom: 10px;

}

.swl-fz {

    font-weight: bold;
}

/**/
.worries {
    max-width: 1200px;
    margin: 60px auto;
}

.worries__wrapper {

    margin-top: 35px;
}

.feature-slide__title {
    display: flex;
    flex-flow: column;
    align-items: center;
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 24px;
    line-height: 1.7;
    text-align: center;
    padding: 0 15px;
}

.worry__list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 90px;
    padding: 30px 30px 60px;
    font-weight: bold;
    font-size: 18px;
}

.worry__item {
    display: flex;
    align-items: center;
    width: calc(50% - 10px);
    min-height: 90px;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 15px;
}


.worry__item i {
    font-size: 20px;
    color: #016b83;
    margin-right: 10px;
}

@media screen and (max-width: 768px) {
    .worry__list {
        padding-bottom: 0;
        font-size: 28px;
    }

    .worry__item {
        width: 100%;
        min-height: 100px;
        padding: 25px;
        background-size: 46px;
    }
}


.worry__lead-wrapper {
    display: flex;
    justify-content: center;
    padding: 1em;
}


.worry__lead {
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    font-size: 1.8rem;
    line-height: 1.8;
    letter-spacing: 0.1em;
    position: relative;
    text-align: center;
    gap: 0.5em;
}

.worry__lead::before,
.worry__lead::after {
    font-size: 2rem;
    color: #555;
    font-weight: bold;
    line-height: 1;
    display: inline-block;
}

.worry__lead::before {
    content: '＼';
}

.worry__lead::after {
    content: '／';
}

@media screen and (max-width: 768px) {
    .worry__lead {
        font-size: 1.4rem;
    }

}

.feature__list {
    margin-bottom: 50px;
    text-align: left;
}

.feature__item {
    display: flex;
    gap: 40px;
    align-items: center;
    overflow: hidden;
    background: #fff;

}


.feature__item:not(:last-child) {
    margin-bottom: 40px;
}

.feature__item:nth-child(odd) {
    padding-right: 65px;
}

.feature__item:nth-child(even) {
    flex-flow: row-reverse;
    padding-left: 65px;
}


.feature__item-pic {
    align-self: stretch;
}

.feature__item-img {
    width: 450px;
    height: 100%;
    object-fit: cover;
}

.feature__item-inner {
    flex: 1;
    padding: 30px 0;
}

.feature__item-subttl {
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 24px;
    line-height: 1.5;
}

@media screen and (max-width: 780px) {
    .feature__item {
        display: block;
    }

    .feature__item:nth-child(odd) {
        padding-right: 0;
    }

    .feature__item:nth-child(even) {
        padding-left: 0;
    }

    .feature__item:not(:last-child) {
        margin-bottom: 30px;
    }

    .feature__item-img {
        width: 100%;
        height: auto;
    }

    .feature__item-inner {
        padding: 50px 30px;
        text-align: center;
    }

    .feature__item-subttl {
        margin-bottom: 15px;
        font-size: 20px;
    }
}

.sw-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/**/

.ws-tab_wrapper {
    margin-bottom: 2em;
}

.ws-tab.is-current {
    display: block;
}

.ws-scrollableTable {
    overflow: auto;
    white-space: nowrap;
}

.ws-dataTable {
    width: 100%;
    table-layout: fixed;
}

.ws-scrollableTable .ws-dataTable {
    table-layout: auto;
}

.ws-dataTable_head {
    border-bottom: 2px solid #000;
    font-size: 15px;
    font-size: 1.5rem;
}

@media print, screen and (min-width: 768px) {
    .ws-dataTable_head {
        font-size: 1.8rem;
    }
}

.ws-dataTable th, .ws-dataTable td {
    text-align: left;
    line-height: 1.6;
}

.ws-dataTable_head th, .ws-dataTable_head td {
    padding: 10px 16px 10px 10px;
}

@media print, screen and (min-width: 768px) {
    .ws-dataTable_head th, .ws-dataTable_head td {
        padding-top: 16px;
        padding-right: 20px;
        padding-bottom: 16px;
    }
}


.ws-dataTable_head th:not(:first-child), .ws-dataTable_head td:not(:first-child) {
    padding-left: 12px;
}

@media print, screen and (min-width: 768px) {
    .ws-dataTable_head th:not(:first-child), .ws-dataTable_head td:not(:first-child) {
        padding-left: 20px;
    }
}

.ws-dataTable th, .ws-dataTable td {
    text-align: left;
    line-height: 1.6;
}


.ws-dataTable_body th, .ws-dataTable_body td {
    padding: 16px 16px 16px 10px;
    border-bottom: 2px solid #f0f0ee;
}

@media print, screen and (min-width: 768px) {
    .ws-dataTable_body th, .ws-dataTable_body td {
        padding-top: 24px;
        padding-right: 20px;
        padding-bottom: 24px;
    }
}

.ws-scrollableTable .ws-dataTable_body th {
    min-width: 160px;
}

@media print, screen and (min-width: 768px) {
    .ws-scrollableTable .ws-dataTable_body th {
        min-width: 224px;
    }
}

.ws-dataTable_body td:not(:first-child) {
    position: relative;
}

.ws-dataTable_body td:not(:first-child):before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 2px;
    height: 1.6em;
    background: #f0f0ee;
}


.message_ceo_message .wp-block-heading {
    font-weight: bold;
    line-height: 1.6;
}

.message_ceo_message .wp-block-heading {
    position: relative;
    margin: 0 0 24px;
    padding: 0 0 13px;
    font-size: 18px;
    font-size: 1.8rem;
}

@media print, screen and (min-width: 768px) {
    .message_ceo_message .wp-block-heading {
        margin-bottom: 28px;
        padding-bottom: 18px;
        font-size: 2.8rem;
    }
}

.message_ceo_message .wp-block-heading:after {
    content: "";
    display: block;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    margin: auto;
    border-radius: 4px;
    width: 40px;
    height: 4px;
    background: #BE8B4C;
}

@media print, screen and (min-width: 768px) {
    .message_ceo_message .wp-block-heading:after {
        width: 50px;
    }
}

.btn-outline {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding: 0.6em 2.4em;
    border-radius: 50px;
    min-width: 206px;
    max-width: 100%;
    height: 100%;
    -webkit-transition: background-color 0.1s 0.15s cubic-bezier(0.23, 1, 0.58, 1);
    transition: background-color 0.1s 0.15s cubic-bezier(0.23, 1, 0.58, 1);
    background: #fff;
    vertical-align: middle;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

/**/
.animal {
    margin-right: auto;
    margin-left: auto;
    padding-right: 30px;
    padding-left: 30px;
    max-width: 1040px;
    width: 80.33%;
    padding-top: 60px;
    padding-bottom: 60px;
}

.animal_lead {
    letter-spacing: 0.2em;
    line-height: 2.33;
    font-weight: bold;
    text-align: center;

}

.speech-bubble {
    position: relative;
    background: #fff;
    border: 2px solid #000;
    border-radius: 10px;
    padding: 1.2em 1.5em;
    margin: 2em auto;
    max-width: 600px;
    font-size: 1.5em;
    font-weight: bold;
    color: #000;
    text-align: center;
    box-shadow: 4px 4px 0 #000;

}

.speech-bubble p {
    text-align: center;
}

.speech-bubble::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 40px;
    border: 10px solid transparent;
    border-top-color: #fff;
    z-index: 1;
}

.speech-bubble::before {
    content: "";
    position: absolute;
    bottom: -22px;
    left: 38px;
    border: 11px solid transparent;
    border-top-color: #000;
    z-index: 0;
}


.animal__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 35px;
}

.animal__item {
    -ms-flex-preferred-size: 46.94%;
    flex-basis: 46.94%;
    margin-top: 50px;
    padding: 40px 4.08% 50px;
    border-radius: 15px;
    background-color: #fff;
}

.animal__item:first-of-type, .animal__item:nth-of-type(2) {
    margin-top: 0;
}


.animal__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: 6px;
    height: 96px;
    border-bottom: 2px dotted #473933;
}

.animal__title {
    font-size: 2.2rem;
    letter-spacing: 0.2em;
    font-family: irohamaru, sans-serif;
    text-align: center;
}

.animal__img {
    margin-top: 30px;
}

.animal__img img {
    display: block;
    margin-right: auto;
    margin-left: auto;
    width: 57.22%;
}

.animal__text {
    margin-top: 15px;
    letter-spacing: 0.2em;
}

@media print, screen and (max-width: 767px) {
    .animal {

        width: 100%;

    }

    .animal__title {
        font-size: 1.5rem;
    }

    .animal_lead {
        width: 90%;
        margin: 20px auto;
    }

}

@media print, screen and (max-width: 500px) {
    .animal__wrapper {
        display: block;

    }

    .animal__item {
        margin-bottom: 20px;
    }

}


/**/
.bord__container {
    margin: 50px auto;
    padding: 0 30px;
    max-width: 1040px;
}

.bordBox__top__card-title {
    margin-bottom: 38px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #63564F;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.25em;
    text-align: center;
}

.bordBox__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: top;
    margin-bottom: 56px;
}

.bordBox__top-img {
    -ms-flex-preferred-size: 300px;
    flex-basis: 300px;
    margin-right: 50px;
}

.bordBox__top-text {
    max-width: 560px;
    letter-spacing: 0.1em;
    line-height: 1.875;
}

.bordBox__top__card {
    margin-bottom: 138px;
    padding: 58px 9.3% 56px;
    border-radius: 10px;
    background-color: #fff;
}

.bordBox__top__special-case-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 42px;
}

.bordBox__top__special-case {
    position: relative;
    margin-right: 4%;
    padding: 60px 4.2% 40px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #BE8B4C;
    width: 50%;
}

.bordBox__top__special-case-balloon {
    position: absolute;
    top: -24px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 190px;

}

.bordBox__top__special-case-title {
    padding-bottom: 14px;
    border-bottom: 1px dashed #63564F;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.25em;
    text-align: center;
}

.bordBox__top__special-case-text {
    padding-top: 26px;
    font-size: 1.5rem;
    line-height: 1.86;
    letter-spacing: 0.1em;
}


@media (max-width: 767px) {
    .bord__container {
        padding-right: 30px;
        padding-left: 30px;
    }

    .bordBox__top__card-title {
        margin-bottom: 28px;
        font-size: 1.6rem;
    }

    .bordBox__top__special-case-title {
        font-size: 1.5rem;
    }

    .bordBox__top {
        display: block;


    }

    .bordBox__top__special-case-wrapper {
        display: block;


    }

    .bordBox__top__card {
        padding: 0;


    }

    .bordBox__top__special-case {
        margin-bottom: 40px;
        margin-right: 0;
        width: 100%;
    }
}

/**/
.media-flow {
    position: relative;
    background: #f0f0ee;
    padding: 50px 6.63% 65px;
    margin: 60px 0;
}

.media-flow__title {
    font-size: 2.2rem;
    font-family: irohamaru, sans-serif;
    line-height: 1.18;
    letter-spacing: 0.3em;
    text-align: center;
}

.media-flow__lead {
    margin-top: 20px;
    letter-spacing: 0.2em;
    text-align: center;
    line-height: 2.33;
}

.only-sp {
    display: none;
}

.only-s-pc {
    display: none;
}

.media-flow__item:first-of-type {
    margin-top: 55px;
}

.media-flow__item {
    display: flex;
    margin-top: 53px;
    width: 1100px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.media-flow__img {
    flex-basis: 36.47%;
    flex-shrink: 0;
    margin-right: 5.29%;
}
@media (min-width: 769px) {
    .media-flow__img {
        flex-basis: 33%;
    }
}

.media-flow__separation {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin-top: 10px;
}

.media-flow__separation::before {
    content: "";
    display: block;
    flex-basis: 100%;
    margin-right: 20px;
    border-bottom: 2px dotted rgb(71, 57, 51);
}

.media-flow__separation-text {
    flex-shrink: 0;
    margin-right: 15px;
    font-weight: bold;
    letter-spacing: 0.2em;
}


.media-flow__heading {
    font-size: 2.2rem;
    font-family: irohamaru, sans-serif;
    letter-spacing: 0.3em;
}

.media-flow__heading span {
    display: inline-block;
    margin-right: 1em;
    padding-left: 8px;
    width: 30px;
    height: 30px;
    color: rgb(255, 255, 255);
    background-color: rgb(71, 57, 51);
    font-size: 2rem;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
}

.media-flow__text {
    margin-top: 20px;
    letter-spacing: 0.12em;
}

.media-flow__sub-title {
    margin-top: 6px;
    letter-spacing: 0.2em;
    text-align: center;
}

.border_bottom {
    border-bottom: 1px solid #3A3A3A;
}

@media (max-width: 767px) {
    .media-flow {
        padding: 30px 20px 45px;
    }

    .media-flow__title {
        font-size: 1.6rem;
        line-height: 1.66;
    }

    .media-flow__lead {
        margin-top: 15px;
        line-height: 1.6;
    }

    .only-sp {
        display: block;
    }

    .only-s-pc {
        display: block;
    }

    .media-flow__item {
        display: block;

    }

    .media-flow__item:first-of-type {
        margin-top: 35px;
    }

    .media-flow__img {
        margin: 0;
    }

    .media-flow__heading {
        margin-top: 10px;
        font-size: 1.6rem;
    }

    .media-flow__heading span {
        width: 20px;
        height: 20px;
        line-height: 20px;
        font-size: 1.4rem;
        margin-right: 0.6em;
        padding-left: 4px;
    }

    .media-flow__text {
        margin-top: 10px;
        font-size: 1.3rem;
    }

}

.border-area {
    margin-top: 50px;
    padding: 22px 35px;
    width: 100%;
    border: 2px dotted currentColor;
    text-align: center;
    background-color: #fff;
}

.border-area-title {
    display: inline-block;
    padding-right: 0.2em;
    padding-left: 0.2em;
    border-bottom: 1px solid currentColor;
    font-size: 1.6rem;
    font-family: irohamaru, sans-serif;
    letter-spacing: 0.3em;
    margin-bottom: 20px;
}


.border-area-list {
    -moz-text-align: left;
    text-align: left;
    font-size: 1.4rem;
    letter-spacing: 0.12em;
}


/**/
.service__card {
    position: relative;
    margin-bottom: 74px;
    border-radius: 45px;
    padding: 50px 60px 40px 80px;
    color: #000;
    background-color: #fff;
    border: 1px solid #BE8B4C;
}

.service__card-content {

    margin-bottom: 42px;
}

.service__card-title {
    padding-bottom: 20px;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 0.25em;
    line-height: 1.9;
    border-bottom: 1px dashed #000;
}

.service__card-text {
    padding-top: 26px;
    letter-spacing: 0.1em;
    line-height: 1.875;
}

/**/


.flowchart__desc {
    position: relative;
    padding: 38px 72px 34px;
    border: 2px dotted #63564F;
    border-radius: 15px;
    max-width: 1200px;
    margin: 30px auto;

}


.flowchart__desc-title {
    margin-bottom: 32px;

    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.25em;
    text-align: center;
}

.flowchart__desc-list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 20px;
}

.flowchart__desc-list-icon {
    margin-right: 20px;
    width: 38px;
}

.flowchart__desc-list-item {
    padding-top: 2px;
    font-weight: bold;
    line-height: 2;
    letter-spacing: 0.25em;
}

.checkbox-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checkbox-list li {
    position: relative;
    padding-left: 2.5em;
    margin-bottom: 1em;

    color: #333;
}

.checkbox-list li::before {
    content: '';
    background: url(../img/icon_check.svg) no-repeat center center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 0;
    width: 1em;
    height: 100%;
}


/* ラベル共通デザイン */
.flowchart__desc-label {

    margin: 32px 0 16px;
    font-weight: bold;

}

@media screen and (max-width: 768px) {
    .bordBox__top__card-title,
    .bordBox__top,
    .service__card,
    .flowchart__desc {
        width: 90%;
        margin: 20px auto;
    }

    .service__card {
        padding: 30px 20px;
    }

    .flowchart__desc {
        padding: 30px 20px;
    }
}


/* スマホ対応 */
@media screen and (max-width: 600px) {
    .flowchart__desc-label {
        font-size: 1rem;
        padding: 8px 12px;
    }

}

.border-area-lists {
    margin-top: 15px;

}

.mb20 {
    margin-bottom: 20px;
}

.column-single-content a {
    color: #0000ee;
}

.contact-container {
    margin: 0 auto;
    padding: 0 30px;
    max-width: 1040px;
}

.contact-form__top-icon {
    margin: 0 auto 24px;
    width: 36px;
}

.contact-form__title {
    margin-bottom: 70px;
    color: #7F756E;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 0.3em;
    text-align: center;
}

.handwriting-underline {
    position: relative;
    white-space: nowrap;
}

.handwriting-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 2px;
    background-color: #c96;
}

.contact-form__lead {
    font-size: 1.5rem;
    line-height: 2.33;
    letter-spacing: 0.15em;
    text-align: center;
}

.contact-form form {
    margin: 70px auto 0;
    max-width: 640px;
}

.contact-form form .form-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 20px;
}

.contact-form form .form-head:first-of-type {
    margin-top: 0;
}

.wpcf7-list-item {
    display: block !important;
}

.contact-form form .form-title {
    margin-right: 14px;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.24em;
}

.contact-form form .form-needed {
    padding: 0 15px;
    border-radius: 30px;
    background-color: #BE8B4C;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 0.075em;
    line-height: 1.75;
}

.contact-form form .form-radio-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.contact-form form .form-radio-wrapper label {
    font-weight: bold;
    letter-spacing: 0.25em;
    cursor: pointer;
    font-size: 1.6rem;
}

.contact-form form .form-radio-wrapper > span {
    -ms-flex-preferred-size: 310px;
    flex-basis: 310px;
    display: block;
}


.contact-form form input[type=text], .contact-form form input[type=tel],
.contact-form form input[type=email], .contact-form form textarea {
    padding: 13px 18px;
    width: 100%;
    border: none;
    border-radius: 5px;
    background-color: #eee;
    font-size: 1.5rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}
.contact-form form .confirm .btn,
.contact-form form .confirm .btn p  {
    text-align: center;
}
.contact-form form .confirm .btn input {
    position: relative;
    margin: 60px auto 0;
    width: 300px;
    border: 2px solid #063150;

    border-radius: 30px;
    background-color: #063150;

    text-align: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;

    display: block;
}

.contact-form form .confirm input {
    padding: 16px 40px;
    width: 100%;
    border: none;
    background-color: transparent;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.16em;
    outline: none;
    text-align: center;
    cursor: pointer;
}
.contact-form form .confirm .wpcf7-spinner {
    margin-top: 20px;
}

@media (max-width: 767px) {
    .contact-container {
        padding: 0 16px;
    }

    .contact-form__top-icon {
        margin-bottom: 18px;
        width: 28px;
    }

    .contact-form__title {
        margin-bottom: 56px;
    }

    .contact-form__lead {
        font-size: 1.4rem;
        text-align: left;
    }

    .contact-form form {
        margin-top: 40px;
    }

    .contact-form form .form-head {
        margin-top: 25px;
        margin-bottom: 10px;
    }

    .contact-form form .form-radio-wrapper {
        display: block;
        margin-bottom: 0;
    }

    .contact-form form .form-2column {
        display: block;
    }


}

.column-single-container .bordBox__top__card {
    padding: 0;
    margin: 20px 0;
}

.column-single-meta,
.column-date {
    font-size: 1.4rem !important;
}

.column-container .border-area {
    margin: 20px 0;
}

.wp-block-quote > cite {

    font-size: 1.4rem;
}

.wp-block-quote {
    margin: 0;
}

.service-content .message_ceo_hero img {
    max-width: 100%;

}

.block-image {
    width: 200px;
}

.service-content .s-container,
.service-content .media-flow {
    background: #182b63;
}

.service-content .media-flow {
    background: #fff;
    color: #182b63;
}

.border-area {
    color: #000;
}

.service-content .s-container .s_header {
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 200, 255, 0.8);

}

.column-single-container h4 {
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
    margin-bottom: 1em;
    border-bottom: 1px solid #063150;
}

.fa-angle-down:before {
    content: "\f107";
    margin-left: 5px;
}

.ws-card_text {
    font-size: 14px;
}

.small-note {
    font-size: 11px;
}

.ws-card_text {
    line-height: 1.8;
}

.ws-card_text .label {
    display: inline-block;
    width: 6em;
    font-weight: bold;
    margin-left: -9px;
}

.small-note {
    font-size: 0.85em;
    color: #666;
}

@media (max-width: 767px) {
    .block-columns .block-column:first-child {
        margin-bottom: 20px;
    }
    .w-container{
        padding-top: 20px;
    }
    .w-pageHeader_title{
        padding-top: 20px;
    }

}



.staff_block-column {
    flex: 0 1 calc(50% - 1.5rem);
    max-width: 300px;
}
.staff_block-column .button_black {
    padding: 1%;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 769px) {
    .staff_block-column .button_black {
        max-width: 74%;
    }
}

@media (min-width: 769px) {
    .button_black {
        transition: background-color 0.3s ease;        
        border: 1px solid #aaa;
    }
    .button_black:hover {
        background: #fff;
    }
    .button_black:hover a {
        opacity: 1;        
        color: #000;        
    }
    .staff_block-column {
        max-width: 300px;
    }
    #gNav .sub-menu li {
        padding: 0;
    }
    #gNav .sub-menu li a {
        padding: 0.5em 1em;
    }
    #gNav .sub-menu li a:hover{
        background: #063150;
        color: #fff;        
        opacity: 1;
    }

    .office_tt {
        padding: 0;
        margin-top: 60px;
    }
    .office_tt .ws-section_heading-h2 {
        margin-bottom: 0;
    }
    .about_block01 .s-pageBodyInner {
        padding-top: 0;
    }

}


@media (max-width: 767px) {
    .office_tt {
        margin: 40px 0 0 0;
    }
    .office_tt .ws-section_heading-h2 {
        margin-bottom: 10px;
    } 
}

.ws-card_text th {
    white-space: nowrap;
    vertical-align: middle;
}
.ws-card_text th,
.ws-card_text td {
    padding: .2em 0;
}
td .small-note {
    display: inline-block;
}


ul ul {
    margin-left: 1em;
}
ul ul li {
    list-style-type: circle !important;
}



.page_title {
    text-align: center;
    font-size: 2em;
    color: #063150;
    font-weight: 500;
    margin:2em 0;
}
.page_title::after {
    content: "";
    display: block;
    border-bottom: 1px solid #063150;
    width: 3em;
    height: 1px;
    margin: 1em auto 0;
}
@media (max-width: 767px) {
    .page_title  {
        font-size: clamp(24px, calc(100vw * 32 / 767), 32px);    
        margin: 1.5em 0;
    }
}

.read_box {
    display: block;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}
.read_box p {
    margin: 1.5em 0;
}

.tt_reason {
    font-size: 2.4em;
    color: #fff;
}
@media (max-width: 767px) {
    .tt_reason {
        font-size: clamp(24px, calc(100vw * 32 / 767), 32px); 
    }
}

.tcenter {
    text-align: center;
}
.tcenter_pc {
    text-align: center;
}
@media (max-width: 767px) {
    .tcenter_pc {
        text-align: left;
    }
}

.worry__list.not01 {
    margin-bottom: 0;
}


.flowchart__desc.not_border {
    border: none;
}
.flowchart__desc-title.tt01 {
    font-size: 1.6em;
    line-height: 1.4;
}
@media (max-width: 767px) {
    .flowchart__desc-title.tt01 {
        font-size: 1.4em;
    }
}

.page-thanks .form {
  margin-top: 0;
  padding-top: my_clamp(70, 1360, 30);
}

.page-thanks p {
  line-height: 2;
  margin-bottom: 2em;
}

.page-thanks ._linkbtn {
  line-height: 1;
  font-weight: bold;
  background: #063150;
  color: #fff;
  border-radius: 100px;
  padding: .8em 0;
  display: block;
  border: none;
  transition: all 0.3s ease;
  text-align: center;
  width: calc(100% - 20px);
  max-width: 320px;
  font-size: 1.2em;
  border: 1px solid #063150;
}

.page-thanks ._linkbtn:hover,
.page-thanks ._linkbtn:active {
  background: #fff;
  color: #063150;
}

.page-thanks ._linkbtn._gray {
  background: #999;
  border: 1px solid #999;
}

.page-thanks ._linkbtn._gray:hover,
.page-thanks ._linkbtn._gray:active {
  background: #fff;
  color: #777;
}

.page-thanks ._logo {
  text-align: center;
}

.page-thanks ._links {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-thanks ._tm {
  font-size: 1.2em;
}

/* ===== SP ===== */
@media (max-width: 768px) {
  .page-thanks ._linkbtn {
  }

  .page-thanks ._links {
    flex-direction: column;
  }
}

.top_staff_block .staff_block-column:nth-child(2) .button_black {
	display: none;
}

.grecaptcha-badge { visibility: hidden; }

