/*
Theme Name: towa-kosan
Theme URI: http://example.com/samurai-university
Author: toyobijutsu-printing
Author URI: https://www.toyobijutsu-prt.co.jp/
Description: テスト作成しています
Version: 1.0
Requires at least: 5.7.0
Requires PHP: 7.4.0
Tags: two-columns, left-sidebar, right-sidebar
License: GNU General Public License
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;600;700&display=swap");

:root {
    --site-header-height: 80px;
}

.zen-kaku-gothic-new-medium {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 300;
    font-style: normal;
}
.zen-kaku-gothic-new-bold {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

/* 全体構成  */
html,
body {
    overflow-x: hidden;
    width: 100%;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
img,
svg,
video {
    max-width: 100%;
}
body {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-style: normal;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #FFFFFF;
}
body.no_scroll {
    overflow: hidden;
}
.reveal-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-item.is-revealed {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .reveal-item {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
.w300 { font-weight: 300; }
.w400 { font-weight: 400; }
.w700 { font-weight: 700; }
.w900 { font-weight: 900; }
a {
    text-decoration: none;
    color: #000000;
}
h3 {
    font-weight: 540;
}

main {
    width: calc(100vw - 100px);
    max-width: 1820px;
    padding: 20px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}
@media (max-width: 1100px) {
    main {
        min-width: 90%;
        max-width: 90%;
        padding: 20px;
        box-sizing: border-box;
    }
}

table {
    width: 100%;
}
td {
    padding: 2px;
    padding-left: 6px;
}

/* ヘッダー */

header {
    top: 0;
    min-height: 80px;
    height: auto;
    width: 100vw;
    position: fixed;
    z-index: 100000;
    background-color: #FFFFFF;
    display: flex;
    align-items: flex-start;
}
.index_header {
    top: 0;
    min-height: 80px;
    height: auto;
    width: 100vw;
    position: fixed;
    z-index: 100000;
    background: none;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: flex-start;
}
header.menu_open,
.index_header.menu_open {
    background-color: #FFFFFF;
}
.index_header.scrolled {
    background-color: #FFFFFF;
}
.header_main {
    width: calc(100vw - 100px);
    max-width: 1820px;
    height: auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding-top: 15px;
    padding-bottom: 10px;
}
.header_menu {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    height: auto;
}
.header_logo {
    max-width: 640px;
    display: flex;
    align-items: center;
    height: auto;
}
.header_logo1 {
    max-width: 250px;
    padding-right: 20px;
}
nav {
    display: flex;
    gap: 32px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    height: auto;
    align-items: center;
}

.nav_txt {
    padding-top: 8px;
    padding-bottom: 8px;
    line-height: 1.2;
}
.nav_txt:hover {
    color: #0095D7;
    border-bottom: 3px solid #0095D7;
}
.nav_txt.is-active {
    color: #0095D7;
    border-bottom: 3px solid #0095D7;
}
.nav_btn {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 16px;
    padding-right: 16px;
    border: 1px solid #0095D7;
    color: #0095D7;
    text-align: center;
    border-radius: 6px; 
    cursor: pointer; 
}
.nav_btn:hover {
    transition: all 0.5s;
    color: #FFFFFF;
    background-color: #0095D7;
}
.sns_menu {
    display: flex;
    align-items: center;
}
.sns_button {
    display: block;
    width: 24px;
    height: 24px;
    flex: 0 0 auto;
    margin-left: 20px;
}
.sns_button img {
    display: block;
    width: 100%;
    height: auto;
}


.hamburger {
    display: none;
}
.hamburger_menu {
    display: none;
}

/* --- 折り畳みメニュー --- */
.scr_a, .scr_b, .scr_c {
    position: fixed;
    pointer-events: none;
    top: var(--site-header-height);
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s ease, visibility 0.5s ease; /* アニメーション */
    padding-top: 5px;
    padding-bottom: 30px;
    border-bottom: 1px solid #dddddd;
    background-color: #FFFFFF;
    z-index: 5000;
}
.scr_a.active, .scr_b.active, .scr_c.active {
    display: block;
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
}

.header_container {
    width: calc(100vw - 100px);
    max-width: 1820px;
    padding: 0 54px;
    margin: 0 auto;
    margin-top: 20px;
    align-items: center;
}
.container_column {
    width: 100%;
    display: flex;
}

.container_column_left {
    width: 20%;
}

.menu_title {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.05em;
    margin-top: 15px;
    color: #000000;
}

.container_column_right {
    width: 80%;
}
.container_column_right h3 {
    line-height: 2.5;
    font-weight: 600;
    margin: 0;
    margin-top: 10px;
    padding-left: 2%;
}
.sub_container {
    width: 90%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.scr_a .container_column_left,
.scr_b .container_column_left,
.scr_c .container_column_left {
    display: none;
}
.scr_a .container_column_right,
.scr_b .container_column_right,
.scr_c .container_column_right {
    width: 100%;
}
.scr_a .container_column_right h3,
.scr_b .container_column_right h3,
.scr_c .container_column_right h3 {
    padding-left: 0;
}
.scr_b .container_column_right h3 {
    background-color: #eaf6fb;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 6px;
}
.scr_a .sub_container,
.scr_b .sub_container,
.scr_c .sub_container {
    width: 100%;
}
.scr_a .sub_container:first-of-type .container_menu_box:first-child,
.scr_b .sub_container:first-of-type .container_menu_box:first-child,
.scr_c .sub_container:first-of-type .container_menu_box:first-child {
    grid-column: 1 / -1;
    width: 100%;
}
.scr_b .sub_container:first-of-type .container_menu_box:last-child {
    border-bottom: none;
}

.container_menu_box {
    width: 90%;
    border-bottom: 1px solid #CCD9D4;
    margin: 0 auto;
}

.menu_text {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-weight: 500;
}
.menu_text:hover {
    color: #0095D7;
    cursor: pointer;
}

.blur_bg.active {
    position: fixed;
    z-index: 4000;
    top: 0%;
    width: 100%;
    height: 100%;
    background: transparent;
    background-color: rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(30px);
}

.menu_close {
    position: relative;
    display: inline-block;
    opacity: 1 !important;
    top: 10px;
    height: 36px;
    width: 36px;
    transition: background-color 0.25s ease-in-out !important;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1;
}
.menu_close:not(:hover)::before, .menu_close:not(:hover)::after {
    background: #5C7364;
}
.menu_close::before {
    rotate: 45deg;
    background: #0095D7;
}
.menu_close::after {
    rotate: -45deg;
    background: #0095D7;
}
.menu_close::before, .menu_close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 34px;
    height: 2px;
    border-radius: 2px;
    transition: background-color 0.25s ease-in-out !important;
}
.header_menu_right {
    display: flex;
}

/* --- SP版 --- */
@media (max-width: 1100px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }
    .header_main {
        width: 100%;
        max-width: 100%;
        padding: 20px;
    }
    .header_menu {
        width: 100%;
    }
    .header_logo {
        width: auto;
        max-width: 240px;
    }
    .header_logo1 {
        max-width: 220px;
        height: auto;
    }
    .nav_menu {
        display: none;
    }
    .sns_menu {
        display: none;
    }
    .hamburger {
        display: flex;
        margin-left: auto;
        cursor: pointer;
        z-index: 100000;
        flex: 0 0 auto;
        position: relative;
        right: 1%;
    }
    .hamburger img {
        width: 40px;
        height: 40px;
        filter: grayscale(1) opacity(70%);
    }
    .hamburger img:hover {
        filter: grayscale(0);
    }

    .hamburger_menu {
        visibility: hidden;
        opacity: 0;
        position: fixed;
        display: block;
        transform: translateY(-20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
        pointer-events: none;
    }
    .hamburger_menu.active {
        visibility: visible;
        opacity: 1;
        top: var(--site-header-height);
        left: 0px;
        width: 100%;
        background-color: #ffffff;
        z-index: 10000;
        transform: translateY(0);
        pointer-events: auto;
    }
    .hbg_a {
        border-top: 1px solid #B8A196;
    }
    .hbg_a, .hbg_b, .hbg_c, .hbg_d, .hbg_e, .hbg_f, .hbg_item {
        width: 100%;
        align-content: center;
        padding: 8px;
        font-size: 16px;
        background-color: #ffffff;
        padding-left: 16px;
        border-bottom: 1px solid #B8A196;
        cursor: pointer;
        font-weight: 600;
    }
    .hbg_f {
        display: flex;
    }
    .sns_button {
        margin: 10px;
    }
    .hbg_item {
        font-size: 15px;
        font-weight: 400;
        padding-left: 32px;
        border-bottom: 1px solid #E4D6CF;
    }
    .hgb_not {
        width: 100%;
        height: 32px;
        align-content: center;
        padding: 4px;
        font-size: 13px;
        background-color: #ffffff;
        border-bottom: 1px solid #E4D6CF;
        cursor: pointer;
        font-weight: 600;
        padding-left: 32px;
        color: #6B6B6B;
    }
    .hbg_a:hover, .hbg_b:hover, .hbg_c:hover, .hbg_d:hover, .hbg_e:hover, .hbg_item:hover {
        color: #ffffff;
        background-color: #0095D7;
        border-bottom: 1px solid #0095D7;
    }
    .hbg_ctn_a, .hbg_ctn_b, .hbg_ctn_c {
        display: none;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
    }
    .hbg_ctn_a.active, .hbg_ctn_b.active, .hbg_ctn_c.active {
        display: block;
        position: relative;
        visibility: visible;
        opacity: 1;        
        width: 100%;
        padding: 0;
        cursor: pointer;
        pointer-events: auto;
    }
    .hgb_not {
        background-color: #eaf6fb;
        color: #2f6f86;
        border-bottom: 1px solid #cde6f2;
    }
}
@media (max-width: 767px) {
    .header_logo {
        max-width: 200px;
    }
    .header_logo1 {
        max-width: 180px;
    }
    .hamburger img {
        width: 34px;
        height: 34px;
    }
}

/* トップページ */
.index_header_column {
    width: min(100%, 1400px);
    max-width: 1400px;
    margin: 0 auto clamp(40px, 4vw, 56px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: auto;
    border-left: 8px solid #0095D7;
    align-items: flex-start;
}
.index_header_box1 {
    width: auto;
    margin-bottom: 0px;
    padding: 0px;
    padding-left: 20px;
}
.index_header_box2 {
    width: min(100%, 1400px);
    max-width: 1400px;
    margin: 0 auto clamp(40px, 4vw, 56px);
    height: auto;
    border-left: 8px solid #0095D7;
    padding: 0px;
    padding-left: 20px;
}
.index_header_h2 {
    font-size: 36px;
    font-weight: 600;
    color: #0095D7;
    margin: 0px;
    padding: 0px;
    position: relative;
    line-height: 1.15;
}
.index_header_h3 {
    font-size: 18px;
    font-weight: 500;
    margin: 0px;
    padding: 0px;
    position: relative;
    white-space: nowrap;
    line-height: 1.4;
}
.index_header_box3 {
    width: auto;
    height: auto;
    border-left: 2px solid #0095D7;
    padding-left: 20px;
    font-size: 16px;
    align-content: flex-start;
    line-height: 1.75;
    margin-top: 0px;
}
@media (max-width: 1100px) {
    .index_header_column {
        width: 90%;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        height: auto;
        display: block;
        margin-bottom: 6vh;
        border-left: none;
        padding-bottom: 24px;
    }
    .index_header_box1 {
        width: 100%;
        height: auto;
        margin-bottom: 0vh;
        border-left: 2vw solid #0095D7;
        padding-left: 2vw;
    }
    .index_header_box2 {
        margin-bottom: 0vh;
        height: auto;
        padding-left: 2vw;
        padding-bottom: 16px;
        border-left: 2vw solid #0095D7;
    }
    .index_header_h2 {
        font-size: 30px;
    }
    .index_header_h3 {
        font-size: 16px;
        padding-top: 7px;
    }
    .index_header_box3 {
        width: 100%;
        margin-top: 5vw;
        padding-left: 2vw;
        font-size: clamp(14px, 1.6vw, 16px);
        line-height: 1.7;
        border-left: none;
    }
}
.index_1st {
    height: 100vh;
    min-height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.index_1st_front {
    position: relative;
    overflow: hidden;
    left: 0px;
    top: 0px;
    height: 100%;
    min-height: 100vh;
    width: 100%;
}
.index_1st_front video {
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    z-index: 10;
    object-fit: cover;
} 
.index_1st_p {
    width: 100%;
}
.index_1st_p1 {
    position: absolute;
    top: 60vh;
    left: 56px;
    padding: 8px 16px;
    margin: 0px;
    letter-spacing: 0.03em;
    font-size: 40px;
    line-height: 1.45;
    font-weight: 600;
    font-family: "Zen Kaku Gothic New", sans-serif;
    background-color: #ffffff;
    z-index: 100;
}
.index_1st_p2 {
    position: absolute;
    top: 72vh;
    left: 56px;
    padding: 8px 16px;
    margin: 0px;
    letter-spacing: 0.03em;
    font-size: 36px;
    line-height: 1.45;
    font-weight: 600;
    font-family: "Zen Kaku Gothic New", sans-serif;
    background-color: #ffffff;
    z-index: 100;
}
.index_1st_p3 {
    font-size: 44px;
    color: #0095D7;
}
.index_1st_char {
    display: inline-block;
    opacity: 0;
    transform: translateY(8px);
    animation: index_title_char_in 0.6s ease forwards;
}
.index_2nd_char {
    display: inline-block;
    opacity: 0;
    transform: translateY(8px);
}
.index_2nd_char.animate {
    animation: index_title_char_in 0.6s ease forwards;
}
@keyframes index_title_char_in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.index_1st_back {
    height: 100%;
    min-height: 100vh;
}
.index_2nd {
    min-height: 640px;
    padding: clamp(72px, 6vw, 96px) 0 clamp(56px, 5vw, 80px);
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: clamp(24px, 4vw, 80px);
    justify-content: space-between;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.index_2nd_text {
    font-weight: 600;
    font-size: 24px;
    line-height: 1.9;
    max-width: 760px;
    margin: 32px 0 48px;
    letter-spacing: 0.02em;
    position: relative;
    flex: 0 1 760px;
}
.index_2nd_text_a {
    color:#0095D7;
}
.index_2nd_image {
    width: min(504px, 36vw);
    position: relative;
    height: 684px;
    margin: 16px -20px 0 auto;
    flex: 0 0 auto;
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.22, 1, .36, 1);
    will-change: opacity, transform;  
}
.index_2nd_image.is-inview {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .index_2nd_image {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
.index_2nd_image1 {
    width: 450px;
    height: 450px;
    right: 0;
    top: 0;
    object-fit: cover;
    border-radius: 50%;
    position: absolute;
    z-index: 2;
}
.index_2nd_image2 {
    width: clamp(171px, 14.4vw, 313.2px);
    height: clamp(171px, 14.4vw, 313.2px);
    right: 550px;
    top: 300px;
    object-fit: cover;
    border-radius: 50%;
    position: absolute;
    z-index: 3;
}
.index_2nd_image3 {
    width: clamp(189px, 16.2vw, 350.1px);
    height: clamp(189px, 16.2vw, 350.1px);
    right: 1100px;
    top: 360px;
    object-fit: cover;
    border-radius: 50%;
    position: absolute;
}
@media (min-width: 1600px) {
    .index_2nd_text {
        font-size: 26px;
        line-height: 1.9;
    }
}
@media (max-width: 1899px) and (min-width: 1100px) {
    .index_2nd_image {
        width: clamp(324px, 26.28vw, 504px);
        height: clamp(468px, 37.8vw, 684px);
        margin: 16px -10px 0 auto;
    }
    .index_2nd_image1 {
        width: clamp(252px, 23.4vw, 450px);
        height: clamp(252px, 23.4vw, 450px);
        right: 0;
        top: 0;
    }
    .index_2nd_image2 {
        width: clamp(180px, 16.38vw, 313.2px);
        height: clamp(180px, 16.38vw, 313.2px);
        right: clamp(270px, 25.83vw, 495px);
        top: clamp(234px, 15.3vw, 270px);
    }
    .index_2nd_image3 {
        width: clamp(198px, 18.27vw, 350.1px);
        height: clamp(198px, 18.27vw, 350.1px);
        right: clamp(540px, 51.57vw, 990px);
        top: clamp(288px, 17.1vw, 324px);
    }
}
@media (max-width: 1248px) and (min-width: 1101px) {
    .index_2nd_text {
        font-size: 22px;
        line-height: 1.9;
    }
}
@media (min-width: 1900px) and (min-height: 1000px) {
    .index_2nd_image {
        height: 760px;
    }
    .index_2nd_image1 {
        width: 500px;
        height: 500px;
    }
    .index_2nd_image2 {
        width: 348px;
        height: 348px;
        right: 550px;
        top: 300px;
        transform: none;
    }
    .index_2nd_image3 {
        width: 389px;
        height: 389px;
        right: 1100px;
        top: 360px;
        transform: none;
    }
}
.index_3rd {
    min-height: 980px;
    padding: clamp(72px, 6vw, 96px) 0;
    width: 100%;
}
.index_3rd_column {
    width: min(100%, 1400px);
    max-width: 1400px;
    display: flex;
    overflow: hidden;
    justify-content: center;
    position: relative;
    top: 0%;
    margin-left: auto;
    margin-right: auto;
}
.index_3rd_left {
    width: 50%;
    align-content: center;
}
.index_3rd_left_image {
    width: 86%;
    margin: 0 auto;
}
.index_3rd_right {
    width: 50%;
    min-height: 520px;
    position: relative;
}
.index_3rd_outer {
    width: 100%;
    min-height: 520px;
    display: flex;
    overflow: hidden;
    justify-content: center;
    position: relative;
}
.index_3rd_inner {
    max-height: 520px;
    overflow-y: auto;
    padding-right: 8px;
}
.index_3rd_row {
    width: 100%;
    height: 320px;
    display: flex;
    margin-bottom: 32px;
    padding: 16px;
    gap: 16px;
    background-color: #ffffff;
    border: 1px solid #d9e3e0;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
    align-items: center;
}
.index_3rd_inner {
    scroll-snap-type: y mandatory;
    scroll-padding-top: 16px;
}
.index_3rd_row {
    scroll-snap-align: start;
}
.index_3rd_row:first-child {
    margin-top: 24px;
}
.index_3rd_row:last-child {
    margin-bottom: 64px;
}
.index_3rd_column1 {
    width: 35%;
    height: 100%;
    align-content: center;
    text-align: center;
}
.index_3rd_right_image {
    width: 68%;
    margin: 0 auto;
    justify-self: center;
}
.index_3rd_column2 {
    width: 65%;
    height: 100%;
    align-content: center;
}
.index_3rd_text1 {
    color: #0095D7;
    font-size: 18px;
    margin-top: 0px;
    margin-bottom: 2px;
    letter-spacing: 0.03em;
}
.index_3rd_text2 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 2px;
    letter-spacing: 0.02em;
}
.index_3rd_text3 {
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.65;
}
.index_4th {
    min-height: 0;
    max-height: none;
    width: 100%;
    padding: clamp(72px, 6vw, 96px) 0;
}
.index_4th_column {
    width: min(100%, 1400px);
    top: 0px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    display: flex;
    gap: 24px;
}
.index_4th_unit {
    width: 33.3%;
    margin: 0px;
    position: relative;
    text-align: center;
    z-index: 0;
    overflow: hidden;
}
.index_4th_unit1 {
    height: 28vw;
    overflow: hidden;
}
.index_4th_image {
    width: 100%;
    height: 100%; 
    object-fit: cover;
    object-position: top;
    z-index: -1;
    transition: transform 1s;
}
.index_4th_unit:hover .index_4th_image {
    cursor: pointer;
    transform: scale(1.3);
}
.index_4th_text {
    width: 100%;
    height: 80px;
    font-size: 20px;
    align-content: center;
    background-color: #DCDCDC;
}
.index_4th_unit:hover .index_4th_text {
    cursor: pointer;
    color: #ffffff;
    transition: all 0.5s;
    background-color: #0095D7;
}
.index_5th {
    height: auto;
    width: 100%;
    position: relative;
    padding: clamp(72px, 6vw, 96px) 0;
}
@media (min-width: 1101px) {
    .index_5th {
        height: auto;
    }
}
.index_5th_box {
    width: min(100%, 1400px);
    margin-left: auto;
    margin-right: auto;
    place-items: center;
    border-bottom: 1px solid #707070;
}
.index_5th_low {
    width: 100%;
    height: 100%;
    border-top: 1px solid #707070;
}
.index_5th_unit {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 140px 100px 1fr;
    column-gap: 16px;
    padding-left: 20px;
    padding-top: 8px;
    padding-bottom: 8px;
    align-items: center;
    font-size: 16px;
    box-sizing: border-box;
}
.index_5th_unit0 {
    display: contents;
}
.index_5th_unit1 {
    width: auto;
    font-weight: 600;
    align-content: center;
    white-space: nowrap;
}
.index_5th_unit2 {
    width: auto;
    margin: 0;
    height: auto;
    padding: 2px 10px;
    line-height: 1.4;
    font-weight: 600;
    text-align: center;
    border: 1px solid #0095D7;
    color:#0095D7;
    white-space: nowrap;
}
.index_5th_unit3_a {
    color:#000000;
}
.index_5th_unit3_a:hover {
    color:#0095D7;
}
.index_5th_unit3 {
    width: auto;
    text-align: left;
    vertical-align: top;
    display: flex;
    margin: 0;
    flex: 1;
    min-width: 0;
}
.index_5th_viewall {
    display: flex;
    width: min(100%, 1400px);
    max-width: 1400px;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin: 48px auto 0;
    padding-top: 16px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.index_5th_viewall.went {
    opacity: 1;
    transform: translateY(0);
}
.index_5th_viewall:hover {
    cursor: pointer;
}
.index_5th_viewall2 {
    display: none;
}
.index_5th_text {
    padding-right: 8px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-right: 12px;
    color: #0095D7;
}
.index_5th_viewall:hover .index_5th_text {
    transition: all 0.5s;
    color: #195671;
}
.index_5th_arrow {
    width: 72px;
    height: 16px;
    background-color: #0095D7;
    clip-path: polygon(0 75%, 75% 75%, 75% 0%, 100% 100%, 0% 100%);
}
.index_5th_viewall:hover .index_5th_arrow {
    transition: all 0.5s;
    background-color: #195671;
}
.index_5th_va_sp {
    display: none;
}
@media (max-width: 1100px) {
    .index_1st {
        height: 100vh;
        min-height: 100vh;
        width: 100vw;
    }
    .index_1st_front {
        height: 100%;
        min-height: 100vh;
    }
    .index_1st_front video {
        min-width: 100vw;
        min-height: 100vh;
        object-fit: cover;
    }
    .index_1st_back {
        height: 100%;
        min-height: 100vh;
    }
    .index_header_box3 {
        font-size: 15px;
        line-height: 1.7;
        margin-top: 16px;
    }
    .index_1st_p {
        width: 95%;
        margin: 0 auto;
    }
    .index_1st_p1 {
        position: absolute;
        top: 58vh;
        left: 32px;
        padding: 7px 12px;
        letter-spacing: 0.04em;
        font-size: 30px;
        line-height: 1.4;
    }
    .index_1st_p2 {
        position: absolute;
        top: 68vh;
        left: 32px;
        padding: 7px 12px;
        letter-spacing: 0.04em;
        font-size: 28px;
        line-height: 1.4;
    }
    .index_1st_p3 {
        font-size: 34px;
    }
    .index_2nd {
        min-height: 560px;
        padding: 72px 0;
        margin-top: 16px;
        width: 100%;
        display: block;
    }
    .index_2nd_text {
        font-size: 20px;
        left: 0;
        line-height: 1.9;
        width: 90%;
        max-width: 680px;
        margin: 28px auto 40px;
        letter-spacing: 0.02em;
    }
    .index_2nd_image {
        width: min(468px, 81%);
        height: 324px;
        margin: 24px auto 0;
    }
    .index_2nd_image1 {
        width: clamp(189px, 27vw, 234px);
        height: clamp(189px, 27vw, 234px);
        right: 0;
        top: 0;
    }
    .index_2nd_image2 {
        width: clamp(153px, 21.6vw, 189px);
        height: clamp(153px, 21.6vw, 189px);
        right: 10%;
        bottom: 6%;
    }
    .index_2nd_image3 {
        width: clamp(135px, 18.9vw, 171px);
        height: clamp(135px, 18.9vw, 171px);
        left: 2%;
        top: 42%;
    }
    .index_3rd {
        min-height: 0;
        padding: 72px 0;
    }
    .index_3rd_column {
        width: 100%;
        display: block;
        top: 0;
        margin-top: 24px;
    }
    .index_3rd_left {
        width: 85%;
        margin: 0 auto;
        margin-bottom: 40px;
        align-content: center;
    }
    .index_3rd_left_image {
        width: 100%;
    }
    .index_3rd_right {
        width: 95%;
        margin: 0 auto;
        height: auto;
        position: relative;
    }
    .index_3rd_outer {
        height: auto;
        overflow: visible;
    }
    .index_3rd_row {
        width: 100%;
        height: auto;
        display: flex;
        margin-bottom: 20px;
        padding: 16px;
        gap: 16px;
        background-color: #ffffff;
        border: 1px solid #d9e3e0;
        border-radius: 12px;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
        box-sizing: border-box;
        position: static;
        inset: auto;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        align-items: center;
    }
    .index_3rd_inner {
        height: auto;
        max-height: none;
        overflow: visible;
        position: static;
    }
    .index_3rd_column1 {
        width: 28%;
    }
    .index_3rd_column2 {
        width: 72%;
        padding-right: 24px;
    }
    .index_3rd_text1 {
        color: #0095D7;
        font-size: 16px;
    }
    .index_3rd_text2 {
        font-size: 22px;
    }
    .index_3rd_text3 {
        font-size: 14px;
        line-height: 1.6;
    }
    .index_4th {
        height: auto;
        padding: 72px 0;
    }
    .index_4th_column {
        display: flex;
        top: 0;
        margin-top: 24px;
        gap: 16px;
    }
    .index_4th_unit {
        width: 33.333%;
        margin: 0;
    }
    .index_4th_unit1 {
        height: 220px;
        overflow: hidden;
    }
    .index_4th_text {
        height: 48px;
        font-size: 16px;
    }
    .index_5th {
        height: auto;
        padding: 72px 0;
    }
    .index_5th_unit {
        width: 100%;
        font-size: 14px;
        display: grid;
        grid-template-columns: 120px 90px 1fr;
        column-gap: 12px;
        padding-left: 2vw;
    }
    .index_5th_unit0 {
        display: contents;
    }
    .index_5th_unit1 {
        width: auto;
        white-space: nowrap;
    }
    .index_5th_unit2 {
        width: auto;
        margin: 0;
        height: auto;
        padding: 2px 8px;
        font-weight: 600;
        text-align: center;
        border: 1px solid #0095D7;
        color:#0095D7;
        white-space: nowrap;
    }
    .index_5th_unit3 {
        width: auto;
        text-align: left;
        overflow: visible;
        white-space: normal;
        text-overflow: clip;
        margin: 0;
        flex: 1;
        min-width: 0;
        line-height: 1.6;
    }
    .index_5th_va_sp {
        display: none;
    }
    .index_5th_viewall2 {
        display: none;
    }
    .index_5th_text {
        padding-right: 0px;
        font-size: 16px;
        letter-spacing: 0.5px;
        margin-right: 12px;
        color: #0095D7;
    }
    .index_5th_arrow {
        width: 64px;
        height: 14px;
        background-color: #0095D7;
        clip-path: polygon(0 75%, 75% 75%, 75% 0%, 100% 100%, 0% 100%);
    }
}
@media (max-width: 767px) {
    .index_1st {
        height: 100vh;
        min-height: 100vh;
    }
    .index_1st_front {
        min-height: 100vh;
    }
    .index_1st_front video {
        min-height: 100vh;
    }
    .index_1st_back {
        height: 100%;
        min-height: 100vh;
    }
    .index_header_box2 {
        padding-left: 12px;
        padding-bottom: 12px;
        border-left: 12px solid #0095D7;
    }
    .index_header_h2 {
        font-size: 22px;
    }
    .index_header_h3 {
        font-size: 14px;
    }
    .index_4th_column {
        display: block;
        gap: 0;
    }
    .index_4th_unit {
        width: 100%;
        margin: 0 auto 6vw;
    }
    .index_3rd_row {
        padding: 12px;
        gap: 12px;
        margin-bottom: 16px;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    }
    .index_3rd_column1 {
        width: 100%;
    }
    .index_3rd_column2 {
        padding-left: 0;
    }
    .index_3rd_column2 {
        padding-left: 8px;
    }
    .index_3rd_right_image {
        width: 56%;
    }
    .index_3rd_text1 {
        margin-bottom: 4px;
    }
    .index_3rd_text2 {
        margin-bottom: 4px;
    }
    .index_3rd_text3 {
        margin-top: 6px;
    }
    .index_1st_p1 {
        top: 54vh;
        left: 16px;
        padding: 6px 10px;
        letter-spacing: 0.03em;
        font-size: 22px;
        line-height: 1.4;
    }
    .index_1st_p2 {
        top: 63vh;
        left: 16px;
        padding: 6px 10px;
        letter-spacing: 0.03em;
        font-size: 20px;
        line-height: 1.4;
    }
    .index_1st_p3 {
        font-size: 24px;
    }
    .index_2nd {
        min-height: 480px;
        padding: 56px 0;
    }
    .index_3rd {
        padding: 56px 0;
    }
    .index_4th {
        padding: 56px 0;
    }
    .index_5th {
        padding: 56px 0;
    }
    .index_2nd_text {
        font-size: 15px;
        line-height: 1.95;
        width: 90%;
        max-width: 90%;
        margin: 24px 0 32px;
        letter-spacing: 0.01em;
    }
    .index_2nd_image {
        width: min(378px, 82.8%);
        height: 270px;
        margin: 20px auto 0;
    }
    .index_2nd_image1 {
        width: clamp(162px, 37.8vw, 198px);
        height: clamp(162px, 37.8vw, 198px);
        right: -12%;
        top: -5%;
    }
    .index_2nd_image2 {
        width: clamp(126px, 28.8vw, 153px);
        height: clamp(126px, 28.8vw, 153px);
        right: 8%;
        top: 80%;
    }
    .index_2nd_image3 {
        width: clamp(108px, 25.2vw, 135px);
        height: clamp(108px, 25.2vw, 135px);
        left: -8%;
        top: 44%;
    }
    .index_2nd_image {
        margin: 20px auto 0;
    }
    .index_3rd {
        padding: 72px 0 96px;
    }
    .index_3rd_left {
        margin-bottom: 32px;
    }
    .index_3rd_left_image {
        width: 100%;
    }
    .index_3rd_row {
        flex-direction: column;
        height: auto;
        gap: 12px;
        margin-bottom: 28px;
    }
    .index_3rd_column {
        overflow: visible;
    }
    .index_3rd_right {
        width: 100%;
        overflow: visible;
    }
    .index_3rd_column2 {
        padding-left: 4px;
    }
    .index_3rd_column2 {
        order: 1;
    }
    .index_3rd_column1 {
        order: 2;
    }
    .index_3rd_column1,
    .index_3rd_column2 {
        width: auto;
        height: auto;
    }
    .index_3rd_right_image {
        width: 40%;
    }
    .index_3rd_text1 {
        font-size: 14px;
    }
    .index_3rd_text2 {
        font-size: 20px;
    }
    .index_3rd_text3 {
        font-size: 14px;
        line-height: 1.6;
    }
    .index_5th_unit {
        grid-template-columns: 110px 1fr;
        column-gap: 10px;
        font-size: 13px;
        padding-left: 12px;
    }
    .index_5th_unit2 {
        display: none;
    }
    .index_5th_unit3 {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        white-space: normal;
    }
}
.index_banner {
    display: none;
    position: fixed;
    width: 45px;
    height: 180px;
    bottom: 240px;
    right: 0px;
    background-color: #0095D7;
    z-index: 1000;
    cursor: pointer; 
    text-align: center;
    writing-mode: vertical-rl;
    line-height: 20px;
    padding: 10px;
    font-weight: 500;
}
.index_banner:hover {
    transition: all 1s;
    background-color: #195671;
}
.index_banner2 {
    color: #ffffff;
    letter-spacing: 4px;
    margin-right: 2px;
}
@media (max-width: 1100px) {
    .index_banner {
        display:none;
    }
}

/* 個別投稿ページ共通 */

.breadscrumbs_area {
    height: 100%;
}
.breadcrumbs {
    font-size: 12px;
    margin-top: 100px;
    margin-bottom: clamp(32px, 3vw, 48px);
    width: calc(100vw - 100px);
    max-width: 1820px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    box-sizing: border-box;
}
.breadcrumbs a {
    color: #000000;
}
.breadcrumbs a:hover {
    color: #0095D7;
}
.article_top {
    display: block;
    position: absolute;
    left: 50%;
    width: 100%;
    max-width: 100ch;
    transform: translateX(-50%);
    height: 270px;
    z-index: -1;
}
.article_title_zone {
    position: relative;
    height: 270px;
    display: flex;
    align-items: center;
    z-index: 1;
}
.article_title_zone_557 {
    position: relative;
    max-width: 100ch;
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}
.article_title_rot,
.article_title_rot_557 {
    position: absolute;
    left: 50px;
    z-index: 2;
}
.article_title_a {
    font-size: 36px;
    letter-spacing: 4px;
    z-index: 500;
    margin: 0px;
    color: #ffffff;
}
.article_title_b {
    font-size: 36px;
    letter-spacing: 4px;
    z-index: 500;
    margin: 0px;
    color: #000000;
}
.article_title_557 {
    font-size: 40px;
    letter-spacing: 4px;
    z-index: 500;
    margin: 0px;
    color: #000000;
}
.article_title_eng_a {
    font-size: 32px;
    letter-spacing: 4px;
    z-index: 600;
    color: #ffffff;
    margin: 0px;
}
.article_title_eng_b {
    font-size: 32px;
    letter-spacing: 4px;
    z-index: 600;
    color: #000000;
    margin: 0px;
}
.article_title_eng_557 {
    font-size: 25px;
    letter-spacing: 4px;
    z-index: 600;
    color: #0095D7;
    margin: 0px;
}

.article_title_img {
    width: 100%;
    height: 270px;
    margin-top: 0px;
    object-fit: cover;
}
.article_title_img_557 {
    width: 100%;
    height: 28vw;
    margin-top: 0px;
    margin-bottom: 30px;
    object-fit: cover;
    position: relative;
    z-index: 1;
}
@media (min-width: 1101px) {
    .article_title_zone,
    .article_title_img,
    .article_title_img_557 {
        height: auto;
    }
}

.article_top_back {
    display: block;
    position: relative;
    left: 0px;
    width: 100%;
    height: 285px;
    z-index: -2;
    background-color: #FFFFFF;
}
.top_block_column {
    width: 100%;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
@media (max-width: 1100px) {
    .wrapper {
        padding-top: var(--site-header-height);
    }
    .breadscrumbs_area {
        height: 80px;
    }
    .breadcrumbs {
        display: none;
    }
    .article_title_zone_557 {
        max-width: none;
        width: 100%;
    }
    .article_title_a,
    .article_title_b {
        font-size: clamp(22px, 3.4vw, 32px);
        letter-spacing: 2px;
    }
    .article_title_eng_a,
    .article_title_eng_b {
        font-size: clamp(16px, 2.8vw, 24px);
        letter-spacing: 2px;
    }
    .article_top,
    .article_title_zone,
    .article_title_img {
        height: clamp(170px, 20vw, 220px);
    }
    .article_title_img_557 {
        height: clamp(170px, 20vw, 220px);
        margin-bottom: 20px;
    }
}

/* PC用インタビューカラム */
.carrers_column {
    display: none;
}

.carrers_column_container {
    position: relative;
    margin-left: 25px;
    margin-right: 50px;
}
.carrers_column_container:hover .carrers_column_big_image {
    display: block;
}
.carrers_column_image {
    width: 200px;
    height: 240px;
    border: 2px solid #A08273;
    box-shadow: 6px 6px 2px #BBBBBB;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.carrers_column_image img {
    width: 200px;
    height: 240px;
}
.carrers_column_big_image {
    width: 250px;
    height: 300px;
    display: none;
    position: absolute;
    object-fit: cover;
    border: 2px solid #A08273;
    box-shadow: 6px 6px 2px #BBBBBB;
    margin-top: -300px;
    margin-left: -15px;
    z-index: 1000;
}
.carrers_column_big_image img {
    width: 250px;
    height: 300px;
}
.carrers_column_caption {
    position: absolute;
    margin-left: 40px;
    margin-top: -70px;
    width: 160px;
    height: 64px;
    color: #FFFFFF;
    background-color: #0095D7;
    opacity: 0.9;
}
.carrers_column_big_caption {
    position: absolute;
    margin-top: -40px;
    margin-left: 40px;
    width: 240px;
    height: 100px;
    color: #FFFFFF;
    background-color: #0095D7;
    opacity: 0.9;
    overflow: hidden;
    box-shadow: 8px 8px 2px #BBBBBB;
}
.carrers_column_name {
    margin: 2px;
    font-size: 20px;
}
.carrers_column_year {
    margin: 2px;
    font-size: 14px;
}



/* セクショントップ（B）・ブロックA */
.top_banner_block {
    width: 330px;
    height: 90px;
    margin: 30px;
    background: url(images/company_btnoff.png) 0 0 no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
    text-align: center;
    position: relative;
}
.top_banner_block:hover {
    background: url(images/company_btnon.png) 0 0 no-repeat;
    background-size: 100% 100%;
}
.top_banner_title {
    width: 100%;
    top: 19%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25px;
    font-weight: 600;
    color:#fff;
    position: absolute;
    z-index: 500;
    letter-spacing: 2px;
}
.top_banner_block:hover .top_banner_title {
    top: 24%;
}
.top_banner {
    width: 100%;
    height: 210px;
    filter: opacity(50%);
    object-fit: cover;
    border-radius: 10px;
}
.top_banner:hover {
    cursor: pointer;
    filter: opacity(90%);
    opacity: 0.3;
}

/* セクショントップ（B）・ブロックB */
.top_title {
    padding: 16px;
    font-size: 32px;
    letter-spacing: 0.1em;
    margin-top: 36px;
    padding-left: 2.7%;
    margin-bottom: 0px;
}

.top_banner_header {
    font-size: 2vw;
    font-weight: 600;
}
.top_icon_block {
    width: 330px;
    padding: 15px;
    align-content: center;
    justify-items: center;
}

.top_icon_back {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-align: center;
    transition: background-color 0.3s ease;
    cursor: pointer;
    z-index: 0;
    overflow: hidden;
}
.com_clip_img {
    transform-origin: center;
    width: 100%;
    height: 100%;
}
.top_icon_back:hover .com_clip_img {
    transform: scale(1.2);
    transition: transform 0.3s;
}
.com_clip_img_back {
    width: 100%;
    height: 100%;
}
.top_icon_back2 {
    display: block;
    width: 80%;
    position: relative;
    text-align: center;
    transition: background-color 0.3s ease;
    cursor: pointer;
    z-index: 0;
    overflow: hidden;
    font-size: 20px;
}
.top_icon_back2 img {
    width: 100%;
}
.top_category_icon {
    fill: #e4dfdb;
}
.top_category_title {
    top: 45%;
    left: 47.5%;
    width: 90%;
    margin: 0 auto;
    transform: translate(-50%, -50%);
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 4px;
    color:#0095D7;
    position: absolute;
    z-index: 500;
}
.top_icon_title {
    top: 45%;
    left: 50%;
    width: 90%;
    margin: 0 auto;
    transform: translate(-50%, -50%);
    font-size: 25px;
    letter-spacing: 4px;
    color:#fff;
    position: absolute;
    z-index: 500;
}
@media (max-width: 1100px) {
    .top_icon_title {
        font-size: 3vw;
    }
}
.top_icon_title2 {
    top: 50%;
    left: 50%;
    width: 90%;
    margin: 0 auto;
    transform: translate(-50%, -50%);
    font-size: 20px;
    letter-spacing: 4px;
    color:#fff;
    position: absolute;
    z-index: 500;
}
.top_icon {
    width: 335px;
    height: 335px;
    border-radius: 24px;
    filter: opacity(80%);
    object-fit: cover;
    transition: 0.6s ease;
    mix-blend-mode: multiply;
}
.top_icon_block:hover .top_icon {
    cursor: pointer;
    opacity: 0.3;
    transform: scale(1.3);
}
.top_link_space {
    height: 120px;
}

/* セクショントップ（B）・ブロックC1/C2/C3 */
.top_block_c1 {
    height: 100%;
    display: flex;
    justify-content: space-evenly;
}
.top_block_c2 {
    width: 220px;
    display: inline-flex;
    text-align: center;
    border-bottom: 4px solid #FFFFFF;
}
.top_block_c2:hover {
    border-bottom: 4px solid #0095D7;
}
.top_title_c2 {
    margin-top: 2px;
}
.top_thumbnail {
    width: 210px;
    height: 280px;
    margin-top: 20px;
    margin-bottom: 20px;
}
/* セクショントップ（B）（終）*/

/* 投稿ページ本文（C2）*/

/* テキストフィールド  */
.main_text {
    margin: 0 auto 30px;
    max-width: 100ch;
    font-family: "Zen Kaku Gothic New", sans-serif;
    line-height: 1.9;
    font-size: 16px;
    letter-spacing: 0.02em;
}
.main_text p {
    margin-bottom: 1.4em;
}
.main_text p:last-child {
    margin-bottom: 0;
}
.main_text h1,
.main_text h2,
.main_text h3 {
    line-height: 1.4;
    margin-bottom: 2em;
}
.profile_sub_column_left,
.profile_sub_column_right {
    max-width: 100ch;
    line-height: 1.9;
    font-size: 16px;
    letter-spacing: 0.02em;
}
.profile_sub_column_left p,
.profile_sub_column_right p {
    margin-bottom: 1.4em;
}
.profile_sub_column_left p:last-child,
.profile_sub_column_right p:last-child {
    margin-bottom: 0;
}
/* 関連リンクフィールド  */

.related_link {
    width: 100%;
    border: 1px solid #000000;
    padding-left: 20px;
    margin-bottom: 60px;
}
.link_title {
    font-weight: 500;
    margin-bottom: 6px;
}
.link_text {
    font-size: 16px;
    line-height: 28px;
    margin-top: 4px;
    margin-bottom: 20px;
    margin-left: 10px;
}

/* サブテキストフィールド  */

.sub_text_title {
    font-weight: 600;
    font-size: 28px;
    padding-bottom: 20px;
    border-bottom: 5px solid #000000;
    border-image: linear-gradient(to right, #49bbba, #cee8ff) 1;
}
.sub_text_subtitle {
    font-weight: 600;
    margin-bottom: 0px;
}
.sub_text_subtitle::before {
    content: "●";
    color: #0095D7; 
    font-weight: bold;
}
.sub_text_subtitle2 {
    font-weight: 600;
    margin-bottom: 0px;
}
.sub_text_text {
    margin-bottom: 40px;
}
.sub_text_image {
    width: 200px;
}
.sub_text_text_topix {
    background-color: #cee8ff;
    font-weight: 600;
    padding: 20px;
    padding-left: 28px;
    margin-top: 32px;
    margin-bottom: 32px;
    line-height: 28px;
}
.sub_text_text_topix li {
    content:  "●"; 
    margin:  0;             /* デフォルト指定上書き */
    padding: 0;             /* デフォルト指定上書き */
}
.sub_text_text_topix li::marker {
    color: #4949bb;
}
.sub_text_text_left {
    margin-top: 36px;
    margin-bottom: 20px;
    margin-right: 6px;
}
.sub_text_text_right {
    margin-top: 36px;
    margin-bottom: 20px;
    margin-left: 6px;
}
.sub_link_field {
    display: inline-flex;
    background-color: #e6f3ff;
    width: 100%;
    min-height: 90px;
    margin-top: 10px;
    margin-bottom: 20px;
}
.sub_link_field:hover {
    background-color: #ecf6ff;
}

.sub_link_1st {
    width: 30%;
    padding-left: 20px;
}
.sub_link_title {
    font-weight: 500;
}
.sub_link_2nd {
    width: 70%;
    padding: 6px;
    padding-left: 16px;
}
/* テーブルフィールド  */

.sub_table_field {
    font-size: inherit;
}
.sub_table {
    width: 100%;
    border: none;
    font-size: clamp(14px, 1.4vw, 18px);
}
.sub_table_left {
    width: 25%;
    padding: 16px;
    border-bottom: 1px solid #aaaaaa;
}
.sub_table_right {
    width: 75%;
    padding: 16px;
    padding-left: 4px;
    border-bottom: 1px solid #aaaaaa;
}
.sub_table_right p {
    margin: 2px;
}
.sub_table_3r_left, .sub_table_3r_middle, .sub_table_3r_right{
    width: 33%;
    padding: 16px;
    border-bottom: 1px solid #aaaaaa;
}
@media (min-width: 1101px) {
    .business_content {
        max-width: 100ch;
        margin-left: auto;
        margin-right: auto;
        padding-top: clamp(24px, 3vw, 40px);
        padding-bottom: clamp(48px, 6vw, 72px);
    }
    .company_content {
        max-width: 100ch;
        margin-left: auto;
        margin-right: auto;
        padding-top: clamp(24px, 3vw, 40px);
        padding-bottom: clamp(48px, 6vw, 72px);
    }
    .contact_content {
        max-width: 860px;
        margin-left: auto;
        margin-right: auto;
        padding-top: clamp(24px, 3vw, 40px);
        padding-bottom: clamp(48px, 6vw, 72px);
    }
    .careers_content {
        max-width: 100ch;
        margin-left: auto;
        margin-right: auto;
    }
    .office_category,
    .office_index {
        max-width: 100ch;
        margin-left: auto;
        margin-right: auto;
    }
    .sub_table_field {
        max-width: 100ch;
        margin: 0 auto;
    }
}
@media (max-width: 1100px) {
    .sub_table_left {
        width: 30%;
        padding: 12px;
    }
    .sub_table_right {
        width: 70%;
        padding: 12px 12px 12px 4px;
    }
    .sub_table_3r_left,
    .sub_table_3r_middle,
    .sub_table_3r_right {
        padding: 12px;
    }
}
@media (max-width: 767px) {
    .sub_table tr {
        display: block;
        border-bottom: 1px solid #aaaaaa;
    }
    .sub_table_left,
    .sub_table_right,
    .sub_table_3r_left,
    .sub_table_3r_middle,
    .sub_table_3r_right {
        display: block;
        width: 100%;
        padding: 10px 12px;
        border-bottom: none;
        box-sizing: border-box;
    }
    .sub_table_left,
    .sub_table_3r_left {
        font-weight: 600;
        background-color: #f2f6f8;
    }
    .sub_table_right,
    .sub_table_3r_middle,
    .sub_table_3r_right {
        padding-top: 4px;
    }
}
@media (max-width: 1100px) {
    .breadscrumbs_area {
        height: 0;
        margin: 0;
        padding: 0;
    }
    .breadcrumbs {
        margin: 0;
    }
    .B1 {
        margin-top: 60px;
    }
}


/* マンガ */

.comic_column {
    display: flex;
    width: 100%;
    margin-top: 50px;
    text-align: center;
}
.comic_left {
    width: 65%;
    display: ruby;
    justify-content: space-between;
}
.comic_thumb {
    width: 40%;
    padding: 10px;
}
.comic_right {
    width: 35%;
    margin: 0;
    padding: 20px;
}
.comic_btn {
    color: #0095D7;
    font-size: 16px;
    font-weight: 600;
    background-color: #f2f8ff;
    border: 1px solid #0095D7;
    border-radius: 6px;
    padding: 12px 24px;
    letter-spacing: 0.08em;
    margin-top: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
}
.comic_btn:hover {
    color: #ffffff;
    background-color: #0095D7;
}
@media (max-width: 1100px) {
    .comic_column {
        display: block;
    }
    .comic_left {
        width: 100%;
    }
    .comic_thumb {
        width: 20%;
    }
    .comic_right {
        width: 100%;
        margin: 0 auto;
    }
}


/* 全体フッター */
footer {
    margin-top: 80px;
    width: 100%;
    min-height: 320px;
    padding-bottom: 15px;
    background-color: #dbf7ff;
    display: block;
    font-size: 14px;
}
.footer_main {
    width: 100%;
    max-width: 1820px;
    padding: 0 54px;
    margin: 0 auto;
    box-sizing: border-box;
}

.footer_clm_1 {
    width: 100%;
    padding: 15px;
    max-width: 900px;
    margin-left: 0;
    margin-right: auto;
}
.footer_clm_1a {
    width: 100%;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
}
.footer_itm {
    width: 100%;
}
footer h4 {
    margin: 0 0 6px;
}
footer h4 a {
    margin: 0px;
    color: #000000;
    font-size: 13px;
}
footer h4 a:hover {
    color: #2f6f86;
}
.footer_itm_1 {
    margin: 2px;
    font-size: 14px;
    color: #000000;
}
    footer ul {
        list-style: none;
        padding: 0;
        margin-top: 6px;
        margin-bottom: 18px;
    }
    footer ul li {
        margin-top: 1px;
        margin-bottom: 1px;
    }
footer ul li a {
    text-decoration: none;
    font-size: 13px;
    color: #000000;
}
footer ul li a:hover {
    color: #2f6f86;
}
.footer_clm_2 {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
}
.footer_clm_2_1 {
    width: 50%;
    margin: 0px;
}
.footer_logo_link {
    display: inline-flex;
    align-items: center;
}
.footer_logo_main {
    width: clamp(160px, 12vw, 220px);
    height: auto;
    display: block;
}
.footer_clm_2 a {
    font-weight: 400;
    color: #4a4f53;
    font-size: 13px;
}
.footer_clm_2 a:hover {
    color: #2f6f86;
}
.footer_clm_2_3 {
    width: 50%;
    margin: 0;
    align-content: center;
    text-align: right;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 16px;
}
.footer_clm_2_4 {
    width: 32px;
    height: auto;
    margin-right: 0;
}
@media (max-width: 1100px) {
    footer {
        margin-top: 8vw;
        width: 100%;
    }
    .footer_main {
        max-width: 100%;
        padding: 0 20px;
    }
    .footer_clm_1 {
        width: 100%;
        margin-left: 0;
        padding: 2px;
    }
    .footer_clm_1a {
        display: inline-grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .footer_clm_2_1 {
        width: 100%;
        margin-left: 0;
    }
    .footer_clm_2 {
        margin-top: 2vw;
        margin-bottom: 10vw;
        display: block;
    }
    .footer_clm_2_3 {
        width: 100%;
        margin-top: 8vw;
        align-content: center;
        text-align: right;
        gap: 12px;
    }
    .footer_clm_2_4 {
        width: 28px;
    }
    footer h4 a {
        font-size: 12px;
    }
    .footer_itm_1 {
        font-size: 13px;
    }
    footer ul li a {
        font-size: 12px;
    }
    .footer_clm_2 a {
        font-size: 12px;
    }
    .footer_itm h4 {
        display: flex;
        justify-content: flex-start;
        gap: 8px;
        cursor: pointer;
        margin-top: 0;
        margin-bottom: 0;
    }
    .footer_itm h4::after {
        content: "+";
        font-size: 18px;
        color: #0095D7;
        line-height: 1;
        margin-left: 4px;
    }
    .footer_itm.is-open h4::after {
        content: "-";
    }
    .footer_itm ul,
    .footer_itm .footer_itm_1 {
        display: none;
    }
    .footer_itm.is-open ul,
    .footer_itm.is-open .footer_itm_1 {
        display: block;
    }
}
@media (max-width: 500px) {
    .footer_main {
        padding: 0 16px;
    }
    .footer_clm_1a {
        display: block;
    }
    .footer_clm_2_3 {
        gap: 10px;
    }
    .footer_clm_2_4 {
        width: 24px;
    }
}












/* ニュース一覧 */
.news_section {
    display: flex;
}
.news_toolbar {
    width: 180px;
    display: block;
}
.year_column, .year-list {
    width: 100%;
}
.a1a2_item {
    width: 90%;
    margin: 0 auto;
    font-size: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #dbf7ff;
    text-align: center;
}
.a1a2_item:hover {
    background-color: #0095D7;
    color: #ffffff;
}

.news_field {
    width: 100%;
    padding: 30px;
}
.year-id {
    top: -160px;
    position: relative;
}
.year-block {
    display: none;
    top: -40px;
    position: relative;
}
.year-block h2 {
    display: none;
}
.year-block.active {
    display: block;
}
.a1a5_list {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    width: 100%;
}
.a1a5_item {
    font-size: 18px;
    padding-left: 20px;
    padding-right: 0px;
    border-left: 2px solid #0095D7;
}
.a1a5_item:last-child {
    border-right: 2px solid #0095D7;
}
.a1a5_item a {
    padding-bottom: 8px;
}
.a1a5_item:hover a {
    color: #0095D7;
    border-bottom: 2px solid #0095D7;
}
.a1a5_arrow {
    width: 15%;
    margin-right: 20px;
}
.a1a5 {
    font-size: 30px;
    font-weight: 600;
    padding: 0;
    padding-left: 20px;
    margin-bottom: 20px;
    border-left: 6px solid #0095D7;
}
.a1a7_field {
    width: 100%;
    border-top: 2px solid #aba7bb;
    margin-bottom: 20px;
}
.a1a7_field a {
    color: #000000;
}
.a1a7_field a:hover {
    color: #0095D7;
}
.a1a7_field2 {
    display: flex;
    margin-top: 10px;
    margin-bottom: 10px;
    align-items: center;
}
.a1a7_field2 p {
    margin: 0;
    margin-right: 20px;
}
.a1a10 {
    height: 100%;
    background-color: #0095D7;
    color: #ffffff;
    padding: 2px;
    padding-left: 32px;
    padding-right: 32px;
}
.a1a11 {
    font-weight: 600;
}
@media (max-width: 1100px) {
    .a1a5_list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
@media (max-width: 767px) {
    .a1a5_list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .news_section {
        display: block;
    }
    .news_toolbar {
      width: 100%;
      display: block;
    }
    .news_toolbar .year-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .news_toolbar .a1a2_item {
      width: 100%;
    }
    .news_field {
        padding: 3%;
        padding-top: 10vw;
    }
}


/* 企業情報トップ */

.B1 {
    width: 100%;
    margin-top: 60px;
    margin-bottom: 60px;
}
.B1,
.B2,
.careers_title_field,
.careers_column,
.careers_carousel_column,
.careers_block {
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto;
}
.B1_0,
.B1_b_title {
    padding-left: 10px;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #000000;
}
.B1_a {
    position: relative;
    text-align: center;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 60px;
}
.B1_a0 {
    display: flex;
    position: relative;
    width: 100%;
    margin: 0 auto;
    flex-direction: row-reverse;
}
.B1_a3 { 
    width: 75%;
}
.B1_a3 img {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
}
.B1_a1 {
    width: 45%;
    max-height: 356px;
    background-color: #f2f6f8;
    text-align: left;
    align-content: center;
    position: relative;
    padding-left: 24px;
}
.B1_a1_text1 {
    font-size: 24px;
}
.B1_a1_text2 {
    font-size: 18px;
    color: #0095D7;
    margin-bottom: 72px;
}
.B1_a4 {
    background: url(images/company_btnoff.png) 0 0 no-repeat;
    background-size: 100% 100%;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #FFFFFF;
    padding: 12px 36px;
}
.B1_a4:hover {
    cursor: pointer;
    background: url(images/company_btnon.png) 0 0 no-repeat;
    background-size: 100% 100%;
    transition: all 0.5s;
}
.B1_b_title {
    text-align: left;
}
.B1_b {
    width: 100%;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.B1_b_unit {
    width: 100%;
    height: clamp(88px, 9vw, 120px);
    margin: 0;
    background: url(images/company_btnoff.png) 0 0 no-repeat;
    background-size: 100% 100%;
    text-align: center;
    align-content: center;
    position: relative;
}
.B1_b_unit:hover {
    background: url(images/company_btnon.png) 0 0 no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
}
.B1_b2 {
    width: 100%;
    padding-top: clamp(4px, 0.8vw, 10px);
    font-size: clamp(14px, 1.6vw, 20px);
    font-weight: 600;
    color:#FFFFFF;
    letter-spacing: 2px;
}
.B1_b_unit:hover .B1_b2 {
    padding-top: clamp(6px, 1vw, 12px);
    padding-left: 2px;
}

@media (max-width: 1100px) {
    .B1 {
        margin-top: 30px;
    }
    .B1_a {
        margin-top: 10%;
    }
    .B1_a0 {
        display: block;
    }
    .B1_a3 { 
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding-top: 5%;
    }
    .B1_a3 img {
        max-height: 520px;
    }
    .B1_a1 {
        position: static;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        max-height: none;
        margin: 0 auto;
        padding: 0;
        text-align: center;
    }
    .B1_a1_text1 {
        font-size: 2.6vw;
        margin-top: 10px;
    }
    .B1_a1_text2 {
        font-size: 2.2vw;
        margin-bottom: 16px;
    }
    .B1_a4 {
        background: url(images/company_spbtnoff.png) 0 0 no-repeat;
        background-size: 100% 100%;
        font-size: clamp(14px, 2vw, 18px);
        padding: 10px 28px;
        display: inline-block;
        margin-bottom: 12px;
    }
    .B1_a4:hover {
        background: url(images/company_spbtnon.png) 0 0 no-repeat;
        background-size: 100% 100%;
    }
    .B1_b_title {
        font-size: clamp(22px, 3vw, 34px);
    }
    .B1_b {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    .B1_b_unit {
        height: clamp(72px, 12vw, 110px);
        background: url(images/company_spbtnoff.png) 0 0 no-repeat;
        background-size: 100% 100%;
        cursor: pointer;
    }
    .B1_b_unit:hover {
        background: url(images/company_spbtnon.png) 0 0 no-repeat;
        background-size: 100% 100%;
        cursor: pointer;
    }
    .B1_b2 {
        font-size: clamp(13px, 2.4vw, 18px);
    }
}

@media (max-width: 767px) {
    .main_text h1,
    .main_text h2,
    .main_text h3 {
        font-size: clamp(18px, 5.2vw, 24px);
    }
    .article_title_557 {
        font-size: clamp(22px, 6vw, 30px);
        letter-spacing: 2px;
    }
    .article_title_eng_557 {
        font-size: clamp(14px, 4.2vw, 20px);
        letter-spacing: 1.5px;
    }
    .B1_b {
        grid-template-columns: 1fr;
    }
}



/* 事業所案内 */

.office_category {
    background-color: #dbeaf0;
    padding: 10px 16px;
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 16px;
    border-radius: 0;
    line-height: 1.4;
}
.office_index {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.office_card {
    background-color: #f6f8fa;
    border: 1px solid #e3e7eb;
    border-radius: 0;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(20, 40, 60, 0.06);
    margin-bottom: 32px;
}
.office_name {
    border-left: 8px solid #0095D7;
    padding-left: 12px;
    font-size: clamp(20px, 2vw, 24px);
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 16px;
}
.office_column {
    display: flex;
    width: 100%;
    height: 100%;
    margin-bottom: 0;
    gap: 24px;
    align-items: stretch;
}

.office_column_top {
    flex: 1;
    width: 66%;
    height: 100%;
    display: flex;
}
.office_column_left {
    width: 50%;
    height: 100%;
    gap: 16px;
}
.office_column_text {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    color: #1d2329;
}
.office_column_phone {
    color: #0095D7;
    font-size: 20px;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.office_column_center {
    width: 50%;
    height: 100%;
    text-align: center;
    overflow: hidden;
}
.office_column_img {
    width: 100%;
    height: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    aspect-ratio: 1 / 1;
}
.office_column_right {
    width: 33%;
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.office_column_right iframe {
    width: 100%;
    height: 100%;
    margin: 0;
    border: none;
    display: block;
    flex: 1;
    aspect-ratio: 1 / 1;
}
.office_map_link {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #0b5b84;
    background-color: rgba(255, 255, 255, 0.92);
    border: 1px solid #cbd5df;
    border-radius: 9999px;
    text-decoration: none;
}
.office_map_link:hover,
.office_map_link:focus-visible {
    background-color: #ffffff;
}
@media (max-width: 1100px) {
    .office_category {
        padding: 8px 12px;
    }
    .office_index {
        gap: 24px;
    }
    .office_card {
        padding: 20px;
        border-radius: 0;
    }
    .office_column {
        display: block;
        width: 100%;
        margin-bottom: 0;
    }
    .office_column_top {
        width: 100%;
    }
    .office_column_left {
        width: 75%;
    }
    .office_column_center {
        width: 25%;
    }
    .office_column_img {
        aspect-ratio: 1 / 1;
    }
    .office_column_right {
        aspect-ratio: 2 / 1;
        width: 100%;
        margin-top: 32px;
        margin-bottom: 32px;
    }
    .office_column_img {
        width: 100%;
        height: auto;
    }
    .office_column_text {
        font-size: 14px;
    }
    .office_column_phone {
        font-size: 18px;
    }
    .office_map_link {
        right: 10px;
        bottom: 10px;
        padding: 5px 10px;
        font-size: 11px;
    }
}

@media (max-width: 767px) {
    .office_card {
        padding: 16px;
        border-radius: 0;
    }
    .office_column_top {
        display: block;
    }
    .office_column_left {
        width: 100%;
        margin-top: 36px;
        margin-bottom: 48px;
    }
    .office_column_center {
        width: 100%;
        margin-top: 36px;
    }
    .office_column_img {
        aspect-ratio: 2 / 1;
    }
    .office_column_right {
        width: 50%;
        margin: 0 auto;
    }
    .office_column_left {
        margin-top: 12px;
    }
    .office_column_right {
        width: 100%;
        aspect-ratio: 1.5 / 1;
    }
    .office_map_link {
        right: 8px;
        bottom: 8px;
        padding: 4px 8px;
        font-size: 10px;
    }
}



/* 沿革 */

.history_table {
    width: 100%;
    margin-top: 40px;
}
.history_column {
    display: flex;
    width: 100%;
    align-items: flex-start;
    gap: 12px;
}
.history_year {
    flex: 0 0 120px;
    font-size: clamp(16px, 1.8vw, 22px);
    font-weight: 600;
    color: #0095D7;
    line-height: 1.4;
}
.history_year p {
    margin: 0;
    padding: 0;
}
.history_middle {
    flex: 0 0 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
    align-self: stretch;
}
.history_circle {
    background-color: #0095D7;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    margin: 4px 0;
}
.history_line {
    background-color: #0095D7;
    width: 2px;
    flex: 1;
    margin: 0;
}
.history_column:last-child .history_line {
    display: none;
}
.history_text {
    flex: 1;
    margin: 0 0 16px;
    font-size: clamp(14px, 1.4vw, 18px);
    line-height: 1.7;
}
@media (max-width: 1100px) {
    .history_year {
        flex: 0 0 90px;
    }
    .history_middle {
        flex: 0 0 24px;
    }
    .history_text {
        font-size: clamp(14px, 2vw, 16px);
    }
}
.history_text p {
    margin: 0 0 6px;
}
.history_image {
    max-width: 420px;
    width: 100%;
    height: auto;
    margin-top: 8px;
}
@media (min-width: 1101px) {
    .history_table {
        max-width: 100ch;
        margin-left: auto;
        margin-right: auto;
    }
}



/* サステナビリティ */

.ptrn_g_hed {
    margin-top: 60px;
    margin-bottom: 60px;
    width: 100%;
    position: relative;
    justify-self: center;
    align-content: center;
    text-align: center;
}
.ptrn_g_hed_1 {
    position: absolute;
    font-size: clamp(24px, 2.2vw, 28px);
    font-weight: 600;
    text-align: center;
    margin: 0px;
}
.ptrn_g_hed_2 {
    width: 100%;
    display: block;
}
.ptrn_g_lhd {
    display: block;
    position: relative;
    width: 100%;
    margin: 0 auto;
}
.ptrn_g_lhd_2 {
    font-weight: 600;
    font-size: clamp(16px, 1.6vw, 18px);
    line-height: 1.4;
    position: absolute;
    color:#6E842A;
    left: 0;
    top: 0;
}
.ptrn_g_lhd_2 h2 {
    margin: 0;
}
.ptrn_g_lhd img {
    width: 70%;
    max-width: 520px;
    display: block;
}
.ptrn_g_box {
    width: 100%;
    padding-top: 0;
    display: flex;
    align-items: flex-start;
    gap: clamp(24px, 3vw, 40px);
    margin-bottom: clamp(56px, 6vw, 72px);
}
.ptrn_g_box_l {
    width: 60%;
    padding: 0;
    max-width: 42em;
    line-height: 1.75;
}
.ptrn_g_box_r {
    width: min(320px, 100%);
    flex: 0 0 320px;
    padding-top: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.ptrn_g_box_r img {
    width: 320px;
    max-width: 100%;
    height: auto;
    margin-bottom: 12px;
}
.ptrn_g_box_r p {
    margin: 0;
}
.ptrn_g_imgbox {
    width: 100%;
    margin-bottom: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
}
.ptrn_g_imgbox_1 {
    width: 300px;
    margin: 40px;
    justify-items: center;
    text-align: center;
}
.ptrn_g_imgbox_1 img {
    max-width: 300px;
    height: 180px;
}
.ptrn_g_imgbox_1 p {
    margin: 0;
    margin-top: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #000000;
}
.ptrn_g_box_r0 {
    width: 40%;
    height: 100%;
    padding-top: 0;
    margin-bottom: 0;
    text-align: left;
}
.ptrn_g_box_r1, .ptrn_g_box_r2 {
    height: 120px;
    position: relative;
}
.ptrn_g_box_r1 {
    left: 220px;
}
.ptrn_g_box_r2 {
    right: 80px;
    top: 30px;
}
.ptrn_g_svg {
    position: relative;
    padding-top: 20px;
    justify-items: center;
}
.ptrn_g_svg_front {
    width: 40%;
    left: 30px;
    top: 0px;
    z-index: 3;
    position: absolute;
}
.ptrn_g_svg_front_2 {
    margin-right: -50px;
}
.ptrn_g_svg_back {
    position: absolute;
    width: 40%;
    left: 40px;
    top: 10px;
    z-index: 2;
    opacity: 0.4;
}
.ptrn_g_lyo {
    margin-top: 40px;
    margin-bottom: 120px;
    justify-items: center;
}
.ptrn_g_lyo_lhd {
    width: 100%;
    margin: 0 auto;
    margin-top: 40px;
    position: relative;
}
.ptrn_g_lhd_g {
    background-color: #869671;
    color: #ffffff;
    font-size: 32px;
    font-weight: 600;
    padding: 10px;
    margin-top: 40px;
    width: 100%;
    margin: 0;
    border-radius: 16px; 
}
.ptrn_g_lhd_b {
    background-color: #967171;
    color: #ffffff;
    font-size: 32px;
    font-weight: 600;
    padding: 10px;
    margin-top: 40px;
    width: 100%;
    margin: 0;
    border-radius: 16px; 
    text-align: center;
}
.ptrn_g_lhd_g2 {
    color: #869671;
    width: 100%;
    margin: 0 auto;
    font-size: 28px;
    position: absolute;
    font-weight: 600;
    bottom: 15%;
    justify-self: anchor-center;
}
.ptrn_g_lhd_b2 {
    color: #967171;
    width: 100%;
    margin: 0 auto;
    font-size: 28px;
    position: absolute;
    font-weight: 600;
    bottom: 15%;
    justify-self: anchor-center;
}
.ptrn_g_b4_box {
    width: 85%;
    margin: 0 auto;
    padding-bottom: 100px;
    padding-top: 20px;
    display: flex;
}
.ptrn_g_b4_box_l {
    width: 55%;
}
.ptrn_g_b4_box_r {
    width: 45%;
    display: flex;
    flex-wrap: wrap;
    place-content: center;
    text-align: center;
}
.ptrn_g_b4_img {
    margin: 10px; 
}
.ptrn_g_gli li::marker {
    color: #869671;
    font-size: 30px;
    font-weight: 600;
}
.ptrn_g_bli li::marker {
    color: #967171;
    font-size: 30px;
    font-weight: 600;
}
@media (min-width: 1101px) {
    .ptrn_g_hed,
    .ptrn_g_lhd,
    .ptrn_g_box,
    .ptrn_g_imgbox,
    .ptrn_g_lyo,
    .ptrn_g_lyo_lhd,
    .ptrn_g_b4_box,
    .ptrn_g_lhd_g,
    .ptrn_g_lhd_b {
        max-width: 100ch;
        margin-left: auto;
        margin-right: auto;
    }
    .ptrn_g_b4_box {
        width: 100%;
    }
}
@media (max-width: 1100px) {
    .ptrn_g_hed {
        margin-top: 4vw;
        margin-bottom: 6vw;
    }
    .ptrn_g_hed_1 {
        position: relative;
        font-size: clamp(22px, 4vw, 26px);
        left: 0px;
    }
    .ptrn_g_lhd_2 {
        font-size: clamp(14px, 2.6vw, 16px);
    }
    .ptrn_g_lhd img {
        width: 80%;
        max-width: 420px;
    }
    .ptrn_g_box {
        display: block;
        margin-bottom: 8vw;
    }
    .ptrn_g_box_l {
        width: 96%;
        padding: 2%;
        line-height: 1.7;
    }
    .ptrn_g_box_r {
        width: 95%;
        padding-top: 2vw;
        text-align: left;
    }
    .ptrn_g_box_r img {
        width: min(320px, 70%);
        margin-bottom: 2%;
    }
    .ptrn_g_imgbox {
        margin-bottom: 10vw;
        display: block;
    }
    .ptrn_g_imgbox_1 {
        width: 45%;
        margin: 0 auto;
        margin-bottom: 6vw;
    }
    .ptrn_g_imgbox_1 img {
        width: 100%;
        height: 60%;
    }
    .ptrn_g_imgbox_1 p {
        margin-top: 1vw;
    }
    .ptrn_g_box_r0 {
        width: 100%;
        height: 40vw;
        margin-bottom: 0;
    }
    .ptrn_g_box_r1, .ptrn_g_box_r2 {
        height: 10vw;
    }
    .ptrn_g_box_r1 {
        left: 45%;
    }
    .ptrn_g_box_r2 {
        right: 0%;
    }
    .ptrn_g_svg {
        position: relative;
        padding-top: 20px;
        justify-items: center;
    }
    .ptrn_g_svg_front {
        width: 30%;
    }
    .ptrn_g_svg_front_2 {
        margin-right: -50px;
    }
    .ptrn_g_svg_back {
        width: 30%;
    }
    .ptrn_g_lyo {
        margin-top: 2vw;
        margin-bottom: 10vw;
    }
    .ptrn_g_lhd_g, .ptrn_g_lhd_b {
        padding: 3%;
        width: 94%;
        font-size: 28px;
        margin: 0 auto;
        margin-top: 10vw;
        margin-bottom: 2vw;
    }
    .ptrn_g_b4_box {
        width: 90%;
        display: block;
        padding-bottom: 6vw;
    }
    .ptrn_g_b4_box_l {
        width: 100%;
    }
    .ptrn_g_lhd_g2, .ptrn_g_lhd_b2 {
        font-size: 3vw;
        bottom: 6%;
    }
    .ptrn_g_b4_box_r {
        width: 100%;
        display: block;
    }
}



/* 事業内容トップ */

.B2 {
    width: 100%;
    margin-top: 60px;
    margin-bottom: 60px;
    --b2-title-size: clamp(22px, 3vw, 34px);
    --b2-group-size: clamp(18px, 2.2vw, 26px);
    --b2-item-size: clamp(14px, 1.8vw, 20px);
    --b2-cta-size: clamp(13px, 1.6vw, 18px);
}
.B2_0 {
    padding-left: 10px;
    font-size: var(--b2-title-size);
    font-weight: 700;
    letter-spacing: 0.04em;
}
.B2_1 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: 24px;
    margin-bottom: 60px;
}
.B2_1_unit {
    width: calc((100% - 48px) / 3);
    height: clamp(180px, 18vw, 240px);
    margin: 0;
    align-content: center;
}
.B2_1_unit.a {
    border: none;
    background-color: #eaf6fb;
    align-content: end;
    color: #0095D7;
    width: 100%;
    flex: 0 0 100%;
    height: auto;
    padding: clamp(10px, 1.4vw, 16px) 0;
    box-sizing: border-box;
}
.B2_1_unit.a h2 {
    margin: 0;
}
.B2_2 {
    padding-left: 24px;
    font-size: var(--b2-group-size);
    font-weight: 700;
    letter-spacing: 0.03em;
}
.B2_1_unit.b {
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
    height: clamp(200px, 20vw, 270px);
}
.B2_1_unit.b a {
    display: block;
    width: 100%;
    height: 100%;
}
.B2_1_unit.b:hover {
    transition: all 0.5s;
    opacity: 0.7;
}
.B2_a2 {
    width: 70%;
    bottom: 20px;
    position: absolute;
    padding: 6px;
    padding-left: 10px;
    font-size: var(--b2-item-size);
    font-weight: 600;
    color: #FFFFFF;
    background-color: #0095D7;
}
.B2_a3 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.B2_1_unit.c a {
    font-size: var(--b2-cta-size);
    font-weight: 600;
    color: #FFFFFF;
}
.B2_b1 h3 {
    font-weight: 600;
}
.B2_1_unit.c {
    width: 100%;
    flex: 0 0 100%;
    height: 120px;
}
.B2_b1 {
    place-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    background: url(images/company_btnoff.png) 0 0 no-repeat;
    background-size: 100% 100%;
}
.B2_b1:hover {
    background: url(images/company_btnon.png) 0 0 no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
}
.B2_b1:hover h3 {
    padding-top: 10px;
    padding-left: 5px;
}

@media (max-width: 1100px) {
    .B2 {
        margin-top: 8%;
    }
    .B2_1 {
        display: block;
    }
    .B2_1_unit {
        width: 100%;
        margin-bottom: 4%;
    }
    .B2_1_unit.a,
    .B2_1_unit.c {
        width: 100%;
    }
    .B2_1_unit.a {
        height: auto;
        padding: 10px 0;
    }
    .B2_1_unit.c {
        height: 88px;
    }
    .B2_1_unit.b {
        height:42vw;
    }
    .B2_a2 {
        width: 36vw;
        bottom: 20%;
        padding: 4px;
        padding-left: 10px;
    }
    .B2_1_unit.c a {
    }
    .B2_b1 {
        width: 50vw;
    }
}

@media (max-width: 1100px) and (min-width: 768px) {
    .B2_1_unit.b {
        height: 32vw;
    }
}



/* 産業エネルギー */


.ptrn_d_hed {
    position: relative;
}
.ptrn_d_hed_1 {
    position: relative;
    margin-bottom: 0px;
    font-size: 28px;
    font-weight: 600;
    padding-bottom: 20px;
    border-bottom: 5px solid #000000;
    border-image: linear-gradient(to right, #49bbba, #cee8ff) 1;
}
.ptrn_d_hed_2 {
    display: block;
}
.ptrn_d_box_l {
    padding-right: 10px;
    width: 70%;
    margin: 0;
}
.ptrn_d_lhd {
    color: #0095D7;
    margin-top: 0;
    padding-bottom: 8px;
    margin-bottom: 4px;
    border-bottom: 2px solid #0095D7;
    font-weight: 600;
}
.ptrn_lnk1 {
    background-image: none;
    background-color: #f2f8ff;
    border: 1px solid #0095D7;
    border-radius: 6px;
    margin-top: 0px;
    width: 320px;
    height: auto;
    padding: 12px 24px;
    cursor: pointer;
    align-content: center;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.ptrn_lnk1:hover {
    background-image: none;
    background-color: #0095D7;
}
.ptrn_lnk1 a {
    color: inherit;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.ptrn_lnk1 .ptrn_lnk2 {
    color: #0095D7;
    padding: 0;
}
.ptrn_lnk1:hover .ptrn_lnk2 {
    color: #ffffff;
    padding: 0;
}
.is-industrial-energy .ptrn_lnk1 {
    background-image: none;
    background-color: #f2f8ff;
    border: 1px solid #0095D7;
    border-radius: 6px;
    height: auto;
    padding: 12px 24px;
    width: auto;
    max-width: 320px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.is-industrial-energy .ptrn_lnk1:hover {
    background-image: none;
    background-color: #0095D7;
}
.is-industrial-energy .ptrn_lnk1 a {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.is-industrial-energy .ptrn_lnk1 .ptrn_lnk2 {
    color: #0095D7;
    font-size: 16px;
    font-weight: 600;
    padding: 0;
}
.is-industrial-energy .ptrn_lnk1:hover .ptrn_lnk2 {
    color: #ffffff;
    padding: 0;
}
.ptrn_lnk_group {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 20px;
    justify-items: center;
    margin-top: 30px;
    width: 100%;
}
.ptrn_lnk_group .ptrn_lnk1 {
    width: 100%;
    max-width: 360px;
    margin: 0;
}
.ptrn_d_box_r {
    padding-left: 10px;
    width: 30%;
}
.ptrn_d_svg_back {
    position: absolute;
    width: 90%;
    top: 10px;
    left: 45px;
    z-index: -1;
}
.ptrn_d_svg_back image {
    position: absolute;
    top: 0;
    left: 0;
    width: 125%;
    height: 100%;
    z-index: 1;
    opacity: 0.4;
}
@media (max-width: 1100px) {
    .ptrn_d_hed {
        margin-top: 4vw;
        margin-bottom: 1vw;
    }
    .ptrn_d_hed_1 {
        position: relative;
        width: 100%;
        padding-left: 0%;
        font-size: 24px;
        padding-bottom: 20px;
        border-bottom: 5px solid #000000;
        border-image: linear-gradient(to right, #49bbba, #cee8ff) 1;
    }
    .ptrn_d_hed_2 {
        display: none;
    }
    .ptrn_d_box_l {
        width: 98%;
        margin: 0 auto;
    }
    .ptrn_box_2 .ptrn_d_box_l {
        width: 98%;
        flex: 0 1 auto;
    }
    .ptrn_lnk1 {
        margin: 0 auto;
        margin-bottom: 8%;
        width: 100%;
        padding: 10px 20px;
    }
    .ptrn_lnk_group {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 20px;
    }
    .ptrn_lnk_group .ptrn_lnk1 {
        width: 100%;
        margin-bottom: 0;
    }
    .ptrn_lnk1 a {
        font-size: 16px;
    }
    .ptrn_d_box_r {
        width: 98%;
    }
    .ptrn_d_svg_back {
        position: absolute;
        width: 70%;
        left: 17%;
    }
}
@media (max-width: 767px) {
    .ptrn_d_hed_1 {
        font-size: 20px;
    }
}



/* 熱診断 */

.ptrn_h_lyo {
    width: 100%;
    margin: 0 auto;
    margin-top: 90px;
    justify-items: center;
}
.ptrn_h_hed {
    width: 100%;
    display: flex;
    margin-bottom: 30px;
}
.ptrn_h_hed_l {
    width: 35%;
}
.ptrn_h_hed_l2 {
    width: 75%;
    margin-top: -60px;
    margin-left: 0px;
    position: relative;
}
.ptrn_h_hed_2 {
    font-weight: 600;
    font-size: 24px;
    color:#ffffff;
    position: absolute;
    padding: 10px;
}
.ptrn_h_hed_l img {
    width: 100%;
}
.ptrn_h_hed_r {
    width: 65%;
    padding-right: 25px;
}
.ptrn_h_lhd1 {
    background-color: #d86b6b;
    color: #ffffff;
    font-size: 26px;
    font-weight: 600;
    padding: 4px;
    margin-top: 40px;
    margin-bottom: 80px;
    width: 100%;
    border-radius: 8px; 
    text-align: center;
}
.ptrn_h_lhd2 {
    width: 100%;
    font-size: 24px;
    font-weight: 600;
    justify-self: left;
    padding-left: 10px;
    border-left: 16px solid #d86b6b;
    margin-bottom: 30px;
}
.ptrn_h_box {
    width: 100%;
    padding-top: 0px;
    margin-bottom: 60px;
    display: flex;
}
.ptrn_h_box_l {
    width: 60%;
    padding-left: 10px;
}
.ptrn_h_box_r {
    width: 40%;
    padding: 30px;
    padding-top: 0px;
    text-align: center;
}
.ptrn_h_box_r img {
    max-width: 100%;
    margin: 20px; 
}
.ptrn_h_box2 {
    width: 100%;
    padding: 4px;
    margin: 0 auto;
    margin-bottom: 30px;
}
.ptrn_h_box3 {
    width: 50%;
    padding: 10px;
}
.ptrn_h_box table {
    margin-bottom: 40px;
}
.ptrn_h_ara_th1, .ptrn_h_ara_th2 {
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 18px;
}
.ptrn_h_ara_th1 {
    background-color: #B8A297;
    width: 100%;
    color: #FFFFFF;
    text-align: center;
}
.ptrn_h_ara_th2 {
    background-color: #0095D7;
    color: #FFFFFF;
    text-align: center;
}
.ptrn_h_ara_td0 {
    border-right: 1px solid #BBBBBB;
    border-bottom: 1px solid #BBBBBB;
    background-color: #FFFFFF;
    text-align: center;
    padding: 3px;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 50%;
}
.ptrn_h_ara_td1 {
    border-right: 1px solid #BBBBBB;
    border-bottom: 1px solid #BBBBBB;
    background-color: #FFFFFF;
    text-align: left;
    padding: 6px;
    padding-left: 10px;
    width: 50%;
}
.ptrn_h_ara_td2 {
    border-right: 1px solid #BBBBBB;
    border-bottom: 1px solid #BBBBBB;
    background-color: #FFFFFF;
    text-align: left;
    padding: 6px;
    padding-left: 10px;
    width: 50%;
}
.ptrn_h_ctr {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 30px;
}
.ptrn_h_arw {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}
.ptrn_h_arw img {
    width: 120px;
}
.ptrn_h_bhd1 {
    width: 100%;
    margin-bottom: 15px;
    color: #d86b6b;
    border-bottom: 2px solid #d86b6b;
    justify-self: left;
}
.ptrn_h_bhd1 h3 {
    padding-left: 10px;
    padding-bottom: 8px;
    font-size: 28px;
    font-weight: 600;
    margin: 0px;
}
.ptrn_h_bhd2 {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 10px;
    border-bottom: 2px solid #d86b6b;
    justify-self: left;
}
.ptrn_h_bhd2 h3 {
    padding-left: 15px;
    padding-bottom: 8px;
    font-size: 24px;
    font-weight: 600;
    margin: 0px;
}
.ptrn_h_txtbox2 {
    padding-left: 30px;
    margin-bottom: 30px;
}
.ptrn_h_img {
    width: 100%;
    display: inline-flex;
    flex-wrap: wrap;
    justify-items: center;
}
.ptrn_h_img_fld {
    width: 30%;
    text-align: center;
}
.ptrn_h_img_fld img {
    max-height: 180px;
}
@media (max-width: 1100px) {
    .ptrn_h_hed {
        display: block;
    }
    .ptrn_h_hed_l {
        width: 50%;
    }
    .ptrn_h_hed_2 {
        font-size: 3vw;
    }
    .ptrn_h_hed_r {
        width: 100%;
    }
    .ptrn_h_lhd1 {
        width: 90%;
        margin: 0 auto;
        margin-top: 20vw;
        margin-bottom: 6vw;
    }
    .ptrn_h_lhd2 {
        width: 85%;
        margin: 0 auto;
        padding-left: 4%;
        margin-bottom: 3vw;
    }
    .ptrn_h_box {
        width: 90%;
        margin: 0 auto;
        display: block;
        margin-bottom: 8vw;
    }
    .ptrn_h_box_l {
        width: 100%;
    }
    .ptrn_h_box_r {
        width: 100%;
        padding-top: 5%;
    }
    .ptrn_h_box_r img { 
        max-width: 80%;
        margin: 0 auto;
        margin-bottom: 30px;
    }
    .ptrn_h_box2 {
        width: 98%;
    }
    .ptrn_h_box3 {
        width: 98%;
        padding: 0px;
    }
    .ptrn_h_ctr {
        width: 90%;
    }
    .ptrn_h_img {
        display: block;
    }
    .ptrn_h_img_fld img {
        max-height: 40vw;
    }
}



/* LPG */

.ptrn_c_sqr {
    width: 100%;
}
.ptrn_c_hed {
    color: #FFFFFF;
    background-color: #0095D7;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
}
.ptrn_c_box_l {
    padding-right: 10px;
    width: 45%;
}
.ptrn_c_lhd {
    display: block;
    width: 16%;
    position: absolute;
    transition: background-color 0.3s ease;
    z-index: 50;
    overflow: hidden;
}
.ptrn_c_lhd2 {
    font-weight: 600;
    font-size: 20px;
    color:#0095D7;
    position: absolute;
    padding: 10px;
    text-align: center;
}
.ptrn_c_lhd img {
    width: 100%;
}
.ptrn_c_svg {
    position: relative;
    justify-items: center;
}
.ptrn_c_svg_front {
    width: 90%;
    z-index: 2;
}
.ptrn_c_svg_front p {
    text-align: center;
    margin: 0 auto;
    margin-top: 10%;
    padding-left: 5%;
    padding-right: 5%;
}
.ptrn_c_svg_back {
    position: absolute;
    width: 90%;
    top: 110px;
    left: 35px;
    z-index: -1;
    opacity: 0.4;
}
.ptrn_c_box_r {
    padding-left: 0;
    width: 320px;
    flex: 0 0 320px;
    align-self: flex-start;
    align-content: flex-start;
}
.ptrn_c_box_r img {
    width: 100%;
    max-width: 320px;
    height: auto;
}
@media (min-width: 1200px) {
    .ptrn_c_box_r {
        width: 420px;
        flex: 0 0 420px;
    }
    .ptrn_c_box_r img {
        max-width: 420px;
    }
}
.ptrn_c_box_r p {
    padding-top: 50px;
    padding-bottom: 50px;
    border-top: 2px solid #0095D7;
    border-bottom: 2px solid #0095D7;
}
@media (max-width: 1100px) {
    .ptrn_c_hed {
        padding: 3%;
    }
    .ptrn_c_box_l {
        width: 98%;
    }
    .ptrn_c_lhd {
        width: 30%;
    }
    .ptrn_c_lhd2 {
        font-size: 3vw;
    }
    .ptrn_c_svg_front {
        width: 70%;
        z-index: 2;
    }
    .ptrn_c_svg {
    }
    .ptrn_c_svg_back {
        position: absolute;
        width: 70%;
        top: 15vw;
        left: 18%;
    }
    .ptrn_c_box_r {
        width: 98%;
        flex: 0 1 auto;
        padding-left: 0;
    }
    .ptrn_c_box_r img {
        width: min(320px, 100%);
    }
}



/* 潤滑油 */

.ptrn_e_sqr {
    justify-items: center;
    margin-bottom: 160px;
}
.ptrn_e_hed {
    width: 100%;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 90px;
}
.ptrn_e_tle {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 8px;
    width: 100%;
}
.ptrn_e_tle_eng {
    font-size: 20px;
    color: #A08273;
    margin-top: 16px;
}
.ptrn_e_box2_1l {
    width: 55%;
    height: 100%;
    margin: 0;
    align-content: center;
    position: relative;
    order: 1;
}
.ptrn_e_box2_1r {
    width: 55%;
    height: 100%;
    margin: 0;
    align-content: center;
    position: relative;
    order: 2;
}
.ptrn_e_svg {
    position: relative;
    padding-top: 20px;
    justify-items: center;
    height: 100%;
}
.ptrn_e_svg_front {
    width: 90%;
    z-index: 3;
    position: absolute;
}
.ptrn_e_svg_front_1 {
    margin-right: -25px;
}
.ptrn_e_svg_front_2 {
    margin-left: -25px;
}
.ptrn_e_svg_back {
    position: absolute;
    width: 90%;
    left: 40px;
    top: 55px;
    z-index: 2;
    opacity: 0.4;
}
.ptrn_e_box2_2l {
    width: 75%;
    margin: 0;
    text-align: center;
    place-items: center;
    order: 1;
}
.ptrn_e_box2_2r {
    width: 75%;
    margin: 0;
    text-align: center;
    place-items: center;
    order: 2;
}
.ptrn_e_box2_3a {
    padding: 60px;
    padding-top: 40px;
    padding-left: 0px;
}
.ptrn_e_box2_3b {
    padding: 60px;
    padding-top: 40px;
    padding-right: 0px;
}
.ptrn_e_lhd {
    font-size: 26px;
    color: #0095D7;
    margin-bottom: 12px;
    font-weight: 600;
}
.ptrn_e_txt {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 2px solid #0095D7;
    text-align: left;
}
.ptrn_e_body3_fld {
    width: 100%;
    margin-bottom: 100px;
    display: flex;
    justify-content: space-between;
}
.ptrn_e_body3_box {
    background-color: #FFFFFF;
    padding: 20px;
    width: 40%;
    margin: 0;
}
.ptrn_e_body3_3 {
    color: #c70000;
    font-size: 20px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #c70000;
    font-weight: 600;
}
.ptrn_e_body3u {
    display: flex;
}
.ptrn_e_body3u_1 {
    width: 60%;
    padding: 5px;
    padding-left: 15px;
    padding-right: 15px;
}
.ptrn_e_body3u_2 {
    width: 40%;
}
.ptrn_e_body3u_2 {
    width: 40%;
    padding: 5px;
}
.ptrn_e_body3u_2 img {
    width: 100%;
}
@media (max-width: 1100px) {
    .ptrn_e_sqr {
        margin-bottom: 6vw;
    }
    .ptrn_e_box2_1l, .ptrn_e_box2_1r {
        width: 50%;
        height: 45vw;
        margin: 0 auto;
        align-content: center;
        position: relative;
    }
    .ptrn_e_box2_2l, .ptrn_e_box2_2r {
        width: 98%;
        margin: 0 auto;
    }
    .ptrn_e_box2_3a {
        padding-top: 0px;
        padding-left: 0px;
        padding: 2%;
    }
    .ptrn_e_box2_3b {
        padding-top: 0px;
        padding-right: 0px;
        padding: 2%;
    }
    .ptrn_e_svg_front_1 {
        margin-right: 0px;
    }
    .ptrn_e_svg_front_2 {
        margin-left: 0px;
    }
    .ptrn_e_body3_fld {
        display: block;
    }
    .ptrn_e_body3_box {
        width: 90%;
        margin: 0 auto;
    }
}



/* VA提案 */

.ptrn_b_sqr {
    margin-bottom: 120px;
    width: 100%;
    background-color: #FFFFFF;
    margin-top: 60px;
}
.ptrn_b_cpt {
    display: flex;
}
.ptrn_b_cptl {
    width: 75%;
    padding: 60px;
    padding-left: 100px;
    padding-right: 100px;
    margin-top: 60px;
    margin-bottom: 60px;
}
.ptrn_b_cptl_1 {
    width: 85%;
    margin: 0 auto;
    text-align: center;
}
.ptrn_b_cptl_2 {
    font-size: 30px;
    font-weight: 600;
    padding-bottom: 10px;
    color: #0095D7;
}
.ptrn_b_cptl_3 {
    font-weight: 600;
    padding-bottom: 10px;
    color: #0095D7;
}
.ptrn_b_cptl_4 {
    text-align: left;
    padding-bottom: 40px;
}
.ptrn_b_cptr {
    width: 25%;
    margin-bottom: 0px;
    margin: 0 auto;
}
.ptrn_b_cptr svg {
    position: relative;
    margin-left: -100px;
    top: 55%;
}
.ptrn_b_hed {
    color: #FFFFFF;
    background-color: #0095D7;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    padding: 10px;
}
.ptrn_b_hed_2 {
    font-size: 16px;
    font-weight: 600;
}
.ptrn_b_box {
    display: flex;
    width: 100%;
    padding: 20px;
    margin-bottom: 40px;
}
.ptrn_b_box1 {
    display: block;
    width: 50%;
    position: relative;
    margin-bottom: 0;
}
.ptrn_b_box1a {
    display: flex;
    width: 100%;
    position: relative;
}
.ptrn_box_bl, .ptrn_box_br {
    width: 95%;
    margin: 0 auto;
    padding: 2%;
    padding-top: 0;
    padding-bottom: 0;
    align-self: flex-end;
    position: relative;
}
.ptrn_b_lhd {
    font-size: 24px;
    font-weight: 600;
    padding-left: 10px;
    margin: 0;
    color: #0095D7;
    border-bottom: 1px solid #0095D7;
}
.ptrn_b_lhd1 {
    color: #0095D7;
    position: absolute;
    font-size: 90px;
    font-weight: 600;
    bottom: -32px;
    left: 0px;
}
.ptrn_b_lhd2 {
    font-size: 24px;
    font-weight: 600;
    padding-top: 40px;
    padding-left: 80px;
    margin: 0;
    color: #0095D7;
    border-bottom: 1px solid #0095D7;
}
.ptrn_b_txt li {
    margin:  0;
    padding: 0;
}
.ptrn_b_txt li::marker{
    content: "■ "; 
    color: #0095D7;
    font-weight: 600;
    font-size: 22px;
}
.ptrn_b_p_1 {
    margin-bottom: 0%;
    padding-left: 30px;
    justify-self: left;
}
.ptrn_b_box2 {
    width: 98%;
    margin: 0 auto;
    padding: 30px;
    padding-top: 10px;
    display: flex;
    padding-bottom: 60px;
    margin-bottom: 60px;
    justify-content: space-between;
}
.ptrn_box_l, .ptrn_box_r {
    width: 50%;
    padding: 2%;
    padding-top: 0;
    padding-bottom: 0;
}
.ptrn_b_box2_1 {
    width: 30%;
    margin: 0px;
}
.ptrn_b_box2_1 img {
    width: 100%;
}

@media (max-width: 1100px) {
    .ptrn_b_cpt {
        display: block;
    }
    .ptrn_b_cptl {
        width: 100%;
        padding-left: 0px;
        padding-right: 0px;
        margin-bottom: 0%;
    }
    .ptrn_b_cptl_1 {
        width: 90%;
        margin: 0 auto;
        text-align: center;
    }
    .ptrn_b_cptr {
        width: 70%;
        margin-bottom: 15vw;
    }
    .ptrn_b_cptr svg {
        position: relative;
        margin-left: 0%;
        top: -10%;
    }
    .ptrn_b_box {
        display: block;
        margin-bottom: 2vw;
    }
    .ptrn_b_box1 {
        width: 100%;
        margin-bottom: 5%;
    }
    .ptrn_b_box1a {
        display: block;
    }
    .ptrn_box_l, .ptrn_box_r {
        width: 100%;
        padding: 0%;
    }
    .ptrn_b_p_1 {
        padding-left: 0px;
        justify-self: center;
    }
    .ptrn_b_box2 {
        display: block;
        margin: 0 auto;
        padding-bottom: 4%;
        padding: 0%;
    }
    .ptrn_b_box2_1 {
        width: 30%;
        margin: 0 auto;
        margin-top: 5%;
    }
    .ptrn_b_sqr {
        margin-bottom: 1%;
    }
}



/* オイルメンテナンス */

.ptrn_f_hed {
    margin-top: 60px;
    margin-bottom: 60px;
    width: 100%;
    position: relative;
    justify-self: center;
    align-content: center;
    text-align: center;
}
.ptrn_f_hed_1 {
    position: absolute;
    font-size: 28px;
    color: #0095D7;
    font-weight: 600;
    text-align: center;
    margin: 0px;
}
.ptrn_f_hed_2 {
    width: 100%;
    display: block;
}
.ptrn_f_ara {
    width: 100%;
    margin: 0px;
    margin-top: 180px;
    margin-bottom: 180px;
}
.ptrn_f_ara2 {
    display: flex;
    width: 100%;
}
.ptrn_f_ara3 {
    width: 100%;
}
.ptrn_f_cmn_1l {
    width: 25%;
    text-align: center;
    position: relative;
    order: 1;
}
.ptrn_f_cmn_1r {
    width: 25%;
    text-align: center;
    position: relative;
    order: 2;
}
.ptrn_f_lhd {
    font-weight: 600;
    font-size: 20px;
    color:#0095D7;
    position: absolute;
    top: -12%;
}
.ptrn_f_lhd_1 {
    display: block;
    width: 90%;
    margin-left: -1px;
    transition: background-color 0.3s ease;
    z-index: 50;
    position: relative;
}
.ptrn_f_lhd_2 {
    display: block;
    width: 90%;
    margin-left: 30px;
    transition: background-color 0.3s ease;
    z-index: 50;
    overflow: hidden;
    position: relative;
}
.ptrn_f_lhd_1 img, .ptrn_f_lhd_2 img {
    width: 100%;
}
.ptrn_f_cmn_2l {
    width: 75%;
    padding: 0px;
    padding-bottom: 80px;
    margin-top: 0px;
    display: flex;
    order: 1;
}
.ptrn_f_cmn_2r {
    width: 75%;
    padding: 0px;
    padding-bottom: 80px;
    margin-top: 0px;
    display: flex;
    order: 2;
}
.ptrn_f_ara3 {
    padding-bottom: 60px;
}
.ptrn_f_ara th, .ptrn_f_ara td {
    border-right: 1px solid #554d49;
    border-bottom: 1px solid #554d49;
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 18px;
}
.ptrn_f_ara th {
    background-color: #6e645f;
    color: #FFFFFF;
    padding-left: 10px;
}
.ptrn_f_ara_td1 {
    text-align: center;
}
.ptrn_f_ara_td2 {
    text-align: right;
    padding-right: 10px;
}
.ptrn_f_box {
    width: 98%;
    margin: 0 auto;
    overflow: hidden;
    text-align: justify;
}
.ptrn_f_box table {
    border-right: 1px solid #000000;
    border-bottom: 1px solid #000000;
}
.ptrn_f_box th, .ptrn_f_box td {
    border-left: 1px solid #000000;
    border-top: 1px solid #000000;
}
.ptrn_f_box th {
    padding-left: 5px;
}
.ptrn_f_flt_10 {
    overflow: hidden;
}
.ptrn_f_flt_11 {
    height: 180px;
    padding: 15px;
    padding-left: 0px;
    float: left;
    align-content: center;
}
.ptrn_f_flt_12 {
    height: 180px;
    padding: 15px;
    padding-right: 0px;
    float: right;
    align-content: center;
}
.ptrn_f_flt_20 {
    height: 100%;
    padding: 15px;
    shape-outside: inset(calc(100% - 210px) 0 0);
    float: left;
    width: 100%;
    display: flex;
    align-items: flex-end;
    align-content: center;
}
.ptrn_f_flt_21 {
    height: 100%;
    padding: 15px;
    padding-left: 0px;
    shape-outside: inset(calc(100% - 210px) 0 0);
    float: left;
    display: flex;
    align-items: flex-end;
    align-content: center;
}
.ptrn_f_flt_22 {
    height: 100%;
    padding: 10px;
    padding-right: 0px;
    shape-outside: inset(calc(100% - 210px) 0 0);
    float: right;
    display: flex;
    align-items: flex-end;
    align-content: center;
}
.ptrn_f_flt_10 img, .ptrn_f_flt_11 img, .ptrn_f_flt_12 img, .ptrn_f_flt_20 img, .ptrn_f_flt_21 img, .ptrn_f_flt_22 img {
    max-height: 180px;
}
@media (max-width: 1100px) {
    .ptrn_f_hed {
        margin-top: 2vw;
        margin-bottom: 24vw;
    }
    .ptrn_f_hed_2 {
        display: none;
    }
    .ptrn_f_ara {
        width: 98%;
        margin: 0 auto;
        margin-top: 10vw;
        margin-bottom: 10vw;
    }
    .ptrn_f_ara2 {
        display: block;
    }
    .ptrn_f_cmn_1l, .ptrn_f_cmn_1r {
        width: 35%;
    }
    .ptrn_f_lhd {
        font-size: 2vw;
    }
    .ptrn_f_cmn_2l, .ptrn_f_cmn_2r {
        margin-top: 3%;
        width: 100%;
        padding-bottom: 4vw;
    }
    .ptrn_f_lhd_1 {
        margin-left: 0px;
    }
    .ptrn_f_lhd_2 {
        margin-left: 0px;
    }
    .ptrn_f_flt_20, .ptrn_f_flt_21, .ptrn_f_flt_22 {
        shape-outside: inherit;
        padding: 3%;
        display: grid;
        align-content: baseline;
    }
    .ptrn_f_flt_10 img, .ptrn_f_flt_11 img, .ptrn_f_flt_12 img, .ptrn_f_flt_20 img, .ptrn_f_flt_21 img, .ptrn_f_flt_22 img {
        max-height: 25vw;
    }
}




/* 切削ニュースアーカイブ */

.snews_table {
    margin-bottom: 6px;
    border-bottom: 1px solid #000000;
}
.snews_table1 {
    width: 10%;
}
.snews_table2 {
    width: 10%;
}
.snews_table3 {
    width: 80%;
}



/* 石油化学製品 */

.ptrn_i_hed {
    margin-top: 60px;
    margin-bottom: 60px;
    position: relative;
    text-align: center;
}
.ptrn_i_hed_1 {
    position: absolute;
    font-size: 30px;
    color: #0095D7;
    font-weight: 600;
    text-align: center;
    margin: 0px;
}
.ptrn_i_hed_2 {
    width: 90%;
    margin: 0 auto;
    display: block;
}
.ptrn_i_lnk_fld {
    width: 100%;
    display: flex;
    margin-bottom: 150px;
    justify-content: space-between;
}
.ptrn_i_lnk_box {
    width: 30%;
    height: 400px;
    margin-bottom: 0px;
    margin: 0px;
    border-radius: 9px;
}
.ptrn_i_lnk_lhd {
    font-size: 22px;
    font-weight: 600;
    margin-top: 10px;
    color:#0095D7;
    text-align: center;
}
.ptrn_i_lnk_top {
    height: 50%;
    text-align: left;
}
.ptrn_i_lnk_und {
    height: 50%;
    text-align: center;
    align-content: end;
}
.ptrn_i_lnk_btn {
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
}
.ptrn_i_lnk_img {
    width: 90%;
    height: 150px;
}
.ptrn_i_lnk_btn:hover .ptrn_i_lnk_img {
    opacity: 0.7;
}
.ptrn_i_box {
    display: flex;
    margin-top: 90px;
    margin-bottom: 120px;
}
.ptrn_i_box_l {
    width: 50%;
}
.ptrn_i_box_l1 {
    width: 80%;
    margin-top: -45px;
    margin-left: 30px;
    position: relative;
}
.ptrn_i_lhd {
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    color:#ffffff;
    position: absolute;
    text-align: center;
    left: -20%;
    top: -10%;
    padding: 10px;
}
.ptrn_i_box_l1 img {
    width: 100%;
    margin: 0;
}
.ptrn_i_box_l2 {
    padding: 30px;
}
.ptrn_i_box_r {
    width: 50%;
    padding: 20px;
    padding-top: 45px;
    padding-bottom: 45px;
    margin: 0;
}
.ptrn_i_box_r img {
    width: 100%;
}
.ptrn_i_rec_hed {
    background-color: #53B8E4;
    color: #ffffff;
    font-size: 30px;
    font-weight: 600;
    width: 600px;
    padding: 10px;
    padding-left: 30px;
    margin: 0px;
    z-index: 10;
    position: relative;
    letter-spacing: 2px;
}
.ptrn_i_rec_sqr {
    background-color: #dbf7ff;
    padding: 60px;
    padding-top: 120px;
    top: -30px;
    position: relative;
}
.ptrn_i_rec_lhd {
    background-color: #53B8E4;
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
    padding: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 40px;
    margin-bottom: 20px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    letter-spacing: 1px;
}
.ptrn_i_rec_box {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 120px;
    display: flex;
}
.ptrn_i_rec_box_l {
    width: 30%;
    padding-top: 30px;
    padding-right: 30px;
    justify-self: left;
}
.ptrn_i_rec_box_l img {
    width: 100%;
}
.ptrn_i_rec_box_r {
    width: 70%;
    padding-top: 30px;
}
.ptrn_i_rec_lhdr {
    color:#0095D7;
    font-size: 20px;
    font-weight: 600;
    margin: 0px;
    padding-bottom: 4px;
    border-bottom: 2px solid #0095D7;
}
@media (max-width: 1100px) {
    .ptrn_i_hed_1 {
        position: relative;
    }
    .ptrn_i_hed_2 {
        display: none;
    }
    .ptrn_i_lnk_fld {
        display: block;
    }
    .ptrn_i_lnk_box {
        width: 90%;
        margin: 0 auto;
        height: 100%;
        margin-bottom: 6vw;
    }
    .ptrn_i_lnk_top {
        text-align: center;
    }
    .ptrn_i_lnk_und {
        height: 20vw;
    }
    .ptrn_i_lnk_img {
        width: 60%;
        height: 12vw;
    }
    .ptrn_i_box {
        display: block;
    }
    .ptrn_i_box_l {
        width: 100%;
    }
    .ptrn_i_box_l1 {
        width: 100%;
    }
    .ptrn_i_lhd {
        font-size: 2vw;
        line-height: 3vw;
        place-self: baseline;
        left: 10%;
        top: 12%;
    }
    .ptrn_i_box_l1 img {
        width: 50%;
        margin: 0 auto;
    }
    .ptrn_i_box_r {
        margin: 0 auto;
    }
    .ptrn_i_rec_sqr {
        padding: 6%;
        padding-top: 10vw;
    }
    .ptrn_i_rec_hed {
        width: 97%;
        padding-left: 2%;
    }
    .ptrn_i_rec_lhd {
        font-weight: 600;
        width: 96%;
        padding: 2%;
        margin-top: 4%;
        margin-bottom: 2%;
    }
    .ptrn_i_rec_box {
        display: block;
        margin-bottom: 12vw;
    }
    .ptrn_i_rec_box_l {
        width: 40%;
        justify-self: center;
    }
    .ptrn_i_rec_box_r {
        width: 100%;
        padding-top: 30px;
    }
}



/* 保険カーリース */

.ptrn_a_sqr {
    width: 100%;
    margin: 0 auto;
    margin-top: 60px;
    margin-bottom: 150px;
    padding-bottom: 20px;
    position: relative;
}
.ptrn_a_sqr li {
    margin:  0;
    padding: 0;
}
.ptrn_a_sqr li::marker{
    content: "● "; 
    color: #0095D7;
    font-weight: 600;
    font-size: 20px;
}
.ptrn_a_hed {
    color: #FFFFFF;
    background-color: #0095D7;
    font-size: 25px;
    font-weight: 600;
    padding: 20px;
    margin-bottom: 0px;
}
.ptrn_box_1 {
    display: block;
    width: 100%;
    margin-bottom: 60px;
    text-align: left;
}
.ptrn_box_1_img {
    width: 75%;
    display: block;
    place-self: center;
}
.ptrn_box_2 {
    display: flex;
    width: 100%;
    margin-top: 120px;
    margin-bottom: 160px;
    align-items: flex-start;
    gap: clamp(20px, 3vw, 40px);
}
.ptrn_box_2 .ptrn_d_box_l {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
}
.ptrn_box_u {
    width: 100%;
    padding: 2%;
    padding-top: 0;
    padding-bottom: 0;
}
.ptrn_a_box {
    padding: 40px;
    display: flex;
    margin-bottom: 40px;
}
.ptrn_a_box_l {
    width: 40%;
    padding: 2%;
    padding-top: 0;
    padding-bottom: 0;
}
.ptrn_a_box_r {
    width: 60%;
    padding: 2%;
    padding-top: 0;
    padding-bottom: 0;
}
.ptrn_a_box_r img {
    width: 90%;
    margin: 0 auto;
}
.ptrn_a_box_u {
    padding: 4%;
    padding-top: 0;
    padding-bottom: 0;
}
.ptrn_a_mhd {
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 10px;
    color: #0095D7;
    border-bottom: 1px solid #0095D7;
}
.ptrn_a_lhd {
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid #0095D7;
}
.ptrn_a_img {
    width: 90%;
    margin: 5%;
}
.ptrn_a_img_u {
    width: 70%;
    margin: 0 auto;
}
.ptrn_a_lnk {
    font-size: 18px;
    color: #0095D7;
    border-bottom: 1px solid #0095D7;
}
.ptrn_a_bkimg {
    position: absolute;
    width: 30%;
    bottom: 20%;
    right: 2%;
}
@media (max-width: 1100px) {
    .ptrn_a_sqr {
        margin-top: 6vw;
        margin-bottom: 1vw;
        width: 98%;
    }
    .ptrn_a_box {
        display: block;
        padding: 2vw;
        margin-bottom: 1vw;
    }
    .ptrn_a_box_l {
        width: 100%;
    }
    .ptrn_a_box_r {
        width: 100%;
    }
    .ptrn_box_2 {
        display: block;
        margin-top: 12vw;
        margin-bottom: 8vw;
    }
}



/* サービスステーション */

.ptrn_j_hed {
    margin-top: 30px;
    margin-bottom: 30px;
    width: 100%;
    position: relative;
    justify-self: center;
    align-content: center;
    text-align: center;
}
.ptrn_j_hed_1 {
    position: absolute;
    font-size: 32px;
    font-weight: 600;
    left: 160px;
    top: -10px;
    text-align: center;
    margin: 0px;
}
.ptrn_j_sqr {
    width: 100%;
    margin-top: 90px;
    margin-bottom: 80px;
    background-color: #ffffff;
}
.ptrn_j_lhd {
    width: 100%;
    margin: 0 auto;
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    color: #0095D7;
    padding-top: 30px;
    padding-bottom: 10px;
    border-bottom: 4px solid #0095D7;
}
.ptrn_j_box {
    width: 100%;
    margin: 0 auto;
    margin-bottom: 160px;
    display: flex;
    position: relative;
}
.ptrn_j_box_l {
    width: 65%;
    height: 100%;
    padding-top: 30px;
    margin-bottom: 0px;
}
.ptrn_j_box_r {
    width: 35%;
    height: 100%;
    padding: 30px;
    padding-top: 40px;
    margin-bottom: 0px;
    text-align: center;
    position: relative;
}
.ptrn_j_img {
    width: 90%;
}
.ptrn_j_box_r1, .ptrn_j_box_r2 {
    width: 270px;
    position: absolute;
}
.ptrn_j_box_r1 {
    right: 240px;
    top: 20px;
}
.ptrn_j_box_r2 {
    right: 0px;
    top: 120px;
}
.ptrn_j_svg_front {
    width: 65%;
    left: 30px;
    top: 0px;
    z-index: 3;
    position: absolute;
}
.ptrn_j_svg_front_2 {
    margin-right: -50px;
}
.ptrn_j_svg_back {
    position: absolute;
    width: 65%;
    left: 40px;
    top: 15px;
    z-index: 2;
    opacity: 1;
}
.ptrn_j_frm {
    width: 100%;
    margin: 0 auto;
    margin-top: 80px;
    margin-bottom: 160px;
    height: 500px;
    overflow-x: hidden;
    overflow-y: scroll;
}
.ptrn_j_frm object{
    border: none;
}
@media (max-width: 1100px) {
    .ptrn_j_hed {
        margin-top: 6%;
        margin-bottom: 3vw;
    }
    .ptrn_j_hed_1 {
        position: relative;
        left: 0%;
        top: 0%;
    }
    .ptrn_j_box {
        display: block;
    }
    .ptrn_j_box_l {
        width: 100%;
        margin-bottom: 7vw;
    }
    .ptrn_j_box_r {
        width: 100%;
        height: 18vw;
    }
    .ptrn_j_box_r1, .ptrn_j_box_r2 {
        width: 40%;
        height: 30%;        
    }
    .ptrn_j_box_r1 {
        right: 60%;
        top: 2%;
    }
    .ptrn_j_box_r2 {
        right: 10%;
        top: 32%;
    }
    .ptrn_j_img {
        width: 66%;
    }
    .ptrn_j_frm {
        margin-bottom: 4vw;
        height: 60vw;
    }
}



/* 採用情報トップ */

.careers_top {
    position: absolute;
    left: 0px;
    top: 100px;
    width: 100vw;
}
.careers_top_caption {
    position: absolute;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 600;
    font-style: italic;
    z-index: 101;
    font-size: 7.5vw;
    top: clamp(140px, 18vw, 240px);
    left: 50vw;
    line-height: 1.1;
    text-shadow: 8px 8px 0px white;
}
.careers_top_img {
    width: 100vw;
    min-width: 1280px;
    height: 60vw;
    min-height: 700px;
    display: block;
    object-fit: cover;
    object-position: center top;
}
.careers_top_back {
    height: calc(62vw + 100px);
    min-height: calc(730px + 100px);
}
.careers_title_field {
    margin-top: 0;
    padding-top: clamp(64px, 6vw, 96px);
    margin-bottom: clamp(24px, 3vw, 40px);
    height: 100%;
    text-align: left;
    font-size: 20px;
    letter-spacing: 0.1em;
    position: relative;
}
.careers_top_back + .careers_title_field {
    padding-top: clamp(96px, 8vw, 140px);
}
.careers_title {
    font-weight: 600;
    margin-top: -48px;
    font-size: clamp(24px, 2.4vw, 30px);
    position: absolute;
}
.careers_title_line {
    width: 100%;
    margin-left: 0px;
    height: 6px;
    background-color: #B8A196;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 2s;
}
.careers_title_line.went {
    transform: scaleX(1);
    transform-origin: left center;
}
.careers_title_eng {
    font-size: clamp(20px, 2.2vw, 28px);
    color: #A08273;
    margin-top: -2px;
    font-style: italic;
    position: absolute;
}
.careers_column {
    width: 100%;
    justify-content: space-evenly;
    display: flex;
}
.careers_banner_block {
    width: clamp(240px, 18vw, 320px);
    margin: 0px;
}
.careers_banner_img {
    width: 100%;
}
.careers_banner_img:hover {
    transition: all 0.5s;
    opacity: 0.7;
}
.careers_block {
    width: 100%;
    text-align: center;
    padding-top: 12px;
    padding-bottom: 12px;
}
.careers_block_img {
    width: clamp(320px, 50vw, 520px);
}
.careers_block_img:hover {
    transition: all 0.5s;
    opacity: 0.7;
}
.careers_carousel_column {
    --carousel-card: clamp(160px, 18vw, 200px);
    --carousel-gap: 80px;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: min(100%, calc(4 * (var(--carousel-card) + var(--carousel-gap))));
    text-align: center;
    height: clamp(460px, 52vw, 560px);
    display: block;
    margin-bottom: clamp(24px, 3vw, 36px);
}
.careers_carousel_slide {
    width: 100%;
    height: clamp(340px, 44vw, 440px);
    padding-top: 20px;
    display: flex;
    align-items: center;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.careers_carousel_slide::-webkit-scrollbar {
    display:none;
}
.careers_carousel_field {
    position: relative;
    margin-left: 40px;
    margin-right: 40px;
}
.careers_carousel_field:hover .careers_carousel_big_image {
    opacity: 1;
    transition: opacity 0.5s ease;
}
.careers_carousel_image {
    width: var(--carousel-card, clamp(160px, 18vw, 200px));
    height: clamp(220px, 24vw, 260px);
    border: 2px solid #A08273;
    box-shadow: 8px 8px 2px #BBBBBB;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.careers_carousel_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.careers_carousel_big_image {
    display: block;
    width: clamp(190px, 20vw, 230px);
    height: clamp(260px, 26vw, 300px);
    opacity: 0;
    position: absolute;
    object-fit: cover;
    border: 2px solid #A08273;
    box-shadow: 8px 8px 2px #BBBBBB;
    margin-top: calc(-1 * (clamp(260px, 26vw, 300px) + 10px));
    margin-left: calc(-1 * clamp(20px, 2vw, 28px));
    z-index: 1000;
}
.careers_carousel_big_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.careers_carousel_caption {
    position: absolute;
    align-content: center;
    margin-left: clamp(36px, 3vw, 48px);
    margin-top: calc(-1 * clamp(52px, 6vw, 62px));
    width: clamp(120px, 14vw, 150px);
    height: clamp(46px, 5vw, 56px);
    color: #FFFFFF;
    background-color: #0095D7;
    opacity: 0.9;
}
.careers_carousel_big_caption {
    position: absolute;
    margin-left: clamp(20px, 2.6vw, 32px);
    margin-top: calc(-1 * clamp(86px, 10vw, 104px));
    width: clamp(170px, 18vw, 210px);
    height: clamp(80px, 9vw, 100px);
    color: #FFFFFF;
    background-color: #0095D7;
    opacity: 0.9;
    overflow: hidden;
    box-shadow: 8px 8px 2px #BBBBBB;
}
.careers_carousel_name {
    margin: 2px;
    font-size: clamp(18px, 2.2vw, 26px);
}
.careers_carousel_big_name {
    margin: 0px;
    font-size: clamp(20px, 2.5vw, 28px);
}
.careers_carousel_depart, .careers_carousel_year {
    margin: 0px;
    font-size: clamp(12px, 1.4vw, 14px);
}
.careers_carousel_btn {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    opacity: 0.8;
    transform: translateY(-50%);
}
.careers_carousel_left {
    background: url(/towa-kosan/wp-content/themes/towa-kosan/images/slider_left.webp) 0 0 no-repeat;
    background-size: 100% 100%;
    width: 60px;
}
.careers_carousel_right {
    background: url(/towa-kosan/wp-content/themes/towa-kosan/images/slider_right.webp) 0 0 no-repeat;
    background-size: 100% 100%;
    width: 60px;
}
.careers_carousel_left:after, .careers_carousel_right:after {
    content: none;
}
.careers_content {
    padding-top: 100px;
}
@media (max-width: 1100px) {
    .careers_top {
        position: absolute;
        top: var(--site-header-height);
        width: 100vw;
    }
    .careers_top_caption {
        text-shadow: 0.7vw 0.7vw 0px white;
    }
    .careers_top_img {
        width: 100vw;
        min-width: 100vw;
        height: 100%;
        min-height: 100%;
    }
    .careers_top_back {
        height: calc(64vw + 80px);
        min-height: calc(64vw + 80px);
    }
    .careers_title_field {
        margin-top: 0;
        padding-top: clamp(48px, 10vw, 96px);
        margin-bottom: clamp(24px, 6vw, 40px);
    }
    .careers_column {
        width: 100%;
        display: block;
    }
    .careers_banner_block {
        width: 40%;
        margin: 0 auto;
        margin-bottom: 4vw;
    }
    .careers_block {
        padding-top: 2vw;
        padding-bottom: 2vw;
    }
    .careers_carousel_column {
        height: 540px;
    }
    .careers_carousel_slide {
        height: 420px;
    }
    .careers_content {
        padding-top: var(--site-header-height);
    }
}



/* 個別インタビューページ */

.profile_top {
    position: relative;
    width: 100%;
    height: 100%;
}
.profile_top_container {
    position: absolute;
    height: inherit;
}
.profile_top_message {
    padding-left: 2vw;
    height: 78%;
    align-items: center;
    display: grid;
    color: #ffffff;
    font-size: 30px;
    line-height: 60px;
}
.profile_top_center {
    padding-top: 0vw;
    color: #ffffff;
}
.profile_top_name {
    font-size: 64px;
    padding-bottom: 3%;
}
.profile_top_depart, .profile_top_year {
    font-size: 30px;
}
.profile_top_bottom {
    color: #ffffff;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 5vw;
    font-style: italic;
    opacity: 0.6;
    padding-left: 10px;
    height: 25%;
}
.profile_top_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile_sub_block {
    margin-top: 32px;
    margin-bottom: 32px;
    line-height: 30px;
}
.profile_sub_title {
    font-size: 1.4em;
    margin-bottom: 8px;
    color: #0095D7;
}
.profile_sub_column {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.profile_sub_column_left {
    width: 70%;
    padding-right: 2%;
    margin-bottom: 0px;
    flex: 1;
}
.profile_sub_column_right {
    width: 70%;
    padding-left: 2%;
    margin-bottom: 0px;
    flex: 1;
}
.prof_column_img {
    width: 30%;
    margin: 0px;
    padding-left: 6px;
    padding-right: 6px;
}
.prof_column_img img {
    width: 100%;
}
.profile_sche_block {
    background-color: #e5f3fd;
    margin-top: 50px;
    padding-bottom: 50px;
}
.profile_sche_title_back {
    padding: 10px;
    padding-left: 90px;
    padding-right: 90px;
    margin-bottom: 75px;
    background-color: #0095D7;
    justify-self: center;
    transform: skewX(-12deg);
}
.profile_sche_title {
    font-size: 3vw;
    font-weight: 600;
    color: #FFFFFF;
    transform: skewX(12deg);
}
.profile_sche_column {
    display: flex;
    width: 90%;
    justify-self: center;
}
.profile_sche_1st {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: top;
}
.profile_sche_time {
    width: 88px;
    height: 88px;
    background-color: #0095D7;
    color: #FFFFFF;
    border-radius: 50%;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    align-content: center;
    position: absolute;
}
.profile_sche_line {
    background-color: #0095D7;
    width: 5px;
    height: 100%;
    margin: 0 auto;
    margin-bottom: 4px;
}
.profile_sche_column:last-child .profile_sche_line {
    display: none;
}
.profile_sche_2nd {
    width: 80%;
    padding-left: 10px;
    margin-bottom: 75px;
}
.profile_sche_emp {
    width: 1px;
    height: 100%;
}
.profile_sche_2nd_column {
    width: 80%;
    padding-left: 10px;
    margin-bottom: 75px;
    display: inline-flex;
}
.profile_sche_2nd_column_a {
    width: 75%;
    padding-right: 15px;
}
.profile_sche_name {
    font-size: 32px;
    font-weight: 600;
    color: #0095D7;
}
.profile_sche_2nd_column_b {
    width: 25%;
}
.profile_sche_img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
}
.profile_sche_2nd hr, .profile_sche_2nd_column hr {
    width: 100%;
    border-top: 5px solid white;
}
@media (max-width: 1100px) {
    .profile_top_message {
        height: 90%;
        line-height: 5vw;
    }
    .profile_top_name {
        font-size: 8vw;
        padding-bottom: 4vw;
    }
    .profile_top_depart, .profile_top_year {
        font-size: 3.5vw;
    }
    .profile_sche_name {
        font-size: 28px;
    }
    .profile_sche_time {
        width: 77px;
        height: 77px;
        font-size: 24px;
    }
    .profile_sub_column {
        display: block;
    }
    .profile_sub_column_left, .profile_sub_column_right {
        width: 100%;
        padding-right: 0%;
        padding-left: 0%;
        margin-bottom: 6vw;
    }
    .profile_sche_img {
        width: 16vw;
        height: 16vw;
    }
    .prof_column_img {
        width: 50%;
        margin: 0 auto;
        margin-bottom: 10vw;
    }
}
.d2_2_link:hover {
    color: #0095D7;
}


/* データで見る東和興産 */

.e2 {
    width: 100%;
    max-width: 1360px;
    display: flex;
    flex-wrap: wrap;
    top: 0px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}
.e2a_box, .e2d_box {
    flex: 1 1 calc(25% - 20px);
    min-width: 220px;
    max-width: calc(25% - 20px);
    min-height: 360px;
    height: auto;
    margin: 10px;
    padding: 20px;
    border-radius: 16px;
    background-color: #F7F7F7;
    position: relative;
}
.e2b_box {
    flex: 1 1 calc(50% - 20px);
    min-width: 460px;
    max-width: calc(50% - 20px);
    min-height: 360px;
    height: auto;
    margin: 10px;
    padding: 24px;
    border-radius: 16px;
    background-color: #F7F7F7;
    position: relative;
}
.e2c_box {
    flex: 1 1 calc(100% - 20px);
    min-width: 100%;
    max-width: calc(100% - 20px);
    min-height: 360px;
    height: auto;
    margin: 10px;
    padding: 20px;
    border-radius: 16px;
    background-color: #F7F7F7;
    position: relative;
}
.e2_1 {
    margin: 0px;
    margin-bottom: 5px;
    padding-left: 20px;
    font-size: 26px;
    border-left: 12px solid #0095D7;
}
.e2_2 {
    width: 100%;
    height: 85%;
    text-align: center;
    align-content: center;
    font-size: 32px;
    padding: 0px;
    position: relative;
}
.e2_2a {
    width: 100%;
    height: 100%;
    display: flex;
    text-align: center;
}
.e2_2a1 {
    height: 100%;
    width: 45%;
    text-align: center;
    align-content: center;
}
.e2_2a1 img {
    max-height: 120px;
}
.e2_2a2 {
    height: 100%;
    width: 55%;
    text-align: center;
    align-content: center;
    place-items: baseline;
    position: relative;
}
.e2_2b {
    height: 100%;
}
.e2_2b1 {
    position: absolute;
    top: -70px;
    right: 0px;
}
.e2_2b1 img {
    height: 40px;
}
.e2a_box .e2_2 {
    height: auto;
    margin-top: 12px;
    padding: 0 8px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}
.e2a_box .e2_2a {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.e2a_box .e2_2a1 {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 40%;
    height: auto;
    opacity: 0.2;
    z-index: 0;
}
.e2a_box .e2_2a1 img {
    width: 100%;
    height: auto;
    max-height: none;
}
.e2a_box .e2_2a2 {
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}
.e2a_box .e2_2b1 {
    top: 6px;
    right: 6px;
    opacity: 0.2;
    z-index: 0;
}
.e2a_box .e2_2b1 img {
    height: 56px;
    width: auto;
}
.e2a_box .e2_2 > span {
    position: relative;
    z-index: 1;
}
.e2a_box .e2_number {
    font-size: 72px;
}
.e2_card_simple {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.e2_card_simple .e2_1 {
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.e2_2d1_0 {
    height: 65%;
    align-items: baseline;
    text-align: center;
    font-size: 32px;
    position: relative;
    top: 25%;
}
.e2_2d1_1 {
    height: 60%;
    place-content: center;
}
.e2_2d1_1 img {
    width: 75%;
    height: 75%;
    margin: 0 auto;
    display: block;
    object-fit: contain;
}
.e2_2d1_2 {
    align-items: baseline;
    text-align: center;
    font-size: 32px;
}

.e2_card_icon {
    place-items: center;
}
.e2_card_icon img {
    max-height: 150px;
    display: block;
    object-fit: contain;
}
.e2_card_icon_column {
    height: 96%;
}
.e2_card_simple .e2_number {
    font-size: clamp(48px, 5vw, 72px);
}
.e2_2c1 {
    height: 100px;
    margin-top: -60px;
    margin-bottom: 0px;
    padding: 0px;
    display: flex;
    place-items: baseline;
    place-content: center;
}
.e2_2c2 {
    height: 180px;
    width: 100%;
    margin: 0 auto;
    font-size: 18px;
    display: block;
}
.e2_2c2_row {
    height: 34px;
    margin-bottom: 8px;
    width: 100%;
    display: flex;
}
.e2_2c2_unit1 {
    width: 220px;
    height: 100%;
}
.e2_2c2_unit2 {
    width: 360px;
    height: 100%;
    overflow: hidden;
}
.e2_2c2_unit3 {
    width: 300px;
    height: 100%;
}
.e2_2c2_bar {
    height: 20px;
    margin-top: 7px;
    margin-bottom: 7px;
    width: 0;
    transition: width 1.2s ease-out;
}
.e2_2c2_bar.bar1 {
    background: #0095D7;
}
.e2_2c2_bar.bar2 {
    background: #0029D7;
}
.e2_2d0 {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    place-items: center;
    display: flex;
}
.e2_2d1 {
    width: 100%;
    height: 85%;
    margin: 0 auto;
    padding-bottom: 16px;
    place-items: center;
    align-content: center;
}
.e2_2d2 {
    width: 50%;
    height: 100%;
    font-size: 28px;
    justify-content: center;
}
.e2_2d3 {
    height: 60%;
    place-items: center;
    align-content: center;
}
.e2_2d5 {
    padding-top: 2%;
    padding-bottom: 13%;
    place-items: baseline;
    position: relative;
}
.e2_2e {
    width: 100%;
    height: 100%;
    padding-bottom: 0px;
}
.e2_2e1 {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    font-size: 24px;
}
.e2_2e_pie1 {
    position: absolute;
    right: 115px;
    top: 25px;
}
.e2_2e_pie2 {
    position: absolute;
    left: 150px;
    top: 280px;
}
.e2_2e_pie3 {
    position: absolute;
    left: 80px;
    top: 160px;
}
.e2_2e_pie4 {
    position: absolute;
    left: 22px;
    top: 30px;
}
.e2_2e2 {
    width: 100%;
    height: 100%;
    position: relative;
    top: 0px;
    left: 20px;
    text-align: center;
    display: inline-block;
}
.e2_2e_pie {
    width: 300px;
    height: 300px;
}
.e2_2f {
    width: 100%;
    height: 100%;
    font-size: 32px;
    display: block;
    justify-content: center;
}
.e2_2f1 {
    height: 100px;
    width: 100%;
    align-content: center;
}
.e2_2f2 {
    height: 200px;
    width: 100%;
}
.e2_2f_pie {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.e2_2f_pie_title {
    font-size: 24px;
    line-height: 1.2;
}
.e2_2f_pie_chart {
    --percent: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(#0095D7 calc(var(--percent) * 1%), #DAF0FC 0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    line-height: 1;
}
.e2_2f_pie_chart_large {
    width: 160px;
    height: 160px;
}
.e2_2f_pie_chart::before {
    content: "";
    position: absolute;
    inset: 18%;
    background: #fff;
    border-radius: 50%;
}
.e2_2f_pie_chart > * {
    position: relative;
    z-index: 1;
}
.e2_2f_pie_unit {
    font-size: 0.6em;
    margin-left: 2px;
    color: #0095D7;
}
.e2_d {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
    font-size: 18px;
    margin-top: 10px;
}
.e2_d_value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    padding: 8px 0 12px;
    font-size: 32px;
}
.e2_d_value .e2_number {
    font-size: clamp(48px, 5vw, 72px);
}
.e2_d_body {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.e2_d_body_left, .e2_d_body_right {
    place-items: center;
}
.e2_d_body_left {
    width: 45%;
}
.e2_d_body_right {
    width: 55%;
    padding-left: 10px;
    padding-right: 10px;
}
.e2_d_pie {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(#DAF0FC 0 100%);
    flex-shrink: 0;
}
.e2_d_list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 180px;
    text-align: left;
}
.e2_d_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.e2_d_item_left {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}
.e2_d_color {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}
.e2_d_label {
    white-space: nowrap;
}
.e2_d_percent {
    font-weight: 600;
    color: #0095D7;
    min-width: 72px;
    text-align: right;
}
.e2_2f2_column, .e2_2f2_column_r {
    height: 120px;
    width: 120px;
    text-align: center;
    align-content: center;
    background-color: #DAF0FC;
    font-size: 24px;
    padding: 12px;
    margin: 0 auto;
    margin-top: 25px;
}
.e2_2f2_column_r {
    border-radius: 50%;
}
.e2_2g {
    margin-top: -50px;
    font-size: 42px;
}
.e2_2h {
    margin-top: 0px;
    font-size: 42px;
}
.e2_2i {
    margin-top: 30px;
    width: 100%;
    height: 100%;
    font-size: 32px;
    justify-content: center;
}
.e2_2i1 {
    height: 160px;
}
.e2_2i2 {
    height: 90%;
    margin: 0 auto;
}
.e2_2j {
    width: 100%;
    display: flex;
}
.e2_2j1 {
    width: 600px;
    position: relative;
}
.e2_2j2 {
    width: 100%;
    font-size: 32px;
    padding-left: 10px;
    margin-bottom: 35px;
    border-radius: 15px;
    display: flex;
    place-items: baseline;
}
.e2_2j3 {
    width: 800px;
}
.e2_2j4 {
    max-height: 320px;
    margin-top: -40px;
}
.e2_number {
    margin: 0px;
    font-size: 88px;
    font-weight: 600;
    letter-spacing: 0px;
    padding-left: 6px;
    padding-right: 6px;
    line-height: 1;
    color:#0095D7;
    font-family: inherit;
}
.e2_number_m {
    margin: 0px;
    font-size: 66px;
    font-weight: 600;
    letter-spacing: 0px;
    padding-left: 6px;
    padding-right: 6px;
    font-family: inherit;
}
.e2_2f_pie_chart_label {
    display: flex;
    align-items: end;
}
.e2_number_s {
    margin: 0px;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 0px;
    color:#0095D7;
    font-family: inherit;
}
.e2 .e2_number,
.e2 .e2_number_m {
    font-family: inherit;
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 600;
    line-height: 1;
}
@media (max-width: 1200px) {
    .e2_d_body {
        flex-direction: column;
        gap: 4vw;
    }
    .e2_d_body_left, .e2_d_body_right {
        width: 100%;
    }
    .e2_d_pie {
        width: 32vw;
        height: 32vw;
    }
}
@media (max-width: 1100px) {
    .e2 {
        min-width: 95%;
        max-width: 95%;
        top: var(--site-header-height);
        display: flex;
        flex-wrap: wrap;
    }
    .e2a_box,
    .e2d_box {
        flex: 1 1 calc(50% - 20px);
        min-width: calc(50% - 20px);
        max-width: calc(50% - 20px);
        min-height: 320px;
        height: auto;
        margin: 8px;
        padding: 5%;
    }
    .e2b_box,
    .e2c_box {
        flex: 1 1 calc(100% - 20px);
        min-width: calc(100% - 20px);
        max-width: calc(100% - 20px);
        min-height: 420px;
        height: auto;
        margin: 8px;
        padding: 5%;
    }
    .e2_1 {
        margin: 0px;
        margin-bottom: 1vw;
        padding-left: 2vw;
        font-size: 4.8vw;
        border-left: 1vw solid #0095D7;
    }
    .e2_2 {
        width: 100%;
        text-align: center;
        font-size: 8vw;
        margin-top: 0vw;
    }
    .e2_card_simple .e2_card_icon {
        position: relative;
        align-self: center;
    }
    .e2_card_simple .e2_card_value {
        position: relative;
        top: 25%;
        font-size: clamp(14px, 3.6vw, 20px);
    }
    .e2_card_simple .e2_1 {
        font-size: clamp(18px, 3.4vw, 24px);
    }
    .e2_card_simple .e2_number {
        font-size: clamp(40px, 9vw, 64px);
    }
    .e2 .e2_number,
    .e2 .e2_number_m {
        font-size: clamp(40px, 9vw, 64px);
    }
    .e2_2a {
        width: 100%;
    }
    .e2_2a1 {
        height: 100%;
        align-content: center;
        padding-right: 1vw;
    }
    .e2_2a1 img {
        max-height: 20vw;
    }
    .e2_2a2 {
        height: 100%;
        place-items: baseline;
        position: relative;
    }
    .e2_2b {
        height: 100%;
    }
    .e2_2b1 {
        top: -11vw;
        right: 2vw;
    }
    .e2_2b1 img {
        height: 8vw;
    }
    .e2_2c1 {
        height: 25%;
        margin-top: 0vw;
        margin-bottom: 10vw;
        padding: 0px;
    }
    .e2_2c2 {
        height: 60%;
        width: 100%;
        font-size: 3.5vw;
        display: block;
    }
    .e2_2c2_row {
        height: 10%;
        margin-bottom: 5%;
        width: 100%;
        display: flex;
    }
    .e2_2c2_unit1 {
        width: 35%;
        height: 100%;
    }
    .e2_2c2_unit2 {
        width: 40%;
        height: 100%;
        overflow: hidden;
    }
    .e2_2c2_unit3 {
        width: 25%;
        height: 100%;
    }
    .e2_2c2_bar {
        height: 80%;
        margin-top: 2.5%;
        margin-bottom: 2.5%;
        width: 0;
        transition: width 1.2s ease-out;
    }
    .e2_2c2_bar.bar1 {
        background: #0095D7;
    }
    .e2_2c2_bar.bar2 {
        background: #0029D7;
    }
    .e2_2d2 {
        width: 100%;
        height: 45vw;
        font-size: 5vw;
    }
    .e2_2d3 {
        height: 20vw;
    }
    .e2_2d4 {
        height: 100%;
    }
    .e2_2d5 {
        height: 12vw;
    }
    .e2_2e {
        width: 90%;
        height: 90%;
    }
    .e2_2e1 {
        font-size: 4vw;
    }
    .e2_2e_pie1 {
        position: absolute;
        right: 14vw;
        top: 21vw;
    }
    .e2_2e_pie2 {
        position: absolute;
        left: 26vw;
        top: 80vw;
    }
    .e2_2e_pie3 {
        position: absolute;
        left: 2vw;
        top: 48vw;
    }
    .e2_2e_pie4 {
        position: absolute;
        left: 5vw;
        top: 15vw;
    }
    .e2_2e2 {
        width: 66%;
        height: 66%;
        margin: 0 auto;
        top: 28vw;
        left: 28%;
    }
    .e2_2e2_pie {
        width: 100%;
        height: 100%;
    }
    .e2_2f {
        margin-top: 0px;
        font-size: 7vw;
        display: block;
    }
    .e2_2f1, .e2_2f2 {
        height: 100%;
        width: 100%;
    }
    .e2_2f_pie {
        gap: 1.2vw;
    }
    .e2_2f_pie_title {
        font-size: 4.8vw;
    }
    .e2_2f_pie_chart {
        width: 22vw;
        height: 22vw;
    }
    .e2_2f_pie_chart_large {
        width: 28vw;
        height: 28vw;
    }
    .e2_d {
        gap: 2vw;
        font-size: 3.6vw;
    }
    .e2_d_value .e2_number {
        font-size: clamp(40px, 9vw, 64px);
    }
    .e2_d_list {
        width: 100%;
        min-width: 0;
        max-width: 60vw;
    }
    .e2_d_percent {
        min-width: 12vw;
    }
    .e2_2d0 {
        display: block;
    }
    .e2_2f2_column, .e2_2f2_column_r {
        height: 22vw;
        width: 22vw;
        padding: 2vw;
        margin-top: 0vw;
        font-size: 4.8vw;
    }
    .e2_2g {
        margin-top: -6vw;
        font-size: 6vw;
    }
    .e2_2h {
        margin-top: -2vw;
        font-size: 6vw;
    }
    .e2_2i {
        margin-top: 5vw;
        width: 100%;
    }
    .e2_2i1 {
        height: 36vw;
    }
    .e2_2i2 {
        height: 90%;
        margin: 0 auto;
    }
    .e2_2j {
        display: block;
    }
    .e2_2j1 {
        width: 100%;
    }
    .e2_2j2 {
        font-size: 5.2vw;
        padding-left: 0px;
        display: flex;
        place-items: baseline;
        place-content: left;
    }
    .e2_2j3 {
        width: 100%;
    }
    .e2_2j4 {
        max-height: 50vw;
        margin-top: 0px;
    }
    .e2_number {
        margin: 0px;
        font-size: 18vw;
        letter-spacing: 5px;
        padding-left: 6px;
        padding-right: 6px;
        line-height: 1;
        color:#0095D7;
    }
    .e2_number_m {
        margin: 0px;
        font-size: 10vw;
        padding-left: 6px;
        padding-right: 6px;
        color:#0095D7;
    }
    .e2_number_s {
        margin: 0px;
        font-size: 6.6vw;
        color:#0095D7;
    }
    .e2a_box .e2_2 {
        height: auto;
        margin-top: 2vw;
    }
    .e2a_box .e2_2a1 {
        width: 32%;
        top: 2vw;
        right: 2vw;
    }
    .e2a_box .e2_2b1 {
        top: 2vw;
        right: 2vw;
    }
    .e2a_box .e2_2b1 img {
        height: 10vw;
    }
    .e2a_box .e2_number {
        font-size: 15vw;
    }
}
@media (max-width: 767px) {
    .e2 {
        min-width: 92%;
        max-width: 92%;
        top: 60px;
    }
    .e2a_box,
    .e2b_box,
    .e2c_box,
    .e2d_box {
        min-width: 100%;
        max-width: 100%;
        margin: 8px 0 6vw;
        padding: 6%;
    }
    .e2a_box {
        min-height: 52vw;
        height: auto;
    }
    .e2b_box,
    .e2c_box {
        min-height: 120vw;
        height: auto;
    }
    .e2d_box {
        min-height: 90vw;
        height: auto;
    }
    .e2_1 {
        font-size: 4.2vw;
        border-left-width: 1.2vw;
    }
    .e2_2 {
        font-size: 7vw;
    }
    .e2_card_simple .e2_card_value {
        font-size: clamp(14px, 4.8vw, 20px);
    }
    .e2_card_simple .e2_1 {
        font-size: clamp(18px, 4.4vw, 24px);
    }
    .e2_card_simple .e2_number {
        font-size: clamp(36px, 14vw, 60px);
    }
    .e2 .e2_number,
    .e2 .e2_number_m {
        font-size: clamp(36px, 14vw, 60px);
    }
    .e2_2a1 img {
        max-height: 24vw;
    }
    .e2_2c2 {
        font-size: 3.2vw;
    }
    .e2_d {
        gap: 3vw;
        font-size: 4vw;
    }
    .e2_d_value .e2_number {
        font-size: clamp(36px, 14vw, 60px);
    }
    .e2_d_pie {
        width: 46vw;
        height: 46vw;
    }
    .e2_d_list {
        max-width: 100%;
    }
    .e2_d_percent {
        min-width: 18vw;
    }
    .e2_2d2 {
        font-size: 4.6vw;
        height: 50vw;
    }
    .e2_2d1 {
        padding-bottom: 6vw;
    }
    .e2_2e1 {
        font-size: 3.6vw;
    }
    .e2_2e2 {
        width: 72%;
        height: 72%;
        top: 26vw;
        left: 24%;
    }
    .e2_number {
        font-size: 16vw;
    }
    .e2_number_m {
        font-size: 9vw;
    }
    .e2_number_s {
        font-size: 6vw;
    }
    .e2a_box .e2_2 {
        height: auto;
        margin-top: 3vw;
    }
    .e2a_box .e2_2a1 {
        width: 36%;
        top: 3vw;
        right: 3vw;
    }
    .e2a_box .e2_2b1 {
        top: 3vw;
        right: 3vw;
    }
    .e2a_box .e2_2b1 img {
        height: 12vw;
    }
    .e2a_box .e2_number {
        font-size: 14vw;
    }
}



/* Q&A 表示ページ */

.search_column {
    width: 100%;
    height: 100vh;
    padding-bottom: 20px;
    display: flex;
}
.search_bar {
    width: 20%;
    padding-right: 10px;
    border-right: 2px solid #A08273;
    border-bottom: none;
    box-sizing: border-box;
}
.search_field {
    width: 95%;
    padding-bottom: 20px;
}
.search_field input {
    width: 95%;
    margin-bottom: 6px;
    padding: 4px;
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 16px;
    border: 2px solid #0095D7;
}
.search_field .cat_lists {
    width: 100%;
    margin-bottom: 30px;
    display: block;
}
.search_field .cat_checks {
    margin-top: 4px;
    margin-bottom: 4px;
}
.search_field .cat_checkbox {
    width: 30px;
}
.search_field label {
    margin-bottom: 3px;
    font-size: 16px;
}
.searchform_btn1 {
    width: 100%;
    padding: 4px;
    border: none;
    font-size: 18px;
    color:#ffffff;
    background-color: #0095D7;
    cursor: pointer;
    display: block;
}
.searchform_btn2 {
    display: none;
}
.searchform_btn1:hover {
    background-color: #195671;
}
.term_field {
    margin-top: -8px;
    padding: 3px;
    padding-left: 20px;
    padding-top: 6px;
    padding-bottom: 6px;
}
.cat-item {
    margin-right: 10px;
    margin-left: -42px;
    padding: 2px;
    list-style-type: "◆ ";
}
.contentframe {
    max-width: 80%;
    width: 80%;
    height: 100%;
    flex: 1;
}
.mainFrame {
    width: 100%;
    height: 100%;
    margin-top: 0px;
    border: none;
}
@media (max-width: 1100px) {
    .search_column {
        display: block;
        height: 100%;
    }
    .search_bar {
        width: 100%;
        padding-right: 0px;
        border-right: none;
        border-bottom: 2px solid #A08273;
    }
    .search_field {
        width: 100%;
        padding-bottom: 8vw;
    }
    .search_field input {
        width: 98%;
        margin-bottom: 2vw;
        padding: 1%;
        font-size: 16px;
        border: 2px solid #0095D7;
    }
    .search_field .cat_lists {
        width: 100%;
        margin-bottom: 6vw;
        display: inline-grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .search_field .cat_checks {
        margin-top: 0.5%;
        margin-bottom: 0.5%;
        font-size: 20px;
    }
    .search_field label {
        margin-bottom: 3px;
        font-size: 20px;
    }
    .searchform_btn1 {
        padding: 1vw;
    }
    .contentframe {
        max-width: 770px;
        width: 100%;
        height: 60vh;
        flex: 1;
        margin-top: 10vw;
    }
}

/* Q&A タクソノミー一覧ページ */

.taxonomy_main {
    width: 95%;
    padding-left: 5%;
}
.taxonomy_area {
    width: 100%;
}
.taxonomy_wrapper {
    width: 100%;
    padding: 0px;
    display: inline-grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: auto;
    place-items: start;
}
.taxonomy_block {
    min-width: 320px;
    max-width: 320px;
    margin: 10px;
    margin-bottom: 54px;
    background-color: #ffffff;
    border-top: 10px solid #0095D7;
}
.taxonomy_thubmnail {
    min-width: 320px;
    max-width: 320px;
    object-fit: cover;
}
.taxonomy_texts {
    padding: 20px;
    padding-top: 5px;
}
.taxonomy_texts h2 {
    color: #000000;
}
.taxonomy_texts h2:hover {
    color: #0095D7;
}
.taxonomy_pagination {
    font-size: 28px;
    font-weight: 600;
    justify-self: center;
}
.page-numbers {
    margin-left: 12px;
    margin-right: 12px;
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 12px;
    border: 1px solid #000000;
}
.page-numbers:hover {
    color:#0095D7;
    background-color: #ffffff;
    border: 1px solid #0095D7;
}
@media (max-width: 1300px) {
    .taxonomy_wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 950px) {
    .taxonomy_main {
        padding-left: 0%;
    }
    .taxonomy_area {
        width: 100%;
    }
    .taxonomy_wrapper {
        width: 100%;
        display: block;
        place-items: center;
    }
}
@media (max-width: 750px) {
    .taxonomy_block {
        min-width: 80%;
        max-width: 80%;
        margin: 0 auto;
        margin-bottom: 12vw;
    }
    .taxonomy_thubmnail {
        min-width: 100%;
        max-width: 100%;
        object-fit: cover;
    }
    .taxonomy_texts {
        padding: 2vw;
        padding-top: 1vw;
    }
}

/* Q&A 個別ページ */
.qa_block {
    width: 100%;
    margin-top: 8%;
    margin-bottom: 2%;
    padding: 10px;
    background-color: #ffffff;
    border-top: 8px solid #0095D7;
}
.qa_title {
    padding-left: 2%;
}
.qa_column {
    width: 100%;
    display: flex;
}
.qa_column_a {
    width: 40%;
    padding: 3px;
    text-align: center;
    position: relative;
}
.qa_image {
    width: 35vw;
    height: 26vw;
    object-fit: cover;
    margin-bottom: 0px;
    margin: 0 auto;
}
.qa_column_b {
    width: 60%;
    padding-left: 10px;
    padding-right: 4px;
    margin: 0;
}
.qa_column_c {
    position: relative;
}
.term_link_field {
    padding: 8px;
    position: absolute;
    top: 10px;
    left: 5px;
    width: calc(100% - 5px);
    text-align: left;
}
.term_link {
    margin-left: 4px;
    margin-right: 4px;
    border-radius: 16px;
    border: 1px solid #0095D7;
    background-color: #FFFFFF;
    display: inline-block;
}
.term_link a {
    color: #0095D7;
    padding: 2px;
    padding-left: 16px;
    padding-right: 16px;
    margin: 0px;
}
.term_link:hover {
    background-color: #0095D7;
    cursor: pointer;
}
.term_link a:hover {
    color: #ffffff;
}
.qa_etc {
    margin-top: 4%;
    padding-left: 1%;
    border-left: 8px solid #0095D7;
}
.qa_dl_block {
    padding: 16px;
    border-top: 8px solid #0095D7;
    display: flex;   
}
.qa_dl_block_a, .qa_dl_block_b {
    width: 50%;
}
.qa_dl_block_a {
    padding-right: 10px;
    margin-bottom: 10px;
}
.qa_dl_block_b {
    align-content: center;
    margin: 0px;
    border: none;
    font-size: 24px;
    text-align: center;
}
.qa_relation {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.qa_relation_field {
    width: 90%;
    padding-bottom: 20px;
    margin: 8px;
    margin-bottom: 32px;
    font-size: 14px;
    background-color: #ffffff;
    border-top: 10px solid #0095D7;
}
.qa_relation_image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    opacity: 1;
}
.qa_relation_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.qa_relation_image:hover {
    opacity: 0.5;
}
.qa_relation_text {
    margin-bottom: 20px;
}
.qa_relation_term {
    padding: 4px;
}
.qa_field {
    display: none;
    opacity: 0;
}
.qa_dl_toggle:checked ~ .qa_field { 
    display: block;
    opacity: 1;
    transition: opacity 0.8s ease, transform 0.8s ease;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    border: 2px solid #0095D7;
    border-radius: 10px;
    background-color: #ffffff;
    color: black;
    width: min(90vw, 860px);
    max-height: 90vh;
    overflow: auto;
    z-index: 10000;
    padding: 24px;
    font-size: 15px;
}
.qa_dl_toggle:checked ~ .qa_field p { 
    font-size: 15px;
    margin-top: 0px; 
    margin-bottom: 0px;
}
.qa_input { 
    margin-bottom: 12px;
    width: 100%;
    display: grid;
    grid-template-columns: 160px 1fr;
    column-gap: 16px;
    align-items: center;
}
.qa_input1 {
    width: auto;
    font-weight: 600;
    font-size: 15px;
}
.qa_input2 {
    width: auto;
}
.qa_input2 input { 
    padding: 8px 10px;
    font-size: 15px;
    width: 100%;
    border: 1px solid #cbd5df;
    border-radius: 4px;
    box-sizing: border-box;
}
.qa_input2 input:hover {
    border: 1px solid #0095D7;
}
.qa_input.caption {
    display: block;
    font-size: 13px;
    line-height: 1.6;
    color: #5f6b76;
    padding-left: calc(160px + 16px);
}
.qa_button {
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    background-color: #f2f8ff;
    border: 1px solid #0095D7;
    color: #0095D7;
    border-radius: 999px;
    min-width: 240px;
}
.qa_button:hover {
    cursor: pointer;
    background-color: #0095D7;
    color: #FFFFFF;
}
.qa_input4 {
    width: auto;
    margin: 0 auto;
    font-size: 15px;
    margin-top: 16px;
    padding: 10px 24px;
    border: 1px solid #cbd5df;
    border-radius: 999px;
    background-color: #ffffff;
    color: #3b4046;
    text-align: center;
}
.qa_input4:hover {
    cursor: pointer;
    background-color: #f2f6f8;
}
.qa_field_close {
    width: 100%;
    height: 100%;
    display: block;
}
.qa_field_close:hover {
    cursor: pointer;
}
.qa_blur_bg {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background-color: rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease;
}
.qa_dl_toggle:checked ~ .qa_blur_bg {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.qa_dl_button {
    width: 70%;
    height: auto;
    margin: 0 auto;
    align-content: center;
    display: block;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    background-color: #f2f8ff;
    border: 1px solid #0095D7;
    border-radius: 999px;
    color: #0095D7;
    text-align: center;
}
.qa_dl_button:hover {
    color: #FFFFFF;
    background-color: #0095D7;
    cursor: pointer;
}
.qa_input {
    text-align: left;
}
.qa_input > label {
    grid-column: 2;
    margin-left: 0;
    font-size: 13px;
    color: #5f6b76;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.qa_input3 {
    width: 100%;
    margin-bottom: 10px;
    place-content: center;
}
@media (max-width: 1050px) {
    .qa_column {
        width: 100%;
        display: block;
    }
    .qa_column_a {
        width: 100%;
    }
    .qa_image {
        width: 100%;
        margin-bottom: 6vw;
    }
    .qa_column_b {
        width: 100%;
        padding-right: 0px;
        margin: 0 auto;
        margin-bottom: 6vw;
    }
    .term_link_field {
        padding: 0vw;
    }
    .term_link {
        margin-bottom: 3vw;
        margin-left: 2vw;
        margin-right: 2vw;
        border-radius: 4vw;
    }
    .term_link a {
        padding: 2vw;
        padding-left: 4vw;
        padding-right: 4vw;
    }
    .qa_dl_block {
        padding: 2vw;
        padding-top: 2vw;
        display: block;   
    }
    .qa_dl_block_a, .qa_dl_block_b {
        width: 100%;
    }
    .qa_dl_block_a {
        padding-right: 0vw;
        margin-bottom: 10vw;
    }
    .qa_dl_block_b {
        margin-bottom: 8vw;
    }
    .qa_dl_block_b a {
        padding: 3vw;
        padding-left: 12vw;
        padding-right: 12vw;
    }
    .qa_dl_block_b a:hover {
        color: #FFFFFF;
        background-color: #70bee0;
    }
    .qa_input {
        grid-template-columns: 1fr;
        row-gap: 6px;
    }
    .qa_input.caption {
        display: block;
        padding-left: 0;
    }
    .qa_input > label {
        grid-column: auto;
    }
}



/* 問い合わせ */

.contact_title {
    font-size: 28px;
    letter-spacing: 0.04em;
    margin-bottom: 28px;
}
.contact_column {
    width: 100%;
    display: grid;
    grid-template-columns: 200px 1fr;
    column-gap: 20px;
    align-items: start;
    margin-bottom: 14px;
}
.contact_column_left {
    width: auto;
    padding: 0;
    margin: 0;
    align-self: start;
}
.contact_column_right {
    width: auto;
    padding: 0;
    margin: 0;
}
.contact_column_left p, .contact_column_right p, .contact_column_bottom p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
}
.contact_column_left p,
.contact_column_left label,
.contact_column_left span {
    font-weight: 600;
}
.contact_required_mark {
    color: #d64040;
    font-weight: 700;
}
.contact_column_bottom p,
.contact_content .contact_note,
.contact_content .contact_notice {
    font-size: 13px;
    line-height: 1.6;
    color: #5f6b76;
}
.contact_column_bottom,
.contact_content .contact_note,
.contact_content .contact_notice {
    text-align: left !important;
    box-sizing: border-box;
}
.contact_content p.contact_notice {
    margin: 0 !important;
    text-align: left !important;
    display: block;
}
.contact_column_bottom {
    display: grid;
    grid-template-columns: 200px 1fr;
    column-gap: 20px;
    align-items: start;
}
.contact_column_bottom .contact_notice {
    grid-column: 2;
    margin: 0;
}
.contact_column_right input, .contact_column_right textarea {
    padding: 8px 10px;
    font-size: 15px;
    border: 1px solid #cbd5df;
    border-radius: 4px;
    width: 100%;
}
.contact_column_right input:hover, .contact_column_right textarea:hover  {
    border: 1px solid #0095D7;
}
.contact_submit {
    place-items: center;
}
.contact_submit input {
    margin-top: 20px;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid #0095D7;
    background-color: #f2f8ff;
    border-radius: 999px;
    min-width: 240px;
}
.contact_submit input:hover {
    background-color: #0095D7;
    color: #ffffff;
}

@media (max-width: 1100px) {
    .contact_column {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 6px;
    }
    .contact_column_left {
        width: 100%;
    }
    .contact_column_right {
        width: 100%;
        padding-left: 0px;
        margin-bottom: 5vw;
    }
    .contact_column_bottom,
    .contact_content .contact_note,
    .contact_content .contact_notice {
        margin-left: 0;
        max-width: 100%;
    }
    .contact_content p.contact_notice {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100%;
    }
    .contact_column_bottom {
        grid-template-columns: 1fr;
    }
    .contact_column_bottom .contact_notice {
        grid-column: auto;
    }
    .contact_submit input {
        padding: 12px 24px;
        min-width: min(100%, 260px);
    }
}

/* 企業情報・事業内容ページ 余白/文字サイズ調整 */
@media (min-width: 1101px) {
    .company_content,
    .business_content,
    .contact_content {
        font-size: 16px;
        line-height: 1.75;
    }
    body.section-wide {
        --content-max: 1200px;
        --text-max: 100ch;
    }
    body.section-wide .company_content,
    body.section-wide .business_content,
    body.section-wide .contact_content,
    body.section-wide .main_text {
        width: min(100%, var(--content-max));
        max-width: var(--content-max);
        margin-left: auto;
        margin-right: auto;
    }
    body.section-wide .article_top,
    body.section-wide .article_title_zone_557,
    body.section-wide .careers_content,
    body.section-wide .sub_table_field,
    body.section-wide .history_table,
    body.section-wide .office_category,
    body.section-wide .office_index,
    body.section-wide .ptrn_g_hed,
    body.section-wide .ptrn_g_lhd,
    body.section-wide .ptrn_g_box,
    body.section-wide .ptrn_g_imgbox,
    body.section-wide .ptrn_g_lyo,
    body.section-wide .ptrn_g_lyo_lhd,
    body.section-wide .ptrn_g_b4_box,
    body.section-wide .ptrn_g_lhd_g,
    body.section-wide .ptrn_g_lhd_b {
        max-width: var(--content-max);
        margin-left: auto;
        margin-right: auto;
    }
    body.section-wide :is(.ptrn_d_box_l, .ptrn_c_box_l, .ptrn_h_hed_r, .ptrn_h_box_l, .ptrn_f_box, .ptrn_i_box_l2, .ptrn_i_rec_box_r, .ptrn_a_box_l, .ptrn_a_box_u, .ptrn_g_box_l, .ptrn_g_b4_box_l, .history_text) {
        width: 100%;
        max-width: var(--text-max);
    }
    body.section-wide .main_text :is(p, h1, h2, h3, h4, h5, h6, ul, ol) {
        max-width: var(--text-max);
        margin-left: auto;
        margin-right: auto;
    }
    .company_content .ptrn_d_hed,
    .business_content .ptrn_d_hed,
    .company_content .ptrn_f_hed,
    .business_content .ptrn_f_hed,
    .company_content .ptrn_i_hed,
    .business_content .ptrn_i_hed,
    .company_content .ptrn_j_hed,
    .business_content .ptrn_j_hed,
    .company_content .ptrn_g_hed,
    .business_content .ptrn_g_hed {
        margin-top: clamp(40px, 4vw, 60px);
        margin-bottom: clamp(28px, 3vw, 48px);
    }
    .company_content .ptrn_d_hed_1,
    .business_content .ptrn_d_hed_1,
    .company_content .ptrn_f_hed_1,
    .business_content .ptrn_f_hed_1,
    .company_content .ptrn_i_hed_1,
    .business_content .ptrn_i_hed_1,
    .company_content .ptrn_g_hed_1,
    .business_content .ptrn_g_hed_1 {
        font-size: clamp(24px, 2.3vw, 28px);
    }
    .company_content .ptrn_j_hed_1,
    .business_content .ptrn_j_hed_1 {
        font-size: clamp(24px, 2.4vw, 30px);
    }
    .company_content .ptrn_g_lhd_2,
    .business_content .ptrn_g_lhd_2 {
        font-size: clamp(15px, 1.4vw, 17px);
    }
    .company_content .ptrn_g_lhd_g,
    .business_content .ptrn_g_lhd_g,
    .company_content .ptrn_g_lhd_b,
    .business_content .ptrn_g_lhd_b {
        font-size: clamp(24px, 2.4vw, 30px);
    }
    .company_content .ptrn_j_lhd,
    .business_content .ptrn_j_lhd {
        font-size: clamp(24px, 2.6vw, 32px);
    }
    .company_content .ptrn_i_rec_hed,
    .business_content .ptrn_i_rec_hed {
        font-size: clamp(22px, 2.2vw, 28px);
    }
    .company_content .ptrn_i_rec_lhd,
    .business_content .ptrn_i_rec_lhd {
        font-size: clamp(20px, 2.1vw, 26px);
    }
    .company_content .ptrn_a_sqr,
    .business_content .ptrn_a_sqr {
        margin-top: clamp(48px, 5vw, 72px);
        margin-bottom: clamp(72px, 8vw, 120px);
    }
    .company_content .ptrn_box_1,
    .business_content .ptrn_box_1,
    .company_content .ptrn_box_2,
    .business_content .ptrn_box_2 {
        margin-top: clamp(32px, 3vw, 55px);
        margin-bottom: clamp(40px, 3.5vw, 65px);
    }
    .company_content .ptrn_f_ara,
    .business_content .ptrn_f_ara {
        margin-top: clamp(72px, 8vw, 120px);
        margin-bottom: clamp(72px, 8vw, 120px);
    }
    .company_content .ptrn_i_lnk_fld,
    .business_content .ptrn_i_lnk_fld {
        margin-bottom: clamp(72px, 8vw, 120px);
    }
    .company_content .ptrn_i_box,
    .business_content .ptrn_i_box {
        margin-top: clamp(56px, 6vw, 96px);
        margin-bottom: clamp(72px, 7vw, 110px);
    }
    .company_content .ptrn_i_rec_box,
    .business_content .ptrn_i_rec_box {
        margin-bottom: clamp(64px, 6vw, 100px);
    }
    .company_content .ptrn_g_box,
    .business_content .ptrn_g_box {
        margin-bottom: clamp(48px, 5vw, 80px);
    }
    .company_content .ptrn_g_imgbox,
    .business_content .ptrn_g_imgbox {
        margin-bottom: clamp(56px, 6vw, 90px);
    }
    .company_content .ptrn_g_lyo,
    .business_content .ptrn_g_lyo {
        margin-top: clamp(32px, 4vw, 56px);
        margin-bottom: clamp(64px, 6vw, 100px);
    }
    .company_content .ptrn_g_b4_box,
    .business_content .ptrn_g_b4_box {
        padding-bottom: clamp(48px, 6vw, 90px);
    }
    .company_content .ptrn_j_sqr,
    .business_content .ptrn_j_sqr {
        margin-top: clamp(56px, 6vw, 90px);
        margin-bottom: clamp(56px, 6vw, 90px);
    }
    .company_content .ptrn_j_box,
    .business_content .ptrn_j_box {
        margin-bottom: clamp(72px, 7vw, 120px);
    }
    .company_content .ptrn_j_frm,
    .business_content .ptrn_j_frm {
        margin-top: clamp(56px, 6vw, 90px);
        margin-bottom: clamp(80px, 8vw, 130px);
    }
}
@media (max-width: 1100px) {
    .company_content,
    .business_content,
    .contact_content {
        font-size: 15px;
        line-height: 1.7;
    }
}
